20241004给荣品RD-RK3588-AHD开发板刷Rockchip原厂的Android12【HDMI0显示】
2024/10/4 19:40
1、配置RK3588S的默认DTS为:rk3588s-evb4-lp4x-v10.dts
D:\Android\rk3588s4_3588a12\device\rockchip\rk3588\rk3588s_s\BoardConfig.mk
Z:\rk3588s4_3588a12\device\rockchip\rk3588\rk3588s_s\BoardConfig.mk
#
# Copyright 2014 The Android Open-Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
include device/rockchip/rk3588/BoardConfig.mk
BUILD_WITH_GO_OPT := false
# AB image definition
BOARD_USES_AB_IMAGE := false
BOARD_ROCKCHIP_VIRTUAL_AB_ENABLE := false
BOARD_GRAVITY_SENSOR_SUPPORT := true
BOARD_GYROSCOPE_SENSOR_SUPPORT := true
BOARD_PROXIMITY_SENSOR_SUPPORT := true
BOARD_LIGHT_SENSOR_SUPPORT := true
ifeq ($(strip $(BOARD_USES_AB_IMAGE)), true)
include device/rockchip/common/BoardConfig_AB.mk
TARGET_RECOVERY_FSTAB := device/rockchip/rk3588/rk3588s_s/recovery.fstab_AB
endif
PRODUCT_KERNEL_DTS := rk3588s-tablet-v10
BOARD_CAMERA_SUPPORT_EXT := true
BOARD_HS_ETHERNET := true
修改为:
PRODUCT_KERNEL_DTS := rk3588s-evb4-lp4x-v10
BOARD_CAMERA_SUPPORT_EXT := true
BOARD_HS_ETHERNET := true
2、配置HDMI0显示的源码来自Buildroot,关闭DMC来自LOG的分析/荣品的源码:
Z:\rk3588s4_3588a12\kernel-5.10\arch\arm64\boot\dts\rockchip\rk3588s-evb4-lp4x-v10.dts
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Copyright (c) 2021 Rockchip Electronics Co., Ltd.
*
*/
/dts-v1/;
#include "rk3588s-evb4-lp4x.dtsi"
#include "rk3588-android.dtsi"
/ {
model = "Rockchip RK3588S EVB4 LP4X V10 Board";
compatible = "rockchip,rk3588s-evb4-lp4x-v10", "rockchip,rk3588";
};
// rp
&hdmi0 {
status = "okay";
};
&hdmi0_in_vp0 {
status = "okay";
};
&hdmi0_sound {
status = "okay";
};
&i2s5_8ch {
status = "okay";
};
&hdptxphy_hdmi0 {
status = "okay";
};
&route_hdmi0 {
status = "okay";
connect = <&vp0_out_hdmi0>;
};
【这一块的代码在荣品的Android12上没有发现,可能不需要!】
// rp
&display_subsystem {
clocks = <&hdptxphy_hdmi_clk0>;
clock-names = "hdmi0_phy_pll";
};
&hdptxphy_hdmi_clk0 {
status = "okay";
};
//&hdptxphy_hdmi_clk1 {
// status = "okay";
//};
【Android12需要】
&dmc {
status = "disabled";
};
【代码来源:】
配置为默认HDMI0显示。
Z:\82临时了evb4+rp3588s_android12\kernel-5.10\arch\arm64\boot\dts\rockchip\rp-lcd-hdmi0.dtsi
&hdmi0 {
status = "okay";
};
&hdmi0_in_vp0 {
status = "okay";
};
&hdmi0_sound {
status = "okay";
};
&i2s5_8ch {
status = "okay";
};
&hdptxphy_hdmi0 {
status = "okay";
};
【关闭动态调频:】
Z:\82临时了evb4+rp3588s_android12\kernel-5.10\arch\arm64\boot\dts\rockchip\rd-rk3588s-AHD.dts
&dmc {
status = "disabled";
};
&pinctrl {
vdd-ADP5585 {
vdd_ADP5585_control: vdd-ADP5585-control {
rockchip,pins =
/** power supply enable pin */
<1 RK_PA4 RK_FUNC_GPIO &pcfg_pull_none>;
};
};
};
DMC异常:
[ 3.024397][ T7] rockchip-dmc dmc: bin=0
[ 3.024582][ T7] rockchip-dmc dmc: leakage=43
[ 3.024598][ T7] rockchip-dmc dmc: leakage-volt-sel=1
[ 3.024615][ T7] rockchip-dmc dmc: soc version=0, speed=1
[ 3.025610][ T7] rockchip-dmc dmc: avs=0
[ 3.025629][ T7] rockchip-dmc dmc: current ATF version 0x100
[ 3.025745][ T7] rockchip-dmc dmc: normal_rate = 1968000000
[ 3.025755][ T7] rockchip-dmc dmc: reboot_rate = 2736000000
[ 3.025764] T7] rockchip-dmc dmc: suspend_rate = 528000000
[ 3.025773][ T7] rockchip-dmc dmc: video_4k_rate = 1968000000
[ 3.025782][ T7] rockchip-dmc dmc: video_4k_10b_rate = 1968000000
[ 3.025791][ T7] rockchip-dmc dmc: video_svep_rate = 1968000000
[ 3.025799][ T7] rockchip-dmc dmc: boost_rate = 2736000000
[ 3.025808][ T7] rockchip-dmc dmc: fixed_rate(isp|cif0|cif1|dualview) = 2736000000
[ 3.025816][ T7] rockchip-dmc dmc: performance_rate = 2736000000
[ 3.025825][ T7] rockchip-dmc dmc: hdmirx_rate = 2736000000
[ 3.025837][ T7] rockchip-dmc dmc: failed to get vop bandwidth to dmc rate
[ 3.025845][ T7] rockchip-dmc dmc: failed to get vop pn to msch rl
[ 3.025985][ T7] rockchip-dmc dmc: l=10000 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[ 3.026346][ T7] rockchip-dmc dmc: could not find power_model node
[ 3.242023][ T2] Unable to handle kernel paging request at virtual address 0000ffffdbc02e32
最终效果图:
DMC卡死的LOG:
DDR V1.13 25cee80c4f cym 23/08/11-09:31:58
LPDDR5, 2736MHz
channel[0] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1 Die BW=16 Size=1024MB
channel[1] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1 Die BW=16 Size=1024MB
channel[2] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1 Die BW=16 Size=1024MB
channel[3] BW=16 Col=1 Bk=16 CS0 Row=15 CS=1 Die BW=16 Size=1024MB
Manufacturer ID:0x6
CH0 RX Vref:26.7%, TX Vref:22.0%,0.0%
CH1 RX Vref:27.1%, TX Vref:20.0%,0.0%
CH2 RX Vref:25.4%, TX Vref:23.0%,0.0%
CH3 RX Vref:27.5%, TX Vref:21.0%,0.0%
change to F1: 528MHz
change to F2: 1320MHz
change to F3: 1968MHz
change to F0: 2736MHz
out
Boot1 Release Time: Nov 22 2022 14:37:46, version: 1.10
Emmc IO init.
Emmc IO init.
mmc_set_bus_width: 1
SetEmmcClk: 375000, 2, 64
SetEmmcClk: 375000, 2, 64
mmc_set_bus_width: 8
SetEmmcClk: 200000000, 0, 3
Enable PHY CLK: 200000000, timing: 9
SdmmcInit=2 0
BootCapSize=100000
UserCapSize=29820MB
FwPartOffset=2000 , 100000
UsbBoot ...133289
powerOn 135569
SoftReset, 3649340 us
DDR V1.13 25cee80c4f cym 23/08/11-09:31:58
LPDDR5, 2736MHz
channel[0] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1 Die BW=16 Size=1024M
channel[1] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1 Die BW=16 Size=1024MB
channel[2] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1 Die BW=16 Size=1024MB
channel[3] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1 Die BW=16 Size=1024MB
Manufacturer ID:0x6
CH0 RX Vref:27.5%, TX Vref:22.0%,0.0%
CH1 RX Vref:26.7%, TX Vref:22.0%,0.0%
CH2 RX Vref:25.4%, TX Vref:23.0%,0.0%
CH3 RX Vref:27.9%, TX Vref:21.0%,0.0%
change to F1: 528MHz
change to F2: 1320MHz
change to F3: 1968MHz
change to F0: 2736MHz
out
U-Boot SPL board init
U-Boot SPL 2017.09-ge4e124926e-230922 #lxh (Sep 25 2023 - 10:58:38), fwver: v1.13
unknown raw ID 0 0 0
unrecognized JEDEC id bytes: 00, 00, 00
Trying to boot from MMC2
MMC: no card present
mmc_init: -123, time 0
spl: mmc init failed with error: -123
Trying to boot from MMC1
SPL: A/B-slot: _a, successful: 0, tries-remain: 7
Trying fit image at 0x4000 sector
## Verified-boot: 0
## Checking atf-1 0x00040000 ... sha256(c902200be1...) + OK
## Checking uboot 0x00200000 ... sha256(5c58109dd1...) + OK
## Checking fdt 0x00340db8 ... sha256(8ecccd16d2...) + OK
## Checking atf-2 0x000f0000 ... sha256(aa71013e72...) + OK
## Checking atf-3 0xff100000 ... sha256(225d6bf071...) + OK
## Checking optee 0x08400000 ... sha256(66e30bf9e8...) + OK
Jumping to U-Boot(0x00200000) via ARM Trusted Firmware(0x00040000)
Total: 82.541/269.36 ms
INFO: Preloader serial: 2
NOTICE: BL31: v2.3():v2.3-639-g87bcc5dfe:derrick.huang
NOTICE: BL31: Built : 18:06:16, Sep 9 2023
INFO: spec: 0x13
INFO: ext 32k is not valid
INFO: ddr: stride-en 4CH
INFO: GICv3 without legacy support detected.
INFO: ARM GICv3 driver initialized in EL3
INFO: valid_cpu_msk=0xff bcore0_rst = 0x0, bcore1_rst = 0x0
INFO: l3cache partition cfg-0
INFO: system boots from cpu-hwid-0
INFO: idle_st=0x21fff, pd_st=0x11fff9, repair_st=0xfff70001
INFO: dfs DDR fsp_params[0].freq_mhz= 2736MHz
INFO: dfs DDR fsp_params[1].freq_mhz= 528MHz
INFO: dfs DDR fsp_params[2].freq_mhz= 1320MHz
INFO: dfs DDR fsp_params[3].freq_mhz= 1968MHz
INFO: BL31: Initialising Exception Handling Framework
INFO: BL31: Initializing runtime services
INFO: BL31: Initializing BL32
I/TC:
I/TC: OP-TEE version: 3.13.0-743-gb5340fd65 #hisping.lin (gcc version 10.2.1 20201103 (GNU Toolchain for the A-profile Architecture 10.2-2020.11 (arm-10.16))) #6 Mon Aug 28 18:01:38 CST 2023 aarch64
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 `oint address = 0x200000
INFO: SPSR = 0x3c9
U-Boot 2017.09-230809-dirty #rootroot (Oct04 2024 - 14:10:52 +0800)
Model: Rockchip RK3588 Evaluation Board
MPIDR: 0x81000000
PreSerial: 2, raw, 0xfeb50000
DRAM: 4 GiB
Sysmem: init
Relocation Offset: eda1d000
Relocation fdt: eb9faa80 - eb9fecc8
CR: M/C/I
Using default environment
DM: v2
mmc@fe2c0000: 1, mmc@fe2e0000: 0
Bootdev(atags): mmc 0
MMC0: HS400 Enhanced Strobe, 200Mhz
PartType: EFI
Android 12.0, Build 2022.7, v2
boot mode: normal
RESC: 'boot', blk@0x0001eeb0
optee api revision: 2.0
Device is: UNLOCKED
DTB: rk-kernel.dtb
HASH(c): OK
ANDROID: fdt overlay OK
I2c0 speed: 100000Hz
vsel-gpios- not found!
en-gpios- not found!
vdd_cpu_big0_s0 800000 uV
vsel-gpios- not found!
en-gpios- not found!
vdd_cpu_big1_s0 800000 uV
I2c2 speed: 100000Hz
vsel-gpios- not found!
en-gpios- not found!
read reg[0x03] failed, ret=-121
Failed to get chip ID!
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
Cannot get enable GPIO: -2
Warn: can't find connect driver
Warn: can't get connect driver
Model: Rockchip RK3588S EVB4 LP4X V10 Board
MPIDR: 0x81000000
spi2: RK806: 2
ON=0x00, OFF=0x00
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
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: 1080x1920p60, type: MIPI0 for VP3
VP3 set crtc_clock to 132000KHz
VOP VP3 enable Esmart3[654x270->654x270@213x825] fmt[2] addr[0xedf04000]
final DSI-Link bandwidth: 880000 Kbps x 4
CLK: (sync kernel. arm: enter 1008000 KHz, init 1008000 KHz, kernel 0N/A)
b0pll 24000 KHz
b1pll 24000 KHz
lpll 24000 KHz
v0pll 24000 KHz
aupll 786431 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: No ethernet found.
Hit key to stop autoboot('CTRL+C'): 0
ANDROID: reboot reason: "(none)"
Vboot=0, AVB images, AVB verify
read_is_device_unlocked() ops returned that device is UNLOCKED
avb_slot_verify.c:763: ERROR: vbmeta: Error verifying vbmeta image: OK_NOT_SIGNED
preloaded: distribute image from 'boot
ANDROID: Hash OK
Could not find "system" partition
Booting IMAGE kernel at 0x00400000 with fdt at 0x08300000...
Fdt Ramdisk skip relocation
## Booting Android Image at 0x003ff800 ...
Kernel: 0x00400000 - 0x0278b008 (36397 KiB)
ramdisk: 0x0a200000 - 0x0a349df7 (1320 KiB)
## Flattened Device Tree blob at 0x08300000
Booting using the fdt blob at 0x08300000
XIP Kernel Image from 0x00400000 to 0x00400000 ... OK
kernel loaded at 0x00400000, end = 0x0278b008
Using Device Tree in place at 0000000008300000, end 000000000833eae7
## reserved-memory:
drm-logo@00000000: addr=edf00000 size=b8000
vendor-storage-rm@00000000: addr=ebd36000 size=10000
ramoops@110000: addr=110000 size=e0000
Adding bank: 0x00200000 - 0x08400000 (size: 0x08200000)
Adding bank: 0x09400000 - 0xf0000000 (size: 0xe6c00000)
Adding bank: 0x1f0000000 - 0x200000000 (size: 0x10000000)
Total: 963.96/1327.39 ms
Starting kernel ...
[ 1.333036][ T0] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[ 1.333057][ T0] Linux version 5.10.160 (rootroot@rootroot-desktop) (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)) #1 SMP PREEMPT Fri Oct 4 15:12:57 CST 2024
[ 1.345138][ T0] Machine model: Rockchip RK3588S EVB4 LP4X V10 Board
[ 1.380444][ T0] earlycon: uart8250 at MMIO32 0x00000000feb50000 (options '')
[ 1.385451][ T0] printk: bootconsole [uart8250] enabled
[ 1.392531][ T0] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-cubic-lut@00000000': base 0x0000000000000000, size 0 MiB
[ 1.393761][ T0] Reserved memory: created CMA memory pool at 0x00000001ff800000, size 8 MiB
[ 1.394550][ T0] OF: reserved mem: initialized node cma, compatible id shared-dma-pool
[ 1.460584][ T0] Zone ranges:
[ 1.460887][ T0] DMA32 [mem 0x0000000000200000-0x00000000ffffffff]
[ 1.461522][ T0] Normal [mem 0x0000000100000000-0x00000001ffffffff]
[ 1.462154][ T0] Movable zone start for each node
[ 1.462609][ T0] Early memory node ranges
[ 1.463002][ T0] node 0: [mem 0x0000000000200000-0x00000000083fffff]
[ 1.463641][ T0] node 0: [mem 0x0000000009400000-0x00000000efffffff]
[ 1.464279][ T0] node 0: [mem 0x00000001f0000000-0x00000001ffffffff]
[ 1.464919][ T0] Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]
[ 1.486690][ T0] psci: probing for conduit method from DT.
[ 1.487223][ T0] psci: PSCIv1.1 detected in firmware.
[ 1.487711][ T0] psci: Using standard PSCI v0.2 function IDs
[ 1.488256][ T0] psci: Trusted OS migration not required
[ 1.488770][ T0] psci: SMC Calling Convention v1.2
[ 1.489573][ T0] percpu: Embedded 31 pages/cpu s88856 r8192 d29928 u126976
[ 1.490379][ T0] Detected VIPT I-cache on CPU0
[ 1.490840][ T0] CPU features: detected: GIC system register CPU interface
[ 1.491494][ T0] CPU features: detected: Virtualization Host Extensions
[ 1.492129][ T0] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[ 1.492845][ T0] alternatives: patching kernel code
[ 1.495272][ T0] Built 1 zonelists, mobility grouping on. Total pages: 1027656
[ 1.495972][ 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=1cd23bb7ecb20890 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.501272][ T0] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 1.502250][ T0] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 1.503078][ T0] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[ 1.509707][ T0] software IO TLB: mapped [mem 0x00000000e7d36000-0x00000000ebd36000] (64MB)
[ 1.538952][ T0] Memory: 3979568K/4175872K available (19326K kernel code, 4140K rwdata, 11508K rodata, 1344K init, 932K bss, 188112K reserved, 8192K cma-reserved)
[ 1.540398][ T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 1.541274][ T0] rcu: Preemptible hierarchical RCU implementation.
[ 1.541868][ T0] rcu: RCU event tracing is enabled.
[ 1.542350][ T0] Trampoline variant of Tasks RCU enabled.
[ 1.542876][ T0] Tracing variant of Tasks RCU enabled.
[ 1.543380][ T0] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 1.547781][ T0] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 1.550762][ T0] GICv3: GIC: Using split EOI/Deactivate mode
[ 1.551308][ T0] GICv3: 480 SPIs implemented
[ 1.551725][ T0] GICv3: 0 Extended SPIs implemented
[ 1.552217][ T0] GICv3: Distributor has no Range Selector support
[ 1.552805][ T0] GICv3: 16 PPIs implemented
[ 1.553253][ T0] GICv3: CPU0: found redistributor 0 region 0:0x00000000fe680000
[ 1.554034][ T0] ITS [mem 0xfe640000-0xfe65ffff]
[ 1.554523][ T0] ITS@0x00000000fe640000: allocated 8192 Devices @1f00f0000 (indirect, esz 8, psz 64K, shr 0)
[ 1.555465][ T0] ITS@0x00000000fe640000: allocated 32768 Interrupt Collections @1f0100000 (flat, esz 2, psz 64K, shr 0)
[ 1.556478][ T0] ITS: using cache flushing for cmd queue
[ 1.557014][ T0] ITS [mem 0xfe660000-0xfe67ffff]
[ 1.557497][ T0] ITS@0x00000000fe660000: allocated 8192 Devices @1f0120000 (indirect, esz 8, psz 64K, shr 0)
[ 1.558437][ T0] ITS@0x00000000fe660000: allocated 32768 Interrupt Collections @1f0130000 (flat, esz 2, psz 64K, shr 0)
[ 1.559449][ T0] ITS: using cache flushing for cmd queue
[ 1.560137][ T0] GICv3: using LPI property table @0x00000001f0140000
[ 1.560847][ T0] GIC: using cache flushing for LPI property table
[ 1.561434][ T0] GICv3: CPU0: using allocated LPI pending table @0x00000001f0150000
[ 1.562242][ T0] kfence: initialized - using 524288 bytes for 63 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 1.685777][ T0] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[ 1.686397][ T0] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[ 1.687438][ T0] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[ 1.689306][ T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[ 1.690304][ T0] pid_max: default: 32768 minimum: 301
[ 1.690847][ T0] LSM: Security Framework initializing
[ 1.691352][ T0] SELinux: Initializing.
[ 1.691797][ T0] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 1.692538][ T0] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 1.695030][ T1] rcu: Hierarchical SRCU implementation.
[ 1.695856][ T1] Platform MSI: msi-controller@fe640000 domain created
[ 1.696474][ T1] Platform MSI: msi-controller@fe660000 domain created
[ 1.697396][ T1] PCI/MSI: /interrupt-controller@fe600000/msi-controller@fe640000 domain created
[ 1.698219][ T1] PCI/MSI: /interrupt-controller@fe600000/msi-controller@fe660000 domain created
[ 1.699647][ 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.701330][ T0] Detected VIPT I-cache on CPU1
[ 1.701355][ T0] GICv3: CPU1: found redistributor 100 region 0:0x00000000fe6a0000
[ 1.701368][ T0] GICv3: CPU1: using allocated LPI pending table @0x00000001f0160000
[ 1.701406][ T0] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[ 1.702666][ T0] Detected VIPT I-cache on CPU2
[ 1.702685][ T0] GICv3: CPU2: found redistributor 200 region 0:0x00000000fe6c0000
[ 1.702698][ T0] GICv3: CPU2: using allocated LPI pending table @0x00000001f0170000
[ 1.702732][ T0] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[ 1.703941][ T0] Detected VIPT I-cache on CPU3
[ 1.703958][ T0] GICv3: CPU3: found redistributor 300 region 0:0x00000000fe6e0000
[ 1.703970][ T0] GICv3: CPU3: using allocated LPI pending table @0x00000001f0180000
[ 1.704003][ T0] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[ 1.705217][ T0] CPU features: detected: Spectre-v4
[ 1.705219][ T0] CPU features: detected: Spectre-BHB
[ 1.705221][ T0] Detected PIPT I-cache on CPU4
[ 1.705231][ T0] GICv3: CPU4: found redistributor 400 region 0:0x00000000fe700000
[ 1.705239][ T0] GICv3: CPU4: using allocated LPI pending table @0x00000001f0190000
[ 1.705260][ T0] CPU4: Booted secondary processor 0x0000000400 [0x414fd0b0]
[ 1.706435][ T0] Detected PIPT I-cache on CPU5
[ 1.706447][ T0] GICv3: CPU5: found redistributor 500 region 0:0x00000000fe720000
[ 1.706454][ T0] GICv3: CPU5: using allocated LPI pending table @0x00000001f01a0000
[ 1.706476][ T0] CPU5: Booted secondary processor 0x0000000500 [0x414fd0b0]
[ 1.707653][ T0] Detected PIPT I-cache on CPU6
[ 1.707665][ T0] GICv3: CPU6: found redistributor 600 region 0:0x00000000fe740000
[ 1.707672][ T0] GICv3: CPU6: using allocated LPI pending table @ x00000001f01b0000
[ 1.707693][ T0] CPU6: Booted secondary processor 0x0000000600 [0x414fd0b0]
[ 1.708861][ T0] Detected PIPT I-cache on CPU7
[ 1.708872][ T0] GICv3: CPU7: found redistributor 700 region 0:0x00000000fe760000
[ 1.708879][ T0] GICv3: CPU7: using allocated LPI pending table @0x00000001f01c0000
[ 1.708901][ T0] CPU7: Booted secondary processor 0x0000000700 [0x414fd0b0]
[ 1.708955][ T1] smp: Brought up 1 node, 8 CPUs
[ 1.727774][ T1] SMP: Total of 8 processors activated.
[ 1.728265][ T1] CPU features: detected: Privileged Access Never
[ 1.728843][ T1] CPU features: detected: LSE atomic instructions
[ 1.729411][ T1] CPU features: detected: User Access Override
[ 1.729955][ T1] CPU features: detected: 32-bit EL0 Support
[ 1.730484][ T1] CPU features: detected: Common not Private translations
[ 1.731113][ T1] CPU features: detected: RAS Extension Support
[ 1.731665][ T1] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[ 1.732528][ T1] CPU features: detected: CRC32 instructions
[ 1.733057][ T1] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[ 1.733749][ T1] CPU features: detected: RCpc load-acquire (LDAPR)
[ 1.766736][ T1] CPU: All CPU(s) started at EL2
[ 1.768721][ T1] devtmpfs: initialized
[ 1.779003][ T1] Registered cp15_barrier emulation handler
[ 1.779012][ T7] Trying to unpack rootfs image as initramfs...
[ 1.779538][ T1] Registered setend emulation handler
[ 1.779541][ T1] KASLR disabled due to lack of seed
[ 1.779604][ T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 1.781994][ T1] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 1.782802][ T1] pinctrl core: initialized pinctrl subsystem
[ 1.783729][ T1] NET: Registered protocol family 16
[ 1.784886][ T1] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[ 1.785622][ T1] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 1.786414][ T1] audit: initializing netlink subsys (disabled)
[ 1.787024][ T61] audit: type=2000 audit(0.096:1): state=initialized audit_enabled=0 res=1
[ 1.787388][ T1] Registered FIQ tty driver
[ 1.788263][ T1] thermal_sys: Registered thermal governor 'fair_share'
[ 1.788265][ T1] thermal_sys: Registered thermal governor 'step_wise'
[ 1.788881][ T1] thermal_sys: Registered thermal governor 'user_space'
[ 1.789494][ T1] thermal_sys: Registered thermal governor 'power_allocator'
[ 1.790221][ T1] thermal thermal_zone1: power_allocator: sustainable_power will be estimated
[ 1.791683][ T1] thermal thermal_zone2: power_allocator: sustainable_power will be estimated
[ 1.792491][ T1] thermal thermal_zone3: power_allocator: sustainable_power will be estimated
[ 1.793303][ T1] thermal thermal_zone4: power_allocator: sustainable_power will be estimated
[ 1.794111][ T1] thermal thermal_zone5: power_allocator: sustainable_power will be estimated
[ 1.794918][ T1] thermal thermal_zone6: power_allocator: sustainable_power will be estimated
[ 1.795731][ T1] cpuidle: using governor menu
[ 1.796240][ T1] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 1.797035][ T1] ASID allocator initialised with 65536 entries
[ 1.798758][ T1] ramoops: boot-log-0 0x8000@0x0000000000110000
[ 1.799321][ T1] ramoops: dmesg-0 0x14000@0x0000000000118000
[ 1.799858][ T1] ramoops: dmesg-1 0x14000@0x000000000012c000
[ 1.800410][ T1] ramoops: console 0x80000@0x0000000000140000
[ 1.800951][ T1] ramoops: pmsg 0x30000@0x00000000001c0000
[ 1.801740][ T1] printk: console [ramoops-1] enabled
[ 1.802273][ T1] pstore: Registered ramoops as persistent store backend
[ 1.802897][ T1] ramoops: using 0xe0000@0x110000, ecc: 0
[ 1.819375][ T7] Freeing initrd memory: 1316K
[ 1.841582][ T1] rockchip-gpio fd8a0000.gpio: probed /pinctrl/gpio@fd8a0000
[ 1.842418][ T1] rockchip-gpio fec20000.gpio: probed /pinctrl/gpio@fec20000
[ 1.843201][ T1] rockchip-gpio fec30000.gpio: probed /pinctrl/gpio@fec30000
[ 1.844008][ T1] rockchip-gpio fec40000.gpio: probed /pinctrl/gpio@fec40000
[ 1.844819][ T1] rockchip-gpio fec50000.gpio: probed /pinctrl/gpio@fec50000
[ 1.845500][ T1] rockchip-pinctrl pinctrl: probed pinctrl
[ 1.854738][ T1] fiq_debugger fiq_debugger.0: IRQ fiq not found
[ 1.855304][ T1] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[ 1.855890][ T1] fiq_debugger_probe: could not install nmi irq handler
[[ 1.856541][ T1] printk: console [ttyFIQ0] enabled
1.856541][ T1] printk: console [ttyFIQ0] enabled
[ 1.857442][ T1] printk: bootconsole [uart8250] disabled
[ 1.857442][ T1] printk: bootconsole [uart8250] disabled
[ 1.858031][ T1] Registered fiq debugger ttyFIQ0
[ 1.858297][ T1] vcc5v0_sys: supplied by vcc12v_dcin
[ 1.858382][ T1] vcc5v0_usbdcin: supplied by vcc12v_dcin
[ 1.858461][ T1] vcc5v0_usb: supplied by vcc5v0_usbdcin
[ 1.858667][ T1] vbus5v0_typec: supplied by vcc5v0_usb
[ 1.858766][ T1] vcc3v3_pcie20: supplied by vcc12v_dcin
[ 1.858844][ T1] vcc5v0_host: supplied by vcc5v0_usb
[ 1.858932][ T1] vcc_1v1_nldo_s3: supplied by vcc5v0_sys
[ 1.859101][ T1] iommu: Default domain type: Translated
[ 1.860695][ T1] SCSI subsystem initialized
[ 1.860756][ T1] usbcore: registered new interface driver usbfs
[ 1.860768][ T1] usbcore: registered new interface driver hub
[ 1.860780][ T1] usbcore: registered new device driver usb
[ 1.860881][ T1] mc: Linux media interface: v0.10
[ 1.860889][ T1] videodev: Linux video capture interface: v2.00
[ 1.860906][ T1] pps_core: LinuxPPS API ver. 1 registered
[ 1.860909][ T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.860916][ T1] PTP clock support registered
[ 1.861094][ T1] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
[ 1.861123][ T1] arm-scmi firmware:scmi: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
[ 1.861951][ T1] Advanced Linux Sound Architecture Driver Initialized.
[ 1.862102][ T1] Bluetooth: Core ver 2.22
[ 1.862113][ T1] NET: Registered protocol family 31
[ 1.862116][ T1] Bluetooth: HCI device and connection manager initialized
[ 1.862121][ T1] Bluetooth: HCI socket layer initialized
[ 1.862125][ T1] Bluetooth: L2CAP socket layer initialized
[ 1.862132][ T1] Bluetooth: SCO socket layer initialized
[ 1.863378][ T1] rockchip-cpuinfo cpuinfo: SoC : 35881000
[ 1.863383][ T1] rockchip-cpuinfo cpuinfo: Serial : 1cd23bb7ecb20890
[ 1.863597][ T1] clocksource: Switched to clocksource arch_sys_counter
[ 1.893953][ T1] VFS: Disk quotas dquot_6.6.0
[ 1.893984][ T1] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.894665][ T1] NET: Registered protocol family 2
[ 1.894791][ T1] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 1.895771][ T1] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 1.895829][ T1] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 1.895990][ T1] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 1.896314][ T1] TCP: Hash tables configured (established 32768 bind 32768)
[ 1.896360][ T1] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 1.896425][ T1] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 1.896522][ T1] NET: Registered protocol family 1
[ 1.896754][ T1] PCI: CLS 0 bytes, default 64
[ 1.897370][ T1] rockchip-thermal fec00000.tsadc: Missing rockchip,grf property
[ 1.897817][ T1] rockchip-thermal fec00000.tsadc: tsadc is probed successfully!
[ 1.898389][ T1] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[ 1.900752][ T1] Initialise system trusted keyrings
[ 1.900845][ T1] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[ 1.902149][ T1] utf8_selftest: All 154 tests passed
[ 1.902154][ T1] fuse: init (API version 7.32)
[ 1.921342][ T1] Key type asymmetric registered
[ 1.921349][ T1] Asymmetric key parser 'x509' registered
[ 1.921362][ T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[ 1.921366][ T1] io scheduler mq-deadline registered
[ 1.921371][ T1] io scheduler kyber registered
[ 1.921399][ T1] io scheduler bfq registered
[ 1.921778][ T1] rockchip-csi2-dphy-hw fedc0000.csi2-dphy0-hw: csi2 dphy hw probe successfully!
[ 1.921834][ T1] rockchip-csi2-dphy-hw fedc8000.csi2-dphy1-hw: csi2 dphy hw probe successfully!
[ 1.927381][ T1] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy init success
[ 1.929121][ T143] rk-pcie fe180000.pcie: invalid prsnt-gpios property in node
[ 1.929123][ T144] rk-pcie fe190000.pcie: invalid prsnt-gpios property in node
[ 1.929133][ T144] rk-pcie fe190000.pcie: no vpcie3v3 regulator found
[ 1.929310][ T144] rk-pcie fe190000.pcie: IRQ msi not found
[ 1.929315][ T144] rk-pcie fe190000.pcie: use outband MSI support
[ 1.929320][ T144] rk-pcie fe190000.pcie: Missing *config* reg space
[ 1.929325][ T144] rk-pcie fe190000.pcie: host bridge /pcie@fe190000 ranges:
[ 1.929328][ T1] pwm-backlight backlight: supply power not found, using dummy regulator
[ 1.929339][ T144] rk-pcie fe190000.pcie: err 0x00f4000000..0x00f40fffff -> 0x00f4000000
[ 1.929345][ T144] rk-pcie fe190000.pcie: IO 0x00f4100000..0x00f41fffff -> 0x00f4100000
[ 1.929353][ T144] rk-pcie fe190000.pcie: MEM 0x00f4200000..0x00f4ffffff -> 0x00f4200000
[ 1.929357][ T144] rk-pcie fe190000.pcie: MEM 0x0a00000000..0x0a3fffffff -> 0x0a00000000
[ 1.929380][ T144] rk-pcie fe190000.pcie: Missing *config* reg space
[ 1.929402][ T144] rk-pcie fe190000.pcie: invalid resource
[ 1.929547][ T1] iep: Module initialized.
[ 1.929575][ T1] mpp_service mpp-srv: 95949accd3b4 author: Yandong Lin 2023-05-09 video: rockchip: mpp: fix some issue for ccu flow
[ 1.929580][ T1] mpp_service mpp-srv: probe start
[ 1.930581][ T1] mpp_vdpu2 fdb50400.vdpu: Adding to iommu group 1
[ 1.930777][ T1] mpp_vdpu2 fdb50400.vdpu: probe device
[ 1.930865][ T1] mpp_vdpu2 fdb50400.vdpu: reset_group->rw_sem_on=0
[ 1.930871][ T1] mpp_vdpu2 fdb50400.vdpu: reset_group->rw_sem_on=0
[ 1.930952][ T1] mpp_vdpu2 fdb50400.vdpu: probing finish
[ 1.931104][ T1] mpp_vepu2 jpege-ccu: probing start
[ 1.931109][ T1] mpp_vepu2 jpege-ccu: probing finish
[ 1.931175][ T1] mpp_vepu2 fdb50000.vepu: Adding to iommu group 1
[ 1.931248][ T1] mpp_vepu2 fdb50000.vepu: probing start
[ 1.931311][ T1] mpp_vepu2 fdb50000.vepu: reset_group->rw_sem_on=0
[ 1.931316][ T1] mpp_vepu2 fdb50000.vepu: reset_group->rw_sem_on=0
[ 1.931386][ T1] mpp_vepu2 fdb50000.vepu: probing finish
[ 1.931474][ T1] mpp_vepu2 fdba0000.jpege-core: Adding to iommu group 5
[ 1.931593][ T1] mpp_vepu2 fdba0000.jpege-core: probing start
[ 1.931672][ T1] mpp_vepu2 fdba0000.jpege-core: attach ccu success
[ 1.931739][ T1] mpp_vepu2 fdba0000.jpege-core: probing finish
[ 1.931810][ T1] mpp_vepu2 fdba4000.jpege-core: Adding to iommu group 6
[ 1.931939][ T1] mpp_vepu2 fdba4000.jpege-core: probing start
[ 1.932013][ T1] mpp_vepu2 fdba4000.jpege-core: attach ccu success
[ 1.932078][ T1] mpp_vepu2 fdba4000.jpege-core: probing finish
[ 1.932147][ T1] mpp_vepu2 fdba8000.jpege-core: Adding to iommu group 7
[ 1.932272][ T1] mpp_vepu2 fdba8000.jpege-core: probing start
[ 1.932346][ T1] mpp_vepu2 fdba8000.jpege-core: attach ccu success
[ 1.932411][ T1] mpp_vepu2 fdba8000.jpege-core: probing finish
[ 1.932489][ T1] mpp_vepu2 fdbac000.jpege-core: Adding to iommu group 8
[ 1.932612][ T1] mpp_vepu2 fdbac000.jpege-core: probing start
[ 1.932686][ T1] mpp_vepu2 fdbac000.jpege-core: attach ccu success
[ 1.932752][ T1] mpp_vepu2 fdbac000.jpege-core: probing finish
[ 1.932951][ T1] mpp-iep2 fdbb0000.iep: Adding to iommu group 9
[ 1.933077][ T1] mpp-iep2 fdbb0000.iep: probe device
[ 1.933170][ T1] mpp-iep2 fdbb0000.iep: allocate roi buffer failed
[ 1.933235][ T1] mpp-iep2 fdbb0000.iep: probing finish
[ 1.933394][ T1] mpp_jpgdec fdb90000.jpegd: Adding to iommu group 4
[ 1.933576][ T1] mpp_jpgdec fdb90000.jpegd: probe device
[ 1.933736][ T1] mpp_jpgdec fdb90000.jpegd: probing finish
[ 1.934034][ T1] mpp_rkvdec2 fdc30000.rkvdec-ccu: rkvdec-ccu, probing start
[ 1.934078][ T1] mpp_rkvdec2 fdc30000.rkvdec-ccu: ccu-mode: 1
[ 1.934082][ T1] mpp_rkvdec2 fdc30000.rkvdec-ccu: probing finish
[ 1.934150][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: Adding to iommu group 12
[ 1.934378][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: rkvdec-core, probing start
[ 1.934509][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_a is not found!
[ 1.934513][ T1] rkvdec2_init:1022: No niu aclk reset resource define
[ 1.934517][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_h is not found!
[ 1.934521][ T1] rkvdec2_init:1025: No niu hclk reset resource define
[ 1.934537][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: no regulator, devfreq is disabled
[ 1.934585][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: core_mask=00010001
[ 1.934589][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: attach ccu as core 0
[ 1.934661][ T143] rk-pcie fe180000.pcie: IRQ msi not found
[ 1.934673][ T143] rk-pcie fe180000.pcie: use outband MSI support
[ 1.934683][ T143] rk-pcie fe180000.pcie: Missing *config* reg space
[ 1.934697][ T143] rk-pcie fe180000.pcie: host bridge /pcie@fe180000 ranges:
[ 1.934718][ T143] rk-pcie fe180000.pcie: err 0x00f3000000..0x00f30fffff -> 0x00f3000000
[ 1.934734][ T143] rk-pcie fe180000.pcie: IO 0x00f3100000..0x00f31fffff -> 0x00f3100000
[ 1.934752][ T143] rk-pcie fe180000.pcie: MEM 0x00f3200000..0x00f3ffffff -> 0x00f3200000
[ 1.934765][ T143] rk-pcie fe180000.pcie: MEM 0x09c0000000..0x09ffffffff -> 0x09c0000000
[ 1.934792][ T143] rk-pcie fe180000.pcie: Missing *config* reg space
[ 1.934805][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: sram_start 0x00000000ff001000
[ 1.934810][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_iova 0x00000000fff00000
[ 1.934813][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: sram_size 491520
[ 1.934817][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_size 1048576
[ 1.934819][ T143] rk-pcie fe180000.pcie: invalid resource
[ 1.934827][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: min_width 512
[ 1.934832][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_info_count 20
[ 1.934836][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: [136, 24576]
[ 1.934839][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: [137, 49152]
[ 1.934843][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: [141, 90112]
[ 1.934846][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: [140, 49152]
[ 1.934850][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: [139, 180224]
[ 1.934853][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: [133, 49152]
[ 1.934856][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: [134, 8192]
[ 1.934860][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: [135, 4352]
[ 1.934863][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: [138, 13056]
[ 1.934866][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: [142, 291584]
[ 1.934892][ T1] mpp_rkvdec2 fdc38100.rkvdec-core: probing finish
[ 1.934955][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: Adding to iommu group 13
[ 1.935158][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: rkvdec-core, probing start
[ 1.935247][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: shared_niu_a is not found!
[ 1.935251][ T1] rkvdec2_init:1022: No niu aclk reset resource define
[ 1.935255][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: shared_niu_h is not found!
[ 1.935258][ T1] rkvdec2_init:1025: No niu hclk reset resource define
[ 1.935271][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: no regulator, devfreq is disabled
[ 1.935305][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: core_mask=00020002
[ 1.935321][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: attach ccu as core 1
[ 1.935558][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: sram_start 0x00000000ff079000
[ 1.935562][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_iova 0x00000000ffe00000
[ 1.935566][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: sram_size 487424
[ 1.935569][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_size 1048576
[ 1.935574][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: min_width 512
[ 1.935579][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_info_count 20
[ 1.935583][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: [136, 24576]
[ 1.935587][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: [137, 49152]
[ 1.935590][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: [141, 90112]
[ 1.935594][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: [140, 49152]
[ 1.935597][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: [139, 180224]
[ 1.935601][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: [133, 49152]
[ 1.935604][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: [134, 8192]
[ 1.935608][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: [135, 4352]
[ 1.935611][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: [138, 13056]
[ 1.935615][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: [142, 291584]
[ 1.935638][ T1] mpp_rkvdec2 fdc48100.rkvdec-core: probing finish
[ 1.935805][ T1] mpp_rkvenc2 rkvenc-ccu: probing start
[ 1.935809][ T1] mpp_rkvenc2 rkvenc-ccu: probing finish
[ 1.936243][ T1] mpp_av1dec: Adding child /av1d@fdc70000
[ 1.936411][ T1] mpp_av1dec: register device av1d-master
[ 1.936424][ T1] mpp_av1dec av1d-master: av1_iommu_of_xlate,784
[ 1.936439][ T1] av1_iommu_probe_device,737, consumer : av1d-master, supplier : fdca0000.iommu
[ 1.936445][ T1] mpp_av1dec av1d-master: Adding to iommu group 15
[ 1.936667][ T1] mpp_av1dec av1d-master: probing start
[ 1.936828][ T1] mpp_av1dec av1d-master: probing finish
[ 1.936947][ T1] mpp_service mpp-srv: probe success
[ 1.945247][ T1] dma-pl330 fea10000.dma-controller: Loaded driver for PL330 DMAC-241330
[ 1.945255][ T1] dma-pl330 fea10000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[ 1.945898][ T1] dma-pl330 fea30000.dma-controller: Loaded driver for PL330 DMAC-241330
[ 1.945904][ T1] dma-pl330 fea30000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[ 1.946551][ T1] dma-pl330 fed10000.dma-controller: Loaded driver for PL330 DMAC-241330
[ 1.946557][ T1] dma-pl330 fed10000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[ 1.946801][ T1] rockchip-pvtm fda40000.pvtm: pvtm@0 probed
[ 1.946840][ T1] rockchip-pvtm fda50000.pvtm: pvtm@1 probed
[ 1.946877][ T1] rockchip-pvtm fda60000.pvtm: pvtm@2 probed
[ 1.946917][ T1] rockchip-pvtm fdaf0000.pvtm: pvtm@3 probed
[ 1.946960][ T1] rockchip-pvtm fdb30000.pvtm: pvtm@4 probed
[ 1.947280][ T1] rockchip-system-monitor rockchip-system-monitor: system monitor probe
[ 1.947933][ T1] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
[ 1.948306][ T1] febb0000.serial: ttyS8 at MMIO 0xfebb0000 (irq = 104, base_baud = 1500000) is a 16550A
[ 1.948785][ T166] random: crng init done
[ 1.949413][ T1] rockchip-vop2 fdd90000.vop: Adding to iommu group 14
[ 1.955346][ T1] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x5, primary plane phy id: 2
[ 1.955355][ T1] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp1 assign plane mask: 0xa, primary plane phy id: 3
[ 1.955362][ T1] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x140, primary plane phy id: 8
[ 1.955368][ T1] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp3 assign plane mask: 0x280, primary plane phy id: 9
[ 1.965617][ T1] rockchip-drm display-subsystem: bound fdd90000.vop (ops vop2_component_ops)
[ 1.966020][ T1] dwhdmi-rockchip fde80000.hdmi: registered ddc I2C bus driver
[ 1.966318][ T1] rockchip-drm display-subsystem: bound fde80000.hdmi (ops dw_hdmi_rockchip_ops)
[ 1.966352][ T1] dw-mipi-dsi2 fde20000.dsi: [drm:dw_mipi_dsi2_bind] *RROR* Failed to find panel or bridge: -517
[ 1.971896][ T1] panel-simple-dsi fde20000.dsi.0: failed to get power regulator: -517
[ 1.976!31][ T1] brd: module loaded
[ 1.980916][ T1] loop: module loaded
[ 1.981060][ T1] zram: Added device: zram0
[ 1.981326][ T1] system_heap: orders[0] = 6
[ 1.981331][ T1] system_heap: orders[1] = 4
[ 1.981335][ T1] system_heap: orders[2] = 0
[ 1.981640][ T1] SCSI Media Changer driver v0.25
[ 1.982858][ T1] rockchip-spi feb20000.spi: no high_speed pinctrl state
[ 1.984094][ T1] rk806 spi2.0: chip id: RK806,ver:0x2, 0x1
[ 1.984266][ T1] rk806 spi2.0: ON: 0x40 OFF:0x0
[ 1.985916][ T1] vdd_gpu_s0: supplied by vcc5v0_sys
[ 1.986891][ T1] vdd_cpu_lit_s0: supplied by vcc5v0_sys
[ 1.987512][ T1] vdd_log_s0: supplied by vcc5v0_sys
[ 1.988015][ T1] vdd_vdenc_s0: supplied by vcc5v0_sys
[ 1.988563][ T1] vdd_ddr_s0: supplied by vcc5v0_sys
[ 1.988838][ T1] vdd2_ddr_s3: supplied by vcc5v0_sys
[ 1.989313][ T1] vdd_2v0_pldo_s3: supplied by vcc5v0_sys
[ 1.989727][ T1] vcc_3v3_s3: supplied by vcc5v0_sys
[ 1.990111][ T1] vddq_ddr_s0: supplied by vcc5v0_sys
[ 1.990620][ T1] vcc_1v8_s3: supplied by vcc5v0_sys
[ 1.991045][ T1] vdd_0v75_s3: supplied by vcc_1v1_nldo_s3
[ 1.991501][ T1] vdd_ddr_pll_s0: supplied by vcc_1v1_nldo_s3
[ 1.991839][ T1] avdd_0v75_s0: Bringing 750000uV into 837500-837500uV
[ 1.992009][ T1] avdd_0v75_s0: supplied by vcc_1v1_nldo_s3
[ 1.992397][ T1] vdd_0v85_s0: supplied by vcc_1v1_nldo_s3
[ 1.992789][ T1] vdd_0v75_s0: supplied by vcc_1v1_nldo_s3
[ 1.993264][ T1] avcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[ 1.993781][ T1] vcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[ 1.994234][ T1] avdd_1v2_s0: supplied by vdd_2v0_pldo_s3
[ 1.994680][ T1] vcc_3v3_s0: supplied by vcc5v0_sys
[ 1.995062][ T1] vccio_sd_s0: supplied by vcc5v0_sys
[ 1.995458][ T1] pldo6_s3: supplied by vcc5v0_sys
[ 1.995649][ T1] rk806 spi2.0: no sleep-setting state
[ 1.995654][ T1] rk806 spi2.0: no reset-setting pinctrl state
[ 1.995659][ T1] rk806 spi2.0: no dvs-setting pinctrl state
[ 1.996914][ T1] rockchip-spi feb20000.spi: probed, poll=0, rsd=0
[ 1.997570][ T1] tun: Universal TUN/TAP device driver, 1.6
[ 1.997997][ T1] PPP generic driver version 2.4.2
[ 1.998051][ T1] PPP BSD Compression module registered
[ 1.998055][ T1] PPP Deflate Compression module registered
[ 1.998069][ T1] PPP MPPE Compression module registered
[ 1.998073][ T1] NET: Registered protocol family 24
[ 1.998084][ T1] PPTP driver version 0.8.5
[ 1.998250][ T1] usbcore: registered new interface driver catc
[ 1.998262][ T1] usbcore: registered new interface driver kaweth
[ 1.998267][ T1] pegasus: v0.9.3 (2013/04/25), Pegasus/Pegasus II USB Ethernet driver
[ 1.998281][ T1] usbcore: registered new interface driver pegasus
[ 1.998293][ T1] usbcore: registered new interface driver rtl8150
[ 1.998308][ T1] usbcore: registered new interface driver r8152
[ 1.998312][ T1] hso: drivers/net/usb/hso.c: Option Wireless
[ 1.998332][ T1] usbcore: registered new interface driver hso
[ 1.998346][ T1] usbcore: registered new interface driver asix
[ 1.998359][ T1] usbcore: registered new interface driver ax88179_178a
[ 1.998371][ T1] usbcore: registered new interface driver cdc_ether
[ 1.998384][ T1] usbcore: registered new interface driver cdc_eem
[ 1.998396][ T1] usbcore: registered new interface driver dm9601
[ 1.998413][ T1] usbcore: registered new interface driver smsc75xx
[ 1.998428][ T1] usbcore: registered new interface driver smsc95xx
[ 1.998440][ T1] usbcore: registered new interface driver gl620a
[ 1.998453][ T1] usbcore: registered new interface driver net1080
[ 1.998465][ T1] usbcore: registered new interface driver plusb
[ 1.998478][ T1] usbcore: registered new interface driver rndis_host
[ 1.998491][ T1] usbcore: registered new interface driver cdc_subset
[ 1.998503][ T1] usbcore: registered new interface driver zaurus
[ 1.998516][ T1] usbcore: registered new interface driver MOSCHIP usb-ethernet driver
[ 1.998529][ T1] usbcore: registered new interface driver int51x1
[ 1.998547][ T1] usbcore: registered new interface driver kalmia
[ 1.998559][ T1] usbcore: registered new interface driver ipheth
[ 1.998572][ T1] usbcore: registered new interface driver sierra_net
[ 1.998584][ T1] usbcore: registered new interface driver cx82310_eth
[ 1.998602][ T1] usbcore: registered new interface driver cdc_ncm
[ 1.998615][ T1] usbcore: registered new interface driver qmi_wwan
[ 1.998627][ T1] usbcore: registered new interface driver cdc_mbim
[ 2.005910][ T1] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.005916][ T1] ehci-pci: EHCI PCI platform driver
[ 2.005939][ T1] ehci-platform: EHCI generic platform driver
[ 2.008133][ T1] ehci-platform fc800000.usb: EHCI Host Controller
[ 2.008198][ T1] ehci-platform fc800000.usb: new USB bus registered, assigned bus number 1
[ 2.008256][ T1] ehci-platform fc800000.usb: irq 20, io mem 0xfc800000
[ 2.020270][ T1] ehci-platform fc800000.usb: USB 2.0 started, EHCI 1.00
[ 2.020331][ T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 2.020337][ T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.020342][ T1] usb usb1: Product: EHCI Host Controller
[ 2.020346][ T1] usb usb1: Manufacturer: Linux 5.10.160 ehci_hcd
[ 2.020350][ T1] usb usb1: SerialNumber: fc800000.usb
[ 2.020537][ T1] hub 1-0:1.0: USB hub found
[ 2.020549][ T1] hub 1-0:1.0: 1 port detected
[ 2.022839][ T1] ehci-platform fc880000.usb: EHCI Host Controller
[ 2.022903][ T1] ehci-platform fc880000.usb: new USB bus registered, assigned bus number 2
[ 2.022944][ T1] ehci-platform fc880000.usb: irq 22, io mem 0xfc880000
[ 2.033605][ T1] ehci-platform fc880000.usb: USB 2.0 started, EHCI 1.00
[ 2.033654][ T1] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 2.033659][ T1] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.033664][ T1] usb usb2: Product: EHCI Host Controller
[ 2.033668][ T1] usb usb2: Manufacturer: Linux 5.10.160 ehci_hcd
[ 2.033673][ T1] usb usb2: SerialNumber: fc880000.usb
[ 2.033819][ T1] hub 2-0:1.0: USB hub found
[ 2.033831][ T1] hub 2-0:1.0: 1 port detected
[ 2.034126][ T1] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 2.034135][ T1] ohci-platform: OHCI generic platform driver
[ 2.034252][ T1] ohci-platform fc840000.usb: Generic Platform OHCI controller
[ 2.034307][ T1] ohci-platform fc840000.usb: new USB bus registered, assigned bus number 3
[ 2.034343][ T1] ohci-platform fc840000.usb: irq 21, io mem 0xfc840000
[ 2.094330][ T1] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[ 2.094338][ T1] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.094343][ T1] usb usb3: Product: Generic Platform OHCI controller
[ 2.094347][ T1] usb usb3: Manufacturer: Linux 5.10.160 ohci_hcd
[ 2.094351][ T1] usb usb3: SerialNumber: fc840000.usb
[ 2.094496][ T1] hub 3-0:1.0: USB hub found
[ 2.094508][ T1] hub 3-0:1.0: 1 port detected
[ 2.094696][ T1] ohci-platform fc8c0000.usb: Generic Platform OHCI controller
[ 2.094750][ T1] ohci-platform fc8c0000.usb: new USB bus registered, assigned bus number 4
[ 2.094784][ T1] ohci-platform fc8c0000.usb: irq 23, io mem 0xfc8c0000
[ 2.134711][ T144] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[ 2.141409][ T143] rk-pcie fe180000.pcie: PCIe Linking... LTSSM is 0x3
[ 2.154325][ T1] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[ 2.154334][ T1] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.154338][ T1] usb usb4: Product: Generic Platform OHCI controller
[ 2.154342][ T1] usb usb4: Manufacturer: Linux 5.10.160 ohci_hcd
[ 2.154346][ T1] usb usb4: SerialNumber: fc8c0000.usb
[ 2.154488][ T1] hub 4-0:1.0: USB hub found
[ 2.154500][ T1] hub 4-0:1.0: 1 port detected
[ 2.154876][ T1] usbcore: registered new interface driver cdc_acm
[ 2.154880][ T1] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[ 2.154900][ T1] usbcore: registered new interface driver usblp
[ 2.154916][ T1] usbcore: registered new interface driver cdc_wdm
[ 2.155003][ T1] usbcore: registered new interface driver uas
[ 2.155033][ T1] usbcore: registered new interface driver usb-storage
[ 2.155047][ T1] usbcore: registered new interface driver ums-alauda
[ 2.155062][ T1] usbcore: registered new interface driver ums-cypress
[ 2.155076][ T1] usbcore: registered new interface driver ums-datafab
[ 2.155089][ T1] usbcore: registered new interface driver ums_eneub6250
[ 2.155102][ T1] usbcore: registered new interface driver ums-freecom
[ 2.155115][ T1] usbcore: registered new interface driver ums-isd200
[ 2.155128][ T1] usbcore: registered new interface driver ums-jumpshot
[ 2.155141][ T1] usbcore: registered new interface driver ums-karma
[ 2.155155][ T1] usbcore: registered new interface driver ums-onetouch
[ 2.155168][ T1] usbcore: registered new interface driver ums-sddr09
[ 2.155181][ T1] usbcore: registered new interface driver ums-sddr55
[ 2.155194][ T1] usbcore: registered new interface driver ums-usbat
[ 2.155224][ T1] usbcore: registered new interface driver usbserial_generic
[ 2.155233][ T1] usbserial: USB Serial support registered for generic
[ 2.155247][ T1] usbcore: registered new interface driver option
[ 2.155255][ T1] usbserial: USB Serial support registered for GSM modem (1-port)
[ 2.155308][ T1] usbcore: registered new interface driver trancevibrator
[ 2.155548][ T1] usbcore: registered new interface driver xpad
[ 2.155567][ T1] usbcore: registered new interface driver usb_acecad
[ 2.155582][ T1] usbcore: registered new interface driver aiptek
[ 2.155596][ T1] usbcore: registered new interface driver gtco
[ 2.155611][ T1] usbcore: registered new interface driver hanwang
[ 2.155625][ T1] usbcore: registered new interface driver kbtab
[ 2.155794][ T1] .. rk pwm remotectl v2.0 init
[ 2.155894][ T1] input: febf0030.pwm as /devices/platform/febf0030.pwm/input/input0
[ 2.156012][ T1] remotectl-pwm febf0030.pwm: pwm version is 0x2130000
[ 2.156033][ T1] remotectl-pwm febf0030.pwm: Controller support pwrkey capture
[ 2.157079][ T1] input: rk805 pwrkey as /devices/platform/feb20000.spi/spi_master/spi2/spi2.0/rk805-pwrkey.2.auto/input/input1
[ 2.157249][ T1] i2c /dev entries driver
[ 2.160267][ T144] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[ 2.160576][ T1] vdd_cpu_big0_s0: supplied by vcc5v0_sys
[ 2.167665][ T1] vdd_cpu_big1_s0: supplied by vcc5v0_sys
[ 2.172774][ T1] rk860-regulator 2-0042: Failed to get chip ID!
[ 2.176733][ T1] gsensor_mpu6500 5-0068: sensor_register_device: mpu6500_acc, id = 29
[ 2.176749][ T1] i2c i2c-5: sensor_probe: mpu6500_acc,0000000004446c95
[ 2.176837][ T1] gsensor_mpu6500 5-0068: sensor_chip_init:mpu6500_acc:devid=0x0,ops=0x000000003a221192
[ 2.186933][ T144] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[ 2.213599][ T144] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[ 2.223627][ T143] rk-pcie fe180000.pcie: PCIe Link up, LTSSM is 0x30011
[ 2.223803][ T143] rk-pcie fe180000.pcie: PCI host bridge to bus 0003:30
[ 2.223820][ T143] pci_bus 0003:30: root bus resource [bus 30-3f]
[ 2.223833][ T143] pci_bus 0003:30: root bus resource [??? 0xf3000000-0xf30fffff flags 0x0]
[ 2.223848][ T143] pci_bus 0003:30: root bus resource [io 0x100000-0x1fffff] (bus address [0xf3100000-0xf31fffff])
[ 2.223859][ T143] pci_bus 0003:30: root bus resource [mem 0xf3200000-0xf3ffffff]
[ 2.223871][ T143] pci_bus 0003:30: root bus resource [mem 0x9c0000000-0x9ffffffff pref]
[ 2.223915][ T143] pci 0003:30:00.0: [1d87:3588] type 01 class 0x060400
[ 2.223945][ T143] pci 0003:30:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[ 2.224009][ T143] pci 0003:30:00.0: supports D1 D2
[ 2.224021][ T143] pci 0003:30:00.0: PME# supported from D0 D1 D3hot
[ 2.234389][ T143] pci 0003:30:00.0: Primary bus is hard wired to 0
[ 2.234411][ T143] pci 0003:30:00.0: bridge configuration invalid ([bus 01-ff]), reconfiguring
[ 2.234634][ T143] pci 0003:31:00.0: [10ec:8168] type 00 class 0x020000
[ 2.234710][ T143] pci 0003:31:00.0: reg 0x10: [io 0x0000-0x00ff]
[ 2.234800][ T143] pci 0003:31:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
[ 2.234861][ T143] pci 0003:31:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
[ 2.235296][ T143] pci 0003:31:00.0: supports D1 D2
[ 2.235308][ T143] pci 0003:31:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 2.240266][ T144] rk-pcie fe1900 0.pcie: PCIe Linking... LTSSM is 0x3
[ 2.253710][ T143] pci_bus 0003:31: busn_res: [bus 31-3f] end is updated to 31
[ 2.253750][ T143] pci 0003:30:00.0: BAR 8: assigned [mem 0xf3200000-0xf32fffff]
[ 2.253764][ T143] pci 0003:30:00.0: BAR 6: assigned [mem 0xf3300000-0xf330ffff pref]
[ 2.253777][ T143] pci 0003:30:00.0: BAR 7: assigned [io 0x100000-0x100fff]
[ 2.253795][ T143] pci 0003:31:00.0: BAR 4: assigned [mem 0xf3200000-0xf3203fff 64bit]
[ 2.253849][ T143] pci 0003:31:00.0: BAR 2: assigned [mem 0xf3204000-0xf3204fff 64bit]
[ 2.253900][ T143] pci 0003:31:00.0: BAR 0: assigned [io 0x100000-0x1000ff]
[ 2.253924][ T143] pci 0003:30:00.0: PCI bridge to [bus 31]
[ 2.253936][ T143] pci 0003:30:00.0: bridge window [io 0x100000-0x100fff]
[ 2.253948][ T143] pci 0003:30:00.0: bridge window [mem 0xf3200000-0xf32fffff]
[ 2.256391][ T143] pcieport 0003:30:00.0: PME: Signaling with IRQ 138
[ 2.266932][ T144] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[ 2.276965][ T1] rk3x-i2c fead0000.i2c: timeout, ipd: 0x90, state: 3
[ 2.286937][ T57] usb 2-1: new high-speed USB device number 2 using ehci-platform
[ 2.293599][ T144] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[ 2.320265][ T144] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[ 2.346931][ T144] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[ 2.380287][ T1] rk3x-i2c fead0000.i2c: timeout, ipd: 0x80, state: 3
[ 2.380308][ T1] gsensor_mpu6500 5-0068: set MPU6500_PWR_MGMT_1 error,res: -110!
[ 2.380318][ T1] gsensor_mpu6500 5-0068: sensor_initial:fail to init sensor
[ 2.380328][ T1] gsensor_mpu6500 5-0068: sensor_chip_init:fail to init sensor
[ 2.380338][ T1] i2c i2c-5: sensor_probe failed -2
[ 2.380338][ T1]
[ 2.380390][ T1] i2c i2c-5: 1 i2c clients have been registered at 0x68
[ 2.390768][ T1] rtc-hym8563 8-0051: rtc information is valid
[ 2.396035][ T1] rtc-hym8563 8-0051: registered as rtc0
[ 2.397048][ T1] rtc-hym8563 8-0051: setting system clock to 2024-10-04T07:16:49 UTC (1728026209)
[ 2.399759][ T1] rockchip-mipi-csi2-hw fdd10000.mipi0-csi2-hw: enter mipi csi2 hw probe!
[ 2.399835][ T1] rockchip-mipi-csi2-hw fdd10000.mipi0-csi2-hw: probe success, v4l2_dev:mipi0-csi2-hw!
[ 2.399863][ T1] rockchip-mipi-csi2-hw fdd20000.mipi1-csi2-hw: enter mipi csi2 hw probe!
[ 2.399907][ T1] rockchip-mipi-csi2-hw fdd20000.mipi1-csi2-hw: probe success, v4l2_dev:mipi1-csi2-hw!
[ 2.399931][ T1] rockchip-mipi-csi2-hw fdd30000.mipi2-csi2-hw: enter mipi csi2 hw probe!
[ 2.399970][ T1] rockchip-mipi-csi2-hw fdd30000.mipi2-csi2-hw: probe success, v4l2_dev:mipi2-csi2-hw!
[ 2.399995][ T1] rockchip-mipi-csi2-hw fdd40000.mipi3-csi2-hw: enter mipi csi2 hw probe!
[ 2.400036][ T1] rockchip-mipi-csi2-hw fdd40000.mipi3-csi2-hw: probe success, v4l2_dev:mipi3-csi2-hw!
[ 2.400058][ T1] rockchip-mipi-csi2-hw fdd50000.mipi4-csi2-hw: enter mipi csi2 hw probe!
[ 2.400096][ T1] rockchip-mipi-csi2-hw fdd50000.mipi4-csi2-hw: probe success, v4l2_dev:mipi4-csi2-hw!
[ 2.400118][ T1] rockchip-mipi-csi2-hw fdd60000.mipi5-csi2-hw: enter mipi csi2 hw probe!
[ 2.400157][ T1] rockchip-mipi-csi2-hw fdd60000.mipi5-csi2-hw: probe success, v4l2_dev:mipi5-csi2-hw!
[ 2.401495][ T1] usbcore: registered new interface driver uvcvideo
[ 2.401500][ T1] USB Video Class driver (1.1.1)
[ 2.401932][ T1] __power_supply_register: Expected proper parent device for 'test_ac'
[ 2.402022][ T1] __power_supply_register: Expected proper parent device for 'test_battery'
[ 2.402130][ T1] thermal thermal_zone7: power_allocator: sustainable_power will be estimated
[ 2.402188][ T1] __power_supply_register: Expected proper parent device for 'test_usb'
[ 2.402773][ T1] device-mapper: uevent: version 1.0.3
[ 2.402863][ T1] device-mapper: ioctl: 4.44.0-ioctl (2021-02-01) initialised: dm-devel@redhat.com
[ 2.402945][ T1] Bluetooth: HCI UART driver ver 2.3
[ 2.402951][ T1] Bluetooth: HCI UART protocol H4 registered
[ 2.403620][ T1] cpu cpu0: bin=0
[ 2.403793][ T1] cpu cpu0: leakage=13
[ 2.405206][ T1] cpu cpu0: pvtm=1501
[ 2.405327][ T1] cpu cpu0: pvtm-volt-sel=4
[ 2.407214][ T1] cpu cpu4: bin=0
[ 2.407383][ T1] cpu cpu4: leakage=10
[ 2.413844][ T1] cpu cpu4: pvtm=1731
[ 2.417775][ T1] cpu cpu4: pvtm-volt-sel=5
[ 2.420414][ T1] cpu cpu6: bin=0
[ 2.420585][ T1] cpu cpu6: leakage=10
[ 2.426928][ T1] cpu cpu6: pvtm=1743
[ 2.430832][ T1] cpu cpu6: pvtm-volt-sel=5
[ 2.432645][ T1] cpu cpu0: avs=0
[ 2.433714][ T1] cpu cpu4: avs=0
[ 2.434655][ T1] cpu cpu6: avs=0
[ 2.434866][ T1] cpu cpu0: EM: created perf domain
[ 2.434902][ T1] cpu cpu0: l=10000 h=850 0 hyst=5000 l_limit=0 h_limit=1608000000 h_table=0
[ 2.435226][ T57] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=60.60
[ 2.435232][ T57] usb 2-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 2.435237][ T57] usb 2-1: Product: USB2.0 Hub
[ 2.435516][ T1] cpu cpu4: EM: created perf domain
[ 2.435549][ T1] cpu cpu4: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=2208000000 h_table=0
[ 2.435765][ T57] hub 2-1:1.0: USB hub found
[ 2.436095][ T57] hub 2-1:1.0: 4 ports detected
[ 2.445833][ T1] cpu cpu6: EM: created perf domain
[ 2.447298][ T1] cpu cpu6: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=2208000000 h_table=0
[ 2.465455][ T1] sdhci: Secure Digital Host Controller Interface driver
[ 2.465484][ T1] sdhci: Copyright(c) Pierre Ossman
[ 2.465491][ T1] Synopsys Designware Multimedia Card Interface Driver
[ 2.466037][ T1] sdhci-pltfm: SDHCI platform and OF driver helper
[ 2.467559][ T1] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active.
[ 2.467609][ T1] SMCCC: SOC_ID: ARCH_FEATURES(ARCH_SOC_ID) returned error: fffffffffffffffd
[ 2.468208][ T1] cryptodev: driver 1.12 loaded.
[ 2.468241][ T1] hid: raw HID events driver (C) Jiri Kosina
[ 2.469936][ T1] usbcore: registered new interface driver usbhid
[ 2.469943][ T1] usbhid: USB HID core driver
[ 2.470134][ T1] ashmem: initialized
[ 2.482377][ T1] optee: probing for conduit method.
[ 2.482415][ T1] optee: revision 3.13 (b5340fd6)
[ 2.482619][ T1] optee: dynamic shared memory is enabled
[ 2.482765][ T1] optee: initialized driver
[ 2.482963][ T1] rknandbase v1.2 2021-01-07
[ 2.483394][ T1] usbcore: registered new interface driver snd-usb-audio
[ 2.502941][ T7] mmc0: SDHCI controller on fe2e0000.mmc [fe2e0000.mmc] using ADMA
[ 2.539531][ T60] mmc0: Host Software Queue enabled
[ 2.539556][ T60] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[ 2.539898][ T60] mmcblk0: mmc0:0001 BJTD4R 29.1 GiB
[ 2.540009][ T60] mmcblk0boot0: mmc0:0001 BJTD4R partition 1 4.00 MiB
[ 2.540119][ T60] mmcblk0boot1: mmc0:0001 BJTD4R partition 2 4.00 MiB
[ 2.540215][ T60] mmcblk0rpmb: mmc0:0001 BJTD4R partition 3 4.00 MiB, chardev (235:0)
[ 2.542647][ T60] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14
[ 2.587006][ T1] rk3x-i2c feab0000.i2c: timeout, ipd: 0x91, state: 3
[ 2.587029][ T1] ES8323 3-0011: i2c recv Failed
[ 2.587102][ T1] ES8323: probe of 3-0011 failed with error -110
[ 2.592850][ T1] netem: version 1.3
[ 2.592874][ T1] u32 classifier
[ 2.592879][ T1] input device check on
[ 2.592883][ T1] Actions configured
[ 2.593327][ T1] xt_time: kernel timezone is -0000
[ 2.593424][ T1] gre: GRE over IPv4 demultiplexor driver
[ 2.593431][ T1] IPv4 over IPsec tunneling driver
[ 2.593897][ T1] Initializing XFRM netlink socket
[ 2.593915][ T1] IPsec XFRM device driver
[ 2.594115][ T1] NET: Registered protocol family 10
[ 2.594662][ T1] Segment Routing with IPv6
[ 2.594713][ T1] mip6: Mobile IPv6
[ 2.595095][ T1] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[ 2.595596][ T1] NET: Registered protocol family 17
[ 2.595611][ T1] NET: Registered protocol family 15
[ 2.595644][ T1] Bridge firewalling registered
[ 2.595867][ T1] Bluetooth: RFCOMM TTY layer initialized
[ 2.595885][ T1] Bluetooth: RFCOMM socket layer initialized
[ 2.595904][ T1] Bluetooth: RFCOMM ver 1.11
[ 2.595914][ T1] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 2.595919][ T1] Bluetooth: BNEP filters: protocol multicast
[ 2.595927][ T1] Bluetooth: BNEP socket layer initialized
[ 2.595933][ T1] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 2.595939][ T1] Bluetooth: HIDP socket layer initialized
[ 2.595991][ T1] l2tp_core: L2TP core driver, V2.0
[ 2.596001][ T1] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[ 2.596006][ T1] [BT_RFKILL]: Enter rfkill_rk_init
[ 2.596011][ T1] [WLAN_RFKILL]: Enter rfkill_wlan_init
[ 2.596342][ T1] [WLAN_RFKILL]: Enter rfkill_wlan_probe
[ 2.596363][ T1] [WLAN_RFKILL]: can't find rockchip,grf property
[ 2.596369][ T1] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6255
[ 2.596374][ T1] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control.
[ 2.596380][ T1] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio.
[ 2.596417][ T1] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,poweren_gpio = 23 flags = 0.
[ 2.596435][ T1] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,host_wake_irq = 0, flags = 0.
[ 2.596443][ T1] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found !
[ 2.596448][ T1] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio
[ 2.596454][ T1] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 1
[ 2.596460][ T1] [WLAN_RFKILL]: Exit rfkill_wlan_probe
[ 2.597011][ T1] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 100.
[ 2.597029][ T1] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 111.
[ 2.597040][ T1] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 113.
[ 2.597050][ T1] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 112.
[ 2.597103][ T1] [BT_RFKILL]: Request irq for bt wakeup host
[ 2.597153][ T1] [BT_RFKILL]: ** disable irq
[ 2.597265][ T1] [BT_RFKILL]: bt_default device registered.
[ 2.597435][ T1] gyro_mpu6500 5-0068-1: sensor_register_device: mpu6500_gyro, id = 58
[ 2.597445][ T1] i2c i2c-5: sensor_probe: mpu6500_gyro,00000000e2127da9
[ 2.597469][ T1] gyro_mpu6500 5-0068-1: sensor_chip_init:mpu6500_gyro:devid=0x0,ops=0x000000008b38e40e
[ 2.622508][ T209] vendor storage:20190527 ret = 0
[ 2.703852][ T1] rk3x-i2c fead0000.i2c: timeout, ipd: 0x80, state: 3
[ 2.807000][ T1] rk3x-i2c fead0000.i2c: timeout, ipd: 0x80, state: 3
[ 2.910393][ T1] rk3x-i2c fead0000.i2c: timeout, ipd: 0x80, state: 3
[ 2.910416][ T1] gyro_mpu6500 5-0068-1: sensor_active:fail to active sensor
[ 2.910422][ T1] gyro_mpu6500 5-0068-1: sensor_init:line=84,error
[ 2.910428][ T1] gyro_mpu6500 5-0068-1: sensor_initial:fail to init sensor
[ 2.910434][ T1] gyro_mpu6500 5-0068-1: sensor_chip_init:fail to init sensor
[ 2.910440][ T1] i2c i2c-5: sensor_probe failed -2
[ 2.910440][ T1]
[ 2.911264][ T1] registered taskstats version 1
[ 2.911274][ T1] Loading compiled-in X.509 certificates
[ 2.911350][ T1] Key type .fscrypt registered
[ 2.911356][ T1] Key type fscrypt-provisioning registered
[ 2.911504][ T1] pstore: Using crash dump compression: deflate
[ 2.911745][ T1] rga3_core0 fdb60000.rga: Adding to iommu group 2
[ 2.911899][ T1] rga: rga3_core0, irq = 34, match scheduler
[ 2.912166][ T1] rga: rga3_core0 hardware loaded successfully, hw_version:3.0.76831.
[ 2.912207][ T1] rga: rga3_core0 probe successfully
[ 2.912524][ T1] rga3_core1 fdb70000.rga: Adding to iommu group 3
[ 2.912682][ T1] rga: rga3_core1, irq = 35, match scheduler
[ 2.912949][ T1] rga: rga3_core1 hardware loaded successfully, hw_version:3.0.76831.
[ 2.912989][ T1] rga: rga3_core1 probe successfully
[ 2.913261][ T1] rga: rga2, irq = 36, match scheduler
[ 2.913582][ T1] rga: rga2 hardware loaded successfully, hw_version:3.2.63318.
[ 2.913603][ T1] rga: rga2 probe successfully
[ 2.913786][ T1] rga_iommu: IOMMU binding successfully, default mapping core[0x1]
[ 2.913971][ T1] rga: Module initialized. v1.2.26
[ 2.913978][ T1]
[ 2.913983][ T1] ********************************************************************
[ 2.913988][ T1] ** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **
[ 2.913992][ T1] ** **
[ 2.913997][ T1] ** WRITEABLE clk DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL **
[ 2.914002][ T1] ** **
[ 2.914006][ T1] ** This means that this kernel is built to expose clk operations **
[ 2.910010][ T1] ** such as parent or rate setting, enabling, disabling, etc. **
[ 2.914015][ T1] ** to userspace, which may compromise security on your system. **
[ 2.914019][ T1] ** **
[ 2.914023][ T1] ** If you see this message and you are not debugging the **
[ 2.914027][ T1] ** kernel, report this immediately to your vendor! **
[ 2.914031][ T1] ** **
[ 2.914036][ T1] ** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **
[ 2.914040][ T1] ********************************************************************
[ 2.970118][ T7] combophy_avdd0v85: supplied by vdd_0v85_s0
[ 2.970397][ T9] mali fb000000.gpu: Kernel DDK version g18p0-01eac0
[ 2.979388][ T7] combophy_avdd1v8: supplied by avcc_1v8_s0
[ 2.990376][ T7] vcc3v3_lcd0_n: supplied by vcc_3v3_s0
[ 2.998988][ T9] mali fb000000.gpu: bin=0
[ 2.999063][ T7] vcc_1v2_cam_s0: supplied by vcc_3v3_s3
[ 2.999232][ T9] mali fb000000.gpu: leakage=18
[ 2.999285][ T9] debugfs: Directory 'fb000000.gpu-mali' with parent 'vdd_gpu_s0' already present!
[ 3.001692][ T7] vcc_1v8_cam_s0: supplied by vcc_3v3_s3
[ 3.002133][ T7] vcc_2v8_cam_s0: supplied by vcc_3v3_s3
[ 3.002562][ T7] vcc_3v3_sd_s0: supplied by vcc_3v3_s3
[ 3.002857][ T9] mali fb000000.gpu: pvtm=908
[ 3.003260][ T7] mpp_rkvenc2 fdbd0000.rkvenc-core: Adding to iommu group 10
[ 3.003637][ T7] mpp_rkvenc2 fdbd0000.rkvenc-core: probing start
[ 3.006705][ T9] mali fb000000.gpu: pvtm-volt-sel=4
[ 3.007965][ T7] mpp_rkvenc2 fdbd0000.rkvenc-core: bin=0
[ 3.008290][ T7] mpp_rkvenc2 fdbd0000.rkvenc-core: leakage=14
[ 3.008319][ T7] mpp_rkvenc2 fdbd0000.rkvenc-core: leakage-volt-sel=1
[ 3.008978][ T9] mali fb000000.gpu: avs=0
[ 3.009456][ T7] mpp_rkvenc2 fdbd0000.rkvenc-core: avs=0
[ 3.009510][ T7] mpp_rkvenc2 fdbd0000.rkvenc-core: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[ 3.010751][ T7] mpp_rkvenc2 fdbd0000.rkvenc-core: attach ccu as core 0
[ 3.011723][ T7] mpp_rkvenc2 fdbd0000.rkvenc-core: probing finish
[ 3.012448][ T7] mpp_rkvenc2 fdbe0000.rkvenc-core: Adding to iommu group 11
[ 3.013230][ T7] mpp_rkvenc2 fdbe0000.rkvenc-core: probing start
[ 3.014829][ T9] W : [File] : drivers/gpu/arm/bifrost/platform/rk/mali_kbase_config_rk.c; [Line] : 143; [Func] : kbase_platform_rk_init(); power-off-delay-ms not available.
[ 3.017473][ T7] mpp_rkvenc2 fdbe0000.rkvenc-core: bin=0
[ 3.017736][ T7] mpp_rkvenc2 fdbe0000.rkvenc-core: leakage=14
[ 3.017764][ T7] mpp_rkvenc2 fdbe0000.rkvenc-core: leakage-volt-sel=1
[ 3.018583][ T7] mpp_rkvenc2 fdbe0000.rkvenc-core: avs=0
[ 3.018638][ T7] mpp_rkvenc2 fdbe0000.rkvenc-core: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[ 3.020834][ T9] mali fb000000.gpu: r0p0 status 5 not found in HW issues table;
[ 3.020871][ T9] mali fb000000.gpu: falling back to closest match: r0p0 status 0
[ 3.020884][ T9] mali fb000000.gpu: Execution proceeding normally with fallback match
[ 3.020899][ T9] mali fb000000.gpu: GPU identified as 0x7 arch 10.8.6 r0p0 status 0
[ 3.020972][ T9] mali fb000000.gpu: No priority control manager is configured
[ 3.021283][ T9] mali fb000000.gpu: No memory group manager is configured
[ 3.021315][ T9] mali fb000000.gpu: Protected memory allocator not available
[ 3.021584][ T7] mpp_rkvenc2 fdbe0000.rkvenc-core: attach ccu as core 1
[ 3.022052][ T7] mpp_rkvenc2 fdbe0000.rkvenc-core: probing finish
[ 3.022218][ T9] mali fb000000.gpu: Capping CSF_FIRMWARE_TIMEOUT to CSF_FIRMWARE_PING_TIMEOUT
[ 3.022906][ T9] mali fb000000.gpu: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=800000000 h_table=0
[ 3.024261][ T9] mali fb000000.gpu: Probed as mali0
[ 3.024397][ T7] rockchip-dmc dmc: bin=0
[ 3.024582][ T7] rockchip-dmc dmc: leakage=43
[ 3.024598][ T7] rockchip-dmc dmc: leakage-volt-sel=1
[ 3.024615][ T7] rockchip-dmc dmc: soc version=0, speed=1
[ 3.025610][ T7] rockchip-dmc dmc: avs=0
[ 3.025629][ T7] rockchip-dmc dmc: current ATF version 0x100
[ 3.025745][ T7] rockchip-dmc dmc: normal_rate = 1968000000
[ 3.025755][ T7] rockchip-dmc dmc: reboot_rate = 2736000000
[ 3.025764] T7] rockchip-dmc dmc: suspend_rate = 528000000
[ 3.025773][ T7] rockchip-dmc dmc: video_4k_rate = 1968000000
[ 3.025782][ T7] rockchip-dmc dmc: video_4k_10b_rate = 1968000000
[ 3.025791][ T7] rockchip-dmc dmc: video_svep_rate = 1968000000
[ 3.025799][ T7] rockchip-dmc dmc: boost_rate = 2736000000
[ 3.025808][ T7] rockchip-dmc dmc: fixed_rate(isp|cif0|cif1|dualview) = 2736000000
[ 3.025816][ T7] rockchip-dmc dmc: performance_rate = 2736000000
[ 3.025825][ T7] rockchip-dmc dmc: hdmirx_rate = 2736000000
[ 3.025837][ T7] rockchip-dmc dmc: failed to get vop bandwidth to dmc rate
[ 3.025845][ T7] rockchip-dmc dmc: failed to get vop pn to msch rl
[ 3.025985][ T7] rockchip-dmc dmc: l=10000 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[ 3.026346][ T7] rockchip-dmc dmc: could not find power_model node
[ 3.242023][ T2] Unable to handle kernel paging request at virtual address 0000ffffdbc02e32