RK3588 Android12开机log分析

RK3588 Android12开机log分析

--------------------DDR初始化阶段---------------------
DDR Version V1.07 20220412 //DDR bin的版本是: V1.07 对应的代码在:rkbin/bin/rk35/rk3588_ddr_lp4_2112MHz_lp5_2736MHz_v1.07.bin
LPDDR4X, 2112MHz //ddr类型是LPDDR4X,最高频率2112MHz
//DDR 4个通道每个通道2048MB容量,总共8G容量
channel[0] BW=16 Col=10 Bk=8 CS0 Row=16 CS1 Row=16 CS=2 Die BW=16 Size=2048MB
channel[1] BW=16 Col=10 Bk=8 CS0 Row=16 CS1 Row=16 CS=2 Die BW=16 Size=2048MB
channel[2] BW=16 Col=10 Bk=8 CS0 Row=16 CS1 Row=16 CS=2 Die BW=16 Size=2048MB
channel[3] BW=16 Col=10 Bk=8 CS0 Row=16 CS1 Row=16 CS=2 Die BW=16 Size=2048MB
//ddr支持4个频点变频,分别是528MHz 1068MHz 1560MHz 2112MHz
change to F1: 528MHz
change to F2: 1068MHz
change to F3: 1560MHz
change to F0: 2112MHz
out //DDR 初始化结束
--------------------SPL初始化阶段---------------------
U-Boot SPL board init
U-Boot SPL 2017.09-gc060f28d70-220414 #zyf (Apr 18 2022 - 18:13:34) //SPL版本信息,对应的代码在:rkbin/bin/rk35/rk3588_spl_v1.11.bin

//SPL阶段CPU只跑小核,大核没有跑,所以会有下面的cpub01 cpub23的报错,这个是正常的log
Failed to set cpub01
Failed to set cpub23
查询SPI nand,如果有spi nand则从SPI nand启动
unknown raw ID phN
unrecognized JEDEC id bytes: 00, 00, 00

//先从SD卡中找启动固件,找不到在继续从EMMC中找启动固件,因为没有接SD卡,所以会有如下错误
Trying to boot from MMC2
MMC: no card present
mmc_init: -123, time 0
spl: mmc init failed with error: -123

//从emmc中加载bl31和uboot
Trying to boot from MMC1
Trying fit image at 0x4000 sector
Verified-boot: 0
Checking atf-1 0x00040000 … sha256(26e0c68d3d…) + OK
Checking uboot 0x00200000 … sha256(f000acab38…) + OK
Checking fdt 0x00323be0 … sha256(c07f4a4d71…) + OK
Checking atf-2 0x000f0000 … sha256(6a00298af8…) + OK
Checking atf-3 0xff100000 … sha256(33280a3988…) + OK
Checking atf-4 0xff001000 … sha256(2301cf73be…) + OK
Checking optee 0x08400000 … sha256(603cfbd25d…) + OK
Jumping to U-Boot(0x00200000) via ARM Trusted Firmware(0x00040000)

Total: 115.998 ms //启动到uboot结束一共耗时115.998ms

--------------------BL31初始化阶段---------------------
INFO: Preloader serial: 2
NOTICE: BL31: v2.3():v2.3-352-g02b68fe33:derrick.huang //BL31(trust)的版本信息
NOTICE: BL31: Built : 16:39:09, Apr 28 2022
INFO: GICv3 without legacy support detected.
INFO: ARM GICv3 driver initialized in EL3
INFO: system boots from cpu-hwid-0
INFO: idle_st=0x21fff, pd_st=0x11fff9

//bl31中ddr变频的频率信息
INFO: dfs DDR fsp_params[0].freq_mhz= 2112MHz
INFO: dfs DDR fsp_params[1].freq_mhz= 528MHz
INFO: dfs DDR fsp_params[2].freq_mhz= 1068MHz
INFO: dfs DDR fsp_params[3].freq_mhz= 1560MHz
INFO: BL31: Initialising Exception Handling Framework
INFO: BL31: Initializing runtime services
INFO: BL31: Initializing BL32
INFO: hdmirx_handler: dma not on, ret

--------------------BL32初始化阶段---------------------
I/TC:
I/TC: OP-TEE version: 3.13.0-639-g8e053a881-dev #hisping.lin (gcc version 10.2.1 20201103 (GNU Toolchain for the A-profile Architecture 10.2-2020.11 (arm-10.16))) #2 Mon Mar 14 09:09:01 CST 2022 aarch64 \BL32的版本信息
I/TC: Primary CPU initializing
I/TC: Primary CPU switching to normal world boot
INFO: BL31: Preparing for EL3 exit to normal world
INFO: Entry point address = 0x200000
INFO: SPSR = 0x3c9

--------------------UBOOT阶段---------------------
U-Boot 2017.09-g5b9a5d0dfa-220413 #wlq (Apr 28 2022 - 08:45:48 +0000) //uboot的版本信息

Model: Rockchip RK3588 Evaluation Board //这里显示的kernel的dts中定义的model = “Rockchip RK3588 EVB1 LP4 V10 Board”;
PreSerial: 2, raw, 0xfeb50000
DRAM: 7.7 GiB //ddr的总容量
Sysmem: init
Relocation Offset: edb53000
Relocation fdt: eb9fa8c8 - eb9fece8
CR: M/C/I
Using default environment

mmc@fe2c0000: 1, mmc@fe2e0000: 0
Bootdev(atags): mmc 0 //从emmc启动,如果是SD卡启动这里显示的是sdmmc
MMC0: HS200, 200Mhz //emmc的速率是200Mhz HS200模式
PartType: EFI
DM: v2
boot mode: recovery (misc)
boot mode: normal //这是启动模式:指recovery模式或者正常的boot模式,如果是recovery模式的log是[04 28 17:52:10]boot mode: recovery (misc)。 recovery模式指的是烧写后第一次开机,或者烧写了misc后进入格式化模式;boot模式就是正常启动,没有进过recovery。
Android 12.0, Build 2022.4, v2
Found DTB in boot part
DTB: rk-kernel.dtb
HASH©: OK
ANDROID: fdt overlay OK

//HW single pmic, the firmware dual pmic(0xe8)! 开机如果看到这段log说明软件配置的pmic和硬件不匹配,需要检查软件是否正确配置了单双pmic

//下面是uboot阶段的电源初始化情况,可以在这些log里面判断电源是否有异常。这里是双PMIC的log,后面会介绍单pmic的log
spi2: RK806: 1
ON=0x00, OFF=0x00
vdd_gpu_s0 750000 uV
vdd_npu_s0 750000 uV
vdd_log_s0 750000 uV
vdd_vdenc_s0 750000 uV
vdd_gpu_mem_s0 750000 uV
vdd_npu_mem_s0 750000 uV
vdd_vdenc_mem_s0 750000 uV
Failed to request rk8xx irq, ret=-16
spi2: RK806: 1
ON=0x00, OFF=0x00
vdd_cpu_big1_s0 750000 uV
vdd_cpu_big0_s0 750000 uV
vdd_cpu_lit_s0 750000 uV
vdd_cpu_big1_mem_s0 750000 uV
vdd_cpu_big0_mem_s0 750000 uV
vdd_cpu_lit_mem_s0 750000 uV
vdd_ddr_s0 850000 uV

------------------------------------------------------单PMIC log插入开始------------------------------------------------
//这里是单PMIC的log信息,这里为了说明单pmic的情况,强制加的log,正常跟上面的log不会同时出现
ANDROID: fdt overlay OK
I2c0 speed: 100000Hz
vsel-gpios- not found!
en-gpios- not found!
vdd_cpu_big0_s0 800000 uV //cpub0的电压,这路是由dcdc(rk860)供电,默认是800mv,如果电压不对需要检查供电的dcdc
vsel-gpios- not found!
en-gpios- not found!
vdd_cpu_big1_s0 800000 uV //cpub1的电压,这路是由dcdc(rk860)供电,默认是800mv,如果电压不对需要检查供电的dcdc
I2c1 speed: 100000Hz
vsel-gpios- not found!
en-gpios- not found!
vdd_npu_s0 800000 uV //npu的电压,这路是由dcdc(rk860)供电,默认是800mv,如果电压不对需要检查供电的dcdc
spi2: RK806: 2
ON=0x00, OFF=0x00
//这里是单个pmic(rk806)供电
vdd_gpu_s0 750000 uV
vdd_cpu_lit_s0 750000 uV
vdd_log_s0 750000 uV
vdd_vdenc_s0 init 750000 uV
vdd_ddr_s0 850000 uV

------------------------------------------------单PMIC log插入结束------------------------------------------------------

get vp0 plane mask:0x5, primary id:2, cursor_plane:-1, from dts
get vp1 plane mask:0xa, primary id:3, cursor_plane:-1, from dts
get vp2 plane mask:0x140, primary id:8, cursor_plane:-1, from dts
get vp3 plane mask:0x280, primary id:9, cursor_plane:-1, from dts

Model: Rockchip RK3588 EVB1 LP4 V10 Board //这里显示的是dts的名称,可以根据这个确认固件是否烧对

Rockchip UBOOT DRM driver version: v1.0.1
vp0 have layer nr:2[0 2 ], primary plane: 2
vp1 have layer nr:2[1 3 ], primary plane: 3
vp2 have layer nr:2[6 8 ], primary plane: 8
vp3 have layer nr:2[7 9 ], primary plane: 9
disp info 2, type:16, id:0
base2_disp_info couldn’t be found, screen_info type[0] or id[0] mismatched

//显示dsi部分初始化,参数配置是kernel的dts中的参数
Using display timing dts
dsi@fde20000: detailed mode clock 132000 kHz, flags[a]
H: 1080 1095 1099 1129
V: 1920 1935 1937 1952
bus_format: 100e
VOP update mode to: 1080x1920p0, type: MIPI0 for VP3
rockchip_vop2_init:No hdmiphypll clk0 found, use system clk
rockchip_vop2_init:No hdmiphypll clk1 found, use system clk
VOP VP3 enable Esmart3[654x270->654x270@213x825] fmt[2] addr[0xedf04000]
final DSI-Link bandwidth: 880000 Kbps x 4

//系统clk的初始化
CLK: (uboot. arm: enter 1008000 KHz, init 1008000 KHz, kernel 0N/A)
b0pll 1200000 KHz
b1pll 1200000 KHz
lpll 1200000 KHz
v0pll 24000 KHz
aupll 786215 KHz
cpll 1500000 KHz
gpll 1188000 KHz
npll 850000 KHz
ppll 1100000 KHz
aclk_center_root 702000 KHz
pclk_center_root 100000 KHz
hclk_center_root 396000 KHz
aclk_center_low_root 500000 KHz
aclk_top_root 750000 KHz
pclk_top_root 100000 KHz
aclk_low_top_root 396000 KHz

Net: eth0: ethernet@fe1b0000
Hit key to stop autoboot(‘CTRL+C’): 0

//Android固件加载并进行AVB校验,校验固件的合法性,因为这里没有开AVB校验所以可以正常开机
ANDROID: reboot reason: “(none)”
optee api revision: 2.0
Vboot=0, AVB images, AVB verify
read_is_device_unlocked() ops returned that device is UNLOCKED
avb_slot_verify.c:762: ERROR: vbmeta: Error verifying vbmeta image: OK_NOT_SIGNED
get image from preloaded partition…
ANDROID: Hash OK
Could not find “system” partition
Booting IMAGE kernel at 0x00400000 with fdt at 0x0a100000…

//加载kernel并跳转到kernel阶段启动
Fdt Ramdisk skip relocation
Booting Android Image at 0x003ff800 …
Kernel: 0x00400000 - 0x0270a808 (35883 KiB)
ramdisk: 0x0a200000 - 0x0a349c9d (1320 KiB)
Flattened Device Tree blob at 0x0a100000
Booting using the fdt blob at 0x0a100000
XIP Kernel Image from 0x00400000 to 0x00400000 … OK
kernel loaded at 0x00400000, end = 0x0270a808
‘reserved-memory’ cma: addr=10000000 size=10000000
Using Device Tree in place at 000000000a100000, end 000000000a143508
Adding bank: 0x00200000 - 0x08400000 (size: 0x08200000)
Adding bank: 0x09400000 - 0xf0000000 (size: 0xe6c00000)
Adding bank: 0x100000000 - 0x200000000 (size: 0x100000000)
Total: 861.280 ms //启动到kernel阶段的耗时861.280 ms

--------------------KERNEL阶段---------------------
Starting kernel …

[ 0.981657][ T0] Booting Linux on physical CPU 0x0000000000 [0x412fd050]

//kernel的编译信息
[ 0.981677][ T0] Linux version 5.10.66 (wlq@sys2_206) (Android (7284624, based on r416183b) clang version 12.0.5 (https://android.googlesource.com/toolchain/llvm-project c935d99d7cf2016289302412d708641d52d2f7ee), LLD 12.0.5 (/buildbot/src/android/llvm-toolchain/out/llvm-project/lld c935d99d7cf2016289302412d708641d52d2f7ee)) #1918 SMP PREEMPT Thu Apr 28 08:48:34 UTC 2022
[ 0.995443][ T0] Machine model: Rockchip RK3588 EVB1 LP4 V10 Board
[ 1.032098][ T0] earlycon: uart8250 at MMIO32 0x00000000feb50000 (options ‘’)
[ 1.037021][ T0] printk: bootconsole [uart8250] enabled

//内存初始化信息
[ 1.045064][ T0] OF: fdt: Reserved memory: failed to reserve memory for node ‘drm-cubic-lut@00000000’: base 0x0000000000000000, size 0 MiB
[ 1.046264][ T0] Reserved memory: created CMA memory pool at 0x0000000010000000, size 256 MiB
[ 1.047070][ T0] OF: reserved mem: initialized node cma, compatible id shared-dma-pool
[ 1.155257][ T0] Zone ranges:
[ 1.155567][ T0] DMA32 [mem 0x0000000000200000-0x00000000ffffffff]
[ 1.156204][ T0] Normal [mem 0x0000000100000000-0x00000001ffffffff]
[ 1.156838][ T0] Movable zone start for each node
[ 1.157294][ T0] Early memory node ranges
[ 1.157688][ T0] node 0: [mem 0x0000000000200000-0x00000000083fffff]
[ 1.158328][ T0] node 0: [mem 0x0000000009400000-0x00000000efffffff]
[ 1.158968][ T0] node 0: [mem 0x0000000100000000-0x00000001ffffffff]
[ 1.159609][ T0] Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]

[ 1.202853][ T0] psci: probing for conduit method from DT.
[ 1.203390][ T0] psci: PSCIv1.1 detected in firmware.
[ 1.203879][ T0] psci: Using standard PSCI v0.2 function IDs
[ 1.204425][ T0] psci: Trusted OS migration not required
[ 1.204940][ T0] psci: SMC Calling Convention v1.2
[ 1.205744][ T0] percpu: Embedded 31 pages/cpu s88472 r8192 d30312 u126976
[ 1.206563][ T0] Detected VIPT I-cache on CPU0
[ 1.207023][ T0] CPU features: detected: GIC system register CPU interface
[ 1.207679][ T0] CPU features: detected: Virtualization Host Extensions
[ 1.208315][ T0] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[ 1.209031][ T0] alternatives: patching kernel code
[ 1.211439][ T0] Built 1 zonelists, mobility grouping on. Total pages: 1995336
[ 1.212141][ T0] Kernel command line: storagemedia=emmc androidboot.storagemedia=emmc androidboot.mode=normal androidboot.dtb_idx=0 androidboot.dtbo_idx=0 androidboot.verifiedbootstate=orange androidboot.serialno=fad9d84fefa88240 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=fe2e0000.mmc androidboot.selinux=permissive buildvariant=userdebug earlycon=uart8250,mmio32,0xfeb50000 irqchip.gicv3_pseudo_nmi=0
[ 1.217771][ T0] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 1.218927][ T0] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 1.219765][ T0] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 1.226137][ T0] software IO TLB: mapped [mem 0x00000000e9f00000-0x00000000edf00000] (64MB)
[ 1.286010][ T0] Memory: 7582960K/8108032K available (19326K kernel code, 3946K rwdata, 11208K rodata, 1344K init, 920K bss, 262928K reserved, 262144K cma-reserved)
[ 1.287473][ T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 1.288349][ T0] rcu: Preemptible hierarchical RCU implementation.
[ 1.288945][ T0] rcu: RCU event tracing is enabled.
[ 1.289427][ T0] Trampoline variant of Tasks RCU enabled.
[ 1.289954][ T0] Tracing variant of Tasks RCU enabled.
[ 1.290459][ T0] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 1.294787][ T0] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 1.297854][ T0] GICv3: GIC: Using split EOI/Deactivate mode
[ 1.298403][ T0] GICv3: 480 SPIs implemented
[ 1.298820][ T0] GICv3: 0 Extended SPIs implemented
[ 1.299315][ T0] GICv3: Distributor has no Range Selector support
[ 1.299904][ T0] GICv3: 16 PPIs implemented
[ 1.300354][ T0] GICv3: CPU0: found redistributor 0 region 0:0x00000000fe680000
[ 1.301131][ T0] ITS [mem 0xfe640000-0xfe65ffff]
[ 1.301622][ T0] ITS@0x00000000fe640000: allocated 8192 Devices @100100000 (indirect, esz 8, psz 64K, shr 0)
[ 1.302564][ T0] ITS@0x00000000fe640000: allocated 32768 Interrupt Collections @100110000 (flat, esz 2, psz 64K, shr 0)
[ 1.303580][ T0] ITS: using cache flushing for cmd queue
[ 1.304115][ T0] ITS [mem 0xfe660000-0xfe67ffff]
[ 1.304598][ T0] ITS@0x00000000fe660000: allocated 8192 Devices @100130000 (indirect, esz 8, psz 64K, shr 0)
[ 1.305540][ T0] ITS@0x00000000fe660000: allocated 32768 Interrupt Collections @100140000 (flat, esz 2, psz 64K, shr 0)
[ 1.306554][ T0] ITS: using cache flushing for cmd queue
[ 1.307277][ T0] GICv3: using LPI property table @0x0000000100150000
[ 1.307986][ T0] GIC: using cache flushing for LPI property table
[ 1.308574][ T0] GICv3: CPU0: using allocated LPI pending table @0x0000000100160000
[ 1.309381][ T0] kfence: initialized - using 524288 bytes for 63 objects at 0x(ptrval)-0x(ptrval)
[ 1.310433][ T0] random: get_random_bytes called from start_kernel+0x268/0x500 with crng_init=0
[ 1.428451][ T0] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[ 1.429880][ T0] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[ 1.430921][ T0] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[ 1.432863][ T0] Calibrating delay loop (skipped), value calculated using timer frequency… 48.00 BogoMIPS (lpj=80000)
[ 1.433863][ T0] pid_max: default: 32768 minimum: 301
[ 1.434422][ T0] LSM: Security Framework initializing
[ 1.434931][ T0] SELinux: Initializing.
[ 1.435382][ T0] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 1.436146][ T0] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 1.438530][ T1] rcu: Hierarchical SRCU implementation.
[ 1.439326][ T1] Platform MSI: msi-controller@fe640000 domain created
[ 1.439946][ T1] Platform MSI: msi-controller@fe660000 domain created
[ 1.440870][ T1] PCI/MSI: /interrupt-controller@fe600000/msi-controller@fe640000 domain created
[ 1.441694][ T1] PCI/MSI: /interrupt-controller@fe600000/msi-controller@fe660000 domain created

