20250603在荣品的PRO-RK3566开发板的Android13下的命令行查看RK3566的温度
2025/6/3 11:58
RK3566的cpu运行效率 top
rk3566_t:/ #
rk3566_t:/ #
rk3566_t:/ # cd /sys/class/thermal/
rk3566_t:/sys/class/thermal # ls -l
rk3566_t:/sys/class/thermal # cd thermal_zone0/
rk3566_t:/sys/class/thermal/thermal_zone0 #
rk3566_t:/sys/class/thermal/thermal_zone0 # ls -l
rk3566_t:/sys/class/thermal/thermal_zone0 # cat temp
51875
rk3566_t:/sys/class/thermal/thermal_zone0 #

在命令行查看RK3566的温度
在 RK3566 平台上,你可以通过以下方法在命令行中查看 SoC 温度:
方法 1:通过 sysfs 接口查询
RK3566 的温度传感器数据通常通过内核的 thermal 子系统暴露在 /sys/class/thermal
目录下:
bash
复制
下载
# 列出所有 thermal zone
ls /sys/class/thermal/
# 通常 thermal_zone0 对应 SoC 温度
cat /sys/class/thermal/thermal_zone0/temp
# 更友好的显示方式(除以1000得到摄氏度)
echo "CPU温度: $(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))°C"
方法 2:使用 sensors 命令(需安装 lm-sensors)
如果系统支持:
bash
复制
下载
# 安装 lm-sensors(如果未安装)
sudo apt install lm-sensors
# 检测硬件传感器
sudo sensors-detect
# 查看温度信息
sensors
方法 3:通过调试接口(需要 root)
有些 RK3566 平台可能提供额外的调试接口:
bash
复制
下载
# 查看 PMIC 温度(如果支持)
cat /sys/kernel/debug/regulator/regulator_temp
# 或通过 debugfs
cat /sys/kernel/debug/thermal/thermal_zone0/temp
方法 4:使用第三方工具
bash
复制
下载
# 安装并运行 psensor
sudo apt install psensor
psensor
注意事项:
-
不同厂商的 RK3566 板卡/设备可能温度传感器路径略有不同
-
某些嵌入式系统可能简化了 thermal 子系统实现
-
温度值通常是毫摄氏度(需要除以1000得到摄氏度)
-
如果没有显示,可能需要检查内核配置是否启用了 thermal 驱动:
bash
复制
下载
dmesg | grep thermal
如果需要更精确的信息,建议查阅你所使用的具体 RK3566 平台的硬件手册或内核设备树配置。
在命令行查看RK3566的温度 更加友好的显示方式。RK3566不支持 中文。不支持 温度的度的显示。请切换为 英文状态下的更加友好的显示方式
Here are several English-friendly ways to check the RK3566 temperature in the command line:
Method 1: Simple Temperature Readout
bash
复制
下载
echo "CPU Temp: $(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))C"
Sample output:
复制
下载
CPU Temp: 42C
Method 2: Formatted Thermal Information
bash
复制
下载
temp=$(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))
printf "RK3566 Temperature\n=================\nSOC: %d°C\n" $temp
Sample output:
复制
下载
RK3566 Temperature
=================
SOC: 42°C
Method 3: Continuous Monitoring (refresh every 2 seconds)
bash
复制
下载
watch -n 2 'echo "Current Temp: $(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))C"'
Method 4: Thermal Zone Summary
bash
复制
下载
for zone in $(ls /sys/class/thermal/ | grep thermal_zone); do
type=$(cat /sys/class/thermal/${zone}/type)
temp=$(($(cat /sys/class/thermal/${zone}/temp)/1000))
printf "%-15s: %2dC\n" $type $temp
done
Sample output:
复制
下载
soc_thermal : 42C
Method 5: Color-Coded Temperature (requires terminal with color support)
bash
复制
下载
temp=$(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))
if [ $temp -gt 70 ]; then
echo -e "\033[31mWARNING: High Temp - ${temp}C\033[0m"
elif [ $temp -gt 50 ]; then
echo -e "\033[33mNormal Temp - ${temp}C\033[0m"
else
echo -e "\033[32mCool Temp - ${temp}C\033[0m"
fi
Notes:
-
All methods use standard POSIX shell commands for maximum compatibility
-
The degree symbol (°) is optional and may be replaced with just 'C'
-
For embedded systems with limited shell support, Method 1 is the most universal
-
If thermal_zone0 doesn't exist, check other zones with
ls /sys/class/thermal/
使用shell脚本 表示 温度的度
在 Shell 脚本中,你可以使用 printf
或 echo -e
来显示温度的单位符号(°C)。以下是几种在 RK3566 上友好显示温度的方法:
方法 1:使用 Unicode 编码显示 °C 符号
bash
复制
下载
#!/bin/bash
temp=$(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))
echo "CPU Temp: ${temp}°C"
输出示例:
复制
下载
CPU Temp: 42°C
方法 2:使用 printf
格式化输出
bash
复制
下载
#!/bin/bash
temp=$(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))
printf "Current Temperature: %d°C\n" "$temp"
输出示例:
复制
下载
Current Temperature: 42°C
方法 3:使用 ASCII 替代符号(兼容性更强)
如果终端不支持 Unicode 符号,可以用 C
代替 °C
:
bash
复制
下载
#!/bin/bash
temp=$(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))
echo "CPU Temp: ${temp}C"
输出示例:
复制
下载
CPU Temp: 42C
方法 4:带颜色和警告的 Shell 脚本
bash
复制
下载
#!/bin/bash
temp=$(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))
if [ "$temp" -gt 70 ]; then
echo -e "\e[31mWARNING: High Temperature - ${temp}°C\e[0m"
elif [ "$temp" -gt 50 ]; then
echo -e "\e[33mNormal Temperature - ${temp}°C\e[0m"
else
echo -e "\e[32mCool Temperature - ${temp}°C\e[0m"
fi
输出示例:
-
如果温度 > 70°C → 红色警告
-
如果温度 50-70°C → 黄色提示
-
如果温度 < 50°C → 绿色正常
方法 5:持续监控温度(每 2 秒刷新)
bash
复制
下载
#!/bin/bash
while true; do
temp=$(($(cat /sys/class/thermal/thermal_zone0/temp)/1000))
printf "\rCurrent Temperature: %d°C" "$temp"
sleep 2
done
按 Ctrl+C
退出监控
注意事项
-
确保
/sys/class/thermal/thermal_zone0/temp
存在(不同 RK3566 设备可能路径不同)。 -
如果终端不支持 Unicode ,可以用
C
代替°C
。 -
部分嵌入式系统可能不支持
echo -e
颜色,可以去掉颜色代码。
你可以选择最适合你的方式,推荐 方法 1 或 方法 2 进行简单温度读取,方法 5 用于实时监控。
在SHELL脚本中,如果让小写的字幕o显示在上面?
在 Shell 脚本中,如果你想让小写字母 o
显示在数字的上方(类似上标效果),可以使用 Unicode 组合字符 或 ANSI 控制码 来实现。但由于终端限制,纯文本环境无法真正实现上标,以下是几种替代方案:
方法 1:使用 Unicode 上标字母(部分支持)
Unicode 提供了上标字母 ᵒ
(U+1D52),但并非所有终端都能正确渲染:
bash
复制
下载
echo "42°C" # 正常显示
echo "42ᵒC" # 尝试用小上标 ᵒ 替代(可能显示异常)
输出可能类似:
复制
下载
42°C
42ᵒC
方法 2:用 printf
和垂直偏移(部分终端支持)
某些终端(如 terminator
、gnome-terminal
)支持 ANSI 控制码调整字符位置:
bash
复制
下载
printf "42\e[1A\e[1Do\e[1B\e[1DC\n" # 尝试将 o 上移一行
效果不稳定,可能显示为:
复制
下载
42
oC
方法 3:直接使用特殊符号 °(推荐)
大多数 Shell 环境支持 Unicode 的度符号 °
(U+00B0),这是最可靠的方式:
bash
复制
下载
echo "42°C" # 标准温度显示
输出:
复制
下载
42°C
方法 4:用 ASCII 艺术模拟上标
如果终端完全无法显示 Unicode,可以用换行和空格模拟:
bash
复制
下载
echo -e "42\n oC"
输出:
复制
下载
42
oC
注意事项
-
终端兼容性:
-
Unicode 上标(如
ᵒ
)在 SSH、嵌入式设备终端中可能显示为乱码。 -
推荐优先使用
°
(U+00B0),它被广泛支持。
-
-
脚本可移植性 :
如果目标设备是 RK3566 嵌入式系统,建议直接使用
C
或°C
,避免复杂格式。 -
检查终端支持 :
运行
echo -e "\u00B0"
测试是否能正常显示°
符号。
最终推荐方案
bash
复制
下载
# 最兼容的写法(支持 Unicode 时用 °,否则用 o)
if echo -e "\u00B0" | grep -q "°"; then
echo "42°C"
else
echo "42oC" # 降级显示
fi
输出:
-
支持 Unicode →
42°C
-
不支持 →
42oC

