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 <giometti@linux.it>
14.442414 PTP clock support registered
14.443075 arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
14.443140 arm-scmi firmware:scmi: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
14.445257 Advanced Linux Sound Architecture Driver Initialized.
14.445719 Bluetooth: Core ver 2.22
14.445769 NET: Registered protocol family 31
14.445779 Bluetooth: HCI device and connection manager initialized
14.445799 Bluetooth: HCI socket layer initialized
14.445811 Bluetooth: L2CAP socket layer initialized
14.445835 Bluetooth: SCO socket layer initialized
14.446085 BT_RFKILL: Enter rfkill_rk_init
14.446097 WLAN_RFKILL: Enter rfkill_wlan_init
14.446513 WLAN_RFKILL: Enter rfkill_wlan_probe
14.446558 WLAN_RFKILL: wlan_platdata_parse_dt: wifi_chip_type = ap6398s
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.446617 WLAN_RFKILL: wlan_platdata_parse_dt: WIFI,host_wake_irq = 124, flags = 0.
14.446632 WLAN_RFKILL: wlan_platdata_parse_dt: The ref_wifi_clk not found !
14.446641 WLAN_RFKILL: rfkill_wlan_probe: init gpio
14.446651 WLAN_RFKILL: rfkill_set_wifi_bt_power: 1
14.446659 WLAN_RFKILL: Exit rfkill_wlan_probe
14.447217 rockchip-cpuinfo cpuinfo: SoC\x09\x09: 35662000
14.447232 rockchip-cpuinfo cpuinfo: Serial\x09\x09: 35e261fa0f931014
14.448172 clocksource: Switched to clocksource arch_sys_counter
14.518656 VFS: Disk quotas dquot_6.6.0
14.518731 VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
14.520672 NET: Registered protocol family 2
14.520918 IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
14.522570 tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
14.522630 TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
14.522870 TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
14.523265 TCP: Hash tables configured (established 32768 bind 32768)
14.523386 UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
14.523446 UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
14.523606 NET: Registered protocol family 1
14.524450 PCI: CLS 0 bytes, default 64
14.527248 rockchip-thermal fe710000.tsadc: tsadc is probed successfully!
14.528495 hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 counters available
14.530555 Initialise system trusted keyrings
14.530823 workingset: timestamp_bits=46 max_order=20 bucket_order=0
14.535312 utf8_selftest: All 154 tests passed
14.536089 Key type cifs.idmap registered
14.536110 ntfs: driver 2.1.32 Flags: R/O.
14.536246 fuse: init (API version 7.32)
14.565591 Key type asymmetric registered
14.565610 Asymmetric key parser 'x509' registered
14.565656 Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
14.565669 io scheduler mq-deadline registered
14.565678 io scheduler kyber registered
14.565786 io scheduler bfq registered
14.566569 rockchip-csi2-dphy-hw fe870000.csi2-dphy-hw: csi2 dphy hw probe successfully!
14.567379 rockchip-csi2-dphy csi2-dphy1: csi2 dphy1 probe successfully!
14.579343 pwm-backlight backlight: supply power not found, using dummy regulator
14.580025 iep: Module initialized.
14.580099 mpp_service mpp-srv: unknown mpp version for missing VCS info
14.580112 mpp_service mpp-srv: probe start
14.582485 mpp_vdpu2 fdea0400.vdpu: Adding to iommu group 1
14.582707 mpp_vdpu2 fdea0400.vdpu: probe device
14.583239 mpp_vdpu2 fdea0400.vdpu: probing finish
14.583761 mpp_vepu2 fdee0000.vepu: Adding to iommu group 3
14.583946 mpp_vepu2 fdee0000.vepu: probing start
14.584423 mpp_vepu2 fdee0000.vepu: probing finish
14.584995 mpp-iep2 fdef0000.iep: Adding to iommu group 4
14.585182 mpp-iep2 fdef0000.iep: probe device
14.585478 mpp-iep2 fdef0000.iep: allocate roi buffer failed
14.585709 mpp-iep2 fdef0000.iep: probing finish
14.586172 mpp_jpgdec fded0000.jpegd: Adding to iommu group 2
14.586352 mpp_jpgdec fded0000.jpegd: probe device
14.586847 mpp_jpgdec fded0000.jpegd: probing finish
14.588668 mpp_service mpp-srv: probe success
14.594293 dma-pl330 fe530000.dmac: Loaded driver for PL330 DMAC-241330
14.594317 dma-pl330 fe530000.dmac: \x09DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
14.596419 dma-pl330 fe550000.dmac: Loaded driver for PL330 DMAC-241330
14.596436 dma-pl330 fe550000.dmac: \x09DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
14.596836 rockchip-pvtm fde00000.pvtm: pvtm@0 probed
14.596999 rockchip-pvtm fde80000.pvtm: pvtm@1 probed
14.597126 rockchip-pvtm fde90000.pvtm: pvtm@2 probed
14.597777 rockchip-system-monitor rockchip-system-monitor: system monitor probe
14.598928 arm-scmi firmware:scmi: Failed. SCMI protocol 22 not active.
14.599348 Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
14.600442 fe650000.serial: ttyS1 at MMIO 0xfe650000 (irq = 71, base_baud = 1500000) is a 16550A
14.601253 fe670000.serial: ttyS3 at MMIO 0xfe670000 (irq = 72, base_baud = 1500000) is a 16550A
14.601860 fe6a0000.serial: ttyS6 at MMIO 0xfe6a0000 (irq = 73, base_baud = 1500000) is a 16550A
14.602385 fe6b0000.serial: ttyS7 at MMIO 0xfe6b0000 (irq = 74, base_baud = 1500000) is a 16550A
14.602918 fe6d0000.serial: ttyS9 at MMIO 0xfe6d0000 (irq = 75, base_baud = 1500000) is a 16550A
14.604935 random: crng init done
14.606119 rockchip-vop2 fe040000.vop: Adding to iommu group 8
14.616301 rockchip-vop2 fe040000.vop: drm:vop2_bind vp0 assign plane mask: 0x2a, primary plane phy id: 5
14.616331 rockchip-vop2 fe040000.vop: drm:vop2_bind vp1 assign plane mask: 0x15, primary plane phy id: 4
14.616344 rockchip-vop2 fe040000.vop: drm:vop2_bind vp2 assign plane mask: 0x0, primary plane phy id: -1
14.617178 rockchip-drm display-subsystem: bound fe040000.vop (ops vop2_component_ops)
14.617496 dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
14.618136 dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver
14.618444 dwhdmi-rockchip fe0a0000.hdmi: IRQ index 1 not found
14.618927 rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops dw_hdmi_rockchip_ops)
14.619032 dw-mipi-dsi-rockchip fe060000.dsi: failed to find panel or bridge: -517
14.630643 cacheinfo: Unable to detect cache hierarchy for CPU 0
14.637726 brd: module loaded
14.648864 loop: module loaded
14.649291 zram: Added device: zram0
14.649660 system_heap: orders0 = 6
14.649672 system_heap: orders1 = 4
14.649680 system_heap: orders2 = 0
14.650616 SCSI Media Changer driver v0.25
14.651626 ahci fc800000.sata: supply ahci not found, using dummy regulator
14.651785 ahci fc800000.sata: supply phy not found, using dummy regulator
14.651925 ahci fc800000.sata: supply target not found, using dummy regulator
14.652062 ahci fc800000.sata: forcing port_map 0x0 -> 0x1
14.652107 ahci fc800000.sata: AHCI 0001.0300 32 slots 1 ports 6 Gbps 0x1 impl platform mode
14.652124 ahci fc800000.sata: flags: ncq sntf pm led clo only pmp fbs pio slum part ccc apst
14.652143 ahci fc800000.sata: port 0 is not capable of FBS
14.653175 scsi host0: ahci
14.653472 ata1: SATA max UDMA/133 mmio mem 0xfc800000-0xfc800fff port 0x100 irq 19
14.656150 rockchip-spi fe620000.spi: probed, poll=0, rsd=0, cs-inactive=0, ready=0
14.657598 rockchip-spi fe630000.spi: probed, poll=0, rsd=0, cs-inactive=0, ready=0
14.658894 rockchip-spi fe640000.spi: probed, poll=0, rsd=0, cs-inactive=0, ready=0
14.659207 register spi return v = :0
14.660357 tun: Universal TUN/TAP device driver, 1.6
14.660550 CAN device driver interface
14.662590 rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
14.662813 rk_gmac-dwmac fe010000.ethernet: no regulator found
14.662828 rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
14.662839 rk_gmac-dwmac fe010000.ethernet: TX delay(0x27).
14.662849 rk_gmac-dwmac fe010000.ethernet: RX delay(0xc).
14.662865 rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
14.662904 rk_gmac-dwmac fe010000.ethernet: clock input from PHY
14.663164 rk_gmac-dwmac fe010000.ethernet: init for RGMII
14.663475 rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
14.663490 rk_gmac-dwmac fe010000.ethernet: \x09DWMAC4/5
14.663503 rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
14.663513 rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
14.663521 rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
14.663529 rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
14.663610 rk_gmac-dwmac fe010000.ethernet: TSO supported
14.663621 rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
14.663632 rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
14.663642 rk_gmac-dwmac fe010000.ethernet: Using 32 bits DMA width
14.795105 mdio_bus stmmac-1: MDIO device at address 0 is missing.
14.796384 PPP generic driver version 2.4.2
14.796599 PPP BSD Compression module registered
14.796612 PPP Deflate Compression module registered
14.796639 PPP MPPE Compression module registered
14.796650 NET: Registered protocol family 24
14.796682 PPTP driver version 0.8.5
14.797009 usbcore: registered new interface driver catc
14.797060 usbcore: registered new interface driver kaweth
14.797072 pegasus: v0.9.3 (2013/04/25), Pegasus/Pegasus II USB Ethernet driver
14.797114 usbcore: registered new interface driver pegasus
14.797158 usbcore: registered new interface driver rtl8150
14.797204 usbcore: registered new interface driver r8152
14.797214 hso: drivers/net/usb/hso.c: Option Wireless
14.797285 usbcore: registered new interface driver hso
14.797329 usbcore: registered new interface driver asix
14.797373 usbcore: registered new interface driver ax88179_178a
14.797417 usbcore: registered new interface driver cdc_ether
14.797466 usbcore: registered new interface driver cdc_eem
14.797511 usbcore: registered new interface driver dm9601
14.797558 usbcore: registered new interface driver smsc75xx
14.797613 usbcore: registered new interface driver smsc95xx
14.797662 usbcore: registered new interface driver gl620a
14.797713 usbcore: registered new interface driver net1080
14.797757 usbcore: registered new interface driver plusb
14.797802 usbcore: registered new interface driver rndis_host
14.797846 usbcore: registered new interface driver cdc_subset
14.797895 usbcore: registered new interface driver zaurus
14.797940 usbcore: registered new interface driver MOSCHIP usb-ethernet driver
14.797988 usbcore: registered new interface driver int51x1
14.798032 usbcore: registered new interface driver kalmia
14.798075 usbcore: registered new interface driver ipheth
14.798121 usbcore: registered new interface driver sierra_net
14.798206 usbcore: registered new interface driver cx82310_eth
14.798259 usbcore: registered new interface driver cdc_ncm
14.798303 usbcore: registered new interface driver qmi_wwan_q
14.798353 usbcore: registered new interface driver cdc_mbim
14.810556 ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
14.810585 ehci-pci: EHCI PCI platform driver
14.810685 ehci-platform: EHCI generic platform driver
14.811170 phy phy-fe8b0000.usb2-phy.4: illegal mode
14.813223 ehci-platform fd800000.usb: EHCI Host Controller
14.813471 ehci-platform fd800000.usb: new USB bus registered, assigned bus number 1
14.813618 ehci-platform fd800000.usb: irq 20, io mem 0xfd800000
14.824873 ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
14.825056 usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
14.825070 usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
14.825079 usb usb1: Product: EHCI Host Controller
14.825088 usb usb1: Manufacturer: Linux 5.10.157 ehci_hcd
14.825097 usb usb1: SerialNumber: fd800000.usb
14.825574 hub 1-0:1.0: USB hub found
14.825617 hub 1-0:1.0: 1 port detected
14.828339 ehci-platform fd880000.usb: EHCI Host Controller
14.828547 ehci-platform fd880000.usb: new USB bus registered, assigned bus number 2
14.828656 ehci-platform fd880000.usb: irq 22, io mem 0xfd880000
14.841514 ehci-platform fd880000.usb: USB 2.0 started, EHCI 1.00
14.841685 usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
14.841698 usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
14.841708 usb usb2: Product: EHCI Host Controller
14.841717 usb usb2: Manufacturer: Linux 5.10.157 ehci_hcd
14.841725 usb usb2: SerialNumber: fd880000.usb
14.842162 hub 2-0:1.0: USB hub found
14.842206 hub 2-0:1.0: 1 port detected
14.842956 ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
14.842985 ohci-platform: OHCI generic platform driver
14.843320 phy phy-fe8b0000.usb2-phy.4: illegal mode
14.843335 ohci-platform fd840000.usb: Generic Platform OHCI controller
14.843523 ohci-platform fd840000.usb: new USB bus registered, assigned bus number 3
14.843640 ohci-platform fd840000.usb: irq 21, io mem 0xfd840000
14.902346 usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
14.902361 usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
14.902371 usb usb3: Product: Generic Platform OHCI controller
14.902380 usb usb3: Manufacturer: Linux 5.10.157 ohci_hcd
14.902389 usb usb3: SerialNumber: fd840000.usb
14.902848 hub 3-0:1.0: USB hub found
14.902892 hub 3-0:1.0: 1 port detected
14.903454 ohci-platform fd8c0000.usb: Generic Platform OHCI controller
14.903642 ohci-platform fd8c0000.usb: new USB bus registered, assigned bus number 4
14.903758 ohci-platform fd8c0000.usb: irq 23, io mem 0xfd8c0000
14.962346 usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
14.962360 usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
14.962370 usb usb4: Product: Generic Platform OHCI controller
14.962379 usb usb4: Manufacturer: Linux 5.10.157 ohci_hcd
14.962388 usb usb4: SerialNumber: fd8c0000.usb
14.962834 hub 4-0:1.0: USB hub found
14.962877 hub 4-0:1.0: 1 port detected
14.964232 xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
14.964463 xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 5
14.964577 ata1: SATA link down (SStatus 0 SControl 300)
14.964611 xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000200002010010
14.964678 xhci-hcd xhci-hcd.0.auto: irq 88, io mem 0xfd000000
14.965027 usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
14.965041 usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
14.965051 usb usb5: Product: xHCI Host Controller
14.965060 usb usb5: Manufacturer: Linux 5.10.157 xhci-hcd
14.965068 usb usb5: SerialNumber: xhci-hcd.0.auto
14.965550 hub 5-0:1.0: USB hub found
14.965595 hub 5-0:1.0: 1 port detected
14.965927 xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
14.966098 xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 6
14.966119 xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
14.966193 usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
14.966322 usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
14.966335 usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
14.966345 usb usb6: Product: xHCI Host Controller
14.966353 usb usb6: Manufacturer: Linux 5.10.157 xhci-hcd
14.966362 usb usb6: SerialNumber: xhci-hcd.0.auto
14.966795 hub 6-0:1.0: USB hub found
14.966845 hub 6-0:1.0: 1 port detected
14.967332 usbcore: registered new interface driver cdc_acm
14.967344 cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
14.967410 usbcore: registered new interface driver usblp
14.967466 usbcore: registered new interface driver cdc_wdm
14.967760 usbcore: registered new interface driver uas
14.967849 usbcore: registered new interface driver usb-storage
14.967899 usbcore: registered new interface driver ums-alauda
14.967947 usbcore: registered new interface driver ums-cypress
14.967994 usbcore: registered new interface driver ums-datafab
14.968040 usbcore: registered new interface driver ums_eneub6250
14.968096 usbcore: registered new interface driver ums-freecom
14.968146 usbcore: registered new interface driver ums-isd200
14.968228 usbcore: registered new interface driver ums-jumpshot
14.968279 usbcore: registered new interface driver ums-karma
14.968327 usbcore: registered new interface driver ums-onetouch
14.968377 usbcore: registered new interface driver ums-sddr09
14.968425 usbcore: registered new interface driver ums-sddr55
14.968479 usbcore: registered new interface driver ums-usbat
14.968577 usbcore: registered new interface driver usbserial_generic
14.968608 usbserial: USB Serial support registered for generic
14.968661 usbcore: registered new interface driver cp210x
14.968688 usbserial: USB Serial support registered for cp210x
14.968753 usbcore: registered new interface driver ftdi_sio
14.968779 usbserial: USB Serial support registered for FTDI USB Serial Device
14.968902 usbcore: registered new interface driver option
14.968930 usbserial: USB Serial support registered for GSM modem (1-port)
14.969080 usbcore: registered new interface driver trancevibrator
14.969986 usbcore: registered new interface driver xpad
14.970051 usbcore: registered new interface driver usb_acecad
14.970105 usbcore: registered new interface driver aiptek
14.970157 usbcore: registered new interface driver gtco
14.970218 usbcore: registered new interface driver hanwang
14.970271 usbcore: registered new interface driver kbtab
14.970397 <<-GTP-INFO->> GTP driver installing...
14.972332 i2c /dev entries driver
14.974754 **** wyb 2025/6/2 15:58 drivers/mfd/rk808.c rk808_probe 1159
14.975721 rk808 0-0020: chip id: 0x8090
14.975762 rk808 0-0020: No cache defaults, reading back from HW
14.999469 rk808 0-0020: source: on=0x40, off=0x00
14.999483 **** wyb 2025/6/2 15:58 drivers/mfd/rk808.c rk817_of_property_prepare 1086
14.999497 rk808 0-0020: support dcdc3 fb mode:-22, 0
14.999509 rk808 0-0020: support pmic reset mode:0,0
15.000534 **** wyb 2025/6/2 15:58 drivers/mfd/rk808.c rk817_pinctrl_init 920
15.005422 rk808-regulator rk808-regulator: there is no dvs0 gpio
15.005459 rk808-regulator rk808-regulator: there is no dvs1 gpio
15.005890 vdd_logic: supplied by vcc3v3_sys
15.006943 vdd_gpu: supplied by vcc3v3_sys
15.007583 vcc_ddr: supplied by vcc3v3_sys
15.008244 vdd_npu: supplied by vcc3v3_sys
15.009241 vcc_1v8: supplied by vcc3v3_sys
15.009856 vdda0v9_image: supplied by vcc3v3_sys
15.011326 vdda_0v9: supplied by vcc3v3_sys
15.012480 vdda0v9_pmu: supplied by vcc3v3_sys
15.013598 vccio_acodec: supplied by vcc3v3_sys
15.015079 vccio_sd: supplied by vcc3v3_sys
15.016215 vcc3v3_pmu: supplied by vcc3v3_sys
15.017695 vcca_1v8: supplied by vcc3v3_sys
15.018833 vcca1v8_pmu: supplied by vcc3v3_sys
15.019963 vcca1v8_image: supplied by vcc3v3_sys
15.021442 vcc_3v3: supplied by vcc3v3_sys
15.022412 vcc3v3_sd: supplied by vcc3v3_sys
15.024016 rk817-battery rk817-battery: DMA mask not set
15.024161 rk817-battery rk817-battery: fb_temperature missing!
15.024178 rk817-battery rk817-battery: zero_reserve_dsoc missing!
15.024193 rk817-battery rk817-battery: low_power_sleep missing!
15.024204 rk817-battery rk817-battery: battery design_max_voltage missing!
15.024214 rk817-battery rk817-battery: not have to register chg psy!
15.024223 rk817-battery rk817-battery: not have to register dc_rpdzkj_psy!
15.050758 rk817-bat: initialized yet..
15.097395 thermal thermal_zone2: power_allocator: sustainable_power will be estimated
15.100886\] rk817-charger: Failed to locate of_node \[id: -1
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: dm-devel@redhat.com
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_mgrReadFstabFromDt(): 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_mgrsuperblock s_max_mnt_count:65535,/dev/block/by-name/metadata
15.597583 init: libfs_mgrFilesystem 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_mgrcheck_fs(): mount(/dev/block/by-name/metadata,/metadata,ext4)=0: Success
15.610001 init: libfs_mgrumount_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_ptr0=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>