//CPU初始化,所有核都启动,这里如果没有启动8个核所以cpu异常,需要检查CPU供电
[ 1.443079][ T1] smp: Bringing up secondary CPUs …
I/TC: Secondary CPU 1 initializing
I/TC: Secondary CPU 1 switching to normal world boot
I/TC: Secondary CPU 2 initializing
I/TC: Secondary CPU 2 switching to normal world boot
I/TC: Secondary CPU 3 initializing
I/TC: Secondary CPU 3 switching to normal world boot
I/TC: Secondary CPU 4 initializing
I/TC: Secondary CPU 4 switching to normal world boot
I/TC: Secondary CPU 5 initializing
I/TC: Secondary CPU 5 switching to normal world boot
I/TC: Secondary CPU 6 initializing
I/TC: Secondary CPU 6 switching to normal world boot
I/TC: Secondary CPU 7 initializing
I/TC: Secondary CPU 7 switching to normal world boot
[ 1.444709][ T0] Detected VIPT I-cache on CPU1
[ 1.444733][ T0] GICv3: CPU1: found redistributor 100 region 0:0x00000000fe6a0000
[ 1.444747][ T0] GICv3: CPU1: using allocated LPI pending table @0x0000000100170000
[ 1.444782][ T0] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[ 1.445999][ T0] Detected VIPT I-cache on CPU2
[ 1.446018][ T0] GICv3: CPU2: found redistributor 200 region 0:0x00000000fe6c0000
[ 1.446031][ T0] GICv3: CPU2: using allocated LPI pending table @0x0000000100180000
[ 1.446065][ T0] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[ 1.447227][ T0] Detected VIPT I-cache on CPU3
[ 1.447243][ T0] GICv3: CPU3: found redistributor 300 region 0:0x00000000fe6e0000
[ 1.447255][ T0] GICv3: CPU3: using allocated LPI pending table @0x0000000100190000
[ 1.447285][ T0] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[ 1.448461][ T0] CPU features: detected: Spectre-v4
[ 1.448465][ T0] Detected PIPT I-cache on CPU4
[ 1.448475][ T0] GICv3: CPU4: found redistributor 400 region 0:0x00000000fe700000
[ 1.448483][ T0] GICv3: CPU4: using allocated LPI pending table @0x00000001001a0000
[ 1.448503][ T0] CPU4: Booted secondary processor 0x0000000400 [0x414fd0b0]
[ 1.449636][ T0] Detected PIPT I-cache on CPU5
[ 1.449647][ T0] GICv3: CPU5: found redistributor 500 region 0:0x00000000fe720000
[ 1.449655][ T0] GICv3: CPU5: using allocated LPI pending table @0x00000001001b0000
[ 1.449677][ T0] CPU5: Booted secondary processor 0x0000000500 [0x414fd0b0]
[ 1.450829][ T0] Detected PIPT I-cache on CPU6
[ 1.450840][ T0] GICv3: CPU6: found redistributor 600 region 0:0x00000000fe740000
[ 1.450848][ T0] GICv3: CPU6: using allocated LPI pending table @0x00000001001c0000
[ 1.450869][ T0] CPU6: Booted secondary processor 0x0000000600 [0x414fd0b0]
[ 1.451998][ T0] Detected PIPT I-cache on CPU7
[ 1.452009][ T0] GICv3: CPU7: found redistributor 700 region 0:0x00000000fe760000
[ 1.452017][ T0] GICv3: CPU7: using allocated LPI pending table @0x00000001001d0000
[ 1.452038][ T0] CPU7: Booted secondary processor 0x0000000700 [0x414fd0b0]
[ 1.452092][ T1] smp: Brought up 1 node, 8 CPUs
[ 1.470465][ T1] SMP: Total of 8 processors activated.
[ 1.470957][ T1] CPU features: detected: Privileged Access Never
[ 1.471525][ T1] CPU features: detected: LSE atomic instructions
[ 1.472104][ T1] CPU features: detected: User Access Override
[ 1.472650][ T1] CPU features: detected: 32-bit EL0 Support
[ 1.473179][ T1] CPU features: detected: Common not Private translations
[ 1.473810][ T1] CPU features: detected: RAS Extension Support
[ 1.474363][ T1] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[ 1.475205][ T1] CPU features: detected: CRC32 instructions
[ 1.475754][ T1] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[ 1.476450][ T1] CPU features: detected: RCpc load-acquire (LDAPR)
[ 1.508138][ T1] CPU: All CPU(s) started at EL2