完整的LOG:
Microsoft Windows [版本 10.0.19045.5737]
(c) Microsoft Corporation。保留所有权利。
C:\Users\QQ>adb shell
adb server version (19045) doesn't match this client (41); killing...
could not read ok from ADB Server
* failed to start daemon
adb.exe: cannot connect to daemon
C:\Users\QQ>adb shell
adb server version (19045) doesn't match this client (41); killing...
* daemon started successfully
adb.exe: no devices/emulators found
C:\Users\QQ>adb shell
rk3566_t:/ $ su
rk3566_t:/ # dmesg
12.957330\] Booting Linux on physical CPU 0x0000000000 \[0x412fd050
12.957355\] Linux version 5.10.157 (rootroot@rootroot-X99-Turbo) (Android (8490178, based on r450784d) clang version 14.0.6 (https://android.googlesource.com/toolchain/llvm-project 4c603efb0cca074e9238af8b4106c30add4418f6), LLD 14.0.6) #8 SMP PREEMPT Mon Jun 2 17:51:31 CST 2025 \[ 12.964926\] Machine model: pro-rk3566 \[ 12.998054\] earlycon: uart8250 at MMIO32 0x00000000fe660000 (options '') \[ 13.046332\] printk: bootconsole \[uart8250\] enabled \[ 13.054583\] Reserved memory: created CMA memory pool at 0x0000000010000000, size 8 MiB \[ 13.064031\] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool \[ 13.131196\] Zone ranges: \[ 13.134750\] DMA32 \[mem 0x0000000000200000-0x00000000ffffffff
13.142295\] Normal \[mem 0x0000000100000000-0x00000001ffffffff
13.149836\] Movable zone start for each node \[ 13.155276\] Early memory node ranges \[ 13.159954\] node 0: \[mem 0x0000000000200000-0x00000000083fffff
13.167589\] node 0: \[mem 0x0000000009400000-0x00000000efffffff
13.175222\] node 0: \[mem 0x00000001f0000000-0x00000001ffffffff
13.182857\] Initmem setup node 0 \[mem 0x0000000000200000-0x00000001ffffffff
13.191351\] On node 0 totalpages: 1043968 \[ 13.191358\] DMA32 zone: 15288 pages used for memmap \[ 13.191361\] DMA32 zone: 0 pages reserved \[ 13.191365\] DMA32 zone: 978432 pages, LIFO batch:63 \[ 13.191369\] Normal zone: 1024 pages used for memmap \[ 13.191372\] Normal zone: 65536 pages, LIFO batch:15 \[ 13.210831\] psci: probing for conduit method from DT. \[ 13.217147\] psci: PSCIv1.1 detected in firmware. \[ 13.222971\] psci: Using standard PSCI v0.2 function IDs \[ 13.229463\] psci: Trusted OS migration not required \[ 13.235575\] psci: SMC Calling Convention v1.2 \[ 13.241498\] percpu: Embedded 32 pages/cpu s91800 r8192 d31080 u131072 \[ 13.249350\] pcpu-alloc: s91800 r8192 d31080 u131072 alloc=32\*4096 \[ 13.249357\] pcpu-alloc: \[0\] 0 \[0\] 1 \[0\] 2 \[0\] 3 \[ 13.249440\] Detected VIPT I-cache on CPU0 \[ 13.254628\] CPU features: detected: GIC system register CPU interface \[ 13.262455\] CPU features: detected: Virtualization Host Extensions \[ 13.270000\] CPU features: detected: ARM errata 1165522, 1319367, or 1530923 \[ 13.278416\] alternatives: patching kernel code \[ 13.286295\] Built 1 zonelists, mobility grouping on. Total pages: 1027656 \[ 13.294609\] Kernel command line: storagemedia=emmc androidboot.storagemedia=emmc androidboot.mode=normal androidboot.dtb_idx=0 androidboot.dtbo_idx=0 androidboot.verifiedbootstate=orange androidboot.serialno=eb8e18cb75f0c6de console=ttyFIQ0 firmware_class.path=/vendor/etc/firmware init=/init rootwait ro loop.max_part=7 androidboot.console=ttyFIQ0 androidboot.wificountrycode=CN androidboot.hardware=rk30board androidboot.boot_devices=fe310000.sdhci,fe330000.nandc,fe2b0000.dwmmc androidboot.selinux=permissive buildvariant=userdebug earlycon=uart8250,mmio32,0xfe660000 \[ 13.351856\] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) \[ 13.361790\] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) \[ 13.371171\] mem auto-init: stack:all(zero), heap alloc:off, heap free:off \[ 13.411121\] software IO TLB: mapped \[mem 0x00000000e7d15000-0x00000000ebd15000\] (64MB) \[ 13.473022\] Memory: 3981268K/4175872K available (19774K kernel code, 4216K rwdata, 8356K rodata, 1344K init, 2187K bss, 186412K reserved, 8192K cma-reserved) \[ 13.489346\] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 \[ 13.497544\] rcu: Preemptible hierarchical RCU implementation. \[ 13.504611\] rcu: \\x09RCU event tracing is enabled. \[ 13.510339\] rcu: \\x09RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. \[ 13.518258\] \\x09Trampoline variant of Tasks RCU enabled. \[ 13.524556\] \\x09Tracing variant of Tasks RCU enabled. \[ 13.530569\] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies. \[ 13.539632\] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 \[ 13.551808\] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 \[ 13.560292\] GICv3: GIC: Using split EOI/Deactivate mode \[ 13.566799\] GICv3: 320 SPIs implemented \[ 13.571764\] GICv3: 0 Extended SPIs implemented \[ 13.577431\] GICv3: Distributor has no Range Selector support \[ 13.584404\] GICv3: 16 PPIs implemented \[ 13.589308\] GICv3: CPU0: found redistributor 0 region 0:0x00000000fd460000 \[ 13.597728\] ITS \[mem 0xfd440000-0xfd45ffff
13.603144\] ITS@0x00000000fd440000: allocated 8192 Devices @2810000 (indirect, esz 8, psz 64K, shr 0) \[ 13.614052\] ITS@0x00000000fd440000: allocated 32768 Interrupt Collections @2820000 (flat, esz 2, psz 64K, shr 0) \[ 13.625981\] ITS: using cache flushing for cmd queue \[ 13.632505\] GICv3: using LPI property table @0x0000000002830000 \[ 13.639872\] GIC: using cache flushing for LPI property table \[ 13.646843\] GICv3: CPU0: using allocated LPI pending table @0x0000000002840000 \[ 13.655644\] kfence: initialized - using 524288 bytes for 63 objects at 0x(____ptrval____)-0x(____ptrval____) \[ 13.698568\] arch_timer: cp15 timer(s) running at 24.00MHz (phys). \[ 13.706031\] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns \[ 13.718629\] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns \[ 13.729291\] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000) \[ 13.741341\] pid_max: default: 32768 minimum: 301 \[ 13.747254\] LSM: Security Framework initializing \[ 13.753120\] SELinux: Initializing. \[ 13.757803\] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) \[ 13.766703\] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) \[ 13.778155\] rcu: Hierarchical SRCU implementation. \[ 13.784572\] Platform MSI: interrupt-controller@fd440000 domain created \[ 13.792948\] PCI/MSI: /interrupt-controller@fd400000/interrupt-controller@fd440000 domain created \[ 13.804355\] smp: Bringing up secondary CPUs ... \[ 13.818586\] Detected VIPT I-cache on CPU1 \[ 13.818617\] GICv3: CPU1: found redistributor 100 region 0:0x00000000fd480000 \[ 13.818638\] GICv3: CPU1: using allocated LPI pending table @0x0000000002850000 \[ 13.818688\] CPU1: Booted secondary processor 0x0000000100 \[0x412fd050
13.827194\] Detected VIPT I-cache on CPU2 \[ 13.827219\] GICv3: CPU2: found redistributor 200 region 0:0x00000000fd4a0000 \[ 13.827236\] GICv3: CPU2: using allocated LPI pending table @0x0000000002860000 \[ 13.827273\] CPU2: Booted secondary processor 0x0000000200 \[0x412fd050
13.835757\] Detected VIPT I-cache on CPU3 \[ 13.835779\] GICv3: CPU3: found redistributor 300 region 0:0x00000000fd4c0000 \[ 13.835795\] GICv3: CPU3: using allocated LPI pending table @0x0000000002870000 \[ 13.835830\] CPU3: Booted secondary processor 0x0000000300 \[0x412fd050
13.835940\] smp: Brought up 1 node, 4 CPUs
\[ 13.932027\] SMP: Total of 4 processors activated.
\[ 13.937960\] CPU features: detected: Privileged Access Never
\[ 13.944842\] CPU features: detected: LSE atomic instructions
\[ 13.951748\] CPU features: detected: User Access Override
\[ 13.958348\] CPU features: detected: 32-bit EL0 Support
\[ 13.964754\] CPU features: detected: Common not Private translations
\[ 13.972397\] CPU features: detected: RAS Extension Support
\[ 13.979086\] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
\[ 13.989303\] CPU features: detected: CRC32 instructions
\[ 13.995706\] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
\[ 14.004111\] CPU features: detected: RCpc load-acquire (LDAPR)
\[ 14.041340\] CPU: All CPU(s) started at EL2
\[ 14.048340\] devtmpfs: initialized
\[ 14.075915\] Trying to unpack rootfs image as initramfs...
\[ 14.082617\] Registered cp15_barrier emulation handler
\[ 14.082631\] Registered setend emulation handler
\[ 14.082638\] KASLR disabled due to lack of seed
\[ 14.082834\] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
\[ 14.111847\] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
\[ 14.120536\] pinctrl core: initialized pinctrl subsystem
\[ 14.128301\] NET: Registered protocol family 16
\[ 14.129457\] Freeing initrd memory: 1400K
\[ 14.140502\] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
\[ 14.149177\] DMA: preallocated 512 KiB GFP_KERNEL\|GFP_DMA32 pool for atomic allocations
\[ 14.158732\] audit: initializing netlink subsys (disabled)
\[ 14.165620\] audit: type=2000 audit(0.239:1): state=initialized audit_enabled=0 res=1
\[ 14.167787\] Registered FIQ tty driver
\[ 14.180046\] thermal_sys: Registered thermal governor 'fair_share'
\[ 14.180052\] thermal_sys: Registered thermal governor 'step_wise'
\[ 14.187518\] thermal_sys: Registered thermal governor 'user_space'
\[ 14.194878\] thermal_sys: Registered thermal governor 'power_allocator'
\[ 14.202665\] thermal thermal_zone1: power_allocator: sustainable_power will be estimated
\[ 14.220203\] cpuidle: using governor menu
\[ 14.225682\] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
\[ 14.234036\] ASID allocator initialised with 65536 entries
\[ 14.243185\] ramoops: dmesg-0\\x090x20000@0x0000000000110000
\[ 14.249729\] ramoops: console\\x090x80000@0x0000000000130000
\[ 14.256249\] ramoops: pmsg\\x090x50000@0x00000000001b0000
\[ 14.262949\] printk: console \[ramoops-1\] enabled
\[ 14.268933\] pstore: Registered ramoops as persistent store backend
\[ 14.276497\] ramoops: using 0xf0000@0x110000, ecc: 0
\[ 14.324836\] rockchip-gpio fdd60000.gpio0: probed /pinctrl/gpio0@fdd60000
\[ 14.333509\] rockchip-gpio fe740000.gpio1: probed /pinctrl/gpio1@fe740000
\[ 14.342123\] rockchip-gpio fe750000.gpio2: probed /pinctrl/gpio2@fe750000
\[ 14.350802\] rockchip-gpio fe760000.gpio3: probed /pinctrl/gpio3@fe760000
\[ 14.359476\] rockchip-gpio fe770000.gpio4: probed /pinctrl/gpio4@fe770000
\[ 14.367724\] rockchip-pinctrl pinctrl: probed pinctrl
\[ 14.396188\] fiq_debugger fiq_debugger.0: IRQ fiq not found
\[ 14.403036\] fiq_debugger fiq_debugger.0: IRQ wakeup not found
\[ 14.410119\] fiq_debugger_probe: could not install nmi irq handler
\[ 14.417667\] printk: console \[ttyFIQ0\] enabled
\[ 14.428258\] printk: bootconsole \[uart8250\] disabled
\[ 14.434584\] Registered fiq debugger ttyFIQ0
\[ 14.435405\] vcc3v3_sys: supplied by dc_12v
\[ 14.435710\] vcc5v0_sys: supplied by dc_12v
\[ 14.436024\] vcc3v3_lcd0_n: supplied by vcc3v3_sys
\[ 14.436332\] vcc3v3_lcd1_n: supplied by vcc3v3_sys
\[ 14.436978\] rockchip-pinctrl pinctrl: unable to find group for node gpiopower-pwr
\[ 14.436999\] reg-fixed-voltage: probe of gpiotest-regulator failed with error -22
\[ 14.437410\] iommu: Default domain type: Translated
\[ 14.440758\] init adp5585_i2c_init
\[ 14.441218\] SCSI subsystem initialized
\[ 14.441279\] libata version 3.00 loaded.
\[ 14.441460\] usbcore: registered new interface driver usbfs
\[ 14.441511\] usbcore: registered new interface driver hub
\[ 14.441783\] usbcore: registered new device driver usb
\[ 14.442265\] mc: Linux media interface: v0.10
\[ 14.442301\] videodev: Linux video capture interface: v2.00
\[ 14.442383\] pps_core: LinuxPPS API ver. 1 registered
\[ 14.442394\] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti \
15.101056\] rk817-charger rk817-charger: Failed to find matching dt id \[ 15.104276\] input: rk805 pwrkey as /devices/platform/fdd40000.i2c/i2c-0/0-0020/rk805-pwrkey/input/input0 \[ 15.106429\] fan53555-regulator 0-001c: Failed to get chip ID! \[ 15.110842\] rtc-hym8563 4-0051: could not init device, -6 \[ 15.112811\] rockchip-mipi-csi2-hw fdfb0000.mipi-csi2-hw: enter mipi csi2 hw probe! \[ 15.112977\] rockchip-mipi-csi2-hw fdfb0000.mipi-csi2-hw: probe success, v4l2_dev:mipi-csi2-hw! \[ 15.114542\] rkisp_hw fdff0000.rkisp: Adding to iommu group 7 \[ 15.114858\] rkisp_hw fdff0000.rkisp: is_thunderboot: 0 \[ 15.114873\] rkisp_hw fdff0000.rkisp: max input:0x0@0fps \[ 15.114905\] rkisp_hw fdff0000.rkisp: can't request region for resource \[mem 0xfdff0000-0xfdffffff
15.115083\] rkisp_hw fdff0000.rkisp: no find phandle sram \[ 15.115621\] rkisp rkisp-vir0: rkisp driver version: v02.02.02 \[ 15.115787\] rkisp rkisp-vir0: No memory-region-thunderboot specified \[ 15.115992\] rkisp rkisp-vir0: Entity type for entity rkisp-isp-subdev was not initialized! \[ 15.116015\] rkisp rkisp-vir0: Entity type for entity rkisp-csi-subdev was not initialized! \[ 15.119118\] usbcore: registered new interface driver uvcvideo \[ 15.119137\] USB Video Class driver (1.1.1) \[ 15.120246\] test_power_init: test power disabled \[ 15.121823\] device-mapper: uevent: version 1.0.3 \[ 15.122093\] device-mapper: ioctl: 4.44.0-ioctl (2021-02-01) initialised: [email protected] \[ 15.122350\] Bluetooth: HCI UART driver ver 2.3 \[ 15.122364\] Bluetooth: HCI UART protocol H4 registered \[ 15.123038\] cpu cpu0: bin=0 \[ 15.123088\] cpu cpu0: leakage=24 \[ 15.123132\] cpu cpu0: pvtm = 88110, from nvmem \[ 15.123150\] cpu cpu0: pvtm-volt-sel=2 \[ 15.123220\] cpu cpu0: soc version=0, speed=2 \[ 15.125633\] sdhci: Secure Digital Host Controller Interface driver \[ 15.125652\] sdhci: Copyright(c) Pierre Ossman \[ 15.125660\] Synopsys Designware Multimedia Card Interface Driver \[ 15.126646\] sdhci-pltfm: SDHCI platform and OF driver helper \[ 15.127115\] dwmmc_rockchip fe000000.dwmmc: No normal pinctrl state \[ 15.127136\] dwmmc_rockchip fe000000.dwmmc: No idle pinctrl state \[ 15.127285\] dwmmc_rockchip fe000000.dwmmc: IDMAC supports 32-bit address mode. \[ 15.127304\] dwmmc_rockchip fe2b0000.dwmmc: No normal pinctrl state \[ 15.127320\] dwmmc_rockchip fe000000.dwmmc: Using internal DMA controller. \[ 15.127323\] dwmmc_rockchip fe2b0000.dwmmc: No idle pinctrl state \[ 15.127344\] dwmmc_rockchip fe000000.dwmmc: Version ID is 270a \[ 15.127406\] dwmmc_rockchip fe000000.dwmmc: DW MMC controller at irq 53,32 bit host data width,256 deep fifo \[ 15.127438\] dwmmc_rockchip fe2b0000.dwmmc: IDMAC supports 32-bit address mode. \[ 15.127466\] dwmmc_rockchip fe2b0000.dwmmc: Using internal DMA controller. \[ 15.127482\] dwmmc_rockchip fe2b0000.dwmmc: Version ID is 270a \[ 15.127527\] dwmmc_rockchip fe2b0000.dwmmc: DW MMC controller at irq 54,32 bit host data width,256 deep fifo \[ 15.127802\] dwmmc_rockchip fe000000.dwmmc: allocated mmc-pwrseq \[ 15.127820\] mmc_host mmc3: card is non-removable. \[ 15.129000\] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active. \[ 15.129115\] SMCCC: SOC_ID: ARCH_FEATURES(ARCH_SOC_ID) returned error: fffffffffffffffd \[ 15.130084\] cryptodev: driver 1.12 loaded. \[ 15.130166\] hid: raw HID events driver (C) Jiri Kosina \[ 15.133396\] usbcore: registered new interface driver usbhid \[ 15.133414\] usbhid: USB HID core driver \[ 15.133750\] ashmem: initialized \[ 15.138370\] optee: probing for conduit method. \[ 15.138416\] optee: revision 3.13 (b5340fd6) \[ 15.138594\] mmc_host mmc0: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0) \[ 15.138772\] optee: dynamic shared memory is enabled \[ 15.138958\] optee: initialized driver \[ 15.139689\] rp_power prepare build 8 gpio \[ 15.139734\] rp_power request pwr_5v_3v3 \[ 15.139760\] success request gpio75 out \[ 15.139779\] rp_power request led \[ 15.139794\] success request gpio114 flash \[ 15.139813\] rp_power request usb_pwr \[ 15.139827\] success request gpio6 out \[ 15.139847\] rp_power request usb_rst \[ 15.139860\] success request gpio8 out \[ 15.139987\] rp_power request spk_en \[ 15.140004\] success request gpio148 out \[ 15.140024\] rp_power request spk_mute \[ 15.140039\] success request gpio0 out \[ 15.140065\] rp_power request usb_mode \[ 15.140081\] success request gpio18 out \[ 15.140099\] rp_power request Equipment_EN \[ 15.140112\] success request gpio97 out \[ 15.140259\] input: gpio_event as /devices/platform/rp_power/input/input1 \[ 15.140620\] input: gpio_event as /devices/platform/rp_power/input/input2 \[ 15.140770\] rpdzkj wake lock \[ 15.141452\] rp_gpio prepare build 11 gpio \[ 15.141662\] rp_gpio request gpio1d0 \[ 15.141687\] success request gpio56 out \[ 15.141710\] rp_gpio request gpio1d1 \[ 15.141724\] success request gpio57 out \[ 15.141750\] rp_gpio request gpio1d2 \[ 15.141765\] success request gpio58 out \[ 15.141787\] rp_gpio request gpio1d3 \[ 15.141801\] success request gpio59 out \[ 15.141820\] rp_gpio request gpio1d4 \[ 15.141834\] success request gpio60 out \[ 15.141856\] rp_gpio request gpio4a0 \[ 15.141871\] success request gpio128 out \[ 15.141896\] rp_gpio request gpio4a1 \[ 15.141911\] success request gpio129 out \[ 15.141931\] rp_gpio request gpio4a2 \[ 15.141944\] success request gpio130 out \[ 15.141963\] rp_gpio request gpio4a3 \[ 15.141977\] success request gpio131 out \[ 15.141996\] rp_gpio request gpio1a4 \[ 15.142009\] success request gpio36 out \[ 15.142028\] rp_gpio request gpio3c1 \[ 15.142042\] success request gpio113 out \[ 15.142814\] mhi_init Quectel_Linux_PCIE_MHI_Driver_V1.3.1 \[ 15.143082\] sprd_pci_ep_dev_init Quectel_Linux\&Android_SPRD_PCIE_Driver_V1.1.8 \[ 15.143684\] sipc: name=sprd,sipc \[ 15.143696\] sipc: type=1 \[ 15.143704\] sipc: dst =1 \[ 15.143711\] sipc: ep_dev=0 \[ 15.143718\] sipc: smem_type = 0 \[ 15.144532\] sipc: smem_base=0x2c00000, dst_smem_base=0x2c00000, smem_size=0x300000 \[ 15.144543\] sipc: high_offset=0x0n \[ 15.144546\] smsg_ipc_create: sprd,sipc \[ 15.145130\] smem_init: pool addr = 0x2c00000, size = 0x300000 added. \[ 15.145149\] smsg_ipc_smem_init: ring_base = 0x2c00000, ring_size = 0x1000 \[ 15.146136\] spipe_probe! \[ 15.146153\] spipe: after parse device tree, name=spipe_nr, dst=1, channel=4, ringnr=15, rxbuf_size=0x1000, txbuf_size=0x1000 \[ 15.146167\] sbuf_host_init: channel 1-4, offset = 0x0! \[ 15.146637\] smsg_ch_open: channel 1-4 send open msg! \[ 15.148705\] spipe_probe! \[ 15.148722\] spipe: after parse device tree, name=sdiag_nr, dst=1, channel=21, ringnr=1, rxbuf_size=0x8000, txbuf_size=0x40000 \[ 15.148736\] sbuf_host_init: channel 1-21, offset = 0x0! \[ 15.149079\] smsg_ch_open: channel 1-21 send open msg! \[ 15.149205\] spipe_probe! \[ 15.149218\] spipe: after parse device tree, name=stty_nr, dst=1, channel=6, ringnr=32, rxbuf_size=0x800, txbuf_size=0x800 \[ 15.149231\] sbuf_host_init: channel 1-6, offset = 0x0! \[ 15.149603\] smsg_ch_open: channel 1-6 send open msg! \[ 15.153342\] spipe_probe! \[ 15.153365\] spipe: after parse device tree, name=snv_nr, dst=1, channel=40, ringnr=1, rxbuf_size=0x1000, txbuf_size=0x40400 \[ 15.153380\] sbuf_host_init: channel 1-40, offset = 0x0! \[ 15.153683\] smsg_ch_open: channel 1-40 send open msg! \[ 15.154399\] spool: name=slog_nr, dst=1, channel=5, pre_cfg=0 \[ 15.154413\] spool: tx_num=0, tx_size=0, rx_num=32, rx_size=65536 \[ 15.154741\] smsg_ch_open: channel 1-5 send open msg! \[ 15.155410\] usbcore: registered new interface driver snd-usb-audio \[ 15.157843\] rk817-codec rk817-codec: DMA mask not set \[ 15.158302\] mmc2: SDHCI controller on fe310000.sdhci \[fe310000.sdhci\] using ADMA \[ 15.164548\] netem: version 1.3 \[ 15.164575\] u32 classifier \[ 15.164584\] input device check on \[ 15.164591\] Actions configured \[ 15.165567\] xt_time: kernel timezone is -0000 \[ 15.165693\] gre: GRE over IPv4 demultiplexor driver \[ 15.165706\] IPv4 over IPsec tunneling driver \[ 15.166458\] Initializing XFRM netlink socket \[ 15.166502\] IPsec XFRM device driver \[ 15.166875\] NET: Registered protocol family 10 \[ 15.167948\] Segment Routing with IPv6 \[ 15.168049\] mip6: Mobile IPv6 \[ 15.168839\] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver \[ 15.169658\] NET: Registered protocol family 17 \[ 15.169691\] NET: Registered protocol family 15 \[ 15.169759\] Bridge firewalling registered \[ 15.169810\] can: controller area network core \[ 15.169861\] NET: Registered protocol family 29 \[ 15.169872\] can: raw protocol \[ 15.169885\] can: broadcast manager protocol \[ 15.169901\] can: netlink gateway - max_hops=1 \[ 15.170290\] Bluetooth: RFCOMM TTY layer initialized \[ 15.170311\] Bluetooth: RFCOMM socket layer initialized \[ 15.170352\] Bluetooth: RFCOMM ver 1.11 \[ 15.170371\] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 \[ 15.170380\] Bluetooth: BNEP filters: protocol multicast \[ 15.170393\] Bluetooth: BNEP socket layer initialized \[ 15.170403\] Bluetooth: HIDP (Human Interface Emulation) ver 1.2 \[ 15.170414\] Bluetooth: HIDP socket layer initialized \[ 15.170441\] l2tp_core: L2TP core driver, V2.0 \[ 15.170457\] l2tp_ppp: PPPoL2TP kernel driver, V2.0 \[ 15.171705\] gc2093 2-0037: driver version: 00.01.02 \[ 15.171853\] gc2093 2-0037: Failed to get pwdn-gpios \[ 15.171900\] gc2093 2-0037: supply dovdd not found, using dummy regulator \[ 15.172069\] gc2093 2-0037: supply avdd not found, using dummy regulator \[ 15.172128\] gc2093 2-0037: supply dvdd not found, using dummy regulator \[ 15.191835\] gc2093 2-0037: i2c read failed at addr: 3f0 \[ 15.192101\] gc2093 2-0037: i2c read failed at addr: 3f1 \[ 15.192115\] gc2093 2-0037: Failed to read sensor id, (-6) \[ 15.193533\] registered taskstats version 1 \[ 15.193559\] Loading compiled-in X.509 certificates \[ 15.193742\] Key type .fscrypt registered \[ 15.193757\] Key type fscrypt-provisioning registered \[ 15.194054\] pstore: Using crash dump compression: deflate \[ 15.195321\] rga: rga2, irq = 31, match scheduler \[ 15.195957\] rga: rga2 hardware loaded successfully, hw_version:3.2.63318. \[ 15.195995\] rga: rga2 probe successfully \[ 15.196377\] rga_iommu: IOMMU binding successfully, default mapping core\[0x4
15.196704\] rga: Module initialized. v1.2.27 \[ 15.200809\] mmc2: Host Software Queue enabled \[ 15.200862\] mmc2: new HS200 MMC card at address 0001 \[ 15.201793\] mmcblk2: mmc2:0001 SPeMMC 29.0 GiB \[ 15.202072\] mmcblk2boot0: mmc2:0001 SPeMMC partition 1 4.00 MiB \[ 15.202325\] mmcblk2boot1: mmc2:0001 SPeMMC partition 2 4.00 MiB \[ 15.202692\] mmcblk2rpmb: mmc2:0001 SPeMMC partition 3 4.00 MiB, chardev (235:0) \[ 15.207131\] mmcblk2: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 \[ 15.277649\] vendor storage:20190527 ret = 0 \[ 15.345277\] mmc_host mmc3: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0) \[ 15.359049\] mpp_rkvenc fdf40000.rkvenc: Adding to iommu group 5 \[ 15.359322\] mpp_rkvenc fdf40000.rkvenc: probing start \[ 15.359903\] mpp_rkvenc fdf40000.rkvenc: bin=0 \[ 15.359924\] mpp_rkvenc fdf40000.rkvenc: Failed to get leakage \[ 15.359978\] mpp_rkvenc fdf40000.rkvenc: pvtm = 88110, from nvmem \[ 15.359995\] mpp_rkvenc fdf40000.rkvenc: pvtm-volt-sel=1 \[ 15.360254\] mpp_rkvenc fdf40000.rkvenc: avs=0 \[ 15.360394\] mpp_rkvenc fdf40000.rkvenc: failed to find power_model node \[ 15.360408\] mpp_rkvenc fdf40000.rkvenc: failed to initialize power model \[ 15.360418\] mpp_rkvenc fdf40000.rkvenc: failed to get dynamic-coefficient \[ 15.361205\] mpp_rkvenc fdf40000.rkvenc: probing finish \[ 15.361708\] mpp_rkvdec2 fdf80200.rkvdec: Adding to iommu group 6 \[ 15.361960\] mpp_rkvdec2 fdf80200.rkvdec: rkvdec, probing start \[ 15.362326\] mpp_rkvdec2 fdf80200.rkvdec: shared_niu_a is not found! \[ 15.362340\] rkvdec2_init:1022: No niu aclk reset resource define \[ 15.362352\] mpp_rkvdec2 fdf80200.rkvdec: shared_niu_h is not found! \[ 15.362360\] rkvdec2_init:1025: No niu hclk reset resource define \[ 15.362601\] mpp_rkvdec2 fdf80200.rkvdec: bin=0 \[ 15.362706\] mpp_rkvdec2 fdf80200.rkvdec: leakage=46 \[ 15.362722\] mpp_rkvdec2 fdf80200.rkvdec: leakage-volt-sel=0 \[ 15.362763\] mpp_rkvdec2 fdf80200.rkvdec: pvtm = 88110, from nvmem \[ 15.362778\] mpp_rkvdec2 fdf80200.rkvdec: pvtm-volt-sel=1 \[ 15.363005\] mpp_rkvdec2 fdf80200.rkvdec: avs=0 \[ 15.363151\] mpp_rkvdec2 fdf80200.rkvdec: failed to find power_model node \[ 15.363164\] mpp_rkvdec2 fdf80200.rkvdec: failed to initialize power model \[ 15.363175\] mpp_rkvdec2 fdf80200.rkvdec: failed to get dynamic-coefficient \[ 15.363306\] mpp_rkvdec2 fdf80200.rkvdec: sram_start 0x00000000fdcc0000 \[ 15.363319\] mpp_rkvdec2 fdf80200.rkvdec: rcb_iova 0x0000000010000000 \[ 15.363328\] mpp_rkvdec2 fdf80200.rkvdec: sram_size 45056 \[ 15.363337\] mpp_rkvdec2 fdf80200.rkvdec: rcb_size 65536 \[ 15.363347\] mpp_rkvdec2 fdf80200.rkvdec: min_width 512 \[ 15.363413\] mpp_rkvdec2 fdf80200.rkvdec: link mode probe finish \[ 15.363493\] mpp_rkvdec2 fdf80200.rkvdec: probing finish \[ 15.365053\] \[BT_RFKILL\]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 142. \[ 15.365098\] \[BT_RFKILL\]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 133. \[ 15.365116\] \[BT_RFKILL\]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 134. \[ 15.365133\] \[BT_RFKILL\]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 137. \[ 15.365139\] mali fde60000.gpu: Kernel DDK version g18p0-01eac0 \[ 15.365214\] \[BT_RFKILL\]: Request irq for bt wakeup host \[ 15.365329\] \[BT_RFKILL\]: \*\* disable irq \[ 15.365451\] \[BT_RFKILL\]: bt_default device registered. \[ 15.365729\] mali fde60000.gpu: bin=0 \[ 15.365778\] mali fde60000.gpu: leakage=6 \[ 15.365821\] mali fde60000.gpu: pvtm = 88110, from nvmem \[ 15.365841\] mali fde60000.gpu: pvtm-volt-sel=2 \[ 15.365860\] mali fde60000.gpu: soc version=0, speed=2 \[ 15.365926\] rockchip-iodomain fdc20000.syscon:io-domains: pmuio2(3300000 uV) supplied by vcc3v3_pmu \[ 15.366077\] rockchip-iodomain fdc20000.syscon:io-domains: vccio1(3000000 uV) supplied by vccio_acodec \[ 15.366270\] rockchip-iodomain fdc20000.syscon:io-domains: vccio3(3300000 uV) supplied by vccio_sd \[ 15.366420\] rockchip-iodomain fdc20000.syscon:io-domains: vccio4(3300000 uV) supplied by vcc_3v3 \[ 15.366503\] rockchip-iodomain fdc20000.syscon:io-domains: vccio5(3300000 uV) supplied by vcc_3v3 \[ 15.366518\] mali fde60000.gpu: avs=0 \[ 15.366552\] W : \[File\] : drivers/gpu/arm/bifrost/platform/rk/mali_kbase_config_rk.c; \[Line\] : 143; \[Func\] : kbase_platform_rk_init(); power-off-delay-ms not available. \[ 15.366655\] rockchip-iodomain fdc20000.syscon:io-domains: vccio6(1800000 uV) supplied by vcc_1v8 \[ 15.366737\] rockchip-iodomain fdc20000.syscon:io-domains: vccio7(3300000 uV) supplied by vcc_3v3 \[ 15.367187\] mali fde60000.gpu: GPU identified as 0x2 arch 7.4.0 r1p0 status 0 \[ 15.367273\] mali fde60000.gpu: No priority control manager is configured \[ 15.367604\] mali fde60000.gpu: No memory group manager is configured \[ 15.369180\] mali fde60000.gpu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0 \[ 15.370904\] mali fde60000.gpu: Probed as mali0 \[ 15.372074\] rockchip-vop2 fe040000.vop: \[drm:vop2_bind\] vp0 assign plane mask: 0x2a, primary plane phy id: 5 \[ 15.372102\] rockchip-vop2 fe040000.vop: \[drm:vop2_bind\] vp1 assign plane mask: 0x15, primary plane phy id: 4 \[ 15.372115\] rockchip-vop2 fe040000.vop: \[drm:vop2_bind\] vp2 assign plane mask: 0x0, primary plane phy id: -1 \[ 15.372937\] rockchip-drm display-subsystem: bound fe040000.vop (ops vop2_component_ops) \[ 15.373249\] dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY) \[ 15.374542\] dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver \[ 15.375286\] dwhdmi-rockchip fe0a0000.hdmi: IRQ index 1 not found \[ 15.376416\] input: hdmi_cec_key as /devices/platform/fe0a0000.hdmi/dw-hdmi-cec.3.auto/input/input3 \[ 15.377432\] rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops dw_hdmi_rockchip_ops) \[ 15.377610\] rockchip-drm display-subsystem: bound fe060000.dsi (ops dw_mipi_dsi_rockchip_ops) \[ 15.378969\] rockchip-drm display-subsystem: route-hdmi: failed to get logo,offset \[ 15.395012\] mmc3: queuing unknown CIS tuple 0x80 (2 bytes) \[ 15.397031\] mmc3: queuing unknown CIS tuple 0x80 (3 bytes) \[ 15.398920\] mmc3: queuing unknown CIS tuple 0x80 (3 bytes) \[ 15.402324\] mmc3: queuing unknown CIS tuple 0x80 (7 bytes) \[ 15.406187\] mmc3: queuing unknown CIS tuple 0x81 (9 bytes) \[ 15.447247\] rockchip-drm display-subsystem: \[drm\] fb0: rockchipdrmfb frame buffer device \[ 15.448308\] \[drm\] Initialized rockchip 3.0.0 20140818 for display-subsystem on minor 0 \[ 15.449102\] input: adc-keys as /devices/platform/adc-keys/input/input4 \[ 15.454111\] rk817-codec rk817-codec: rk817_probe: chip_name:0x80, chip_ver:0x95 \[ 15.467245\] mmc_host mmc3: Bus speed (slot 0) = 148500000Hz (slot req 150000000Hz, actual 148500000HZ div = 0) \[ 15.470564\] rk808-rtc rk808-rtc: registered as rtc0 \[ 15.472426\] rk808-rtc rk808-rtc: setting system clock to 2017-08-04T09:00:16 UTC (1501837216) \[ 15.475051\] rockchip_headset rk-headset: Can not read property headset_gpio \[ 15.475123\] rockchip_headset: probe of rk-headset failed with error -2 \[ 15.475811\] RKNPU fde40000.npu: Adding to iommu group 0 \[ 15.476456\] RKNPU fde40000.npu: RKNPU: rknpu iommu is enabled, using iommu mode \[ 15.476758\] RKNPU fde40000.npu: can't request region for resource \[mem 0xfde40000-0xfde4ffff
15.477388\] \[drm\] Initialized rknpu 0.9.2 20231018 for fde40000.npu on minor 1 \[ 15.478035\] RKNPU fde40000.npu: bin=0 \[ 15.478082\] RKNPU fde40000.npu: leakage=3 \[ 15.478125\] RKNPU fde40000.npu: pvtm = 88110, from nvmem \[ 15.478145\] RKNPU fde40000.npu: pvtm-volt-sel=2 \[ 15.478191\] RKNPU fde40000.npu: soc version=0, speed=2 \[ 15.478919\] RKNPU fde40000.npu: avs=0 \[ 15.479128\] RKNPU fde40000.npu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0 \[ 15.479615\] RKNPU fde40000.npu: failed to find power_model node \[ 15.479628\] RKNPU fde40000.npu: RKNPU: failed to initialize power model \[ 15.479639\] RKNPU fde40000.npu: RKNPU: failed to get dynamic-coefficient \[ 15.480958\] cfg80211: Loading compiled-in X.509 certificates for regulatory database \[ 15.482012\] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' \[ 15.482167\] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2 \[ 15.482184\] cfg80211: failed to load regulatory.db \[ 15.483206\] rockchip-pm rockchip-suspend: not set pwm-regulator-config \[ 15.483743\] rockchip-suspend not set sleep-mode-config for mem-lite \[ 15.483753\] rockchip-suspend not set wakeup-config for mem-lite \[ 15.483764\] rockchip-suspend not set sleep-mode-config for mem-ultra \[ 15.483772\] rockchip-suspend not set wakeup-config for mem-ultra \[ 15.484997\] I : \[File\] : drivers/gpu/arm/mali400/mali/linux/mali_kernel_linux.c; \[Line\] : 410; \[Func\] : mali_module_init(); svn_rev_string_from_arm of this mali_ko is '', rk_ko_ver is '5', built at '17:49:57', on 'Jun 2 2025'. \[ 15.485479\] Mali: \[ 15.485482\] Mali device driver loaded \[ 15.485506\] rkisp rkisp-vir0: clear unready subdev num: 1 \[ 15.486105\] rkisp-vir0: update sensor failed \[ 15.486123\] ALSA device list: \[ 15.486133\] #0: rockchip,hdmi \[ 15.486142\] #1: rockchip,rk809-codec \[ 15.486761\] Freeing unused kernel memory: 1344K \[ 15.511657\] Run /init as init process \[ 15.511673\] with arguments: \[ 15.511676\] /init \[ 15.511679\] with environment: \[ 15.511681\] HOME=/ \[ 15.511684\] TERM=linux \[ 15.511686\] storagemedia=emmc \[ 15.511689\] buildvariant=userdebug \[ 15.514907\] init: init first stage started! \[ 15.515143\] init: Unable to open /lib/modules, skipping module loading. \[ 15.515522\] init: Copied ramdisk prop to /second_stage_resources/system/etc/ramdisk/build.prop \[ 15.516020\] init: \[libfs_mgr\]ReadFstabFromDt(): failed to read fstab from dt \[ 15.517873\] init: Using Android DT directory /proc/device-tree/firmware/android/ \[ 15.517960\] init: Failed to read vbmeta partitions. \[ 15.597429\] init: \[libfs_mgr\]superblock s_max_mnt_count:65535,/dev/block/by-name/metadata \[ 15.597583\] init: \[libfs_mgr\]Filesystem on /dev/block/by-name/metadata was not cleanly shutdown; state flags: 0x1, incompat feature flags: 0x46 \[ 15.598102\] EXT4-fs (mmcblk2p11): Ignoring removed nomblk_io_submit option \[ 15.601829\] dwmmc_rockchip fe000000.dwmmc: Successfully tuned phase to 105 \[ 15.605906\] mmc3: new ultra high speed SDR104 SDIO card at address 0001 \[ 15.607707\] EXT4-fs (mmcblk2p11): recovery complete \[ 15.607863\] EXT4-fs (mmcblk2p11): mounted filesystem with ordered data mode. Opts: errors=remount-ro,nomblk_io_submit\[ 15.608012\] init: \[libfs_mgr\]check_fs(): mount(/dev/block/by-name/metadata,/metadata,ext4)=0: Success \[ 15.610001\] init: \[libfs_mgr\]umount_retry(): unmount(/metadata) succeeded \[ 15.613133\] EXT4-fs (mmcblk2p11): mounted filesystem with ordered data mode. Opts: discard \[ 15.627282\] request_module fs-erofs succeeded, but still no fs? \[ 15.633975\] EXT4-fs (dm-0): mounted filesystem without journal. Opts: barrier=1 \[ 15.642530\] EXT4-fs (dm-3): mounted filesystem without journal. Opts: barrier=1 \[ 15.646253\] EXT4-fs (dm-5): mounted filesystem without journal. Opts: barrier=1 \[ 15.649907\] EXT4-fs (dm-1): mounted filesystem without journal. Opts: barrier=1 \[ 15.653571\] EXT4-fs (dm-2): mounted filesystem without journal. Opts: barrier=1 \[ 15.657243\] EXT4-fs (dm-4): mounted filesystem without journal. Opts: barrier=1 \[ 15.660806\] EXT4-fs (dm-6): mounted filesystem without journal. Opts: barrier=1 \[ 15.665210\] EXT4-fs (dm-7): mounted filesystem without journal. Opts: barrier=1 \[ 15.692251\] printk: init: 38 output lines suppressed due to ratelimiting \[ 15.854913\] init: Opening SELinux policy \[ 15.858051\] init: Falling back to standard signature check. TODO implementent support for fsverity SEPolicy. \[ 15.858215\] init: Error: Apex SEPolicy failed signature check \[ 15.858254\] init: Loading APEX Sepolicy from /system/etc/selinux/apex/SEPolicy.zip \[ 15.858315\] init: Failed to open package /system/etc/selinux/apex/SEPolicy.zip: No such file or directory \[ 15.868036\] init: Loading SELinux policy \[ 15.893594\] SELinux: Permission bpf in class capability2 not defined in policy. \[ 15.893628\] SELinux: Permission checkpoint_restore in class capability2 not defined in policy. \[ 15.893661\] SELinux: Permission bpf in class cap2_userns not defined in policy. \[ 15.893669\] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy. \[ 15.893811\] SELinux: the above unknown classes and permissions will be denied \[ 15.900727\] SELinux: policy capability network_peer_controls=1 \[ 15.900758\] SELinux: policy capability open_perms=1 \[ 15.900767\] SELinux: policy capability extended_socket_class=1 \[ 15.900775\] SELinux: policy capability always_check_network=0 \[ 15.900782\] SELinux: policy capability cgroup_seclabel=0 \[ 15.900790\] SELinux: policy capability nnp_nosuid_transition=1 \[ 15.900797\] SELinux: policy capability genfs_seclabel_symlinks=0 \[ 15.900804\] SELinux: policy capability ioctl_skip_cloexec=0 \[ 16.001617\] usb 1-1: new high-speed USB device number 2 using ehci-platform \[ 16.149898\] usb 1-1: New USB device found, idVendor=1d6b, idProduct=8030, bcdDevice= 3.10 \[ 16.149926\] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 \[ 16.149936\] usb 1-1: Product: Artosyn in HS Mode \[ 16.149945\] usb 1-1: Manufacturer: Artosyn \[ 16.149954\] usb 1-1: SerialNumber: 64DA50518032 \[ 16.151578\] usbhid 1-1:1.0: couldn't find an input interrupt endpoint \[ 16.181718\] audit: type=1403 audit(1501837217.206:2): auid=4294967295 ses=4294967295 lsm=selinux res=1 \[ 16.200102\] selinux: SELinux: Loaded file_contexts \[ 16.200146\] selinux: \[ 16.244540\] init: init second stage started! \[ 16.310025\] init: Using Android DT directory /proc/device-tree/firmware/android/ \[ 16.316574\] init: Couldn't load property file '/vendor/default.prop': open() failed: No such file or directory: No such file or directory \[ 16.328257\] init: Setting product property ro.product.brand to 'rockchip' (from ro.product.product.brand) \[ 16.328346\] init: Setting product property ro.product.device to 'rk3566_t' (from ro.product.product.device) \[ 16.328411\] init: Setting product property ro.product.manufacturer to 'rockchip' (from ro.product.product.manufacturer) \[ 16.328472\] init: Setting product property ro.product.model to 'rk3566_t' (from ro.product.product.model) \[ 16.328556\] init: Setting product property ro.product.name to 'rk3566_t' (from ro.product.product.name) \[ 16.328646\] init: Setting property 'ro.build.fingerprint' to 'rockchip/rk3566_t/rk3566_t:13/TQ3C.230805.001.B2/eng.rootro.20250602.175345:userdebug/release-keys' \[ 16.328728\] init: Setting property 'ro.product.cpu.abilist' to 'arm64-v8a,armeabi-v7a,armeabi' \[ 16.390406\] audit: type=1107 audit(1501837217.413:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { read } for property=persist.sys.adb_enable pid=0 uid=0 gid=0 scontext=u:r:vendor_init:s0 tcontext=u:object_r:system_prop:s0 tclass=file permissive=1' \[ 16.390950\] audit: type=1107 audit(1501837217.413:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { read } for property=flash.success pid=0 uid=0 gid=0 scontext=u:r:vendor_init:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=1' \[ 16.412546\] init: rpdzkj read rpdzkj_config dts,ro.surface_flinger.primary_display_orientation=90 \[ 16.413761\] init: rpdzkj read rpdzkj_config dts,ro.sf.csi.camera.rotation=0 \[ 16.414532\] init: rpdzkj read rpdzkj_config dts,ro.sf.usb.camera.rotation=0 \[ 16.415346\] init: rpdzkj read rpdzkj_config dts,ro.sf.csi.camera.facing=0 \[ 16.416294\] init: rpdzkj read rpdzkj_config dts,ro.sf.usb.camera.facing=0 \[ 16.417059\] init: rpdzkj read rpdzkj_config dts,ro.sf.lcd_density=320 \[ 16.417683\] init: rpdzkj read rpdzkj_config dts,persist.sys.timezone=Asia/Shanghai \[ 16.418401\] audit: type=1107 audit(1501837217.443:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { set } for property=persist.sys.timezone pid=151 uid=0 gid=0 scontext=u:r:vendor_init:s0 tcontext=u:object_r:exported_system_prop:s0 tclass=property_service permissive=1' \[ 16.418804\] init: rpdzkj read rpdzkj_config dts,ro.rpdzkj.no.statusbar=false \[ 16.419432\] init: rpdzkj read rpdzkj_config dts,rpdzkj.default.launcher=true \[ 16.420023\] init: rpdzkj read rpdzkj_config dts,rpdzkj.has.root=true \[ 16.466336\] cgroup: Unknown subsys name 'schedtune' \[ 16.517553\] linkerconfig: Unable to access VNDK APEX at path: /apex/com.android.vndk.v33: No such file or directory \[ 16.517674\] linkerconfig: Unable to access VNDK APEX at path: /apex/com.android.vndk.v33: No such file or directory \[ 16.569975\] ueventd: ueventd started! \[ 16.575401\] selinux: SELinux: Loaded file_contexts \[ 16.575447\] selinux: \[ 16.576283\] ueventd: Parsing file /system/etc/ueventd.rc... \[ 16.577225\] ueventd: Added '/vendor/etc/ueventd.rc' to import list \[ 16.577285\] ueventd: Added '/odm/etc/ueventd.rc' to import list \[ 16.578068\] ueventd: Parsing file /vendor/etc/ueventd.rc... \[ 16.580150\] ueventd: Parsing file /odm/etc/ueventd.rc... \[ 16.580263\] ueventd: Unable to read config file '/odm/etc/ueventd.rc': open() failed: No such file or directory \[ 16.617380\] apexd: Bootstrap subcommand detected \[ 16.618500\] apexd: ActivateFlattenedApex \[ 16.618551\] apexd: Scanning /system/apex \[ 16.620424\] apexd: Bind mounting /system/apex/com.android.adbd onto /apex/com.android.adbd \[ 16.621551\] apexd: Bind mounting /system/apex/com.android.adservices onto /apex/com.android.adservices \[ 16.622653\] apexd: Bind mounting /system/apex/com.android.appsearch onto /apex/com.android.appsearch \[ 16.623732\] apexd: Bind mounting /system/apex/com.android.art onto /apex/com.android.art \[ 16.624887\] apexd: Bind mounting /system/apex/com.android.btservices onto /apex/com.android.btservices \[ 16.626174\] apexd: Bind mounting /system/apex/com.android.conscrypt onto /apex/com.android.conscrypt \[ 16.627312\] apexd: Bind mounting /system/apex/com.android.extservices onto /apex/com.android.extservices \[ 16.662898\] printk: apexd: 25 output lines suppressed due to ratelimiting \[ 16.781062\] audit: type=1400 audit(1501837217.803:6): avc: denied { mounton } for pid=1 comm="init" path="/sys/kernel/debug/tracing" dev="debugfs" ino=285 scontext=u:r:init:s0 tcontext=u:object_r:debugfs_tracing_debug:s0 tclass=dir permissive=1 \[ 16.793113\] audit: type=1400 audit(1501837217.816:7): avc: denied { getattr } for pid=151 comm="init" path="/sys/kernel/debug/tracing/trace_marker" dev="tracefs" ino=9097 scontext=u:r:vendor_init:s0 tcontext=u:object_r:debugfs_trace_marker:s0 tclass=file permissive=1 \[ 17.829767\] ueventd: Coldboot took 1.248 seconds \[ 17.958905\] Registered swp emulation handler \[ 18.082179\] logd.auditd: start \[ 18.082235\] logd.klogd: 4037401780 \[ 18.098332\] logd: Loaded bug_map file: /system_ext/etc/selinux/bug_map \[ 18.098682\] logd: Loaded bug_map file: /vendor/etc/selinux/selinux_denial_metadata \[ 18.099567\] logd: Loaded bug_map file: /system/etc/selinux/bug_map \[ 18.285320\] EXT4-fs (mmcblk2p10): Ignoring removed nomblk_io_submit option \[ 18.291099\] EXT4-fs (mmcblk2p10): recovery complete \[ 18.291297\] EXT4-fs (mmcblk2p10): mounted filesystem with ordered data mode. Opts: errors=remount-ro,nomblk_io_submit\[ 18.342574\] e2fsck: e2fsck 1.46.2 (28-Feb-2021) \[ 18.348255\] e2fsck: Pass 1: Checking inodes, blocks, and sizes \[ 18.351596\] e2fsck: Pass 2: Checking directory structure \[ 18.353656\] e2fsck: Pass 3: Checking directory connectivity \[ 18.353944\] e2fsck: Pass 4: Checking reference counts \[ 18.361030\] e2fsck: Pass 5: Checking group summary information \[ 18.383711\] e2fsck: /dev/block/by-name/cache: 18/98304 files (0.0% non-contiguous), 16421/98304 blocks \[ 18.390663\] EXT4-fs (mmcblk2p10): mounted filesystem with ordered data mode. Opts: noauto_da_alloc,discard \[ 18.511683\] PELT half life is set to 8ms \[ 18.571963\] type=1400 audit(1501837219.593:8): avc: denied { write } for comm="tee-supplicant" name="property_service" dev="tmpfs" ino=337 scontext=u:r:tee:s0 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=1 \[ 18.572249\] type=1400 audit(1501837219.593:9): avc: denied { connectto } for comm="tee-supplicant" path="/dev/socket/property_service" scontext=u:r:tee:s0 tcontext=u:r:init:s0 tclass=unix_stream_socket permissive=1 \[ 18.572474\] type=1107 audit(1501837219.593:10): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { set } for property=vendor.security.tee_supplicant pid=205 uid=0 gid=0 scontext=u:r:tee:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=property_service permissive=1' \[ 18.687789\] vdc: Waited 0ms for vold \[ 18.689465\] Checkpoint: No magic \[ 18.690611\] vdc: Command: checkpoint restoreCheckpoint /dev/block/by-name/userdata Failed: Status(-8, EX_SERVICE_SPECIFIC): '22: No magic' \[ 18.737631\] vdc: Waited 0ms for vold \[ 18.745174\] EXT4-fs (mmcblk2p15): Ignoring removed nomblk_io_submit option \[ 18.745224\] EXT4-fs (mmcblk2p15): Using encoding defined by superblock: utf8-12.1.0 with flags 0x0 \[ 18.834458\] type=1400 audit(1501837219.856:11): avc: denied { read } for comm="android.hardwar" name="u:object_r:serialno_prop:s0" dev="tmpfs" ino=258 scontext=u:r:hal_keymint_default:s0 tcontext=u:object_r:serialno_prop:s0 tclass=file permissive=1 \[ 18.834696\] type=1400 audit(1501837219.856:12): avc: denied { open } for comm="android.hardwar" path="/dev/__properties__/u:object_r:serialno_prop:s0" dev="tmpfs" ino=258 scontext=u:r:hal_keymint_default:s0 tcontext=u:object_r:serialno_prop:s0 tclass=file permissive=1 \[ 19.563186\] EXT4-fs (mmcblk2p15): recovery complete \[ 19.563444\] EXT4-fs (mmcblk2p15): mounted filesystem with ordered data mode. Opts: errors=remount-ro,nomblk_io_submit\[ 19.637485\] e2fsck: e2fsck 1.46.2 (28-Feb-2021) \[ 19.693871\] e2fsck: Pass 1: Checking inodes, blocks, and sizes \[ 19.806353\] e2fsck: Pass 2: Checking directory structure \[ 20.122271\] EXT4-fs (mmcblk2p15): Using encoding defined by superblock: utf8-12.1.0 with flags 0x0 \[ 20.131406\] EXT4-fs (mmcblk2p15): mounted filesystem with ordered data mode. Opts: discard,noauto_da_alloc,data=ordered,user_xattr,barrier=1,resgid=1065 \[ 20.290713\] vdc: Waited 0ms for vold \[ 20.344474\] fscrypt: AES-256-CTS-CBC using implementation "cts-cbc-aes-ce" \[ 20.347456\] fscrypt: AES-256-XTS using implementation "xts-aes-ce" \[ 20.438067\] vold: keystore2 Keystore earlyBootEnded returned service specific error: -68 \[ 20.572994\] rockchip-vop2 fe040000.vop: \[drm:vop2_crtc_atomic_enable\] Update mode to 1920x1080p60, type: 11(if:800, flag:0x0) for vp0 dclk: 148500000 \[ 20.573047\] apexd: This device does not support updatable APEX. Exiting \[ 20.573139\] apexd: Marking APEXd as activated \[ 20.847791\] vdc: Waited 0ms for vold \[ 21.123888\] apexd: This device does not support updatable APEX. Exiting \[ 21.123974\] apexd: Marking APEXd as ready \[ 21.248503\] init: Service 'exec 12 (/system/bin/clean_scratch_files)' (pid 287) exited with status 0 oneshot service took 0.054000 seconds in background \[ 21.248622\] init: Sending signal 9 to service 'exec 12 (/system/bin/clean_scratch_files)' (pid 287) process group... \[ 21.248928\] libprocessgroup: Successfully killed process cgroup uid 0 pid 287 in 0ms \[ 21.252052\] init: Service 'exec 13 (/system/bin/recovery-persist)' (pid 289) exited with status 0 oneshot service took 0.031000 seconds in background \[ 21.252124\] init: Sending signal 9 to service 'exec 13 (/system/bin/recovery-persist)' (pid 289) process group... \[ 21.252364\] libprocessgroup: Successfully killed process cgroup uid 1000 pid 289 in 0ms \[ 21.273287\] LibBpfLoader: Loading critical for tethering ELF object /apex/com.android.tethering/etc/bpf/offload.o with license Apache 2.0 \[ 21.273434\] LibBpfLoader: Section bpfloader_min_ver value is 2 \[0x2
21.273577\] LibBpfLoader: Section bpfloader_max_ver value is 65536 \[0x10000
21.273705\] LibBpfLoader: Section size_of_bpf_map_def value is 116 \[0x74
21.273828\] LibBpfLoader: Section size_of_bpf_prog_def value is 92 \[0x5c
21.273858\] LibBpfLoader: BpfLoader version 0x00013 processing ELF object /apex/com.android.tethering/etc/bpf/offload.o with ver \[0x00002,0x10000) \[ 21.275495\] init: Service 'dump_kernel_panic' (pid 288) exited with status 0 oneshot service took 0.074000 seconds in background \[ 21.275584\] init: Sending signal 9 to service 'dump_kernel_panic' (pid 288) process group... \[ 21.275875\] libprocessgroup: Successfully killed process cgroup uid 0 pid 288 in 0ms \[ 21.280937\] LibBpfLoader: Loaded code section 3 (schedcls_tether_downstream6_ether) \[ 21.281715\] LibBpfLoader: Loaded relo section 3 (.relschedcls/tether_downstream6_ether) \[ 21.281755\] LibBpfLoader: Adding section 3 to cs list \[ 21.281957\] LibBpfLoader: Loaded code section 5 (schedcls_tether_upstream6_ether) \[ 21.660308\] printk: bpfloader: 1683 output lines suppressed due to ratelimiting \[ 21.660794\] init: Service 'bpfloader' (pid 290) exited with status 0 waiting took 0.424000 seconds \[ 21.715815\] init: Verified that /data/nfc has the encryption policy 96fe96351d96576d3a44b0eb74fb656d v2 modes 1/4 flags 0x2 \[ 21.716339\] init: Inferred action different from explicit one, expected 0 but got 2 \[ 21.716862\] init: Verified that /data/nfc/param has the encryption policy 96fe96351d96576d3a44b0eb74fb656d v2 modes 1/4 flags 0x2 \[ 21.743762\] file system registered \[ 21.747082\] using random self ethernet address \[ 21.747113\] using random host ethernet address \[ 21.818803\] using random self ethernet address \[ 21.818863\] using random host ethernet address \[ 22.380776\] healthd: BatteryPresentPath not found \[ 22.380865\] healthd: BatteryTechnologyPath not found \[ 22.380885\] healthd: BatteryCycleCountPath not found \[ 22.415553\] healthd: battery l=100 v=7904 t=18.8 h=2 st=5 c=-7000 fc=5000000 chg= \[ 22.883310\] bcmdhd: loading out-of-tree module taints kernel. \[ 22.918994\] \[dhd\] _dhd_module_init: in Dongle Host Driver, version 101.10.591.33.20 (20230621-1)(gdbe2bd9)\\x0a/home/rootroot/Android13.0/external/wifi_driver/bcmdhd compiled on Jun 2 2025 at 17:52:12\\x0a \[ 22.919043\] \[dhd\] ANDROID_VERSION = 13 \[ 22.919054\] \[dhd\] STATIC-MSG) dhd_static_buf_init : 101.10.361.31 (wlan=r892223-20230427-1) \[ 22.919176\] \[dhd\] STATIC-MSG) dhd_init_wlan_mem : prealloc ok for index 0: 6624256(6469K) \[ 22.919193\] \[WLAN_RFKILL\]: rockchip_wifi_get_oob_irq: Enter \[ 22.919283\] \[dhd\] dhd_wlan_init_gpio: WL_HOST_WAKE=-1, oob_irq=115, oob_irq_flags=0x4 \[ 22.919294\] \[dhd\] dhd_wlan_init_gpio: WL_REG_ON=-1 \[ 22.919303\] \[dhd\] dhd_wifi_platform_load: Enter \[ 22.919344\] \[dhd\] Power-up adapter 'DHD generic adapter' \[ 22.919568\] \[dhd\] dummy_probe: enter \[ 22.920253\] \[dhd\] dummy_probe: enter \[ 22.921023\] \[dhd\] wifi_platform_set_power = 1, delay: 200 msec \[ 22.921053\] \[dhd\] ======== PULL WL_REG_ON(-1) HIGH! ======== \[ 22.921062\] \[WLAN_RFKILL\]: rockchip_wifi_power: 1 \[ 22.921073\] \[WLAN_RFKILL\]: rockchip_wifi_power: toggle = false \[ 22.921082\] \[WLAN_RFKILL\]: wifi turn on power \[GPIO-1-0
23.097288\] type=1400 audit(1501837224.120:55): avc: denied { read } for comm="ExtCamHotPlug" name="u:object_r:default_prop:s0" dev="tmpfs" ino=134 scontext=u:r:hal_camera_default:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=1 \[ 23.097506\] type=1400 audit(1501837224.120:56): avc: denied { open } for comm="ExtCamHotPlug" path="/dev/__properties__/u:object_r:default_prop:s0" dev="tmpfs" ino=134 scontext=u:r:hal_camera_default:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=1 \[ 23.097627\] type=1400 audit(1501837224.120:57): avc: denied { getattr } for comm="ExtCamHotPlug" path="/dev/__properties__/u:object_r:default_prop:s0" dev="tmpfs" ino=134 scontext=u:r:hal_camera_default:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=1 \[ 23.097738\] type=1400 audit(1501837224.120:58): avc: denied { map } for comm="ExtCamHotPlug" path="/dev/__properties__/u:object_r:default_prop:s0" dev="tmpfs" ino=134 scontext=u:r:hal_camera_default:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=1 \[ 23.124943\] \[dhd\] wifi_platform_set_power = 1, sleep done: 200 msec \[ 23.124983\] \[dhd\] wifi_platform_bus_enumerate device present 1 \[ 23.124994\] \[dhd\] ======== Card detection to detect SDIO card! ======== \[ 23.141857\] rkisp-vir0: rkisp_enum_frameintervals Not active sensor \[ 23.142122\] rkisp-vir0: rkisp_enum_frameintervals Not active sensor \[ 23.142604\] rkisp-vir0: rkisp_enum_frameintervals Not active sensor \[ 23.142849\] rkisp-vir0: rkisp_enum_frameintervals Not active sensor \[ 23.148673\] \[dhd\] bcmsdh_register: register client driver \[ 23.148938\] \[dhd\] bcmsdh_sdmmc_probe: Enter num=1 \[ 23.149250\] \[dhd\] bcmsdh_sdmmc_probe: Enter num=2 \[ 23.149271\] \[dhd\] bus num (host idx)=3, slot num (rca)=1 \[ 23.149282\] \[dhd\] found adapter info 'DHD generic adapter' \[ 23.149295\] \[dhd\] STATIC-MSG) dhd_wlan_mem_prealloc : section 3, size 139264 \[ 23.149336\] \[dhd\] succeed to alloc static buf \[ 23.149344\] \[dhd\] STATIC-MSG) dhd_wlan_mem_prealloc : section 4, size 0 \[ 23.149399\] \[dhd\] sdioh_attach: set sd_f2_blocksize 256 \[ 23.149431\] \[dhd\] sdioh_attach: sd clock rate = 150000000 \[ 23.149877\] \[dhd\] dhdsdio_probe : no mutex held \[ 23.149896\] \[dhd\] dhdsdio_probe : set mutex lock \[ 23.150002\] \[dhd\] F1 signature read @0x18000000=0x15294345 \[ 23.152981\] \[dhd\] F1 signature OK, socitype:0x1 chip:0x4345 rev:0x9 pkg:0x2 \[ 23.154651\] \[dhd\] DHD: dongle ram size is set to 819200(orig 819200) at 0x198000 \[ 23.154736\] \[dhd\] STATIC-MSG) dhd_wlan_mem_prealloc : section 7, size 42712 \[ 23.154771\] \[dhd\] dhd_conf_set_chiprev : devid=0xa9bf, chip=0x4345, chiprev=9 \[ 23.154903\] \[dhd\] STATIC-MSG) dhd_wlan_mem_prealloc : section 0, size 10320 \[ 23.156682\] \[dhd\] STATIC-MSG) dhd_wlan_mem_prealloc : section 5, size 65536 \[ 23.171665\] \[dhd\] STATIC-MSG) dhd_wlan_mem_prealloc : section 19, size 65720 \[ 23.171746\] \[dhd\] dhd_log_dump_init: kernel log buf size = 512KB; logdump_prsrv_tailsize = 80KB; limit prsrv tail size to = 76KB \[ 23.171762\] \[dhd\] STATIC-MSG) dhd_wlan_mem_prealloc : section 15, size 4194304 \[ 23.172835\] \[dhd\] STATIC-MSG) dhd_wlan_mem_prealloc : section 16, size 8192 \[ 23.173161\] \[dhd\] dhd_attach(): thread:dhd_watchdog_thread:190 started \[ 23.191666\] \[dhd\] dhd_attach(): thread:dhd_dpc:191 started \[ 23.192402\] \[dhd\] dhd_attach(): thread:dhd_rxf:192 started \[ 23.192448\] \[dhd\] dhd_deferred_work_init: work queue initialized \[ 23.192468\] \[dhd\] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -\> mode 2 \[ 23.192478\] \[dhd\] dhd_tcpack_suppress_set: TCPACK_INFO_MAXNUM=40, TCPDATA_INFO_MAXNUM=40 \[ 23.192578\] \[dhd\] dhd_get_memdump_info: MEMDUMP ENABLED = 3 \[ 23.192606\] \[dhd\] sdioh_cis_read: func_cis_ptr\[0\]=0x10ac \[ 23.200262\] \[dhd\] STATIC-MSG) dhd_wlan_mem_prealloc : section 1, size 10300 \[ 23.200297\] \[dhd\] STATIC-MSG) dhd_wlan_mem_prealloc : section 2, size 65536 \[ 23.200372\] \[dhd\] dhdsdio_probe_init: making DHD_BUS_DOWN \[ 23.200502\] \[dhd\] Dongle Host Driver, version 101.10.591.33.20 (20230621-1)(gdbe2bd9)\\x0a/home/rootroot/Android13.0/external/wifi_driver/bcmdhd compiled on Jun 2 2025 at 17:52:12\\x0a \[ 23.209035\] \[dhd\] Register interface \[wlan0\] MAC: 54:78:c9:3e:89:96\\x0a \[ 23.209262\] \[dhd\] \[wlan0\] wl_android_wifi_off : g_wifi_on=1 force_off=1 \[ 23.209303\] \[dhd\] dhd_bus_devreset: == Power OFF == \[ 23.209508\] \[dhd\] dhd_bus_stop: making DHD_BUS_DOWN \[ 23.209556\] \[dhd\] bcmsdh_oob_intr_unregister: Enter \[ 23.209569\] \[dhd\] bcmsdh_oob_intr_unregister: irq is not registered \[ 23.209589\] \[dhd\] dhd_bus_devreset: making dhdpub up FALSE \[ 23.209601\] \[dhd\] dhd_txglom_enable: enable 0 \[ 23.209611\] \[dhd\] dhd_bus_devreset: making DHD_BUS_DOWN \[ 23.209661\] \[dhd\] wifi_platform_set_power = 0, delay: 0 msec \[ 23.209677\] \[dhd\] ======== PULL WL_REG_ON(-1) LOW! ======== \[ 23.210330\] \[dhd\] \[wlan0\] wl_android_wifi_off : out \[ 23.217658\] \[dhd\] Register interface \[wlan1\] MAC: 56:78:c9:3e:89:96\\x0a \[ 23.217698\] \[dhd\] wl_android_post_init: 0 \[ 23.217714\] \[dhd\] dhdsdio_probe : mutex is released. \[ 23.222032\] \[dhd\] _dhd_module_init: Exit err=0 \[ 23.360997\] type=1400 audit(1501837224.380:59): avc: denied { read } for comm="surfaceflinger" name="u:object_r:vendor_hwc_prop:s0" dev="tmpfs" ino=307 scontext=u:r:surfaceflinger:s0 tcontext=u:object_r:vendor_hwc_prop:s0 tclass=file permissive=1 \[ 23.361287\] type=1400 audit(1501837224.380:60): avc: denied { open } for comm="surfaceflinger" path="/dev/__properties__/u:object_r:vendor_hwc_prop:s0" dev="tmpfs" ino=307 scontext=u:r:surfaceflinger:s0 tcontext=u:object_r:vendor_hwc_prop:s0 tclass=file permissive=1 \[ 23.361465\] type=1400 audit(1501837224.380:61): avc: denied { getattr } for comm="surfaceflinger" path="/dev/__properties__/u:object_r:vendor_hwc_prop:s0" dev="tmpfs" ino=307 scontext=u:r:surfaceflinger:s0 tcontext=u:object_r:vendor_hwc_prop:s0 tclass=file permissive=1 \[ 23.361690\] type=1400 audit(1501837224.380:62): avc: denied { map } for comm="surfaceflinger" path="/dev/__properties__/u:object_r:vendor_hwc_prop:s0" dev="tmpfs" ino=307 scontext=u:r:surfaceflinger:s0 tcontext=u:object_r:vendor_hwc_prop:s0 tclass=file permissive=1 \[ 23.384679\] type=1400 audit(1501837224.403:63): avc: denied { read } for comm="rockchip.hardwa" name="u:object_r:default_prop:s0" dev="tmpfs" ino=134 scontext=u:r:hal_tv_input_default:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=1 \[ 23.392437\] type=1400 audit(1501837224.410:64): avc: denied { open } for comm="rockchip.hardwa" path="/dev/__properties__/u:object_r:default_prop:s0" dev="tmpfs" ino=134 scontext=u:r:hal_tv_input_default:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=1 \[ 23.563335\] read descriptors \[ 23.563382\] read strings \[ 24.722440\] read descriptors \[ 24.722512\] read strings \[ 25.017858\] dwc3 fcc00000.dwc3: device reset \[ 25.087123\] android_work: sent uevent USB_STATE=CONNECTED \[ 25.087312\] android_work: sent uevent USB_STATE=CONFIGURED \[ 26.862697\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 27.866384\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 28.867659\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 29.161090\] type=1400 audit(1501837230.183:127): avc: denied { read } for comm="main" name="libcutils.so" dev="dm-3" ino=1747 scontext=u:r:zygote:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=1 \[ 29.161658\] type=1400 audit(1501837230.183:128): avc: denied { open } for comm="main" path="/vendor/lib64/libcutils.so" dev="dm-3" ino=1747 scontext=u:r:zygote:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=1 \[ 29.162043\] type=1400 audit(1501837230.183:129): avc: denied { getattr } for comm="main" path="/vendor/lib64/libcutils.so" dev="dm-3" ino=1747 scontext=u:r:zygote:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=1 \[ 29.162369\] type=1400 audit(1501837230.183:130): avc: denied { map } for comm="main" path="/vendor/lib64/libcutils.so" dev="dm-3" ino=1747 scontext=u:r:zygote:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=1 \[ 29.166364\] type=1400 audit(1501837230.190:131): avc: denied { execute } for comm="main" path="/vendor/lib64/libcutils.so" dev="dm-3" ino=1747 scontext=u:r:zygote:s0 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=1 \[ 29.869100\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 30.869800\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 31.871124\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 32.573394\] type=1400 audit(1501837233.596:132): avc: denied { execute } for comm="sh" name="toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 32.573663\] type=1400 audit(1501837233.596:133): avc: denied { getattr } for comm="sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 32.575179\] type=1400 audit(1501837233.596:134): avc: denied { read open } for comm="sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 32.575674\] type=1400 audit(1501837233.596:135): avc: denied { execute_no_trans } for comm="sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 32.576839\] type=1400 audit(1501837233.600:136): avc: denied { map } for comm="sync" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 32.872319\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 33.873366\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 34.874206\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 35.660440\] healthd: battery l=100 v=7968 t=18.8 h=2 st=3 c=-7000 fc=5000000 chg= \[ 35.876693\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 36.868527\] Freeing drm_logo memory: 736K \[ 36.876233\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 37.712298\] dwc3 fcc00000.dwc3: device disconnect \[ 37.713076\] android_work: sent uevent USB_STATE=DISCONNECTED \[ 37.853967\] android_work: did not send uevent (0 0 0000000000000000) \[ 37.854540\] read descriptors \[ 37.854578\] read strings \[ 37.855713\] init: processing action (sys.usb.config=adb \&\& sys.usb.configfs=1 \&\& sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:21) \[ 37.857428\] init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb \&\& sys.usb.configfs=1 \&\& sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:23) took 0ms and failed: symlink() failed: File exists \[ 37.879217\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 38.460347\] android_work: did not send uevent (0 0 0000000000000000) \[ 38.876648\] type=1400 audit(1501837239.900:147): avc: denied { execute } for comm="sh" name="toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 38.876951\] type=1400 audit(1501837239.900:148): avc: denied { getattr } for comm="sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 38.878734\] type=1400 audit(1501837239.900:149): avc: denied { read open } for comm="sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 38.879814\] type=1400 audit(1501837239.903:150): avc: denied { execute_no_trans } for comm="sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 38.880007\] init: Control message: Could not find 'aidl/package_native' for ctl.interface_start from pid: 170 (/system/bin/servicemanager) \[ 38.882107\] type=1400 audit(1501837239.903:151): avc: denied { map } for comm="sync" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 39.065732\] init: service 'idmap2d' requested start, but it is already running (flags: 4) \[ 39.065817\] init: Control message: Processed ctl.start for 'idmap2d' from pid: 556 (system_server) \[ 39.259612\] healthd: battery l=100 v=7968 t=18.8 h=2 st=3 c=-7000 fc=5000000 chg= \[ 39.305969\] dwc3 fcc00000.dwc3: device reset \[ 39.312520\] healthd: battery l=100 v=7968 t=18.8 h=2 st=3 c=-7000 fc=5000000 chg= \[ 39.368752\] android_work: sent uevent USB_STATE=CONNECTED \[ 39.376447\] android_work: sent uevent USB_STATE=CONFIGURED \[ 39.773609\] type=1400 audit(1748858172.180:152): avc: denied { read } for comm="android.ui" name="uevent" dev="sysfs" ino=9557 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1 \[ 39.773893\] type=1400 audit(1748858172.180:153): avc: denied { open } for comm="android.ui" path="/sys/devices/platform/fe0a0000.hdmi/uevent" dev="sysfs" ino=9557 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1 \[ 39.774047\] type=1400 audit(1748858172.180:154): avc: denied { getattr } for comm="android.ui" path="/sys/devices/platform/fe0a0000.hdmi/uevent" dev="sysfs" ino=9557 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1 \[ 39.947956\] init: processing action (sys.sysctl.extra_free_kbytes=\*) from (/system/etc/init/hw/init.rc:1203) \[ 39.949080\] init: starting service 'exec 18 (/system/bin/extra_free_kbytes.sh 27000)'... \[ 39.960108\] init: SVC_EXEC service 'exec 18 (/system/bin/extra_free_kbytes.sh 27000)' pid 677 (uid 0 gid 0+0 context default) started; waiting... \[ 40.986235\] type=1400 audit(1748858173.390:155): avc: denied { execute } for comm="sh" name="toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 40.986717\] type=1400 audit(1748858173.390:156): avc: denied { getattr } for comm="sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 41.248440\] read descriptors \[ 41.249289\] read strings \[ 41.249508\] read descriptors \[ 41.249539\] read strings \[ 41.911476\] healthd: battery l=100 v=7896 t=18.8 h=2 st=3 c=-7000 fc=5000000 chg= \[ 42.037109\] rk_gmac-dwmac fe010000.ethernet eth0: no phy at addr -1 \[ 42.037261\] rk_gmac-dwmac fe010000.ethernet eth0: stmmac_open: Cannot attach to PHY (error: -19) \[ 45.282109\] type=1400 audit(1748858177.680:178): avc: denied { execute } for comm="sh" name="toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 45.282418\] type=1400 audit(1748858177.680:179): avc: denied { getattr } for comm="sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 45.283497\] type=1400 audit(1748858177.683:180): avc: denied { read open } for comm="sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 45.283887\] type=1400 audit(1748858177.683:181): avc: denied { execute_no_trans } for comm="sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 45.284048\] type=1400 audit(1748858177.683:182): avc: denied { map } for comm="sync" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:autosync:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 46.094895\] vcc3v3_lcd1_n: disabling \[ 46.619161\] type=1400 audit(1748858179.026:183): avc: denied { search } for comm="system_server" name="tethering" dev="bpf" ino=21598 scontext=u:r:system_server:s0 tcontext=u:object_r:fs_bpf_tethering:s0 tclass=dir permissive=1 \[ 46.646152\] type=1400 audit(1748858179.053:184): avc: denied { read } for comm="system_server" name="uevent" dev="sysfs" ino=9557 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1 \[ 46.647239\] type=1400 audit(1748858179.053:185): avc: denied { open } for comm="system_server" path="/sys/devices/platform/fe0a0000.hdmi/uevent" dev="sysfs" ino=9557 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1 \[ 46.647774\] type=1400 audit(1748858179.053:186): avc: denied { getattr } for comm="system_server" path="/sys/devices/platform/fe0a0000.hdmi/uevent" dev="sysfs" ino=9557 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1 \[ 46.682875\] type=1400 audit(1748858179.086:187): avc: denied { open } for comm="RenderThread" path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=305 scontext=u:r:system_app:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1 \[ 46.745140\] dwc3 fcc00000.dwc3: device disconnect \[ 46.746156\] android_work: sent uevent USB_STATE=DISCONNECTED \[ 46.884280\] android_work: did not send uevent (0 0 0000000000000000) \[ 46.885196\] read descriptors \[ 46.885242\] read strings \[ 46.886766\] init: processing action (sys.usb.config=adb \&\& sys.usb.configfs=1 \&\& sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:21) \[ 46.893716\] init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb \&\& sys.usb.configfs=1 \&\& sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:23) took 4ms and failed: symlink() failed: File exists \[ 47.367190\] android_work: did not send uevent (0 0 0000000000000000) \[ 48.136749\] dwc3 fcc00000.dwc3: device reset \[ 48.202487\] android_work: sent uevent USB_STATE=CONNECTED \[ 48.209975\] android_work: sent uevent USB_STATE=CONFIGURED \[ 49.118998\] init: Sending signal 9 to service 'idmap2d' (pid 435) process group... \[ 49.125005\] libprocessgroup: Successfully killed process cgroup uid 1000 pid 435 in 5ms \[ 49.131627\] init: Control message: Processed ctl.stop for 'idmap2d' from pid: 556 (system_server) \[ 49.132199\] init: Service 'idmap2d' (pid 435) received signal 9 \[ 50.933937\] binder: undelivered transaction 29767, process died. \[ 50.935237\] init: Service 'bootanim' (pid 214) exited with status 0 oneshot service took 32.299000 seconds in background \[ 50.935311\] init: Sending signal 9 to service 'bootanim' (pid 214) process group... \[ 50.935614\] libprocessgroup: Successfully killed process cgroup uid 1003 pid 214 in 0ms \[ 51.139598\] init: processing action (sys.boot_completed=1) from (/system/etc/init/hw/init.rc:1194) \[ 51.272196\] type=1400 audit(1748858183.676:202): avc: denied { map } for comm="getagpsdata.sh" path="/system/bin/sh" dev="dm-0" ino=1669 scontext=u:r:getagpsdata:s0 tcontext=u:object_r:shell_exec:s0 tclass=file permissive=1 \[ 51.275509\] type=1400 audit(1748858183.680:203): avc: denied { read } for comm="getagpsdata.sh" path="/system/bin/sh" dev="dm-0" ino=1669 scontext=u:r:getagpsdata:s0 tcontext=u:object_r:shell_exec:s0 tclass=file permissive=1 \[ 51.275717\] type=1400 audit(1748858183.680:204): avc: denied { execute } for comm="getagpsdata.sh" path="/system/bin/sh" dev="dm-0" ino=1669 scontext=u:r:getagpsdata:s0 tcontext=u:object_r:shell_exec:s0 tclass=file permissive=1 \[ 51.285760\] type=1400 audit(1748858183.683:205): avc: denied { getattr } for comm="getagpsdata.sh" path="/system/bin/sh" dev="dm-0" ino=1669 scontext=u:r:getagpsdata:s0 tcontext=u:object_r:shell_exec:s0 tclass=file permissive=1 \[ 51.351053\] type=1400 audit(1748858183.756:206): avc: denied { getattr } for comm="getagpsdata.sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:getagpsdata:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 51.351289\] type=1400 audit(1748858183.756:207): avc: denied { execute } for comm="getagpsdata.sh" name="toybox" dev="dm-0" ino=1721 scontext=u:r:getagpsdata:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 51.399176\] type=1400 audit(1748858183.793:208): avc: denied { read open } for comm="getagpsdata.sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:getagpsdata:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 51.399608\] type=1400 audit(1748858183.793:209): avc: denied { execute_no_trans } for comm="getagpsdata.sh" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:getagpsdata:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 51.399789\] type=1400 audit(1748858183.796:210): avc: denied { map } for comm="touch" path="/system/bin/toybox" dev="dm-0" ino=1721 scontext=u:r:getagpsdata:s0 tcontext=u:object_r:toolbox_exec:s0 tclass=file permissive=1 \[ 51.454725\] type=1400 audit(1748858183.860:211): avc: denied { dac_read_search } for comm="touch" capability=2 scontext=u:r:getagpsdata:s0 tcontext=u:r:getagpsdata:s0 tclass=capability permissive=1 \[ 51.499664\] audit: audit_lost=1 audit_rate_limit=5 audit_backlog_limit=64 \[ 51.499721\] audit: rate limit exceeded \[ 51.922276\] init: starting service 'simple_bugreportd'... \[ 51.929304\] init: Created socket '/dev/socket/dumpstate', mode 660, user 2000, group 1007 \[ 51.956952\] init: Control message: Processed ctl.start for 'simple_bugreportd' from pid: 556 (system_server) \[ 52.086989\] init: processing action (sys.boot_completed=1) from (/vendor/etc/init/init.tune_io.rc:12) \[ 52.136909\] init: processing action (persist.sys.zram_enabled=1 \&\& sys-boot-completed-set) from (/vendor/etc/init/hw/init.rk30board.rc:245) \[ 52.164603\] zram0: detected capacity change from 0 to 2044383232 \[ 52.273718\] mkswap: Swapspace size: 1996464k, UUID=014a832d-59fd-4267-8266-07c466e969e4 \[ 52.301749\] Adding 1996464k swap on /dev/block/zram0. Priority:-2 extents:1 across:1996464k SS \[ 52.302421\] init: Command 'swapon_all /vendor/etc/fstab.${ro.hardware}' action=persist.sys.zram_enabled=1 \&\& sys-boot-completed-set (/vendor/etc/init/hw/init.rk30board.rc:246) took 165ms and succeeded \[ 52.303599\] init: processing action (sys.user.0.ce_available=true) from (/system/etc/init/wifi.rc:21) \[ 52.308292\] selinux: SELinux: Skipping restorecon on directory(/data/misc_ce/0/apexdata/com.android.wifi) \[ 52.308353\] selinux: \[ 52.309426\] init: processing action (sys.boot_completed=1 \&\& sys.wifitracing.started=1 \&\& wifi.interface=\*) from (/system/etc/init/wifi.rc:98) \[ 53.018017\] audit: audit_lost=35 audit_rate_limit=5 audit_backlog_limit=64 \[ 53.018094\] audit: rate limit exceeded rk3566_t:/ # rk3566_t:/ # rk3566_t:/ # rk3566_t:/ # rk3566_t:/ # dmesg \| grep -i power \[ 14.194878\] thermal_sys: Registered thermal governor 'power_allocator' \[ 14.202665\] thermal thermal_zone1: power_allocator: sustainable_power will be estimated \[ 14.436978\] rockchip-pinctrl pinctrl: unable to find group for node gpiopower-pwr \[ 14.446568\] \[WLAN_RFKILL\]: wlan_platdata_parse_dt: enable wifi power control. \[ 14.446577\] \[WLAN_RFKILL\]: wlan_platdata_parse_dt: wifi power controled by gpio. \[ 14.446651\] \[WLAN_RFKILL\]: rfkill_set_wifi_bt_power: 1 \[ 14.579343\] pwm-backlight backlight: supply power not found, using dummy regulator \[ 15.024193\] rk817-battery rk817-battery: low_power_sleep missing! \[ 15.097395\] thermal thermal_zone2: power_allocator: sustainable_power will be estimated \[ 15.120246\] test_power_init: test power disabled \[ 15.139689\] rp_power prepare build 8 gpio \[ 15.139734\] rp_power request pwr_5v_3v3 \[ 15.139779\] rp_power request led \[ 15.139813\] rp_power request usb_pwr \[ 15.139847\] rp_power request usb_rst \[ 15.139987\] rp_power request spk_en \[ 15.140024\] rp_power request spk_mute \[ 15.140065\] rp_power request usb_mode \[ 15.140099\] rp_power request Equipment_EN \[ 15.140259\] input: gpio_event as /devices/platform/rp_power/input/input1 \[ 15.140620\] input: gpio_event as /devices/platform/rp_power/input/input2 \[ 15.360394\] mpp_rkvenc fdf40000.rkvenc: failed to find power_model node \[ 15.360408\] mpp_rkvenc fdf40000.rkvenc: failed to initialize power model \[ 15.363151\] mpp_rkvdec2 fdf80200.rkvdec: failed to find power_model node \[ 15.363164\] mpp_rkvdec2 fdf80200.rkvdec: failed to initialize power model \[ 15.366552\] W : \[File\] : drivers/gpu/arm/bifrost/platform/rk/mali_kbase_config_rk.c; \[Line\] : 143; \[Func\] : kbase_platform_rk_init(); power-off-delay-ms not available. \[ 15.479615\] RKNPU fde40000.npu: failed to find power_model node \[ 15.479628\] RKNPU fde40000.npu: RKNPU: failed to initialize power model \[ 22.919344\] \[dhd\] Power-up adapter 'DHD generic adapter' \[ 22.921023\] \[dhd\] wifi_platform_set_power = 1, delay: 200 msec \[ 22.921062\] \[WLAN_RFKILL\]: rockchip_wifi_power: 1 \[ 22.921073\] \[WLAN_RFKILL\]: rockchip_wifi_power: toggle = false \[ 22.921082\] \[WLAN_RFKILL\]: wifi turn on power \[GPIO-1-0
23.124943\] \[dhd\] wifi_platform_set_power = 1, sleep done: 200 msec \[ 23.209303\] \[dhd\] dhd_bus_devreset: == Power OFF == \[ 23.209661\] \[dhd\] wifi_platform_set_power = 0, delay: 0 msec rk3566_t:/ # rk3566_t:/ # rk3566_t:/ # rk3566_t:/ # rk3566_t:/ # rk3566_t:/ # rk3566_t:/ # cd /sys/class/thermal/ rk3566_t:/sys/class/thermal # rk3566_t:/sys/class/thermal # ls -l total 0 lrwxrwxrwx 1 root root 0 2025-06-02 18:01 cooling_device0 -\> ../../devices/virtual/thermal/cooling_device0 lrwxrwxrwx 1 root root 0 2017-08-04 17:00 thermal_zone0 -\> ../../devices/virtual/thermal/thermal_zone0 lrwxrwxrwx 1 root root 0 2017-08-04 17:00 thermal_zone1 -\> ../../devices/virtual/thermal/thermal_zone1 lrwxrwxrwx 1 root root 0 2017-08-04 17:00 thermal_zone2 -\> ../../devices/virtual/thermal/thermal_zone2 rk3566_t:/sys/class/thermal # rk3566_t:/sys/class/thermal # rk3566_t:/sys/class/thermal # cd the thermal_zone0/ thermal_zone1/ thermal_zone2/ rk3566_t:/sys/class/thermal # cd thermal_zone0/ rk3566_t:/sys/class/thermal/thermal_zone0 # rk3566_t:/sys/class/thermal/thermal_zone0 # ls -l total 0 -r--r--r-- 1 root root 4096 2025-06-02 18:02 available_policies lrwxrwxrwx 1 root root 0 2025-06-02 18:02 cdev0 -\> ../cooling_device0 -r--r--r-- 1 root root 4096 2025-06-02 18:02 cdev0_trip_point -rw-r--r-- 1 root root 4096 2025-06-02 18:02 cdev0_weight drwxr-xr-x 3 root root 0 2017-08-04 17:00 hwmon0 -rw-r--r-- 1 root root 4096 2025-06-02 18:02 integral_cutoff -rw-r--r-- 1 root root 4096 2025-06-02 18:02 k_d -rw-r--r-- 1 root root 4096 2025-06-02 18:02 k_i -rw-r--r-- 1 root root 4096 2025-06-02 18:02 k_po -rw-r--r-- 1 root root 4096 2025-06-02 18:02 k_pu -rw-r--r-- 1 root root 4096 2025-06-02 18:02 mode -rw-r--r-- 1 root root 4096 2025-06-02 18:02 offset -rw-r--r-- 1 system system 4096 2017-08-04 17:00 policy drwxr-xr-x 2 root root 0 2017-08-04 17:00 power -rw-r--r-- 1 root root 4096 2025-06-02 18:02 slope lrwxrwxrwx 1 root root 0 2025-06-02 18:02 subsystem -\> ../../../../class/thermal -rw-r--r-- 1 root root 4096 2025-06-02 18:02 sustainable_power -r--r--r-- 1 root root 4096 2025-06-02 17:56 temp -rw-r--r-- 1 root root 4096 2025-06-02 18:02 trip_point_0_hyst -rw-r--r-- 1 root root 4096 2025-06-02 18:02 trip_point_0_temp -r--r--r-- 1 root root 4096 2025-06-02 18:02 trip_point_0_type -rw-r--r-- 1 root root 4096 2025-06-02 18:02 trip_point_1_hyst -rw-r--r-- 1 root root 4096 2025-06-02 18:02 trip_point_1_temp -r--r--r-- 1 root root 4096 2025-06-02 18:02 trip_point_1_type -rw-r--r-- 1 root root 4096 2025-06-02 18:02 trip_point_2_hyst -rw-r--r-- 1 root root 4096 2025-06-02 18:02 trip_point_2_temp -r--r--r-- 1 root root 4096 2025-06-02 18:02 trip_point_2_type -r--r--r-- 1 root root 4096 2025-06-02 17:56 type -rw-r--r-- 1 root root 4096 2017-08-04 17:00 uevent rk3566_t:/sys/class/thermal/thermal_zone0 # rk3566_t:/sys/class/thermal/thermal_zone0 # cat temp 51875 rk3566_t:/sys/class/thermal/thermal_zone0 # C:\\Users\\QQ\> 