[ 1.510667][ T1] devtmpfs: initialized
[ 1.521961][ T1] Registered cp15_barrier emulation handler
[ 1.521982][ T7] Trying to unpack rootfs image as initramfs…
[ 1.523034][ T1] Registered setend emulation handler
[ 1.523037][ T1] KASLR disabled due to lack of seed
[ 1.523100][ T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 1.524919][ T1] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 1.527499][ T1] pinctrl core: initialized pinctrl subsystem
[ 1.528397][ T1] NET: Registered protocol family 16
[ 1.529518][ T1] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[ 1.530310][ T1] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 1.531103][ T1] audit: initializing netlink subsys (disabled)
[ 1.531701][ T61] audit: type=2000 audit(0.096:1): state=initialized audit_enabled=0 res=1
[ 1.532085][ T1] thermal_sys: Registered thermal governor ‘fair_share’
[ 1.532464][ T1] thermal_sys: Registered thermal governor ‘step_wise’
[ 1.533071][ T1] thermal_sys: Registered thermal governor ‘user_space’
[ 1.533667][ T1] thermal_sys: Registered thermal governor ‘power_allocator’
[ 1.534381][ T1] thermal thermal_zone1: power_allocator: sustainable_power will be estimated
[ 1.535831][ T1] thermal thermal_zone2: power_allocator: sustainable_power will be estimated
[ 1.536629][ T1] thermal thermal_zone3: power_allocator: sustainable_power will be estimated
[ 1.537427][ T1] thermal thermal_zone4: power_allocator: sustainable_power will be estimated
[ 1.538221][ T1] thermal thermal_zone5: power_allocator: sustainable_power will be estimated
[ 1.539019][ T1] thermal thermal_zone6: power_allocator: sustainable_power will be estimated
[ 1.539823][ T1] cpuidle: using governor menu
[ 1.540237][ T1] Registered FIQ tty driver
[ 1.540714][ T1] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 1.541495][ T1] ASID allocator initialised with 65536 entries
[ 1.544889][ T1] printk: console [ramoops-1] enabled
[ 1.545424][ T1] pstore: Registered ramoops as persistent store backend
[ 1.546039][ T1] ramoops: using 0xf0000@0x110000, ecc: 0
[ 1.562139][ T7] Freeing initrd memory: 1316K
[ 1.586267][ T1] rockchip-gpio fd8a0000.gpio: probed /pinctrl/gpio@fd8a0000
[ 1.587074][ T1] rockchip-gpio fec20000.gpio: probed /pinctrl/gpio@fec20000
[ 1.587866][ T1] rockchip-gpio fec30000.gpio: probed /pinctrl/gpio@fec30000
[ 1.588655][ T1] rockchip-gpio fec40000.gpio: probed /pinctrl/gpio@fec40000
[ 1.589471][ T1] rockchip-gpio fec50000.gpio: probed /pinctrl/gpio@fec50000
[ 1.590141][ T1] rockchip-pinctrl pinctrl: probed pinctrl
[ 1.602962][ T1] fiq_debugger fiq_debugger.0: IRQ fiq not found
[ 1.603523][ T1] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[ 1.604099][ T1] fiq_debugger_probe: could not install nmi irq handler
[[ 1.604750][ T1] printk: console [ttyFIQ0] enabled
1.604750][ T1] printk: console [ttyFIQ0] enabled
[ 1.605644][ T1] printk: bootconsole [uart8250] disabled
[ 1.605644][ T1] printk: bootconsole [uart8250] disabled
[ 1.606201][ T1] Registered fiq debugger ttyFIQ0
[ 1.606439][ T1] vcc5v0_sys: supplied by vcc12v_dcin
[ 1.606527][ T1] vcc5v0_usbdcin: supplied by vcc12v_dcin
[ 1.606607][ T1] vcc5v0_usb: supplied by vcc5v0_usbdcin
[ 1.606771][ T1] vbus5v0_typec: supplied by vcc5v0_usb
[ 1.606863][ T1] vcc3v3_pcie30: supplied by vcc12v_dcin
[ 1.606949][ T1] vcc5v0_host: supplied by vcc5v0_usb
[ 1.607484][ T1] iommu: Default domain type: Translated
[ 1.607535][ T1] rk_iommu fdab9000.iommu: version = 2
[ 1.607825][ T1] rk_iommu fdb50800.iommu: version = 2
[ 1.608014][ T1] rk_iommu fdb60f00.iommu: version = 2
[ 1.608158][ T1] rk_iommu fdb70f00.iommu: version = 2
[ 1.608284][ T1] rk_iommu fdb90480.iommu: version = 2
[ 1.608431][ T1] rk_iommu fdba0800.iommu: version = 2
[ 1.608578][ T1] rk_iommu fdba4800.iommu: version = 2
[ 1.608725][ T1] rk_iommu fdba8800.iommu: version = 2
[ 1.608871][ T1] rk_iommu fdbac800.iommu: version = 2
[ 1.609017][ T1] rk_iommu fdbb0800.iommu: version = 2
[ 1.609160][ T1] rk_iommu fdbdf000.iommu: version = 2
[ 1.609361][ T1] rk_iommu fdbef000.iommu: version = 2
[ 1.609584][ T1] rk_iommu fdc38700.iommu: version = 2
[ 1.609811][ T1] rk_iommu fdc48700.iommu: version = 2
[ 1.609974][ T1] rk_iommu fdcb7f00.iommu: version = 2
[ 1.610112][ T1] rk_iommu fdce0800.iommu: version = 2
[ 1.610192][ T1] rk_iommu fdd97e00.iommu: version = 2
[ 1.610414][ T1] SCSI subsystem initialized
[ 1.610476][ T1] usbcore: registered new interface driver usbfs
[ 1.610489][ T1] usbcore: registered new interface driver hub
[ 1.610501][ T1] usbcore: registered new device driver usb
[ 1.610602][ T1] mc: Linux media interface: v0.10
[ 1.610610][ T1] videodev: Linux video capture interface: v2.00
[ 1.610628][ T1] pps_core: LinuxPPS API ver. 1 registered
[ 1.610632][ T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti giometti@linux.it
[ 1.610638][ T1] PTP clock support registered
[ 1.610817][ T1] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
[ 1.610845][ T1] arm-scmi firmware:scmi: SCMI Protocol v2.0 ‘rockchip:’ Firmware version 0x0
[ 1.611557][ T1] Advanced Linux Sound Architecture Driver Initialized.
[ 1.611706][ T1] Bluetooth: Core ver 2.22
[ 1.611717][ T1] NET: Registered protocol family 31
[ 1.611720][ T1] Bluetooth: HCI device and connection manager initialized
[ 1.611725][ T1] Bluetooth: HCI socket layer initialized
[ 1.611729][ T1] Bluetooth: L2CAP socket layer initialized
[ 1.611736][ T1] Bluetooth: SCO socket layer initialized
[ 1.612956][ T1] rockchip-cpuinfo cpuinfo: SoC : 0
[ 1.612961][ T1] rockchip-cpuinfo cpuinfo: Serial : 0000000000000000
[ 1.613190][ T1] clocksource: Switched to clocksource arch_sys_counter
[ 1.642551][ T1] VFS: Disk quotas dquot_6.6.0
[ 1.642580][ T1] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.642923][ T1] NET: Registered protocol family 2
[ 1.643103][ T1] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 1.644915][ T1] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[ 1.645013][ T1] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 1.645341][ T1] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 1.646013][ T1] TCP: Hash tables configured (established 65536 bind 65536)
[ 1.646059][ T1] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[ 1.646188][ T1] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[ 1.646354][ T1] NET: Registered protocol family 1
[ 1.646644][ T1] PCI: CLS 0 bytes, default 64
[ 1.647398][ T1] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[ 1.648913][ T1] Initialise system trusted keyrings
[ 1.648965][ T1] workingset: timestamp_bits=46 max_order=21 bucket_order=0
[ 1.650340][ T1] utf8_selftest: All 154 tests passed
[ 1.650566][ T1] Key type cifs.idmap registered
[ 1.650572][ T1] fuse: init (API version 7.32)
[ 1.671070][ T1] Key type asymmetric registered
[ 1.671077][ T1] Asymmetric key parser ‘x509’ registered
[ 1.671090][ T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[ 1.671094][ T1] io scheduler mq-deadline registered
[ 1.671100][ T1] io scheduler kyber registered
[ 1.671131][ T1] io scheduler bfq registered
[ 1.678557][ T1] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy init success
[ 1.679261][ T1] rockchip-hdptx-phy-hdmi fed70000.hdmiphy: hdptx phy init success
[ 1.680994][ T148] rk-pcie fe180000.pcie: invalid prsnt-gpios property in node
[ 1.681009][ T148] rk-pcie fe180000.pcie: no vpcie3v3 regulator found
[ 1.681132][ T149] rk-pcie fe150000.pcie: invalid prsnt-gpios property in node
[ 1.681141][ T148] rk-pcie fe180000.pcie: missing legacy IRQ resource
[ 1.681205][ T148] rk-pcie fe180000.pcie: IRQ msi not found
[ 1.681209][ T148] rk-pcie fe180000.pcie: use outband MSI support
[ 1.681213][ T148] rk-pcie fe180000.pcie: Missing config reg space
[ 1.681223][ T148] rk-pcie fe180000.pcie: host bridge /pcie@fe180000 ranges:
[ 1.681248][ T148] rk-pcie fe180000.pcie: err 0x00f3000000…0x00f30fffff -> 0x00f3000000
[ 1.681250][ T150] rk-pcie fe170000.pcie: invalid prsnt-gpios property in node
[ 1.681258][ T150] rk-pcie fe170000.pcie: no vpcie3v3 regulator found
[ 1.681262][ T148] rk-pcie fe180000.pcie: IO 0x00f3100000…0x00f31fffff -> 0x00f3100000
[ 1.681278][ T148] rk-pcie fe180000.pcie: MEM 0x00f3200000…0x00f3ffffff -> 0x00f3200000
[ 1.681285][ T148] rk-pcie fe180000.pcie: MEM 0x09c0000000…0x09ffffffff -> 0x09c0000000
[ 1.681308][ T148] rk-pcie fe180000.pcie: Missing config reg space
[ 1.681332][ T148] rk-pcie fe180000.pcie: invalid resource
[ 1.681367][ T1] pwm-backlight backlight: supply power not found, using dummy regulator
[ 1.681388][ T150] rk-pcie fe170000.pcie: missing legacy IRQ resource
[ 1.681395][ T150] rk-pcie fe170000.pcie: IRQ msi not found
[ 1.681399][ T150] rk-pcie fe170000.pcie: use outband MSI support
[ 1.681403][ T150] rk-pcie fe170000.pcie: Missing config reg space
[ 1.681408][ T150] rk-pcie fe170000.pcie: host bridge /pcie@fe170000 ranges:
[ 1.681418][ T150] rk-pcie fe170000.pcie: err 0x00f2000000…0x00f20fffff -> 0x00f2000000
[ 1.681429][ T150] rk-pcie fe170000.pcie: IO 0x00f2100000…0x00f21fffff -> 0x00f2100000
[ 1.681436][ T150] rk-pcie fe170000.pcie: MEM 0x00f2200000…0x00f2ffffff -> 0x00f2200000
[ 1.681441][ T150] rk-pcie fe170000.pcie: MEM 0x0980000000…0x09bfffffff -> 0x0980000000
[ 1.681464][ T150] rk-pcie fe170000.pcie: Missing config reg space
[ 1.681489][ T150] rk-pcie fe170000.pcie: invalid resource
[ 1.681575][ T1] iep: Module initialized.
[ 1.681600][ T1] mpp_service mpp-srv: 24995c1e48fb2 author: Ding Wei 2022-04-28 rockchip: video: mpp: Add soft reset+disable_irq before power off
[ 1.681605][ T1] mpp_service mpp-srv: probe start
[ 1.682602][ T1] mpp_vdpu2 fdb50400.vdpu: Adding to iommu group 1
[ 1.682801][ T1] mpp_vdpu2 fdb50400.vdpu: probe device
[ 1.682880][ T1] mpp_vdpu2 fdb50400.vdpu: reset group is empty!
[ 1.682884][ T1] vdpu_init:501: No aclk reset resource define
[ 1.682888][ T1] mpp_vdpu2 fdb50400.vdpu: reset group is empty!
[ 1.682891][ T1] vdpu_init:504: No hclk reset resource define
[ 1.682964][ T1] mpp_vdpu2 fdb50400.vdpu: probing finish
[ 1.683114][ T1] mpp_vepu2 jpege-ccu: probing start
[ 1.683118][ T1] mpp_vepu2 jpege-ccu: probing finish
[ 1.683212][ T1] mpp_vepu2 fdba0000.jpege-core: Adding to iommu group 5
[ 1.683333][ T1] mpp_vepu2 fdba0000.jpege-core: probing start
[ 1.683415][ T1] mpp_vepu2 fdba0000.jpege-core: attach ccu success
[ 1.683483][ T1] mpp_vepu2 fdba0000.jpege-core: probing finish
[ 1.683563][ T1] mpp_vepu2 fdba4000.jpege-core: Adding to iommu group 6
[ 1.683681][ T1] mpp_vepu2 fdba4000.jpege-core: probing start
[ 1.683753][ T1] mpp_vepu2 fdba4000.jpege-core: attach ccu success
[ 1.683823][ T1] mpp_vepu2 fdba4000.jpege-core: probing finish
[ 1.683901][ T1] mpp_vepu2 fdba8000.jpege-core: Adding to iommu group 7
[ 1.684022][ T1] mpp_vepu2 fdba8000.jpege-core: probing start
[ 1.684092][ T1] mpp_vepu2 fdba8000.jpege-core: attach ccu success
[ 1.684155][ T1] mpp_vepu2 fdba8000.jpege-core: probing finish
[ 1.684226][ T1] mpp_vepu2 fdbac000.jpege-core: Adding to iommu group 8
[ 1.684343][ T1] mpp_vepu2 fdbac000.jpege-core: probing start
[ 1.684412][ T1] mpp_vepu2 fdbac000.jpege-core: attach ccu success
[ 1.684474][ T1] mpp_vepu2 fdbac000.jpege-core: probing finish
[ 1.684676][ T1] mpp-iep2 fdbb0000.iep: Adding to iommu group 9
[ 1.684795][ T1] mpp-iep2 fdbb0000.iep: probe device
[ 1.684887][ T1] mpp-iep2 fdbb0000.iep: allocate roi buffer failed
[ 1.684945][ T1] mpp-iep2 fdbb0000.iep: probing finish
[ 1.685105][ T1] mpp_jpgdec fdb90000.jpegd: Adding to iommu group 4
[ 1.685295][ T1] mpp_jpgdec fdb90000.jpegd: probe device
[ 1.685432][ T1] mpp_jpgdec fdb90000.jpegd: probing finish
[ 1.685708][ T1] mpp_rkvdec2 fdc30000.rkvdec-ccu: rkvdec-ccu, probing start
[ 1.685752][ T1] mpp_rkvdec2 fdc30000.rkvdec-ccu: probing finish
[ 1.685820][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: Adding to iommu group 12
[ 1.686051][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: rkvdec-core, probing start
[ 1.686137][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_a is not found!
[ 1.686141][ T1] rkvdec2_init:697: No niu aclk reset resource define
[ 1.686145][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_h is not found!
[ 1.686148][ T1] rkvdec2_init:700: No niu hclk reset resource define
[ 1.686172][ T1] rkvdec2_resume:1309: fdc38100.rkvdec-core
[ 1.686202][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: core_mask=00010001
[ 1.686206][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: attach ccu as core 0
[ 1.686391][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: sram_start 0x00000000fd601000
[ 1.686395][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_iova 0x0000000010000000
[ 1.686399][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: sram_size 491520
[ 1.686403][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_size 1048576
[ 1.686435][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: min_width 512
[ 1.686457][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: probing finish
[ 1.686515][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: Adding to iommu group 13
[ 1.686728][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: rkvdec-core, probing start
[ 1.686810][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: shared_niu_a is not found!
[ 1.686814][ T1] rkvdec2_init:697: No niu aclk reset resource define
[ 1.686818][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: shared_niu_h is not found!
[ 1.686821][ T1] rkvdec2_init:700: No niu hclk reset resource define
[ 1.686844][ T1] rkvdec2_resume:1309: fdc48100.rkvdec-core
[ 1.686863][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: core_mask=00020002
[ 1.686879][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: attach ccu as core 1
[ 1.687083][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: sram_start 0x00000000fd679000
[ 1.687087][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_iova 0x0000000010100000
[ 1.687091][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: sram_size 487424
[ 1.687094][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_size 1048576
[ 1.687098][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: min_width 512
[ 1.687119][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: probing finish
[ 1.687280][ T1] mpp_rkvenc2 rkvenc-ccu: probing start
[ 1.687284][ T1] mpp_rkvenc2 rkvenc-ccu: probing finish
[ 1.687379][ T1] mpp_rkvenc2 fdbd0000.rkvenc-core: Adding to iommu group 10
[ 1.687539][ T1] mpp_rkvenc2 fdbd0000.rkvenc-core: probing start
[ 1.687552][ T1] mpp_rkvenc2 fdbd0000.rkvenc-core: link mode task capacity 8
[ 1.687663][ T1] mpp_rkvenc2 fdbd0000.rkvenc-core: attach ccu as core 0
[ 1.687735][ T1] mpp_rkvenc2 fdbd0000.rkvenc-core: probing finish
[ 1.687788][ T1] mpp_rkvenc2 fdbe0000.rkvenc-core: Adding to iommu group 11
[ 1.687996][ T1] mpp_rkvenc2 fdbe0000.rkvenc-core: probing start
[ 1.688009][ T1] mpp_rkvenc2 fdbe0000.rkvenc-core: link mode task capacity 8
[ 1.688133][ T1] mpp_rkvenc2 fdbe0000.rkvenc-core: attach ccu as core 1
[ 1.688199][ T1] mpp_rkvenc2 fdbe0000.rkvenc-core: probing finish
[ 1.688592][ T1] mpp_av1dec: Adding child /av1d@fdc70000
[ 1.688769][ T1] mpp_av1dec: register device av1d-master
[ 1.688783][ T1] mpp_av1dec av1d-master: av1_iommu_of_xlate,784
[ 1.688799][ T1] av1_iommu_probe_device,737, consumer : av1d-master, supplier : fdca0000.iommu
[ 1.688805][ T1] mpp_av1dec av1d-master: Adding to iommu group 17
[ 1.689028][ T1] mpp_av1dec av1d-master: probing start
[ 1.689178][ T1] mpp_av1dec av1d-master: probing finish
[ 1.689204][ T1] mpp_service mpp-srv: probe success
[ 1.696591][ T1] dma-pl330 fea10000.dma-controller: Loaded driver for PL330 DMAC-241330
[ 1.696599][ T1] dma-pl330 fea10000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[ 1.697255][ T1] dma-pl330 fea30000.dma-controller: Loaded driver for PL330 DMAC-241330
[ 1.697262][ T1] dma-pl330 fea30000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[ 1.697553][ T149] rk-pcie fe150000.pcie: missing legacy IRQ resource
[ 1.697564][ T149] rk-pcie fe150000.pcie: IRQ msi not found
[ 1.697569][ T149] rk-pcie fe150000.pcie: use outband MSI support
[ 1.697573][ T149] rk-pcie fe150000.pcie: Missing config reg space
[ 1.697580][ T149] rk-pcie fe150000.pcie: host bridge /pcie@fe150000 ranges:
[ 1.697591][ T149] rk-pcie fe150000.pcie: err 0x00f0000000…0x00f00fffff -> 0x00f0000000
[ 1.697599][ T149] rk-pcie fe150000.pcie: IO 0x00f0100000…0x00f01fffff -> 0x00f0100000
[ 1.697608][ T149] rk-pcie fe150000.pcie: MEM 0x00f0200000…0x00f0ffffff -> 0x00f0200000
[ 1.697614][ T149] rk-pcie fe150000.pcie: MEM 0x0900000000…0x093fffffff -> 0x0900000000
[ 1.697643][ T149] rk-pcie fe150000.pcie: Missing config reg space
[ 1.697672][ T149] rk-pcie fe150000.pcie: invalid resource
[ 1.697921][ T1] dma-pl330 fed10000.dma-controller: Loaded driver for PL330 DMAC-241330
[ 1.697927][ T1] dma-pl330 fed10000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[ 1.698618][ T1] rockchip-pvtm fda40000.pvtm: pvtm@0 probed
[ 1.698662][ T1] rockchip-pvtm fda50000.pvtm: pvtm@1 probed
[ 1.698699][ T1] rockchip-pvtm fda60000.pvtm: pvtm@2 probed
[ 1.698734][ T1] rockchip-pvtm fdaf0000.pvtm: pvtm@3 probed
[ 1.698768][ T1] rockchip-pvtm fdb30000.pvtm: pvtm@4 probed
[ 1.699083][ T1] rockchip-system-monitor rockchip-system-monitor: system monitor probe
[ 1.699739][ T1] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
[ 1.700135][ T1] febb0000.serial: ttyS8 at MMIO 0xfebb0000 (irq = 90, base_baud = 1500000) is a 16550A
[ 1.700625][ T173] random: fast init done
[ 1.700677][ T173] random: crng init done
[ 1.701263][ T1] rockchip-vop2 fdd90000.vop: Adding to iommu group 16
[ 1.707103][ T1] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x5, primary plane phy id: 2
[ 1.707113][ T1] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp1 assign plane mask: 0xa, primary plane phy id: 3
[ 1.707126][ T1] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x140, primary plane phy id: 8
[ 1.707133][ T1] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp3 assign plane mask: 0x280, primary plane phy id: 9
[ 1.718900][ T1] rockchip-drm display-subsystem: bound fdd90000.vop (ops vop2_component_ops)
[ 1.719432][ T1] dwhdmi-rockchip fde80000.hdmi: registered ddc I2C bus driver
[ 1.719581][ T1] rockchip-drm display-subsystem: bound fde80000.hdmi (ops dw_hdmi_rockchip_ops)
[ 1.720091][ T1] dwhdmi-rockchip fdea0000.hdmi: registered ddc I2C bus driver
[ 1.720222][ T1] rockchip-drm display-subsystem: bound fdea0000.hdmi (ops dw_hdmi_rockchip_ops)
[ 1.720254][ T1] dw-mipi-dsi2 fde20000.dsi: [drm:dw_mipi_dsi2_bind] ERROR Failed to find panel or bridge: -517
[ 1.725634][ T1] panel-simple-dsi fde20000.dsi.0: failed to get power regulator: -517
[ 1.729680][ T1] brd: module loaded
[ 1.734520][ T1] loop: module loaded
[ 1.734673][ T1] zram: Added device: zram0
[ 1.734783][ T1] system_heap: orders[0] = 6
[ 1.734787][ T1] system_heap: orders[1] = 4
[ 1.734790][ T1] system_heap: orders[2] = 0
[ 1.735095][ T1] SCSI Media Changer driver v0.25
[ 1.735631][ T1] ahci fe210000.sata: supply ahci not found, using dummy regulator
[ 1.735686][ T1] ahci fe210000.sata: supply phy not found, using dummy regulator
[ 1.735788][ T1] ahci fe210000.sata: supply target not found, using dummy regulator
[ 1.735849][ T1] ahci fe210000.sata: forcing port_map 0x0 -> 0x1
[ 1.735869][ T1] ahci fe210000.sata: AHCI 0001.0300 32 slots 1 ports 6 Gbps 0x1 impl platform mode
[ 1.735878][ T1] ahci fe210000.sata: flags: ncq sntf pm led clo only pmp fbs pio slum part ccc apst
[ 1.735886][ T1] ahci fe210000.sata: port 0 can do FBS, forcing FBSCP
[ 1.736649][ T1] scsi host0: ahci
[ 1.736761][ T1] ata1: SATA max UDMA/133 mmio [mem 0xfe210000-0xfe210fff] port 0x100 irq 79
[ 1.737587][ T1] rockchip-spi feb20000.spi: no high_speed pinctrl state

//各路电源初始,这里有PMIC RK806供电,如果异常需要检查PMIC;RK806的初始化要 cpu、ddr、gpu、npu的dvfs变频初始化之前完成,如果变频之后才开始初始化RK806会导致cpu、gpu、npu、ddr因电源域未准备好而无法初始化, 导致RK806初始化慢e 原因是dts里面配置的顺序不对,具体可以看Rockchip RK3588 kernel dts解析之电源模块 这个文章里面的介绍。
[ 1.738631][ T1] rk806 spi2.0: chip id: RK806,ver:0x1, 0x0
[ 1.738908][ T1] rk806 spi2.0: ON: 0x40 OFF:0x0
[ 1.740594][ T1] vdd_gpu_s0: supplied by vcc5v0_sys
[ 1.741046][ T1] vdd_npu_s0: supplied by vcc5v0_sys
[ 1.741573][ T1] vdd_log_s0: supplied by vcc5v0_sys
[ 1.741987][ T1] vdd_vdenc_s0: supplied by vcc5v0_sys
[ 1.742403][ T1] vdd_gpu_mem_s0: supplied by vcc5v0_sys
[ 1.742819][ T1] vdd_npu_mem_s0: supplied by vcc5v0_sys
[ 1.743343][ T1] vdd_2v0_pldo_s3: supplied by vcc5v0_sys
[ 1.743754][ T1] vdd_vdenc_mem_s0: supplied by vcc5v0_sys
[ 1.744106][ T1] vdd2_ddr_s3: supplied by vcc5v0_sys
[ 1.744697][ T1] vcc_1v1_nldo_s3: supplied by vcc5v0_sys
[ 1.745164][ T1] vdd_0v75_s3: supplied by vcc5v0_sys
[ 1.745585][ T1] vdd2l_0v9_ddr_s3: supplied by vcc5v0_sys
[ 1.745990][ T1] vdd_0v75_hdmi_edp_s0: supplied by vcc5v0_sys
[ 1.746426][ T1] avdd_0v75_s0: supplied by vcc_1v1_nldo_s3
[ 1.746913][ T1] vdd_0v85_s0: supplied by vcc_1v1_nldo_s3
[ 1.747461][ T1] avcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[ 1.747944][ T1] vdd1_1v8_ddr_s3: supplied by vdd_2v0_pldo_s3
[ 1.748415][ T1] avcc_1v8_codec_s0: supplied by vdd_2v0_pldo_s3
[ 1.748888][ T1] vcc_3v3_s3: supplied by vcc5v0_sys
[ 1.749298][ T1] vccio_sd_s0: supplied by vcc5v0_sys
[ 1.749714][ T1] vccio_1v8_s3: supplied by vcc5v0_sys
[ 1.750104][ T1] rk806 spi2.0: no sleep-setting state
[ 1.750110][ T1] rk806 spi2.0: no reset-setting pinctrl state
[ 1.750115][ T1] rk806 spi2.0: no dvs-setting pinctrl state
[ 1.751976][ T1] rk806 spi2.1: chip id: RK806,ver:0x1, 0x0
[ 1.752173][ T1] rk806 spi2.1: ON: 0x40 OFF:0x0
[ 1.752178][ T1] rk806 spi2.1: low_voltage_threshold missing!
[ 1.752183][ T1] rk806 spi2.1: shutdown_voltage_threshold missing!
[ 1.752188][ T1] rk806 spi2.1: shutdown_temperture_threshold missing!
[ 1.752193][ T1] rk806 spi2.1: hotdie_temperture_threshold missing!
[ 1.753639][ T1] vdd_cpu_big1_s0: supplied by vcc5v0_sys
[ 1.754141][ T1] vdd_cpu_big0_s0: supplied by vcc5v0_sys
[ 1.754627][ T1] vdd_cpu_lit_s0: supplied by vcc5v0_sys
[ 1.755104][ T1] vcc_3v3_s0: supplied by vcc5v0_sys
[ 1.755569][ T1] vdd_cpu_big1_mem_s0: supplied by vcc5v0_sys
[ 1.756032][ T1] vdd_cpu_big0_mem_s0: supplied by vcc5v0_sys
[ 1.756495][ T1] vcc_1v8_s0: supplied by vcc5v0_sys
[ 1.756957][ T1] vdd_cpu_lit_mem_s0: supplied by vcc5v0_sys
[ 1.757347][ T1] vddq_ddr_s0: supplied by vcc5v0_sys
[ 1.757926][ T1] vdd_ddr_s0: supplied by vcc5v0_sys
[ 1.758386][ T1] vdd_0v75_pll_s0: supplied by vcc_1v1_nldo_s3
[ 1.758854][ T1] vdd_ddr_pll_s0: supplied by vcc_1v1_nldo_s3
[ 1.759339][ T1] avdd_0v85_s0: supplied by vcc_1v1_nldo_s3
[ 1.759777][ T1] avdd_1v2_cam_s0: supplied by vdd_2v0_pldo_s3
[ 1.760233][ T1] avdd_1v2_s0: supplied by vdd_2v0_pldo_s3
[ 1.760720][ T1] vcc_1v8_cam_s0: supplied by vdd_2v0_pldo_s3
[ 1.761199][ T1] avdd1v8_ddr_pll_s0: supplied by vdd_2v0_pldo_s3
[ 1.761680][ T1] vdd_1v8_pll_s0: supplied by vdd_2v0_pldo_s3
[ 1.762157][ T1] vcc_3v3_sd_s0: supplied by vcc5v0_sys
[ 1.762515][ T1] vcc_2v8_cam_s0: supplied by vcc5v0_sys
[ 1.762936][ T1] pldo6_s3: supplied by vcc5v0_sys
[ 1.763243][ T1] rk806 spi2.1: no power-off pinctrl state
[ 1.763248][ T1] rk806 spi2.1: no sleep-setting state
[ 1.763252][ T1] rk806 spi2.1: no reset-setting pinctrl state
[ 1.763257][ T1] rk806 spi2.1: no dvs-setting pinctrl state

[ 1.764134][ T1] libphy: Fixed MDIO Bus: probed
[ 1.764181][ T1] tun: Universal TUN/TAP device driver, 1.6
[ 1.764834][ T1] rk_gmac-dwmac fe1b0000.ethernet: IRQ eth_lpi not found
[ 1.765073][ T1] rk_gmac-dwmac fe1b0000.ethernet: no regulator found
[ 1.765079][ T1] rk_gmac-dwmac fe1b0000.ethernet: clock input or output? (output).
[ 1.765084][ T1] rk_gmac-dwmac fe1b0000.ethernet: TX delay(0x43).
[ 1.765089][ T1] rk_gmac-dwmac fe1b0000.ethernet: Can not read property: rx_delay.
[ 1.765094][ T1] rk_gmac-dwmac fe1b0000.ethernet: set rx_delay to 0xffffffff
[ 1.765107][ T1] rk_gmac-dwmac fe1b0000.ethernet: integrated PHY? (no).
[ 1.765113][ T1] rk_gmac-dwmac fe1b0000.ethernet: cannot get clock mac_clk_rx
[ 1.765118][ T1] rk_gmac-dwmac fe1b0000.ethernet: cannot get clock mac_clk_tx
[ 1.765129][ T1] rk_gmac-dwmac fe1b0000.ethernet: cannot get clock clk_mac_speed
[ 1.765344][ T1] rk_gmac-dwmac fe1b0000.ethernet: init for RGMII_RXID
[ 1.765419][ T1] rk_gmac-dwmac fe1b0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[ 1.765427][ T1] rk_gmac-dwmac fe1b0000.ethernet: DWMAC4/5
[ 1.765432][ T1] rk_gmac-dwmac fe1b0000.ethernet: DMA HW capability register supported
[ 1.765437][ T1] rk_gmac-dwmac fe1b0000.ethernet: RX Checksum Offload Engine supported
[ 1.765441][ T1] rk_gmac-dwmac fe1b0000.ethernet: TX Checksum insertion supported
[ 1.765446][ T1] rk_gmac-dwmac fe1b0000.ethernet: Wake-Up On Lan supported
[ 1.765473][ T1] rk_gmac-dwmac fe1b0000.ethernet: TSO supported
[ 1.765477][ T1] rk_gmac-dwmac fe1b0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[ 1.765482][ T1] rk_gmac-dwmac fe1b0000.ethernet: Enabled Flow TC (entries=2)
[ 1.765486][ T1] rk_gmac-dwmac fe1b0000.ethernet: TSO feature enabled
[ 1.765491][ T1] rk_gmac-dwmac fe1b0000.ethernet: Using 32 bits DMA width
[ 1.887636][ T150] rk-pcie fe170000.pcie: PCIe Linking… LTSSM is 0x3
[ 1.896529][ T1] libphy: stmmac: probed
[ 1.897172][ T1] PPP generic driver version 2.4.2
[ 1.897232][ T1] PPP BSD Compression module registered
[ 1.897237][ T1] PPP Deflate Compression module registered
[ 1.897250][ T1] PPP MPPE Compression module registered
[ 1.897254][ T1] NET: Registered protocol family 24
[ 1.897265][ T1] PPTP driver version 0.8.5
[ 1.897433][ T1] usbcore: registered new interface driver catc
[ 1.897447][ T1] usbcore: registered new interface driver kaweth
[ 1.897451][ T1] pegasus: v0.9.3 (2013/04/25), Pegasus/Pegasus II USB Ethernet driver
[ 1.897463][ T1] usbcore: registered new interface driver pegasus
[ 1.897475][ T1] usbcore: registered new interface driver rtl8150
[ 1.897491][ T1] usbcore: registered new interface driver r8152
[ 1.897494][ T1] hso: drivers/net/usb/hso.c: Option Wireless
[ 1.897517][ T1] usbcore: registered new interface driver hso
[ 1.897531][ T1] usbcore: registered new interface driver asix
[ 1.897544][ T1] usbcore: registered new interface driver ax88179_178a
[ 1.897558][ T1] usbcore: registered new interface driver cdc_ether
[ 1.897571][ T1] usbcore: registered new interface driver cdc_eem
[ 1.897584][ T1] usbcore: registered new interface driver dm9601
[ 1.897599][ T1] usbcore: registered new interface driver smsc75xx
[ 1.897614][ T1] usbcore: registered new interface driver smsc95xx
[ 1.897627][ T1] usbcore: registered new interface driver gl620a
[ 1.897640][ T1] usbcore: registered new interface driver net1080
[ 1.897652][ T1] usbcore: registered new interface driver plusb
[ 1.897666][ T1] usbcore: registered new interface driver rndis_host
[ 1.897679][ T1] usbcore: registered new interface driver cdc_subset
[ 1.897692][ T1] usbcore: registered new interface driver zaurus
[ 1.897704][ T1] usbcore: registered new interface driver MOSCHIP usb-ethernet driver
[ 1.897718][ T1] usbcore: registered new interface driver int51x1
[ 1.897730][ T1] usbcore: registered new interface driver kalmia
[ 1.897742][ T1] usbcore: registered new interface driver ipheth
[ 1.897756][ T1] usbcore: registered new interface driver sierra_net
[ 1.897770][ T1] usbcore: registered new interface driver cx82310_eth
[ 1.897785][ T1] usbcore: registered new interface driver cdc_ncm
[ 1.897797][ T1] usbcore: registered new interface driver qmi_wwan
[ 1.897810][ T1] usbcore: registered new interface driver cdc_mbim
[ 1.904307][ T149] rk-pcie fe150000.pcie: PCIe Linking… LTSSM is 0x0
[ 1.910203][ T1] ehci_hcd: USB 2.0 ‘Enhanced’ Host Controller (EHCI) Driver
[ 1.910208][ T1] ehci-pci: EHCI PCI platform driver
[ 1.910231][ T1] ehci-platform: EHCI generic platform driver
[ 1.912615][ T1] ehci-platform fc800000.usb: EHCI Host Controller
[ 1.912686][ T1] ehci-platform fc800000.usb: new USB bus registered, assigned bus number 1
[ 1.912738][ T1] ehci-platform fc800000.usb: irq 20, io mem 0xfc800000
[ 1.913193][ T150] rk-pcie fe170000.pcie: PCIe Linking… LTSSM is 0x3
[ 1.923199][ T1] ehci-platform fc800000.usb: USB 2.0 started, EHCI 1.00
[ 1.923263][ T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 1.923268][ T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.923273][ T1] usb usb1: Product: EHCI Host Controller
[ 1.923278][ T1] usb usb1: Manufacturer: Linux 5.10.66 ehci_hcd
[ 1.923282][ T1] usb usb1: SerialNumber: fc800000.usb
[ 1.923462][ T1] hub 1-0:1.0: USB hub found
[ 1.923475][ T1] hub 1-0:1.0: 1 port detected
[ 1.925969][ T1] ehci-platform fc880000.usb: EHCI Host Controller
[ 1.926028][ T1] ehci-platform fc880000.usb: new USB bus registered, assigned bus number 2
[ 1.926071][ T1] ehci-platform fc880000.usb: irq 22, io mem 0xfc880000
[ 1.929865][ T149] rk-pcie fe150000.pcie: PCIe Linking… LTSSM is 0x0
[ 1.936530][ T1] ehci-platform fc880000.usb: USB 2.0 started, EHCI 1.00
[ 1.936583][ T1] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 1.936588][ T1] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.936593][ T1] usb usb2: Product: EHCI Host Controller
[ 1.936597][ T1] usb usb2: Manufacturer: Linux 5.10.66 ehci_hcd
[ 1.936601][ T1] usb usb2: SerialNumber: fc880000.usb
[ 1.936753][ T1] hub 2-0:1.0: USB hub found
[ 1.936765][ T1] hub 2-0:1.0: 1 port detected
[ 1.937036][ T1] ohci_hcd: USB 1.1 ‘Open’ Host Controller (OHCI) Driver
[ 1.937045][ T1] ohci-platform: OHCI generic platform driver
[ 1.937173][ T1] ohci-platform fc840000.usb: Generic Platform OHCI controller
[ 1.937233][ T1] ohci-platform fc840000.usb: new USB bus registered, assigned bus number 3
[ 1.937271][ T1] ohci-platform fc840000.usb: irq 21, io mem 0xfc840000
[ 1.939864][ T150] rk-pcie fe170000.pcie: PCIe Linking… LTSSM is 0x3
[ 1.943198][ T148] rk-pcie fe180000.pcie: PCIe Link up, LTSSM is 0x30011
[ 1.943264][ T148] rk-pcie fe180000.pcie: PCI host bridge to bus 0003:30
[ 1.943272][ T148] pci_bus 0003:30: root bus resource [bus 30-3f]
[ 1.943278][ T148] pci_bus 0003:30: root bus resource [??? 0xf3000000-0xf30fffff flags 0x0]
[ 1.943284][ T148] pci_bus 0003:30: root bus resource [io 0x0000-0xfffff] (bus address [0xf3100000-0xf31fffff])
[ 1.943289][ T148] pci_bus 0003:30: root bus resource [mem 0xf3200000-0xf3ffffff]
[ 1.943294][ T148] pci_bus 0003:30: root bus resource [mem 0x9c0000000-0x9ffffffff pref]
[ 1.943316][ T148] pci 0003:30:00.0: [1d87:3588] type 01 class 0x060400
[ 1.943333][ T148] pci 0003:30:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[ 1.943375][ T148] pci 0003:30:00.0: supports D1 D2
[ 1.943381][ T148] pci 0003:30:00.0: PME# supported from D0 D1 D3hot
[ 1.948545][ T148] pci 0003:30:00.0: Primary bus is hard wired to 0
[ 1.948551][ T148] pci 0003:30:00.0: bridge configuration invalid ([bus 01-ff]), reconfiguring
[ 1.948702][ T148] pci 0003:31:00.0: [10ec:8168] type 00 class 0x020000
[ 1.948766][ T148] pci 0003:31:00.0: reg 0x10: initial BAR value 0x00000000 invalid
[ 1.948771][ T148] pci 0003:31:00.0: reg 0x10: [io size 0x0100]
[ 1.948849][ T148] pci 0003:31:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
[ 1.948901][ T148] pci 0003:31:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
[ 1.949301][ T148] pci 0003:31:00.0: supports D1 D2
[ 1.949306][ T148] pci 0003:31:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.956530][ T149] rk-pcie fe150000.pcie: PCIe Linking… LTSSM is 0x1
[ 1.961540][ T148] pci_bus 0003:31: busn_res: [bus 31-3f] end is updated to 31
[ 1.961556][ T148] pci 0003:30:00.0: BAR 8: assigned [mem 0xf3200000-0xf32fffff]
[ 1.961562][ T148] pci 0003:30:00.0: BAR 6: assigned [mem 0xf3300000-0xf330ffff pref]
[ 1.961568][ T148] pci 0003:30:00.0: BAR 7: assigned [io 0x1000-0x1fff]
[ 1.961575][ T148] pci 0003:31:00.0: BAR 4: assigned [mem 0xf3200000-0xf3203fff 64bit]
[ 1.961618][ T148] pci 0003:31:00.0: BAR 2: assigned [mem 0xf3204000-0xf3204fff 64bit]
[ 1.961659][ T148] pci 0003:31:00.0: BAR 0: assigned [io 0x1000-0x10ff]
[ 1.961675][ T148] pci 0003:30:00.0: PCI bridge to [bus 31]
[ 1.961681][ T148] pci 0003:30:00.0: bridge window [io 0x1000-0x1fff]
[ 1.961686][ T148] pci 0003:30:00.0: bridge window [mem 0xf3200000-0xf32fffff]
[ 1.962730][ T148] pcieport 0003:30:00.0: PME: Signaling with IRQ 149
[ 1.969857][ T150] rk-pcie fe170000.pcie: PCIe Linking… LTSSM is 0x3
[ 1.983194][ T149] rk-pcie fe150000.pcie: PCIe Linking… LTSSM is 0x1
[ 1.996527][ T150] rk-pcie fe170000.pcie: PCIe Linking… LTSSM is 0x3
[ 1.997284][ T1] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[ 1.997290][ T1] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.997295][ T1] usb usb3: Product: Generic Platform OHCI controller
[ 1.997299][ T1] usb usb3: Manufacturer: Linux 5.10.66 ohci_hcd
[ 1.997303][ T1] usb usb3: SerialNumber: fc840000.usb
[ 1.997457][ T1] hub 3-0:1.0: USB hub found
[ 1.997470][ T1] hub 3-0:1.0: 1 port detected
[ 1.997713][ T1] ohci-platform fc8c0000.usb: Generic Platform OHCI controller
[ 1.997773][ T1] ohci-platform fc8c0000.usb: new USB bus registered, assigned bus number 4
[ 1.997812][ T1] ohci-platform fc8c0000.usb: irq 23, io mem 0xfc8c0000
[ 2.009860][ T149] rk-pcie fe150000.pcie: PCIe Linking… LTSSM is 0x0
[ 2.049518][ T190] ata1: SATA link down (SStatus 0 SControl 300)
[ 2.057256][ T1] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[ 2.057263][ T1] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.057267][ T1] usb usb4: Product: Generic Platform OHCI controller
[ 2.057271][ T1] usb usb4: Manufacturer: Linux 5.10.66 ohci_hcd
[ 2.057275][ T1] usb usb4: SerialNumber: fc8c0000.usb
[ 2.057423][ T1] hub 4-0:1.0: USB hub found
[ 2.057436][ T1] hub 4-0:1.0: 1 port detected
[ 2.057895][ T1] phy phy-fd5d4000.syscon:usb2-phy@4000.3: illegal mode
[ 2.057903][ T1] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller
[ 2.057961][ T1] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 5
[ 2.058041][ T1] xhci-hcd xhci-hcd.8.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000000002010010
[ 2.058060][ T1] xhci-hcd xhci-hcd.8.auto: irq 139, io mem 0xfc400000
[ 2.058170][ T1] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 2.058176][ T1] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.058180][ T1] usb usb5: Product: xHCI Host Controller
[ 2.058184][ T1] usb usb5: Manufacturer: Linux 5.10.66 xhci-hcd
[ 2.058188][ T1] usb usb5: SerialNumber: xhci-hcd.8.auto
[ 2.058335][ T1] hub 5-0:1.0: USB hub found
[ 2.058347][ T1] hub 5-0:1.0: 1 port detected
[ 2.058444][ T1] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller
[ 2.058494][ T1] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 6
[ 2.058501][ T1] xhci-hcd xhci-hcd.8.auto: Host supports USB 3.0 SuperSpeed
[ 2.058524][ T1] usb usb6: We don’t know the algorithms for LPM for this host, disabling LPM.
[ 2.058560][ T1] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[ 2.058565][ T1] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.058569][ T1] usb usb6: Product: xHCI Host Controller
[ 2.058573][ T1] usb usb6: Manufacturer: Linux 5.10.66 xhci-hcd
[ 2.058577][ T1] usb usb6: SerialNumber: xhci-hcd.8.auto
[ 2.058726][ T1] hub 6-0:1.0: USB hub found
[ 2.058737][ T1] hub 6-0:1.0: 1 port detected
[ 2.058880][ T1] usbcore: registered new interface driver cdc_acm
[ 2.058885][ T1] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[ 2.058906][ T1] usbcore: registered new interface driver usblp
[ 2.058921][ T1] usbcore: registered new interface driver cdc_wdm
[ 2.059025][ T1] usbcore: registered new interface driver uas
[ 2.059064][ T1] usbcore: registered new interface driver usb-storage
[ 2.059078][ T1] usbcore: registered new interface driver ums-alauda
[ 2.059092][ T1] usbcore: registered new interface driver ums-cypress
[ 2.059106][ T1] usbcore: registered new interface driver ums-datafab
[ 2.059119][ T1] usbcore: registered new interface driver ums_eneub6250
[ 2.059133][ T1] usbcore: registered new interface driver ums-freecom
[ 2.059147][ T1] usbcore: registered new interface driver ums-isd200
[ 2.059161][ T1] usbcore: registered new interface driver ums-jumpshot
[ 2.059175][ T1] usbcore: registered new interface driver ums-karma
[ 2.059189][ T1] usbcore: registered new interface driver ums-onetouch
[ 2.059203][ T1] usbcore: registered new interface driver ums-sddr09
[ 2.059217][ T1] usbcore: registered new interface driver ums-sddr55
[ 2.059230][ T1] usbcore: registered new interface driver ums-usbat
[ 2.059260][ T1] usbcore: registered new interface driver usbserial_generic
[ 2.059269][ T1] usbserial: USB Serial support registered for generic
[ 2.059285][ T1] usbcore: registered new interface driver option
[ 2.059293][ T1] usbserial: USB Serial support registered for GSM modem (1-port)
[ 2.059366][ T1] usbcore: registered new interface driver trancevibrator
[ 2.059624][ T1] usbcore: registered new interface driver xpad
[ 2.059642][ T1] usbcore: registered new interface driver usb_acecad
[ 2.059657][ T1] usbcore: registered new interface driver aiptek
[ 2.059672][ T1] usbcore: registered new interface driver gtco
[ 2.059688][ T1] usbcore: registered new interface driver hanwang
[ 2.059702][ T1] usbcore: registered new interface driver kbtab
[ 2.060952][ T1] input: rk805 pwrkey as /devices/platform/feb20000.spi/spi_master/spi2/spi2.0/rk805-pwrkey.3.auto/input/input0
[ 2.061053][ T1] rk805-pwrkey rk805-pwrkey.6.auto: device is disabled
[ 2.061061][ T1] rk805-pwrkey: probe of rk805-pwrkey.6.auto failed with error -22
[ 2.061160][ T1] i2c /dev entries driver
[ 2.087053][ T1] rtc-hym8563 2-0051: rtc information is valid
[ 2.092358][ T1] rtc-hym8563 2-0051: registered as rtc0
[ 2.093374][ T1] rtc-hym8563 2-0051: setting system clock to 2022-04-29T05:57:35 UTC (1651211855)
[ 2.099544][ T1] rkcifhw fdce0000.rkcif: Adding to iommu group 15
[ 2.100046][ T1] rkcifhw fdce0000.rkcif: No reserved memory region assign to CIF
[ 2.100234][ T1] rkcif rkcif-mipi-lvds: Adding to iommu group 15
[ 2.100267][ T1] rkcif rkcif-mipi-lvds: rkcif driver version: v00.01.0a
[ 2.100372][ T1] rkcif rkcif-mipi-lvds: attach to cif hw node
[ 2.100385][ T1] rkcif rkcif-mipi-lvds: rkcif wait line 0
[ 2.100396][ T1] : terminal subdev does not exist
[ 2.100405][ T1] : terminal subdev does not exist
[ 2.100414][ T1] : terminal subdev does not exist
[ 2.100422][ T1] : terminal subdev does not exist
[ 2.100432][ T1] : get_remote_sensor: video pad[0] is null
[ 2.100440][ T1] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[ 2.100450][ T1] : get_remote_sensor: video pad[0] is null
[ 2.100458][ T1] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[ 2.100467][ T1] : get_remote_sensor: video pad[0] is null
[ 2.100475][ T1] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[ 2.100484][ T1] : get_remote_sensor: video pad[0] is null
[ 2.100492][ T1] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[ 2.103148][ T1] rkcif rkcif-mipi-lvds: Entity type for entity rockchip-mipi-csi2 was not initialized!
[ 2.103163][ T1] rockchip-mipi-csi2: Async registered subdev
[ 2.103181][ T1] rockchip-mipi-csi2: probe success, v4l2_dev:rkcif-mipi-lvds!
[ 2.104070][ T1] rkisp_hw fdcb0000.rkisp: Adding to iommu group 14
[ 2.104274][ T1] rkisp_hw fdcb0000.rkisp: is_thunderboot: 0
[ 2.104288][ T1] rkisp_hw fdcb0000.rkisp: max input:0x0@0fps
[ 2.104299][ T1] rkisp_hw fdcb0000.rkisp: Missing rockchip,grf property
[ 2.104455][ T1] rkisp_hw fdcb0000.rkisp: no find phandle sram
[ 2.105079][ T1] rkisp rkisp0-vir0: rkisp driver version: v01.09.00
[ 2.105191][ T1] rkisp rkisp0-vir0: No memory-region-thunderboot specified
[ 2.105348][ T1] rkisp rkisp0-vir0: Entity type for entity rkisp-isp-subdev was not initialized!
[ 2.108148][ T1] rk_hdmirx fdee0000.hdmirx-controller: No reserved memory for HDMIRX, use default CMA
[ 2.108184][ T1] rk_hdmirx fdee0000.hdmirx-controller: hdmirx_probe: cpu_aff:0x400, Bound_cpu:4
[ 2.108711][ T1] rk_hdmirx fdee0000.hdmirx-controller: hdmirx_audio_interrupts_setup: 0
[ 2.109547][ T1] rk_hdmirx fdee0000.hdmirx-controller: rk_hdmirx_hdcp_register success
[ 2.109565][ T1] rk_hdmirx fdee0000.hdmirx-controller: fdee0000.hdmirx-controller driver probe ok!
[ 2.109649][ T1] usbcore: registered new interface driver uvcvideo
[ 2.109653][ T1] USB Video Class driver (1.1.1)
[ 2.110154][ T1] __power_supply_register: Expected proper parent device for ‘test_ac’
[ 2.110253][ T1] __power_supply_register: Expected proper parent device for ‘test_battery’
[ 2.110360][ T1] thermal thermal_zone7: power_allocator: sustainable_power will be estimated
[ 2.110415][ T1] __power_supply_register: Expected proper parent device for ‘test_usb’
[ 2.111067][ T1] rockchip-thermal fec00000.tsadc: Missing rockchip,grf property
[ 2.111493][ T1] rockchip-thermal fec00000.tsadc: tsadc is probed successfully!
[ 2.111728][ T1] device-mapper: uevent: version 1.0.3
[ 2.111818][ T1] device-mapper: ioctl: 4.44.0-ioctl (2021-02-01) initialised: dm-devel@redhat.com
[ 2.111918][ T1] Bluetooth: HCI UART driver ver 2.3
[ 2.111924][ T1] Bluetooth: HCI UART protocol H4 registered
//CPU频率及变频初始化 ,注意在这之前需要需要先完成RK806电源部分的初始化,否则CPU变频会异常。
[ 2.112240][ T1] cpu cpu0: leakage=0
[ 2.113707][ T1] cpu cpu0: pvtm=1568
[ 2.113766][ T1] cpu cpu0: pvtm-volt-sel=6
[ 2.114247][ T1] cpu cpu4: leakage=0
[ 2.115671][ T1] cpu cpu4: pvtm=1811
[ 2.115722][ T1] cpu cpu4: pvtm-volt-sel=5
[ 2.116188][ T1] cpu cpu6: leakage=0
[ 2.117597][ T1] cpu cpu6: pvtm=1812
[ 2.117646][ T1] cpu cpu6: pvtm-volt-sel=5
[ 2.118397][ T1] cpu cpu0: avs=0
[ 2.118983][ T1] cpu cpu4: avs=0
[ 2.119553][ T1] cpu cpu6: avs=0
[ 2.119753][ T1] cpu cpu0: EM: created perf domain
[ 2.119797][ T1] cpu cpu0: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[ 2.120434][ T1] cpu cpu4: EM: created perf domain
[ 2.120468][ T1] cpu cpu4: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[ 2.121213][ T1] cpu cpu6: EM: created perf domain
[ 2.121582][ T1] cpu cpu6: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[ 2.122807][ T1] sdhci: Secure Digital Host Controller Interface driver
[ 2.122814][ T1] sdhci: Copyright© Pierre Ossman
[ 2.122818][ T1] Synopsys Designware Multimedia Card Interface Driver
[ 2.123111][ T1] sdhci-pltfm: SDHCI platform and OF driver helper
[ 2.123856][ T1] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active.
[ 2.123878][ T1] SMCCC: SOC_ID: ARCH_FEATURES(ARCH_SOC_ID) returned error: fffffffffffffffd
[ 2.124116][ T1] cryptodev: driver 1.12 loaded.
[ 2.124127][ T1] hid: raw HID events driver © Jiri Kosina
[ 2.124625][ T1] usbcore: registered new interface driver usbhid
[ 2.124628][ T1] usbhid: USB HID core driver
[ 2.124685][ T1] ashmem: initialized
[ 2.125615][ T1] optee: probing for conduit method.
[ 2.125625][ T1] optee: revision 3.13 (8e053a88)
[ 2.125723][ T1] optee: initialized driver
[ 2.125777][ T1] rknandbase v1.2 2021-01-07
[ 2.125891][ T1] usbcore: registered new interface driver snd-usb-audio
[ 2.128228][ T1] input: headset-keys as /devices/platform/es8388-sound/input/input1
[ 2.138683][ T1] ES8323 7-0011: ASoC: error at soc_component_write_no_lock on ES8323.7-0011: -5
[ 2.153326][ T7] mmc0: SDHCI controller on fe2e0000.mmc [fe2e0000.mmc] using ADMA
[ 2.188790][ T208] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[ 2.189322][ T1] input: rockchip-es8388 Headset as /devices/platform/es8388-sound/sound/card0/input2
[ 2.189334][ T208] mmcblk0: mmc0:0001 BJTD4R 29.1 GiB
[ 2.189515][ T208] mmcblk0boot0: mmc0:0001 BJTD4R partition 1 4.00 MiB
[ 2.189697][ T208] mmcblk0boot1: mmc0:0001 BJTD4R partition 2 4.00 MiB
[ 2.189825][ T208] mmcblk0rpmb: mmc0:0001 BJTD4R partition 3 4.00 MiB, chardev (235:0)
[ 2.190120][ T1] netem: version 1.3
[ 2.190132][ T1] u32 classifier
[ 2.190140][ T1] input device check on
[ 2.190147][ T1] Actions configured
[ 2.191208][ T1] xt_time: kernel timezone is -0000
[ 2.191317][ T1] gre: GRE over IPv4 demultiplexor driver
[ 2.191326][ T1] IPv4 over IPsec tunneling driver
[ 2.191860][ T1] Initializing XFRM netlink socket
[ 2.191877][ T1] IPsec XFRM device driver
[ 2.192125][ T1] NET: Registered protocol family 10
[ 2.192532][ T208] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14
[ 2.192969][ T1] Segment Routing with IPv6
[ 2.193026][ T1] mip6: Mobile IPv6
[ 2.193498][ T1] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[ 2.194106][ T1] NET: Registered protocol family 17
[ 2.194125][ T1] NET: Registered protocol family 15
[ 2.194163][ T1] Bridge firewalling registered
[ 2.194504][ T1] Bluetooth: RFCOMM TTY layer initialized
[ 2.194518][ T1] Bluetooth: RFCOMM socket layer initialized
[ 2.194542][ T1] Bluetooth: RFCOMM ver 1.11
[ 2.194555][ T1] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 2.194561][ T1] Bluetooth: BNEP filters: protocol multicast
[ 2.194572][ T1] Bluetooth: BNEP socket layer initialized
[ 2.194579][ T1] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 2.194587][ T1] Bluetooth: HIDP socket layer initialized
[ 2.194608][ T1] l2tp_core: L2TP core driver, V2.0
[ 2.194618][ T1] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[ 2.194624][ T1] [BT_RFKILL]: Enter rfkill_rk_init
[ 2.194630][ T1] [WLAN_RFKILL]: Enter rfkill_wlan_init
[ 2.195374][ T1] [WLAN_RFKILL]: Enter rfkill_wlan_probe
[ 2.195403][ T1] [WLAN_RFKILL]: can’t find rockchip,grf property
[ 2.195411][ T1] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6255
[ 2.195418][ T1] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control.
[ 2.195425][ T1] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio.
[ 2.195471][ T1] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,poweren_gpio = 105 flags = 0.
[ 2.195494][ T1] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,host_wake_irq = 103, flags = 0.
[ 2.195504][ T1] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found !
[ 2.195510][ T1] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio
[ 2.195517][ T1] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 1
[ 2.195524][ T1] [WLAN_RFKILL]: Exit rfkill_wlan_probe
[ 2.196261][ T1] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 100.
[ 2.196283][ T1] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 102.
[ 2.196296][ T1] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 97.
[ 2.196309][ T1] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 96.
[ 2.197338][ T1] [BT_RFKILL]: Request irq for bt wakeup host
[ 2.197407][ T1] [BT_RFKILL]: ** disable irq
[ 2.197539][ T1] [BT_RFKILL]: bt_default device registered.
[ 2.198400][ T1] imx415 5-001a: driver version: 00.01.07
[ 2.198415][ T1] imx415 5-001a: Get hdr mode failed! no hdr default
[ 2.198441][ T1] imx415 5-001a: Failed to get reset-gpios
[ 2.198459][ T1] imx415 5-001a: Failed to get power-gpios
[ 2.198468][ T1] imx415 5-001a: could not get default pinstate
[ 2.198475][ T1] imx415 5-001a: could not get sleep pinstate
[ 2.198526][ T1] imx415 5-001a: supply dvdd not found, using dummy regulator
[ 2.198629][ T1] imx415 5-001a: supply dovdd not found, using dummy regulator
[ 2.212517][ T233] vendor storage:20190527 ret = 0
[ 2.267412][ T1] imx415 5-001a: Unexpected sensor id(000000), ret(-5)
[ 2.268524][ T1] registered taskstats version 1
[ 2.268549][ T1] Loading compiled-in X.509 certificates
[ 2.268658][ T1] Key type ._fscrypt registered
[ 2.268669][ T1] Key type .fscrypt registered
[ 2.268677][ T1] Key type fscrypt-provisioning registered
[ 2.268923][ T1] pstore: Using crash dump compression: deflate
[ 2.269254][ T1] rga3_core0 fdb60000.rga: Adding to iommu group 2
[ 2.269489][ T1] rga: rga3_core0_irq, irq = 32, match scheduler
[ 2.269844][ T1] rga: rga3_core0 driver loaded successfully ver:3.0.76831
[ 2.269922][ T1] rga: rga3_core0 probe successfully
[ 2.270369][ T1] rga3_core1 fdb70000.rga: Adding to iommu group 3
[ 2.270572][ T1] rga: rga3_core1_irq, irq = 33, match scheduler
[ 2.270976][ T1] rga: rga3_core1 driver loaded successfully ver:3.0.76831
[ 2.271002][ T1] rga: rga3_core1 probe successfully
[ 2.271411][ T1] rga: rga2_irq, irq = 34, match scheduler
[ 2.271813][ T1] rga: rga2 driver loaded successfully ver:3.2.63318
[ 2.271831][ T1] rga: rga2 probe successfully
[ 2.272394][ T1] rga: Module initialized. v1.2.10
[ 2.293345][ T150] rk-pcie fe170000.pcie: PCIe Link up, LTSSM is 0x30011
[ 2.293534][ T150] rk-pcie fe170000.pcie: PCI host bridge to bus 0002:20
[ 2.293552][ T150] pci_bus 0002:20: root bus resource [bus 20-2f]
[ 2.293565][ T150] pci_bus 0002:20: root bus resource [??? 0xf2000000-0xf20fffff flags 0x0]
[ 2.293580][ T150] pci_bus 0002:20: root bus resource [io 0x100000-0x1fffff] (bus address [0xf2100000-0xf21fffff])
[ 2.293591][ T150] pci_bus 0002:20: root bus resource [mem 0xf2200000-0xf2ffffff]
[ 2.293603][ T150] pci_bus 0002:20: root bus resource [mem 0x980000000-0x9bfffffff pref]
[ 2.293644][ T150] pci 0002:20:00.0: [1d87:3588] type 01 class 0x060400
[ 2.293669][ T150] pci 0002:20:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[ 2.293730][ T150] pci 0002:20:00.0: supports D1 D2
[ 2.293741][ T150] pci 0002:20:00.0: PME# supported from D0 D1 D3hot
[ 2.305990][ T150] pci 0002:20:00.0: Primary bus is hard wired to 0
[ 2.306014][ T150] pci 0002:20:00.0: bridge configuration invalid ([bus 01-ff]), reconfiguring
[ 2.306251][ T150] pci 0002:21:00.0: [14e4:449d] type 00 class 0x028000
[ 2.306345][ T150] pci 0002:21:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit]
[ 2.306403][ T150] pci 0002:21:00.0: reg 0x18: [mem 0x00000000-0x003fffff 64bit]
[ 2.306942][ T150] pci 0002:21:00.0: supports D1 D2
[ 2.306955][ T150] pci 0002:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 2.307873][ T9] pcie20_avdd0v85: supplied by avdd_0v85_s0
[ 2.308138][ T7] mali fb000000.gpu: Kernel DDK version g11p0-01eac0
[ 2.308373][ T9] pcie20_avdd1v8: supplied by avcc_1v8_s0
[ 2.309116][ T9] pcie30_avdd0v75: supplied by avdd_0v75_s0
[ 2.309749][ T7] mali fb000000.gpu: leakage=0
[ 2.309839][ T9] pcie30_avdd1v8: supplied by avcc_1v8_s0
[ 2.310329][ T9] vcc3v3_lcd0_n: supplied by vcc_1v8_s0
[ 2.311321][ T7] mali fb000000.gpu: pvtm=892
[ 2.311348][ T9] rockchip-dmc dmc: leakage=0
[ 2.311358][ T7] mali fb000000.gpu: pvtm-volt-sel=4

下面是ddr变频的初始化,DDR变频依赖CPU变频,如果cpu变频异常就会导致ddr变频失败,会出现错误log:rockchip-dmc dmc: cpu1 policy NULL,这里也可能是cpu2/3/4/5/6/7。cpu编译异常一般是cpu供电异常,可以先检查上面uboot阶段提到cpu大核的供电log是否正常,如果不是800000uv就需要查硬件给cpu供电的DCDC
[ 2.311584][ T9] rockchip-dmc dmc: avs=0
[ 2.311598][ T9] rockchip-dmc dmc: current ATF version 0x100
[ 2.311748][ T9] rockchip-dmc dmc: normal_rate = 1560000000
[ 2.311757][ T9] rockchip-dmc dmc: reboot_rate = 2112000000
[ 2.311764][ T9] rockchip-dmc dmc: suspend_rate = 528000000
[ 2.311771][ T9] rockchip-dmc dmc: video_4k_rate = 1560000000
[ 2.311778][ T9] rockchip-dmc dmc: video_4k_10b_rate = 1560000000
[ 2.311785][ T9] rockchip-dmc dmc: boost_rate = 2112000000
[ 2.311791][ T9] rockchip-dmc dmc: fixed_rate(isp|cif0|cif1|dualview) = 2112000000
[ 2.311798][ T9] rockchip-dmc dmc: performance_rate = 2112000000
[ 2.311808][ T9] rockchip-dmc dmc: failed to get vop bandwidth to dmc rate
[ 2.311814][ T9] rockchip-dmc dmc: failed to get vop pn to msch rl
[ 2.311922][ T9] rockchip-dmc dmc: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[ 2.311951][ T9] rockchip-dmc dmc: could not find power_model node
[ 2.312080][ T7] mali fb000000.gpu: avs=0
[ 2.314339][ T7] W : [File] : drivers/gpu/arm/bifrost/platform/rk/mali_kbase_config_rk.c; [Line] : 132; [Func] : kbase_platform_rk_init(); power-off-delay-ms not available.
[ 2.314606][ T7] mali fb000000.gpu: r0p0 status 5 is unknown; treating as r0p0 status 0
[ 2.314616][ T7] mali fb000000.gpu: GPU identified as 0x7 arch 10.8.6 r0p0 status 0
[ 2.314678][ T7] mali fb000000.gpu: No priority control manager is configured
[ 2.314686][ T7] mali fb000000.gpu: No memory group manager is configured
[ 2.314708][ T7] mali fb000000.gpu: Protected memory allocator not available
[ 2.315246][ T7] mali fb000000.gpu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[ 2.316009][ T7] mali fb000000.gpu: Probed as mali0
[ 2.328713][ T150] pci_bus 0002:21: busn_res: [bus 21-2f] end is updated to 21
[ 2.328761][ T150] pci 0002:20:00.0: BAR 8: assigned [mem 0xf2200000-0xf27fffff]
[ 2.328778][ T150] pci 0002:20:00.0: BAR 6: assigned [mem 0xf2800000-0xf280ffff pref]
[ 2.328797][ T150] pci 0002:21:00.0: BAR 2: assigned [mem 0xf2400000-0xf27fffff 64bit]
[ 2.328847][ T150] pci 0002:21:00.0: BAR 0: assigned [mem 0xf2200000-0xf220ffff 64bit]
[ 2.328896][ T150] pci 0002:20:00.0: PCI bridge to [bus 21]
[ 2.328909][ T150] pci 0002:20:00.0: bridge window [mem 0xf2200000-0xf27fffff]
[ 2.328937][ T9] rockchip-csi2-dphy csi2-dcphy0: csi2 dphy0 probe successfully!
[ 2.331349][ T150] pcieport 0002:20:00.0: PME: Signaling with IRQ 164
[ 2.333435][ T9] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x5, primary plane phy id: 2
[ 2.333461][ T9] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp1 assign plane mask: 0xa, primary plane phy id: 3
[ 2.333484][ T9] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x140, primary plane phy id: 8
[ 2.333495][ T9] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp3 assign plane mask: 0x280, primary plane phy id: 9
[ 2.346720][ T205] usb 4-1: new low-speed USB device number 2 using ohci-platform
[ 2.355395][ T9] rockchip-drm display-subsystem: bound fdd90000.vop (ops vop2_component_ops)
[ 2.358230][ T9] dwhdmi-rockchip fde80000.hdmi: registered ddc I2C bus driver
[ 2.359846][ T9] rockchip-drm display-subsystem: bound fde80000.hdmi (ops dw_hdmi_rockchip_ops)
[ 2.361994][ T9] dwhdmi-rockchip fdea0000.hdmi: registered ddc I2C bus driver
[ 2.363289][ T9] rockchip-drm display-subsystem: bound fdea0000.hdmi (ops dw_hdmi_rockchip_ops)
[ 2.363349][ T9] dw-mipi-dsi2 fde20000.dsi: [drm:dw_mipi_dsi2_bind] ERROR Failed to find panel or bridge: -517
[ 2.374969][ T9] input: adc-keys as /devices/platform/adc-keys/input/input3
[ 2.375777][ T7] <>[gt1x_ts_probe:537] GTP Driver Version: V1.4<2015/07/10>
[ 2.375798][ T7] <>[gt1x_ts_probe:538] GTP I2C Address: 0x14
[ 2.376003][ T7] <>[gt1x_parse_dt:334] vdd_ana not specified, fallback to power-supply
[ 2.376173][ T7] <>[gt1x_reset_guitar:784] GTP RESET!
[ 2.382239][ T9] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x5, primary plane phy id: 2
[ 2.382268][ T9] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp1 assign plane mask: 0xa, primary plane phy id: 3
[ 2.382290][ T9] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x140, primary plane phy id: 8
[ 2.382302][ T9] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp3 assign plane mask: 0x280, primary plane phy id: 9
[ 2.400965][ T9] rockchip-drm display-subsystem: bound fdd90000.vop (ops vop2_component_ops)
[ 2.403465][ T9] dwhdmi-rockchip fde80000.hdmi: registered ddc I2C bus driver
[ 2.405088][ T9] rockchip-drm display-subsystem: bound fde80000.hdmi (ops dw_hdmi_rockchip_ops)
[ 2.407639][ T9] dwhdmi-rockchip fdea0000.hdmi: registered ddc I2C bus driver
[ 2.408366][ T9] rockchip-drm display-subsystem: bound fdea0000.hdmi (ops dw_hdmi_rockchip_ops)
[ 2.408438][ T9] rockchip-drm display-subsystem: bound fde20000.dsi (ops dw_mipi_dsi2_ops)
[ 2.408476][ T9] rockchip-drm display-subsystem: bound fde50000.dp (ops dw_dp_component_ops)
[ 2.408508][ T9] rockchip-drm display-subsystem: bound fde60000.dp (ops dw_dp_component_ops)
[ 2.459504][ T9] rockchip-vop2 fdd90000.vop: [drm:vop2_wait_power_domain_off] ERROR wait pd7 off timeout power_ctrl: 0x7f
[ 2.472040][ T7] <>[gt1x_get_chip_type:903] Chip Type: GT1X
[ 2.482089][ T7] <>[gt1x_read_version:859] IC VERSION:GT1158_00012A(Patch)_0102(Mask)_00(SensorID)
[ 2.482180][ T7] <>[gt1x_init_panel:604] Config group0 used, length:239
[ 2.482211][ T7] <>[gt1x_init_panel:655] X_MAX=720,Y_MAX=1280,TRIGGER=0x01,WAKEUP_LEVEL=1
[ 2.612582][ T205] usb 4-1: New USB device found, idVendor=192f, idProduct=0916, bcdDevice= 2.00
[ 2.612624][ T205] usb 4-1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[ 2.612640][ T205] usb 4-1: Product: USB Optical Mouse
[ 2.620389][ T205] input: USB Optical Mouse as /devices/platform/fc8c0000.usb/usb4/4-1/4-1:1.0/0003:192F:0916.0001/input/input4
[ 2.643400][ T9] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer device
[ 2.646096][ T9] [drm] Initialized rockchip 3.0.0 20140818 for display-subsystem on minor 0
[ 2.647592][ T9] debugfs: File ‘Capture’ in directory ‘dapm’ already present!
[ 2.650034][ T9] input: rockchip-hdmi0 rockchip-hdmi0 as /devices/platform/hdmi0-sound/sound/card2/input5
[ 2.677249][ T205] hid-generic 0003:192F:0916.0001: input,hidraw0: USB HID v1.11 Mouse [USB Optical Mouse] on usb-fc8c0000.usb-1/input0
[ 2.680879][ T9] debugfs: File ‘Capture’ in directory ‘dapm’ already present!
[ 2.683529][ T9] input: rockchip-hdmi1 rockchip-hdmi1 as /devices/platform/hdmi1-sound/sound/card3/input6
[ 2.690371][ T1] rkcif rkcif-mipi-lvds: clear unready subdev num: 1
[ 2.690451][ T1] rockchip-csi2-dphy0: No link between dphy and sensor
[ 2.691521][ T1] rockchip-csi2-dphy0: No link between dphy and sensor
[ 2.691590][ T1] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote terminal sensor failed!
[ 2.691614][ T1] rkcif-mipi-lvds: Async subdev notifier completed
[ 2.691637][ T1] rockchip-csi2-dphy0: No link between dphy and sensor
[ 2.691675][ T1] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote terminal sensor failed!
[ 2.691698][ T1] rkcif-mipi-lvds: There is not terminal subdev, not synchronized with ISP
[ 2.693444][ T1] RKNPU fdab0000.npu: Adding to iommu group 0
[ 2.693624][ T1] RKNPU fdab0000.npu: RKNPU: rknpu iommu is enabled, using iommu mode
[ 2.694711][ T1] RKNPU fdab0000.npu: can’t request region for resource [mem 0xfdab0000-0xfdabffff]
[ 2.694739][ T1] RKNPU fdab0000.npu: can’t request region for resource [mem 0xfdac0000-0xfdacffff]
[ 2.694756][ T1] RKNPU fdab0000.npu: can’t request region for resource [mem 0xfdad0000-0xfdadffff]
[ 2.695227][ T1] [drm] Initialized rknpu 0.7.0 20220328 for fdab0000.npu on minor 1
[ 2.696638][ T1] RKNPU fdab0000.npu: leakage=0
[ 2.698435][ T1] RKNPU fdab0000.npu: pvtm=910
[ 2.698481][ T1] RKNPU fdab0000.npu: pvtm-volt-sel=3
[ 2.699341][ T1] RKNPU fdab0000.npu: avs=0
[ 2.699484][ T1] RKNPU fdab0000.npu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[ 2.700294][ T1] RKNPU fdab0000.npu: failed to find power_model node
[ 2.700305][ T1] RKNPU fdab0000.npu: RKNPU: failed to initialize power model
[ 2.700313][ T1] RKNPU fdab0000.npu: RKNPU: failed to get dynamic-coefficient
[ 2.701182][ T1] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 2.703123][ T1] cfg80211: Loaded X.509 cert ‘sforshee: 00b28ddf47aef9cea7’
[ 2.704596][ T1] rockchip-pm rockchip-suspend: not set pwm-regulator-config
[ 2.705300][ T1] I : [File] : drivers/gpu/arm/mali400/mali/linux/mali_kernel_linux.c; [Line] : 409; [Func] : mali_module_init(); svn_rev_string_from_arm of this mali_ko is ‘’, rk_ko_ver is ‘5’, built at ‘08:47:54’, on ‘Apr 28 2022’.
[ 2.705642][ T1] Mali:
[ 2.705646][ T1] Mali device driver loaded
[ 2.705664][ T1] rkisp rkisp0-vir0: clear unready subdev num: 1
[ 2.705869][ T208] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 2.705884][ T208] cfg80211: failed to load regulatory.db
[ 2.705973][ T1] rkisp0-vir0: Async subdev notifier completed
[ 2.705988][ T1] ALSA device list:
[ 2.705998][ T1] #0: rockchip-es8388
[ 2.706007][ T1] #1: rockchip,hdmiin
[ 2.706014][ T1] #2: rockchip-hdmi0
[ 2.706021][ T1] #3: rockchip-hdmi1
[ 2.711028][ T7] input: goodix-ts as /devices/virtual/input/input7
[ 2.711889][ T1] Freeing unused kernel memory: 1344K

--------------------Android init阶段---------------------
[ 2.736852][ T1] Run /init as init process
[ 2.740391][ T1] init: init first stage started!
[ 2.740668][ T1] init: Unable to open /lib/modules, skipping module loading.
[ 2.741066][ T1] init: Copied ramdisk prop to /second_stage_resources/system/etc/ramdisk/build.prop
[ 2.741588][ T1] init: [libfs_mgr]ReadFstabFromDt(): failed to read fstab from dt
[ 2.742944][ T1] init: Using Android DT directory /proc/device-tree/firmware/android/
[ 2.829521][ T1] init: [libfs_mgr]superblock s_max_mnt_count:65535,/dev/block/by-name/metadata
[ 2.830023][ T1] EXT4-fs (mmcblk0p11): Ignoring removed nomblk_io_submit option
[ 2.836765][ T1] EXT4-fs (mmcblk0p11): mounted filesystem with ordered data mode. Opts: errors=remount-ro,nomblk_io_submit
[ 2.836848][ T1] ext4 filesystem being mounted at /metadata supports timestamps until 2038 (0x7fffffff)

//userdata分区挂载,这里如果挂载失败会导致android无法启动,挂载失败的原因可能是分区没找到,或者userdata分区里面数据异常,特别是开了磁盘加密后,只要数据异常就会解密失败导致无法挂载
特别是不带电池的设备,容易异常掉电导致数据没有及时回写。

[ 2.836901][ T1] init: [libfs_mgr]check_fs(): mount(/dev/block/by-name/metadata,/metadata,ext4)=0: Success
[ 2.838977][ T1] init: [libfs_mgr]check_fs(): unmount(/metadata) succeeded
[ 2.839047][ T1] init: [libfs_mgr]Not running /system/bin/e2fsck on /dev/block/mmcblk0p11 (executable not in system image)
[ 2.841586][ T1] EXT4-fs (mmcblk0p11): mounted filesystem with ordered data mode. Opts: discard
[ 2.841643][ T1] ext4 filesystem being mounted at /metadata supports timestamps until 2038 (0x7fffffff)
[ 2.841673][ T1] init: [libfs_mgr]__mount(source=/dev/block/by-name/metadata,target=/metadata,type=ext4)=0: Success
[ 2.852291][ T1] EXT4-fs (dm-0): mounted filesystem without journal. Opts: barrier=1
[ 2.855358][ T1] EXT4-fs (dm-2): mounted filesystem without journal. Opts: barrier=1
[ 2.856880][ T1] EXT4-fs (dm-4): mounted filesystem without journal. Opts: barrier=1
[ 2.858288][ T1] EXT4-fs (dm-1): mounted filesystem without journal. Opts: barrier=1
[ 2.859557][ T1] EXT4-fs (dm-3): mounted filesystem without journal. Opts: barrier=1
[ 2.860904][ T1] EXT4-fs (dm-5): mounted filesystem without journal. Opts: barrier=1
[ 2.862113][ T1] EXT4-fs (dm-6): mounted filesystem without journal. Opts: barrier=1
[ 2.918766][ T1] fsck.f2fs: executing /system/bin/fsck.f2fs failed: No such file or directory
[ 2.919463][ T1] fsck.f2fs: fsck.f2fs terminated by exit(255)
[ 2.919463][ T1]
[ 2.947086][ T1] F2FS-fs (dm-7): recover fsync data on readonly fs
[ 2.947182][ T1] F2FS-fs (dm-7): Mounted with checkpoint version = 10c476a3
[ 2.950111][ T1] fsck.f2fs: executing /system/bin/fsck.f2fs failed: No such file or directory
[ 2.950483][ T1] fsck.f2fs: fsck.f2fs terminated by exit(255)
[ 2.950483][ T1]
[ 2.978056][ T1] F2FS-fs (dm-7): Mounted with checkpoint version = 10c476a3
[ 2.987526][ T1] printk: init: 46 output lines suppressed due to ratelimiting
[ 3.116340][ T1] init: Opening SELinux policy
[ 3.122791][ T1] init: Loading SELinux policy
[ 3.132091][ T1] SELinux: Permission nlmsg_getneigh in class netlink_route_socket not defined in policy.
[ 3.132156][ T1] SELinux: Permission bpf in class capability2 not defined in policy.
[ 3.132161][ T1] SELinux: Permission checkpoint_restore in class capability2 not defined in policy.
[ 3.132173][ T1] SELinux: Permission bpf in class cap2_userns not defined in policy.
[ 3.132177][ T1] SELinux: Permission checkpoint_restore in class cap2_userns not defined in policy.
[ 3.132229][ T1] SELinux: the above unknown classes and permissions will be denied
[ 3.135492][ T1] SELinux: policy capability network_peer_controls=1
[ 3.135505][ T1] SELinux: policy capability open_perms=1
[ 3.135510][ T1] SELinux: policy capability extended_socket_class=1
[ 3.135514][ T1] SELinux: policy capability always_check_network=0
[ 3.135518][ T1] SELinux: policy capability cgroup_seclabel=0
[ 3.135522][ T1] SELinux: policy capability nnp_nosuid_transition=1
[ 3.135527][ T1] SELinux: policy capability genfs_seclabel_symlinks=0
[ 3.257032][ T61] audit: type=1403 audit(1651211856.660:2): auid=4294967295 ses=4294967295 lsm=selinux res=1
[ 3.262307][ T1] selinux: SELinux: Loaded file_contexts
[ 3.262328][ T1] selinux:
[ 3.301351][ T1] init: init second stage started!
[ 3.325608][ T1] init: Using Android DT directory /proc/device-tree/firmware/android/
[ 3.328018][ T1] init: Overriding previous property ‘persist.sys.usb.config’:‘none’ with new value ‘adb’
[ 3.328751][ T1] init: Overriding previous property ‘persist.sys.usb.config’:‘adb’ with new value ‘none’
[ 3.328812][ T1] init: Couldn’t load property file ‘/vendor/default.prop’: open() failed: No such file or directory: No such file or directory
[ 3.334260][ T1] init: Setting product property ro.product.brand to ‘rockchip’ (from ro.product.product.brand)
[ 3.334288][ T1] init: Setting product property ro.product.device to ‘rk3588_s’ (from ro.product.product.device)
[ 3.334309][ T1] init: Setting product property ro.product.manufacturer to ‘rockchip’ (from ro.product.product.manufacturer)
[ 3.334323][ T1] init: Setting product property ro.product.model to ‘rk3588_s’ (from ro.product.product.model)
[ 3.334336][ T1] init: Setting product property ro.product.name to ‘rk3588_s’ (from ro.product.product.name)
[ 3.363121][ T61] audit: type=1107 audit(1651211856.763: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’
[ 3.363171][ T61] audit: type=1107 audit(1651211856.763: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’
[ 3.385216][ T1] cgroup: Unknown subsys name ‘schedtune’
[ 3.512945][ T311] ueventd: ueventd started!
[ 3.514516][ T311] selinux: SELinux: Loaded file_contexts
[ 3.514528][ T311] selinux:
[ 3.514701][ T311] ueventd: Parsing file /system/etc/ueventd.rc…
[ 3.515091][ T311] ueventd: Added ‘/vendor/etc/ueventd.rc’ to import list
[ 3.515101][ T311] ueventd: Added ‘/odm/etc/ueventd.rc’ to import list
[ 3.515292][ T311] ueventd: Parsing file /vendor/etc/ueventd.rc…
[ 3.515978][ T311] ueventd: Parsing file /odm/etc/ueventd.rc…
[ 3.515994][ T311] ueventd: Unable to read config file ‘/odm/etc/ueventd.rc’: open() failed: No such file or directory
[ 3.516026][ T311] ueventd: Parsing file /vendor/ueventd.rc…
[ 3.793950][ T326] r8168 Gigabit Ethernet driver 8.049.02-NAPI loaded
[ 3.794054][ T326] r8168 0003:31:00.0: enabling device (0000 -> 0003)
[ 3.810376][ T326] r8168 0003:31:00.0 (unnamed net_device) (uninitialized): Invalid ether addr 00:00:00:00:00:00
[ 3.810394][ T326] r8168 0003:31:00.0 (unnamed net_device) (uninitialized): Random ether addr 9a:65:e1:58:48:dc
[ 3.810851][ T326] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[ 3.812947][ T326] r8168 Copyright © 2021 Realtek NIC software team nicfae@realtek.com
[ 3.812947][ T326] This program comes with ABSOLUTELY NO WARRANTY; for details, please see http://www.gnu.org/licenses/.
[ 3.812947][ T326] This is free software, and you are welcome to redistribute it under certain conditions; see http://www.gnu.org/licenses/.
[ 3.936535][ T145] rkvdec2_suspend:1277: fdc38100.rkvdec-core
[ 3.936548][ T145] rkvdec2_suspend:1288: fdc38100.rkvdec-core power off
[ 3.936568][ T145] rkvdec2_suspend:1277: fdc48100.rkvdec-core
[ 3.936570][ T145] rkvdec2_suspend:1288: fdc48100.rkvdec-core power off
[ 4.120805][ T1] Registered swp emulation handler
[ 4.149847][ T330] logd.auditd: start
[ 4.149892][ T330] logd.klogd: 2713369211

//console启动,这试串口可以输入
console:/ $ [ 4.162466][ T1] EXT4-fs (mmcblk0p10): Ignoring removed nomblk_io_submit option
[ 4.163410][ T1] EXT4-fs (mmcblk0p10): mounted filesystem with ordered data mode. Opts: errors=remount-ro,nomblk_io_submit
[ 4.163606][ T1] ext4 filesystem being mounted at /cache supports timestamps until 2038 (0x7fffffff)
[ 4.176130][ T1] e2fsck: e2fsck 1.45.4 (23-Sep-2019)
[ 4.178815][ T1] e2fsck: /dev/block/by-name/cache: clean, 38/98304 files, 7463/98304 blocks
[ 4.182416][ T1] EXT4-fs (mmcblk0p10): mounted filesystem with ordered data mode. Opts: noauto_da_alloc,discard
[ 4.182550][ T1] ext4 filesystem being mounted at /cache supports timestamps until 2038 (0x7fffffff)
[ 4.247749][ T361] type=1400 audit(1651211857.650:5): avc: denied { write } for comm=“tee-supplicant” name=“property_service” dev=“tmpfs” ino=311 scontext=u:r:tee:s0 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=1
[ 4.247867][ T361] type=1400 audit(1651211857.650:6): 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
[ 4.247939][ T361] type=1107 audit(1651211857.650:7): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg=‘avc: denied { set } for property=vendor.security.tee_supplicant pid=366 uid=0 gid=0 scontext=u:r:tee:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=property_service permissive=1’
[ 4.268567][ T376] wait_for_keymaster: Waiting for Keymaster device
[ 4.277598][ T145] rk_hdmirx fdee0000.hdmirx-controller: hdmirx_cancel_cpu_limit_freq freq qos nod add
I/TA: Hello Rockchip Keymaster! rpmb :0
I/TA: Hello Rockchip Keymaster! rpmb :0
[ 4.547886][ T361] type=1400 audit(1651211857.950:8): avc: denied { open } for comm=“surfaceflinger” path=“/dev/properties/u:object_r:vendor_default_prop:s0” dev=“tmpfs” ino=283 scontext=u:r:surfaceflinger:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1
[ 4.548051][ T361] type=1400 audit(1651211857.950:9): avc: denied { getattr } for comm=“surfaceflinger” path=“/dev/properties/u:object_r:vendor_default_prop:s0” dev=“tmpfs” ino=283 scontext=u:r:surfaceflinger:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1
[ 4.548114][ T361] type=1400 audit(1651211857.950:10): avc: denied { map } for comm=“surfaceflinger” path=“/dev/properties/u:object_r:vendor_default_prop:s0” dev=“tmpfs” ino=283 scontext=u:r:surfaceflinger:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1
[ 4.552174][ T388] mali fb000000.gpu: Loading Mali firmware 0x1010000
[ 4.552463][ T388] mali fb000000.gpu: Protected memory allocator not found, Firmware protected mode entry will not be supported
[ 4.552466][ T388] mali fb000000.gpu: Protected memory allocator not found, Firmware protected mode entry will not be supported
[ 4.552469][ T388] mali fb000000.gpu: Protected memory allocator not found, Firmware protected mode entry will not be supported
[ 4.646530][ T149] rk-pcie fe150000.pcie: PCIe Link Fail
[ 4.646541][ T149] rk-pcie fe150000.pcie: failed to initialize host
[ 4.883396][ T361] type=1400 audit(1651211858.286:11): avc: denied { read } for comm=“android.hardwar” name=“u:object_r:default_prop:s0” dev=“tmpfs” ino=129 scontext=u:r:hal_graphics_composer_default:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=1
[ 4.883535][ T361] type=1400 audit(1651211858.286:12): avc: denied { open } for comm=“android.hardwar” path=“/dev/properties/u:object_r:default_prop:s0” dev=“tmpfs” ino=129 scontext=u:r:hal_graphics_composer_default:s0 tcontext=u:object_r:default_prop:s0 tclass=file permissive=1
[ 4.894757][ T398] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[ 4.894782][ T398] rockchip-vop2 fdd90000.vop: [drm:vop2_crtc_atomic_enable] Update mode to 1920x1080p60, type: 11(if:800) for vp0 dclk: 148500000
[ 4.894810][ T398] rockchip-vop2 fdd90000.vop: [drm:vop2_crtc_atomic_enable] dclk_out0 div: 0 dclk_core0 div: 2
[ 4.894824][ T398] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx_ropll_cmn_config bus_width:16a8c8 rate:1485000
[ 4.895090][ T398] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy pll locked!
[ 4.895093][ T398] rockchip-vop2 fdd90000.vop: [drm:vop2_crtc_atomic_enable] set dclk_vop0 to 148500000, get 148500000
[ 4.895109][ T398] dwhdmi-rockchip fde80000.hdmi: final tmdsclk = 148500000
[ 4.895112][ T398] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: bus_width:0x16a8c8,bit_rate:1485000
[ 4.895298][ T398] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy lane locked!
[ 4.895314][ T398] dwhdmi-rockchip fde80000.hdmi: don’t use dsc mode
[ 5.099855][ T398] dwhdmi-rockchip fde80000.hdmi: dw hdmi qp use tmds mode
[ 5.269883][ T376] ServiceManager: Waited one second for android.system.keystore2.IKeystoreService/default (is service started? are binder threads started and available?)
[ 5.270766][ T376] wait_for_keymaster: Keymaster device ready
[ 5.272171][ T208] binder: undelivered transaction 128, process died.
[ 5.349803][ T345] fsck.f2fs: Info: Fix the reported corruption.
[ 5.350719][ T345] fsck.f2fs: Info: No support kernel version!
[ 5.350786][ T345] fsck.f2fs: Info: Segments per section = 1
[ 5.350797][ T345] fsck.f2fs: Info: Sections per zone = 1
[ 5.350806][ T345] fsck.f2fs: Info: sector size = 4096
[ 5.350814][ T345] fsck.f2fs: Info: total sectors = 6595064 (25761 MB)
[ 5.351548][ T345] fsck.f2fs: Info: MKFS version
[ 5.351564][ T345] fsck.f2fs: “5.10.66”
[ 5.351572][ T345] fsck.f2fs: Info: FSCK version
[ 5.351581][ T345] fsck.f2fs: from “5.10.66”
[ 5.356167][ T345] F2FS-fs (dm-8): Using encoding defined by superblock: utf8-12.1.0 with flags 0x0
[ 5.365747][ T345] F2FS-fs (dm-8): Found nat_bits in checkpoint
[ 5.430215][ T345] F2FS-fs (dm-8): Mounted with checkpoint version = 21029d1e
[ 5.483964][ T1] fscrypt: AES-256-CTS-CBC using implementation “cts-cbc-aes-ce”
[ 5.484724][ T1] fscrypt: AES-256-XTS using implementation “xts-aes-ce”
[ 5.532831][ T457] apexd: This device does not support updatable APEX. Exiting
[ 5.532856][ T457] apexd: Marking APEXd as activated
[ 5.765687][ T465] apexd: This device does not support updatable APEX. Exiting
[ 5.765736][ T465] apexd: Marking APEXd as ready
[ 5.898373][ T309] init: Verified that /data/nfc has the encryption policy ec3b878c79e2147eb5263fd8e9730749 v2 modes 1/4 flags 0xa
[ 5.898516][ T309] init: Inferred action different from explicit one, expected 0 but got 2
[ 5.898586][ T309] init: Verified that /data/nfc/param has the encryption policy ec3b878c79e2147eb5263fd8e9730749 v2 modes 1/4 flags 0xa
[ 5.993970][ T309] file system registered
[ 5.994195][ T309] using random self ethernet address
[ 5.994198][ T309] using random host ethernet address
[ 6.044472][ T487] healthd: BatteryCycleCountPath not found
[ 6.046118][ T487] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
I/TA: Hello Rockchip gatekeeper! rpmb :0
[ 6.220230][ T494] [dhd] _dhd_module_init: in Dongle Host Driver, version 101.10.361.11 (wlan=r892223-20210630-1)
[ 6.220230][ T494] drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd compiled on Apr 28 2022 at 08:48:19
[ 6.220230][ T494]
[ 6.220261][ T494] [dhd] ======== dhd_wlan_init_plat_data ========
[ 6.220267][ T494] [WLAN_RFKILL]: rockchip_wifi_get_oob_irq: Enter
[ 6.220315][ T494] [dhd] dhd_wlan_init_gpio: WL_HOST_WAKE=-1, oob_irq=167, oob_irq_flags=0x411
[ 6.220321][ T494] [dhd] dhd_wlan_init_gpio: WL_REG_ON=-1
[ 6.220326][ T494] [dhd] dhd_wifi_platform_load: Enter
[ 6.220711][ T494] [dhd] dhdpcie_pci_probe : no mutex held. set lock
[ 6.220722][ T494] [dhd] PCI_PROBE: bus 21, slot 0,vendor 14E4, device 449D(good PCI location)
[ 6.220730][ T494] [dhd] dhdpcie_init: found adapter info ‘DHD generic adapter’
[ 6.220800][ T494] pcieh 0002:21:00.0: enabling device (0000 -> 0002)
[ 6.221173][ T494] [dhd] Disable CTO
[ 6.221871][ T494] [dhd] ******** Perform FLR ********
[ 6.266713][ T582] read descriptors
[ 6.266744][ T582] read strings
[ 6.296609][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.296695][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.296761][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.296828][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.296895][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.296961][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.297028][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.297094][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.297160][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.297226][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.297292][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.297358][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.297425][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.297491][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.297557][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.297624][ T494] [dhd] read_config: reg=0x88 read val=0xb080
[ 6.297690][ T494] [dhd] read_config: reg=0x88 read val=0x8080
[ 6.298099][ T494] [dhd] ******** FLR Succedeed ********
[ 6.298394][ T494] [dhd] DHD: dongle ram size is set to 1310720(orig 1310720) at 0x170000
[ 6.298401][ T494] [dhd] dhdpcie_bar1_window_switch_enab: bar1_switch_enab=0 ramstart=0x170000 ramend=0x2affff bar1_size=0x0
[ 6.298453][ T494] [dhd] dhd_conf_set_chiprev : devid=0x449d, chip=0xaae8, chiprev=2, svid=0x14e4, ssid=0xaae8
[ 6.301524][ T494] [dhd] dhd_pktid_map_init:2458: pktid_audit init succeeded 1025
[ 6.301552][ T494] [dhd] dhd_pktid_map_init:2458: pktid_audit init succeeded 4097
[ 6.301678][ T494] [dhd] dhd_pktid_map_init:2458: pktid_audit init succeeded 36865
[ 6.303113][ T494] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 6.303121][ T494] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 6.303123][ T494] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 6.303125][ T494] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 6.303128][ T494] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 6.303130][ T494] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 6.303133][ T494] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 6.303136][ T494] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 6.303138][ T494] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 6.303140][ T494] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 6.303410][ T494] [dhd] dhd_attach(): thread:dhd_watchdog_thread:24f started
[ 6.303428][ T494] [dhd] dhd_deferred_work_init: work queue initialized
[ 6.303436][ T494] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 3
[ 6.303449][ T494] [dhd] dhd_cpumasks_init CPU masks primary(big)=0x0 secondary(little)=0xfe
[ 6.303954][ T494] [dhd] dhd_get_memdump_info: MEMDUMP ENABLED = 3
[ 6.303960][ T494] [dhd] dhdpcie_bus_attach: making DHD_BUS_DOWN
[ 6.303966][ T494] [dhd] dhdpcie_init: rc_dev from dev->bus->self (1d87:3588) is 0000000000000000
[ 6.304063][ T494] [dhd] dhdpcie_init: rc_ep_aspm_cap: 1 rc_ep_l1ss_cap: 1
[ 6.304072][ T494] [dhd] dhdpcie_request_irq: INTx enabled
[ 6.304093][ T494] [dhd] dhdpcie_bar1_window_switch_enab: bar1_switch_enab=0 ramstart=0x170000 ramend=0x2affff bar1_size=0x400000
[ 6.304098][ T494] [dhd] Dongle Host Driver, version 101.10.361.11 (wlan=r892223-20210630-1)
[ 6.304098][ T494] drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd compiled on Apr 28 2022 at 08:48:19
[ 6.304098][ T494]
[ 6.304314][ T494] [dhd] Register interface [wlan0] MAC: 00:90:4c🆎67:37
[ 6.304314][ T494]
[ 6.304380][ T494] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 3 -> mode 0
[ 6.304384][ T494] [dhd][wlan0] wl_android_wifi_off : in g_wifi_on=1, on_failure=1
[ 6.304387][ T494] [dhd] dhd_rtt_deinit: ENTER
[ 6.304389][ T494] [dhd] dhd_rtt_deinit: EXIT, err = 0
[ 6.304392][ T494] [dhd] dhd_bus_devreset: == Power OFF ==
[ 6.304401][ T494] [dhd] dhdpcie_oob_intr_unregister: irq is not registered
[ 6.304403][ T494] [dhd] dhd_dpc_kill: tasklet disabled
[ 6.305965][ T494] [dhd] dhd_bus_devreset: WLAN OFF Done
[ 6.305974][ T494] [dhd] wifi_platform_set_power = 0, delay: 0 msec
[ 6.305977][ T494] [dhd] ======== PULL WL_REG_ON(-1) LOW! ========
[ 6.305980][ T494] [WLAN_RFKILL]: rockchip_wifi_power: 0
[ 6.305983][ T494] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[ 6.305985][ T494] wifi power off
[ 6.409872][ T494] [WLAN_RFKILL]: wifi shut off power [GPIO105-0]
[ 6.409888][ T494] [dhd][wlan0] wl_android_wifi_off : out
[ 6.409894][ T494] [dhd] dhdpcie_pci_probe : the lock is released.
[ 6.410028][ T494] [dhd] _dhd_module_init: Exit err=0
[ 6.480340][ T604] rkisp0-vir0: rkisp_enum_frameintervals Not active sensor
[ 6.480508][ T604] rkisp0-vir0: rkisp_enum_frameintervals Not active sensor
[ 6.481121][ T604] rockchip-csi2-dphy0: No link between dphy and sensor
[ 6.481136][ T604] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[3] get remote terminal sensor failed!
[ 6.481138][ T604] stream_cif_mipi_id3: update sensor info failed -19
[ 6.482266][ T604] rockchip-csi2-dphy0: No link between dphy and sensor
[ 6.482274][ T604] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[1] get remote terminal sensor failed!
[ 6.482277][ T604] stream_cif_mipi_id1: update sensor info failed -19
[ 6.482294][ T604] rockchip-csi2-dphy0: No link between dphy and sensor
[ 6.482297][ T604] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[3] get remote terminal sensor failed!
[ 6.482299][ T604] rkcif_scale_ch3: update sensor info failed -19
[ 6.482437][ T604] rockchip-csi2-dphy0: No link between dphy and sensor
[ 6.482441][ T604] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote terminal sensor failed!
[ 6.482443][ T604] rkcif_scale_ch0: update sensor info failed -19
[ 6.482460][ T604] rockchip-csi2-dphy0: No link between dphy and sensor
[ 6.482464][ T604] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[2] get remote terminal sensor failed!
[ 6.482465][ T604] rkcif_scale_ch2: update sensor info failed -19
[ 6.482481][ T604] rockchip-csi2-dphy0: No link between dphy and sensor
[ 6.482485][ T604] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote terminal sensor failed!
[ 6.482487][ T604] stream_cif_mipi_id0: update sensor info failed -19
[ 6.482502][ T604] rockchip-csi2-dphy0: No link between dphy and sensor
[ 6.482506][ T604] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[2] get remote terminal sensor failed!
[ 6.482508][ T604] stream_cif_mipi_id2: update sensor info failed -19
[ 6.482525][ T604] rockchip-csi2-dphy0: No link between dphy and sensor
[ 6.482528][ T604] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[1] get remote terminal sensor failed!
[ 6.482530][ T604] rkcif_scale_ch1: update sensor info failed -19
[ 6.518038][ T586] dwc3 fc000000.usb: device reset
[ 6.649626][ T586] dwc3 fc000000.usb: device reset
[ 6.794609][ T208] android_work: sent uevent USB_STATE=CONNECTED
[ 6.796005][ T208] android_work: sent uevent USB_STATE=CONFIGURED
[ 6.847582][ T9] Freeing drm_logo memory: 732K
[ 8.378487][ T1] init: Control message: Could not find ‘aidl/package_native’ for ctl.interface_start from pid: 332 (/system/bin/servicemanager)
[ 9.092466][ T1] init: Control message: Processed ctl.start for ‘idmap2d’ from pid: 657 (system_server)
[ 9.115204][ T487] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 9.254606][ T361] type=1400 audit(1651211862.656:44): avc: denied { read } for comm=“android.ui” name=“state” dev=“sysfs” ino=42513 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1
[ 9.254710][ T361] type=1400 audit(1651211862.656:45): avc: denied { open } for comm=“android.ui” path=“/sys/devices/platform/es8388-sound/extcon/extcon8/state” dev=“sysfs” ino=42513 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1
[ 9.254772][ T361] type=1400 audit(1651211862.656:46): avc: denied { getattr } for comm=“android.ui” path=“/sys/devices/platform/es8388-sound/extcon/extcon8/state” dev=“sysfs” ino=42513 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1
[ 9.267578][ T361] type=1400 audit(1651211862.670:47): avc: denied { read } for comm=“InputReader” name=“power_supply” dev=“sysfs” ino=40504 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs_power:s0 tclass=dir permissive=1
[ 9.267623][ T361] type=1400 audit(1651211862.670:48): avc: denied { open } for comm=“InputReader” path=“/sys/devices/virtual/power_supply” dev=“sysfs” ino=40504 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs_power:s0 tclass=dir permissive=1
[ 9.273480][ T361] type=1400 audit(1651211862.676:49): avc: denied { read } for comm=“InputReader” name=“leds” dev=“sysfs” ino=18590 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=1
[ 9.273518][ T361] type=1400 audit(1651211862.676:50): avc: denied { open } for comm=“InputReader” path=“/sys/devices/platform/leds” dev=“sysfs” ino=18590 scontext=u:r:system_server:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=1
[ 9.306465][ T1] init: processing action (sys.sysctl.extra_free_kbytes=*) from (/system/etc/init/hw/init.rc:1157)
[ 9.598961][ T782] read descriptors
[ 9.598991][ T782] read strings
[ 9.599057][ T782] read descriptors
[ 9.599066][ T782] read strings
[ 9.700167][ T472] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 9.701625][ T472] eth1: 0xffffffc012bab000, 9a:65:e1:58:48:dc, IRQ 166
[ 9.719719][ T417] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[ 9.754888][ T472] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 9.756795][ T472] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 9.757188][ T472] rk_gmac-dwmac fe1b0000.ethernet eth0: PHY [stmmac-0:01] driver [Generic PHY] (irq=POLL)
[ 9.759868][ T472] dwmac4: Master AXI performs any burst length
[ 9.759885][ T472] rk_gmac-dwmac fe1b0000.ethernet eth0: No Safety Features support found
[ 9.759895][ T472] rk_gmac-dwmac fe1b0000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[ 9.760056][ T472] rk_gmac-dwmac fe1b0000.ethernet eth0: registered PTP clock
[ 9.760268][ T472] rk_gmac-dwmac fe1b0000.ethernet eth0: configuring for phy/rgmii-rxid link mode
[ 9.760614][ T472] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[ 9.760657][ T198] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing

以上log信息注释将不断更新细化

  • 22
    点赞
  • 91
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 32
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 32
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

loitawu

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值