20231122给RK3399的挖掘机开发板适配Android12

20231122给RK3399的挖掘机开发板适配Android12
2023/11/22 9:30


主要步骤:
rootroot@rootroot-X99-Turbo:~$ tar --use-compress-program=pigz -xvpf  rk356x_android12_220722.tgz 
rootroot@rootroot-X99-Turbo:~$ cd rk_android12_220722/
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ source build/envsetup.sh 
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ lunch
     62. rk3399_Android12-userdebug
Which would you like? [aosp_arm-eng] 62
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ 
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ ./build.sh -UACKu


由于rk356x_android12_220722.tgz这个SDK默认适配IND(工业)开发板,所以需要修改DTS以及指定默认编译的DTS名称。


Z:\rk_android12_220722\kernel-4.19\arch\arm64\boot\dts\rockchip\rk3399-excavator-sapphire.dtsi
&dmc {
    status = "okay";
    center-supply = <&vdd_center>;
    upthreshold = <40>;
    downdifferential = <20>;
    system-status-freq = <
        /*system status         freq(KHz)*/
        SYS_STATUS_NORMAL       800000
        SYS_STATUS_REBOOT       528000
        SYS_STATUS_SUSPEND      200000
        SYS_STATUS_VIDEO_1080P  200000
        SYS_STATUS_VIDEO_4K     600000
        SYS_STATUS_VIDEO_4K_10B 800000
        SYS_STATUS_PERFORMANCE  800000
        SYS_STATUS_BOOST        600000
        SYS_STATUS_DUALVIEW     600000
        SYS_STATUS_ISP          600000

    >;
    vop-bw-dmc-freq = <
    /* min_bw(MB/s) max_bw(MB/s) freq(KHz) */
        0       762      200000
        763     1893     400000
        1894    3012     528000
        3013    99999    800000

    >;
    auto-freq-en = <1>;
    auto-min-freq = <200000>;

};
修改为:
&dmc {
    status = "okay";
    center-supply = <&vdd_center>;
    compatible = "rockchip,rk3399-dmc";
    devfreq-events = <&dfi>;
    interrupts = ;
    clocks = <&cru SCLK_DDRC>;
    clock-names = "dmc_clk";
    ddr_timing = <&ddr_timing>;

    upthreshold = <40>;
    downdifferential = <20>;
    system-status-freq = <
    /*system status         freq(KHz)*/
        SYS_STATUS_NORMAL       856000
        SYS_STATUS_REBOOT       856000
        SYS_STATUS_SUSPEND      856000
        SYS_STATUS_VIDEO_1080P  856000
        SYS_STATUS_VIDEO_4K     856000
        SYS_STATUS_VIDEO_4K_10B 856000
        SYS_STATUS_PERFORMANCE  856000
        SYS_STATUS_BOOST        856000
        SYS_STATUS_DUALVIEW     856000
        SYS_STATUS_ISP          856000

    >;
    vop-bw-dmc-freq = <
    /* min_bw(MB/s) max_bw(MB/s) freq(KHz) */
        0       762      856000
        763     3012     856000
        3013    99999    856000
    >;
    vop-pn-msch-readlatency = <
        0       0x20
        4       0x20
    >;
    auto-min-freq = <856000>;
    auto-freq-en = <0>;

};

20231122给RK3399的挖掘机开发板适配Android12_第1张图片


Z:\rk_android12_220722\device\rockchip\rk3399\rk3399_Android12\BoardConfig.mk
BOARD_CAMERA_SUPPORT := true
BOARD_CAMERA_SUPPORT_EXT := true
PRODUCT_KERNEL_DTS := rk3399-evb-ind-lpddr4-android-avb
修改为:
BOARD_CAMERA_SUPPORT := true
BOARD_CAMERA_SUPPORT_EXT := true
#PRODUCT_KERNEL_DTS := rk3399-evb-ind-lpddr4-android-avb
#PRODUCT_KERNEL_DTS := rk3399-firefly-aio
PRODUCT_KERNEL_DTS := rk3399-sapphire-excavator-edp-avb

20231122给RK3399的挖掘机开发板适配Android12_第2张图片20231122给RK3399的挖掘机开发板适配Android12_第3张图片

【2023-11-22 由9:44到9:56,解压缩103GB大概需要12分钟!】
rootroot@rootroot-X99-Turbo:~$ 
rootroot@rootroot-X99-Turbo:~$ tar --use-compress-program=pigz -xvpf  rk356x_android12_220722.tgz 
rk_android12_220722/
rk_android12_220722/sdk/


rootroot@rootroot-X99-Turbo:~$ 
rootroot@rootroot-X99-Turbo:~$ cd rk_android12_220722/
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ ll
total 220
drwxrwxr-x  37 rootroot rootroot  4096 3月   4  2022 ./
drwxr-xr-x  33 rootroot rootroot  4096 11月 21 09:48 ../
lrwxrwxrwx   1 rootroot rootroot    19 3月   4  2022 Android.bp -> build/soong/root.bp
drwxrwxr-x  36 rootroot rootroot  4096 3月   4  2022 art/
drwxrwxr-x  15 rootroot rootroot  4096 3月   4  2022 bionic/
drwxrwxr-x   4 rootroot rootroot  4096 3月   4  2022 bootable/
lrwxrwxrwx   1 rootroot rootroot    26 3月   4  2022 bootstrap.bash -> build/soong/bootstrap.bash*
drwxrwxr-x   7 rootroot rootroot  4096 3月   4  2022 build/
lrwxrwxrwx   1 rootroot rootroot    23 3月   4  2022 BUILD -> build/bazel/bazel.BUILD
-r-xr-xr-x   1 rootroot rootroot  9024 3月   4  2022 build.sh*
-r-xr-xr-x   1 rootroot rootroot 14109 3月   4  2022 .classpath*
drwxrwxr-x   3 rootroot rootroot  4096 3月   4  2022 compatibility/
drwxrwxr-x  14 rootroot rootroot  4096 6月  24  2022 cts/
drwxrwxr-x   8 rootroot rootroot  4096 3月   4  2022 dalvik/
drwxrwxr-x   5 rootroot rootroot  4096 3月   4  2022 developers/
drwxrwxr-x  20 rootroot rootroot  4096 6月  24  2022 development/
drwxrwxr-x  11 rootroot rootroot  4096 3月   4  2022 device/
drwxrwxr-x 357 rootroot rootroot 12288 6月  24  2022 external/
drwxrwxr-x  16 rootroot rootroot  4096 3月   4  2022 frameworks/
drwxrwxr-x  17 rootroot rootroot  4096 3月   4  2022 hardware/
-r--r--r--   1 rootroot rootroot   162 3月   4  2022 javaenv.sh
drwxrwxr-x   5 rootroot rootroot  4096 3月   4  2022 kernel/
drwxrwxr-x  27 rootroot rootroot  4096 6月  24  2022 kernel-4.19/
drwxrwxr-x   3 rootroot rootroot  4096 3月   4  2022 kernel-5.10/
drwxrwxr-x  20 rootroot rootroot  4096 3月   4  2022 libcore/
drwxrwxr-x  10 rootroot rootroot  4096 3月   4  2022 libnativehelper/
-r--r--r--   1 rootroot rootroot    92 3月   4  2022 Makefile
drwxrwxr-x  11 rootroot rootroot  4096 3月   4  2022 mkcombinedroot/
-r-xr-xr-x   1 rootroot rootroot 10151 3月   4  2022 mkimage_ab.sh*
-r-xr-xr-x   1 rootroot rootroot  8544 3月   4  2022 mkimage.sh*
drwxrwxr-x   9 rootroot rootroot  4096 3月   4  2022 packages/
drwxrwxr-x   6 rootroot rootroot  4096 3月   4  2022 pdk/
drwxrwxr-x  10 rootroot rootroot  4096 3月   4  2022 platform_testing/
drwxrwxr-x  34 rootroot rootroot  4096 6月  24  2022 prebuilts/
drwxrwxr-x   7 rootroot rootroot  4096 11月  4  2021 .repo/
-r-xr-xr-x   1 rootroot rootroot   519 3月   4  2022 restore_patches.sh*
drwxrwxr-x   9 rootroot rootroot  4096 3月   4  2022 rkbin/
drwxrwxr-x   4 rootroot rootroot  4096 3月   4  2022 RKDocs/
drwxrwxr-x   5 rootroot rootroot  4096 3月   4  2022 rkst/
drwxrwxr-x   5 rootroot rootroot  4096 3月   4  2022 RKTools/
drwxrwxr-x  22 rootroot rootroot  4096 3月   4  2022 sdk/
drwxrwxr-x  45 rootroot rootroot  4096 3月   4  2022 system/
drwxrwxr-x  11 rootroot rootroot  4096 3月   4  2022 test/
drwxrwxr-x   4 rootroot rootroot  4096 3月   4  2022 toolchain/
drwxrwxr-x  23 rootroot rootroot  4096 3月   4  2022 tools/
drwxrwxr-x  25 rootroot rootroot  4096 6月  24  2022 u-boot/
drwxrwxr-x   4 rootroot rootroot  4096 3月   4  2022 vendor/
lrwxrwxrwx   1 rootroot rootroot    27 3月   4  2022 WORKSPACE -> build/bazel/bazel.WORKSPACE
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ 
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ 
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ source build/envsetup.sh 
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ 
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ lunch

You're building on Linux

Lunch menu... pick a combo:
     1. PX30_Android12-user
     2. PX30_Android12-userdebug
     3. aosp_arm-eng
     4. aosp_arm64-eng
     5. aosp_blueline-userdebug
     6. aosp_blueline_car-userdebug
     7. aosp_bonito-userdebug
     8. aosp_bonito_car-userdebug
     9. aosp_bramble_car-userdebug
     10. aosp_cf_arm64_auto-userdebug
     11. aosp_cf_arm64_phone-userdebug
     12. aosp_cf_x86_64_foldable-userdebug
     13. aosp_cf_x86_64_pc-userdebug
     14. aosp_cf_x86_64_phone-userdebug
     15. aosp_cf_x86_64_tv-userdebug
     16. aosp_cf_x86_auto-userdebug
     17. aosp_cf_x86_phone-userdebug
     18. aosp_cf_x86_tv-userdebug
     19. aosp_coral_car-userdebug
     20. aosp_crosshatch-userdebug
     21. aosp_crosshatch_car-userdebug
     22. aosp_crosshatch_vf-userdebug
     23. aosp_flame_car-userdebug
     24. aosp_oriole_car-userdebug
     25. aosp_raven_car-userdebug
     26. aosp_redfin_car-userdebug
     27. aosp_sargo-userdebug
     28. aosp_sargo_car-userdebug
     29. aosp_sunfish_car-userdebug
     30. aosp_x86-eng
     31. aosp_x86_64-eng
     32. arm_krait-eng
     33. arm_v7_v8-eng
     34. armv8-eng
     35. armv8_cortex_a55-eng
     36. armv8_kryo385-eng
     37. beagle_x15-userdebug
     38. beagle_x15_auto-userdebug
     39. fuchsia_arm64-eng
     40. fuchsia_x86_64-eng
     41. hikey-userdebug
     42. hikey64_only-userdebug
     43. hikey960-userdebug
     44. hikey960_tv-userdebug
     45. hikey_tv-userdebug
     46. qemu_trusty_arm64-userdebug
     47. rk3326_pie-user
     48. rk3326_pie-userdebug
     49. rk3326_q-user
     50. rk3326_q-userdebug
     51. rk3326_r-user
     52. rk3326_r-userdebug
     53. rk3326_s-user
     54. rk3326_s-userdebug
     55. rk3326_sgo-user
     56. rk3326_sgo-userdebug
     57. rk3399_Android10-user
     58. rk3399_Android10-userdebug
     59. rk3399_Android11-user
     60. rk3399_Android11-userdebug
     61. rk3399_Android12-user
     62. rk3399_Android12-userdebug
     63. rk3399_mid-user
     64. rk3399_mid-userdebug
     65. rk3566_32bit-user
     66. rk3566_32bit-userdebug
     67. rk3566_eink-user
     68. rk3566_eink-userdebug
     69. rk3566_einkw6-user
     70. rk3566_einkw6-userdebug
     71. rk3566_r-user
     72. rk3566_r-userdebug
     73. rk3566_s-user
     74. rk3566_s-userdebug
     75. rk3566_sgo-user
     76. rk3566_sgo-userdebug
     77. rk3568_s-user
     78. rk3568_s-userdebug
     79. sdk_car_arm-userdebug
     80. sdk_car_arm64-userdebug
     81. sdk_car_portrait_x86_64-userdebug
     82. sdk_car_x86-userdebug
     83. sdk_car_x86_64-userdebug
     84. silvermont-eng
     85. uml-userdebug
     86. yukawa-userdebug
     87. yukawa_sei510-userdebug

Which would you like? [aosp_arm-eng] 62

============================================
PLATFORM_VERSION_CODENAME=REL
PLATFORM_VERSION=12
TARGET_PRODUCT=rk3399_Android12
TARGET_BUILD_VARIANT=userdebug
TARGET_BUILD_TYPE=release
TARGET_ARCH=arm64
TARGET_ARCH_VARIANT=armv8-a
TARGET_CPU_VARIANT=cortex-a53
TARGET_2ND_ARCH=arm
TARGET_2ND_ARCH_VARIANT=armv7-a-neon
TARGET_2ND_CPU_VARIANT=cortex-a15
HOST_ARCH=x86_64
HOST_2ND_ARCH=x86
HOST_OS=linux
HOST_OS_EXTRA=Linux-5.4.0-150-generic-x86_64-Ubuntu-18.04.6-LTS
HOST_CROSS_OS=windows
HOST_CROSS_ARCH=x86
HOST_CROSS_2ND_ARCH=x86_64
HOST_BUILD_TYPE=release
BUILD_ID=SP2A.220305.012
OUT_DIR=out
============================================
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ 

20231122给RK3399的挖掘机开发板适配Android12_第4张图片

20231122给RK3399的挖掘机开发板适配Android12_第5张图片


rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ 
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ ll
total 224
drwxrwxr-x  38 rootroot rootroot  4096 11月 21 09:53 ./
drwxr-xr-x  33 rootroot rootroot  4096 11月 21 09:48 ../
lrwxrwxrwx   1 rootroot rootroot    19 3月   4  2022 Android.bp -> build/soong/root.bp
drwxrwxr-x  36 rootroot rootroot  4096 3月   4  2022 art/
drwxrwxr-x  15 rootroot rootroot  4096 3月   4  2022 bionic/
drwxrwxr-x   4 rootroot rootroot  4096 3月   4  2022 bootable/
lrwxrwxrwx   1 rootroot rootroot    26 3月   4  2022 bootstrap.bash -> build/soong/bootstrap.bash*
drwxrwxr-x   7 rootroot rootroot  4096 3月   4  2022 build/
lrwxrwxrwx   1 rootroot rootroot    23 3月   4  2022 BUILD -> build/bazel/bazel.BUILD
-r-xr-xr-x   1 rootroot rootroot  9024 3月   4  2022 build.sh*
-r-xr-xr-x   1 rootroot rootroot 14109 3月   4  2022 .classpath*
drwxrwxr-x   3 rootroot rootroot  4096 3月   4  2022 compatibility/
drwxrwxr-x  14 rootroot rootroot  4096 6月  24  2022 cts/
drwxrwxr-x   8 rootroot rootroot  4096 3月   4  2022 dalvik/
drwxrwxr-x   5 rootroot rootroot  4096 3月   4  2022 developers/
drwxrwxr-x  20 rootroot rootroot  4096 6月  24  2022 development/
drwxrwxr-x  11 rootroot rootroot  4096 3月   4  2022 device/
drwxrwxr-x 357 rootroot rootroot 12288 6月  24  2022 external/
drwxrwxr-x  16 rootroot rootroot  4096 3月   4  2022 frameworks/
drwxrwxr-x  17 rootroot rootroot  4096 3月   4  2022 hardware/
-r--r--r--   1 rootroot rootroot   162 3月   4  2022 javaenv.sh
drwxrwxr-x   5 rootroot rootroot  4096 3月   4  2022 kernel/
drwxrwxr-x  27 rootroot rootroot  4096 6月  24  2022 kernel-4.19/
drwxrwxr-x   3 rootroot rootroot  4096 3月   4  2022 kernel-5.10/
drwxrwxr-x  20 rootroot rootroot  4096 3月   4  2022 libcore/
drwxrwxr-x  10 rootroot rootroot  4096 3月   4  2022 libnativehelper/
-r--r--r--   1 rootroot rootroot    92 3月   4  2022 Makefile
drwxrwxr-x  11 rootroot rootroot  4096 3月   4  2022 mkcombinedroot/
-r-xr-xr-x   1 rootroot rootroot 10151 3月   4  2022 mkimage_ab.sh*
-r-xr-xr-x   1 rootroot rootroot  8544 3月   4  2022 mkimage.sh*
drwxrwxr-x   6 rootroot rootroot  4096 11月 21 09:53 out/
drwxrwxr-x   9 rootroot rootroot  4096 3月   4  2022 packages/
drwxrwxr-x   6 rootroot rootroot  4096 3月   4  2022 pdk/
drwxrwxr-x  10 rootroot rootroot  4096 3月   4  2022 platform_testing/
drwxrwxr-x  34 rootroot rootroot  4096 6月  24  2022 prebuilts/
drwxrwxr-x   7 rootroot rootroot  4096 11月  4  2021 .repo/
-r-xr-xr-x   1 rootroot rootroot   519 3月   4  2022 restore_patches.sh*
drwxrwxr-x   9 rootroot rootroot  4096 3月   4  2022 rkbin/
drwxrwxr-x   4 rootroot rootroot  4096 3月   4  2022 RKDocs/
drwxrwxr-x   5 rootroot rootroot  4096 3月   4  2022 rkst/
drwxrwxr-x   5 rootroot rootroot  4096 3月   4  2022 RKTools/
drwxrwxr-x  22 rootroot rootroot  4096 3月   4  2022 sdk/
drwxrwxr-x  45 rootroot rootroot  4096 3月   4  2022 system/
drwxrwxr-x  11 rootroot rootroot  4096 3月   4  2022 test/
drwxrwxr-x   4 rootroot rootroot  4096 3月   4  2022 toolchain/
drwxrwxr-x  23 rootroot rootroot  4096 3月   4  2022 tools/
drwxrwxr-x  25 rootroot rootroot  4096 6月  24  2022 u-boot/
drwxrwxr-x   4 rootroot rootroot  4096 3月   4  2022 vendor/
lrwxrwxrwx   1 rootroot rootroot    27 3月   4  2022 WORKSPACE -> build/bazel/bazel.WORKSPACE
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ 
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ 
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ ./build.sh -UACKu
will build u-boot
will build android
will build kernel with Clang
will build kernel
will build update.img
-------------------KERNEL_VERSION:4.19
-------------------KERNEL_DTS:rk3399-sapphire-excavator-edp-avb

============================================
PLATFORM_VERSION_CODENAME=REL
PLATFORM_VERSION=12
TARGET_PRODUCT=rk3399_Android12
TARGET_BUILD_VARIANT=userdebug
TARGET_BUILD_TYPE=release
TARGET_ARCH=arm64
TARGET_ARCH_VARIANT=armv8-a
TARGET_CPU_VARIANT=cortex-a53
TARGET_2ND_ARCH=arm
TARGET_2ND_ARCH_VARIANT=armv7-a-neon
TARGET_2ND_CPU_VARIANT=cortex-a15
HOST_ARCH=x86_64
HOST_2ND_ARCH=x86
HOST_OS=linux
HOST_OS_EXTRA=Linux-5.4.0-150-generic-x86_64-Ubuntu-18.04.6-LTS
HOST_CROSS_OS=windows
HOST_CROSS_ARCH=x86
HOST_CROSS_2ND_ARCH=x86_64
HOST_BUILD_TYPE=release
BUILD_ID=SP2A.220305.012
OUT_DIR=out
============================================
start build uboot

#### build completed successfully (1 seconds) ####


#### build completed successfully (1 seconds) ####


#### build completed successfully (2 seconds) ####

grep: .config: No such file or directory
## make rk3399_defconfig -j72
  HOSTCC  scripts/basic/fixdep
  HOSTCC  scripts/kconfig/conf.o
  SHIPPED scripts/kconfig/zconf.tab.c
  SHIPPED scripts/kconfig/zconf.lex.c
  SHIPPED scripts/kconfig/zconf.hash.c
  HOSTCC  scripts/kconfig/zconf.tab.o
  HOSTLD  scripts/kconfig/conf
#
# configuration written to .config
#
scripts/kconfig/conf  --silentoldconfig Kconfig
  CHK     include/config.h
  UPD     include/config.h
  CFG     u-boot.cfg
  GEN     include/autoconf.mk.dep
  CFG     spl/u-boot.cfg
  CFG     tpl/u-boot.cfg
  GEN     tpl/include/autoconf.mk
  GEN     include/autoconf.mk
  GEN     spl/include/autoconf.mk
  CHK     include/config/uboot.release
  CHK     include/generated/timestamp_autogenerated.h
  UPD     include/generated/timestamp_autogenerated.h
  HOSTCC  scripts/dtc/dtc.o
  HOSTCC  scripts/dtc/flattree.o
  HOSTCC  scripts/dtc/fstree.o
  HOSTCC  scripts/dtc/data.o
  HOSTCC  scripts/dtc/livetree.o
  HOSTCC  scripts/dtc/treesource.o
  HOSTCC  scripts/dtc/srcpos.o
  HOSTCC  scripts/dtc/checks.o
  HOSTCC  scripts/dtc/util.o
  SHIPPED scripts/dtc/dtc-lexer.lex.c
  SHIPPED scripts/dtc/dtc-parser.tab.h
  SHIPPED scripts/dtc/dtc-parser.tab.c
  HOSTCC  scripts/dtc/dtc-lexer.lex.o
  HOSTCC  scripts/dtc/dtc-parser.tab.o
  CHK     include/config.h
  CFG     u-boot.cfg
  UPD     include/config/uboot.release
  CHK     include/generated/version_autogenerated.h
  UPD     include/generated/version_autogenerated.h
  CC      lib/asm-offsets.s
  CC      arch/arm/lib/asm-offsets.s
  HOSTLD  scripts/dtc/dtc
  CHK     include/generated/generic-asm-offsets.h
  UPD     include/generated/generic-asm-offsets.h
  CHK     include/generated/asm-offsets.h
  UPD     include/generated/asm-offsets.h


frameworks/base/packages/SystemUI/src/com/android/systemui/util/kotlin/nullability.kt:29:1: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
inline fun Optional.getOrNull(): T? = orElse(null)
^
[ 99% 130386/130406] //frameworks/base/packages/SystemUI:SystemUI r8 [common]
Warning: Missing class android.compat.annotation.UnsupportedAppUsage (referenced from: void com.android.systemui.people.widget.PeopleBackupHelper.writeNewStateDescription(android.os.ParcelFileDescriptor))
Missing class android.support.annotation.Keep (referenced from: kotlinx.coroutines.android.AndroidExceptionPreHandler)
Missing class org.jetbrains.annotations.NotNull (referenced from: java.util.List com.android.keyguard.FontInterpolator$VarFontKey.sortedAxes and 4935 other contexts)
Missing class org.jetbrains.annotations.Nullable (referenced from: android.graphics.fonts.Font com.android.keyguard.FontInterpolator$InterpKey.l and 1143 other contexts)
[100% 130406/130406] Target super fs image for debug: out/target/product/rk3399_Android12/super.img
2023-11-21 11:43:56 - build_super_image.py - INFO    : Building super image from info dict...
2023-11-21 11:43:56 - sparse_img.py - INFO    : Total of 235298 4096-byte output blocks in 18 input chunks.
2023-11-21 11:43:56 - sparse_img.py - INFO    : Total of 37257 4096-byte output blocks in 6 input chunks.
2023-11-21 11:43:56 - sparse_img.py - INFO    : Total of 54007 4096-byte output blocks in 7 input chunks.
2023-11-21 11:43:56 - sparse_img.py - INFO    : Total of 4303 4096-byte output blocks in 2 input chunks.
2023-11-21 11:43:56 - sparse_img.py - INFO    : Total of 168 4096-byte output blocks in 2 input chunks.
2023-11-21 11:43:56 - sparse_img.py - INFO    : Total of 64 4096-byte output blocks in 4 input chunks.
2023-11-21 11:43:56 - sparse_img.py - INFO    : Total of 61210 4096-byte output blocks in 5 input chunks.
2023-11-21 11:44:02 - build_super_image.py - INFO    : Done writing image out/target/product/rk3399_Android12/super.img

#### build completed successfully (01:46:18 (hh:mm:ss)) ####

Build android ok!
make and copy android images
TARGET_PRODUCT=rk3399_Android12
TARGET_BASE_PARAMETER_IMAGE==device/rockchip/common/baseparameter/v1.0/baseparameter.img
HIGH_RELIABLE_RECOVERY_OTA=
BOARD_AVB_ENABLE=false
system filesysystem is ext4
create dtbo.img...
done.
create rockdev/Image-rk3399_Android12/resource.img...
done.
create rockdev/Image-rk3399_Android12/boot.img...
done.
create rockdev/Image-rk3399_Android12/boot-debug.img...
done.
skip copy images: /home/rootroot/rk_android12_220722/out/target/product/rk3399_Android12/vendor_boot.img
skip copy images: /home/rootroot/rk_android12_220722/out/target/product/rk3399_Android12/vendor_boot-debug.img
create rockdev/Image-rk3399_Android12/recovery.img...
done.
create rockdev/Image-rk3399_Android12/super.img...
done.
skip copy images: /home/rootroot/rk_android12_220722/out/target/product/rk3399_Android12/userdata.img
create vbmeta.img...
BOARD_AVB_ENABLE is false, use default vbmeta.img
create misc.img.... done.
create uboot.img...
create trust.img...
create loader...
create config.cfg...
create baseparameter...done.
Make image ok!
Make update.img
packing update.img with Image -RK330C
regenernate package-file-tmp...
start to make update.img...
Android Firmware Package Tool v2.0
------ PACKAGE ------
Add file: ./package-file
package-file,Add file: ./package-file done,offset=0x800,size=0x2b0,userspace=0x1
Add file: ./Image/MiniLoaderAll.bin
bootloader,Add file: ./Image/MiniLoaderAll.bin done,offset=0x1000,size=0x7194e,userspace=0xe4
Add file: ./Image/parameter.txt
parameter,Add file: ./Image/parameter.txt done,offset=0x73000,size=0x292,userspace=0x1
Add file: ./Image/uboot.img
uboot,Add file: ./Image/uboot.img done,offset=0x73800,size=0x400000,userspace=0x800
Add file: ./Image/trust.img
trust,Add file: ./Image/trust.img done,offset=0x473800,size=0x400000,userspace=0x800
Add file: ./Image/misc.img
misc,Add file: ./Image/misc.img done,offset=0x873800,size=0xc000,userspace=0x18
Add file: ./Image/dtbo.img
dtbo,Add file: ./Image/dtbo.img done,offset=0x87f800,size=0x25f,userspace=0x1
Add file: ./Image/vbmeta.img
vbmeta,Add file: ./Image/vbmeta.img done,offset=0x880000,size=0x1000,userspace=0x2
Add file: ./Image/boot.img
boot,Add file: ./Image/boot.img done,offset=0x881000,size=0x1d64800,userspace=0x3ac9
Add file: ./Image/recovery.img
recovery,Add file: ./Image/recovery.img done,offset=0x25e5800,size=0x5f80000,userspace=0xbf00
Add file: ./Image/baseparameter.img
baseparameter,Add file: ./Image/baseparameter.img done,offset=0x8565800,size=0x100000,userspace=0x200
Add file: ./Image/super.img
super,Add file: ./Image/super.img done,offset=0x8665800,size=0x5ebe5488,userspace=0xbd7cb
Add CRC...
Make firmware OK!
------ OK ------
********rkImageMaker ver 2.0********
Generating new image, please wait...
Writing head info...
Writing boot file...
Writing firmware...
Generating MD5 data...
MD5 data generated successfully!
New image generated successfully!
Making update.img OK.
Make update image ok!
/home/rootroot/rk_android12_220722
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ ll
total 232
drwxrwxr-x  40 rootroot rootroot  4096 11月 21 11:44 ./
drwxr-xr-x  33 rootroot rootroot  4096 11月 21 09:53 ../
lrwxrwxrwx   1 rootroot rootroot    19 3月   4  2022 Android.bp -> build/soong/root.bp
drwxrwxr-x  36 rootroot rootroot  4096 3月   4  2022 art/
drwxrwxr-x  15 rootroot rootroot  4096 3月   4  2022 bionic/
drwxrwxr-x   4 rootroot rootroot  4096 3月   4  2022 bootable/
drwxrwxr-x   2 rootroot rootroot  4096 11月 21 09:57 .bootstrap/
lrwxrwxrwx   1 rootroot rootroot    26 3月   4  2022 bootstrap.bash -> build/soong/bootstrap.bash*
drwxrwxr-x   7 rootroot rootroot  4096 3月   4  2022 build/
lrwxrwxrwx   1 rootroot rootroot    23 3月   4  2022 BUILD -> build/bazel/bazel.BUILD
-r-xr-xr-x   1 rootroot rootroot  9024 3月   4  2022 build.sh*
-r-xr-xr-x   1 rootroot rootroot 14109 3月   4  2022 .classpath*
drwxrwxr-x   3 rootroot rootroot  4096 3月   4  2022 compatibility/
drwxrwxr-x  14 rootroot rootroot  4096 6月  24  2022 cts/
drwxrwxr-x   8 rootroot rootroot  4096 3月   4  2022 dalvik/
drwxrwxr-x   5 rootroot rootroot  4096 3月   4  2022 developers/
drwxrwxr-x  20 rootroot rootroot  4096 6月  24  2022 development/
drwxrwxr-x  11 rootroot rootroot  4096 3月   4  2022 device/
drwxrwxr-x 357 rootroot rootroot 12288 6月  24  2022 external/
drwxrwxr-x  16 rootroot rootroot  4096 3月   4  2022 frameworks/
drwxrwxr-x  17 rootroot rootroot  4096 3月   4  2022 hardware/
-r--r--r--   1 rootroot rootroot   162 3月   4  2022 javaenv.sh
drwxrwxr-x   5 rootroot rootroot  4096 3月   4  2022 kernel/
drwxrwxr-x  28 rootroot rootroot  4096 11月 21 09:57 kernel-4.19/
drwxrwxr-x   3 rootroot rootroot  4096 3月   4  2022 kernel-5.10/
drwxrwxr-x  20 rootroot rootroot  4096 3月   4  2022 libcore/
drwxrwxr-x  10 rootroot rootroot  4096 3月   4  2022 libnativehelper/
-r--r--r--   1 rootroot rootroot    92 3月   4  2022 Makefile
drwxrwxr-x  11 rootroot rootroot  4096 3月   4  2022 mkcombinedroot/
-r-xr-xr-x   1 rootroot rootroot 10151 3月   4  2022 mkimage_ab.sh*
-r-xr-xr-x   1 rootroot rootroot  8544 3月   4  2022 mkimage.sh*
drwxrwxr-x  11 rootroot rootroot  4096 11月 21 11:44 out/
drwxrwxr-x   9 rootroot rootroot  4096 3月   4  2022 packages/
drwxrwxr-x   6 rootroot rootroot  4096 3月   4  2022 pdk/
drwxrwxr-x  10 rootroot rootroot  4096 3月   4  2022 platform_testing/
drwxrwxr-x  34 rootroot rootroot  4096 6月  24  2022 prebuilts/
drwxrwxr-x   7 rootroot rootroot  4096 11月  4  2021 .repo/
-r-xr-xr-x   1 rootroot rootroot   519 3月   4  2022 restore_patches.sh*
drwxrwxr-x   9 rootroot rootroot  4096 11月 21 09:54 rkbin/
drwxrwxr-x   4 rootroot rootroot  4096 3月   4  2022 RKDocs/
drwxrwxr-x   5 rootroot rootroot  4096 3月   4  2022 rkst/
drwxrwxr-x   5 rootroot rootroot  4096 3月   4  2022 RKTools/
drwxrwxr-x   3 rootroot rootroot  4096 11月 21 11:44 rockdev/
drwxrwxr-x  22 rootroot rootroot  4096 3月   4  2022 sdk/
drwxrwxr-x  45 rootroot rootroot  4096 3月   4  2022 system/
drwxrwxr-x  11 rootroot rootroot  4096 3月   4  2022 test/
drwxrwxr-x   4 rootroot rootroot  4096 3月   4  2022 toolchain/
drwxrwxr-x  23 rootroot rootroot  4096 3月   4  2022 tools/
drwxrwxr-x  27 rootroot rootroot  4096 11月 21 09:57 u-boot/
drwxrwxr-x   4 rootroot rootroot  4096 3月   4  2022 vendor/
lrwxrwxrwx   1 rootroot rootroot    27 3月   4  2022 WORKSPACE -> build/bazel/bazel.WORKSPACE
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ 
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ 
rootroot@rootroot-X99-Turbo:~/rk_android12_220722$ 

20231122给RK3399的挖掘机开发板适配Android12_第6张图片20231122给RK3399的挖掘机开发板适配Android12_第7张图片

20231122给RK3399的挖掘机开发板适配Android12_第8张图片

20231122给RK3399的挖掘机开发板适配Android12_第9张图片

[BEGIN] 2023/11/21 12:09:57
Rebooting...
[    5.998030] cpu cpu4: min=816000, max=816000
[    5.999447] cpu cpu0: min=816000, max=816000
[    6.036538] I : [File] : drivers/gpu/arm/midgard/platform/rk/mali_kbase_config_rk.c; [Line] : 274; [Func] : midgard_kbase_platform_rk_shutdown(); to make vdd_gpu enabled for turning off pd_gpu in pm_framework.
Failed to drmModePageFlip: Device or resource busy
[    6.078716] fan53555-regulator 0-0041: fan53555..... reset
[    6.079917] fan53555-regulator 0-0041: reset: force fan53555_reset ok!
[    6.080519] fan53555-regulator 0-0040: fan53555..... reset
[    6.081729] fan53555-regulator 0-0040: reset: force fan53555_reset ok!
libc: Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x8 in tid 135 (recovery), pid 131 (recovery)
[    6.083488] mpp_vepu2 ff650000.vepu: shutdown device
[    6.083939] mpp_vdpu2 ff650400.vdpu: shutdown device
[    6.084388] mpp_rkvdec ff660000.rkvdec: shutdown device
[    6.086019] reboot: Restarting system with command 'userrequested,recovery'
DDR Version 1.27 20211018
In
soft reset
SRX
Channel 0: DDR3, 800MHz
Bus Width=32 Col=10 Bank=8 Row=15 CS=1 Die Bus-Width=16 Size=1024MB
Channel 1: DDR3, 800MHz
Bus Width=32 Col=10 Bank=8 Row=15 CS=1 Die Bus-Width=16 Size=1024MB
256B stride
ch 0 ddrconfig = 0x101, ddrsize = 0x20
ch 1 ddrconfig = 0x101, ddrsize = 0x20
pmugrf_os_reg[2] = 0x32817281, stride = 0x9
OUT
Boot1 Release Time: May 29 2020 17:36:36, version: 1.26
CPUId = 0x0
ChipType = 0x10, 426
SdmmcInit=2 0
BootCapSize=100000
UserCapSize=119280MB
FwPartOffset=2000 , 100000
mmc0:cmd8,20
mmc0:cmd5,20
mmc0:cmd55,20
mmc0:cmd1,20
mmc0:cmd8,20
mmc0:cmd5,20
mmc0:cmd55,20
mmc0:cmd1,20
mmc0:cmd8,20
mmc0:cmd5,20
mmc0:cmd55,20
mmc0:cmd1,20
SdmmcInit=0 1
StorageInit ok = 70975
SecureMode = 0
SecureInit read PBA: 0x4
SecureInit read PBA: 0x404
SecureInit read PBA: 0x804
SecureInit read PBA: 0xc04
SecureInit read PBA: 0x1004
SecureInit read PBA: 0x1404
SecureInit read PBA: 0x1804
SecureInit read PBA: 0x1c04
SecureInit ret = 0, SecureMode = 0
atags_set_bootdev: ret:(0)
GPT part:  0, name:         security, start:0x2000, size:0x2000
GPT part:  1, name:            uboot, start:0x4000, size:0x2000
GPT part:  2, name:            trust, start:0x6000, size:0x2000
GPT part:  3, name:             misc, start:0x8000, size:0x2000
GPT part:  4, name:             dtbo, start:0xa000, size:0x2000
GPT part:  5, name:           vbmeta, start:0xc000, size:0x800
GPT part:  6, name:             boot, start:0xc800, size:0x14000
GPT part:  7, name:         recovery, start:0x20800, size:0x30000
GPT part:  8, name:           backup, start:0x50800, size:0xc0000
GPT part:  9, name:            cache, start:0x110800, size:0xc0000
GPT part: 10, name:         metadata, start:0x1d0800, size:0x8000
GPT part: 11, name:    baseparameter, start:0x1d8800, size:0x800
GPT part: 12, name:            super, start:0x1d9000, size:0x614000
GPT part: 13, name:         userdata, start:0x7ed000, size:0xe10afdf
find part:uboot OK. first_lba:0x4000.
find part:trust OK. first_lba:0x6000.
Trust Addr:0x6000, 0x58334c42
No find bl30.bin
Load uboot, ReadLba = 4000
Load OK, addr=0x200000, size=0x106bd0
RunBL31 0x40000 @ 129194 us
NOTICE:  BL31: v1.3(release):845ee93
NOTICE:  BL31: Built : 15:51:11, Jul 22 2020
NOTICE:  BL31: Rockchip release version: v1.1
INFO:    GICv3 with legacy support detected. ARM GICV3 driver initialized in EL3
INFO:    Using opteed sec cpu_context!
INFO:    boot cpu mask: 0
INFO:    plat_rockchip_pmu_init(1196): pd status 3e
INFO:    BL31: Initializing runtime services
INFO:    BL31: Initializing BL32
INF [0x0] TEE-CORE:init_primary_helper:337: Initializing (1.1.0-278-gef70f120a #zhangzj #9 Fri Sep 17 09:39:24 UTC 2021 aarch64)

INF [0x0] TEE-CORE:init_primary_helper:338: Release version: 1.2

INF [0x0] TEE-CORE:init_teecore:83: teecore inits done
INFO:    BL31: Preparing for EL3 exit to normal world
INFO:    Entry point address = 0x200000
INFO:    SPSR = 0x3c9


U-Boot 2017.09-dirty #rootroot (Nov 21 2023 - 09:54:06 +0800)

Model: Rockchip RK3399 Evaluation Board
PreSerial: 2, raw, 0xff1a0000
DRAM:  2 GiB
Sysmem: init
Relocation Offset: 7db74000
Relocation fdt: 7bd682c0 - 7bd6acdb
CR: M/C/I
Using default environment

DM: v1
dwmmc@fe320000: 1, sdhci@fe330000: 0
Bootdev(atags): mmc 0
MMC0: HS400, 150Mhz
PartType: EFI
boot mode: normal
Android 12.0, Build 2022.3, v2
Found DTB in boot part
DTB: rk-kernel.dtb
HASH(c): OK
ANDROID: fdt overlay OK
I2c0 speed: 400000Hz
PMIC:  RK808 
vdd_center 900000 uV
vdd_cpu_l 900000 uV
vdd_log 1100000 uV
warning: bad baseparameter
Model: Rockchip RK3399 Excavator Board edp avb (Android)
Rockchip UBOOT DRM driver version: v1.0.1
hdmi@ff940000 disconnected
Using display timing dts
edp@ff970000:  detailed mode clock 200000 kHz, flags[a]
    H: 1536 1548 1564 1612
    V: 2048 2056 2060 2068
bus_format: 100e
AUX CH command reply failed!
AUX CH error happens: 2
AUX CH command reply failed!
failed to read dpcd caps: -110
CLK: (uboot. arml: enter 816000 KHz, init 816000 KHz, kernel 0N/A)
CLK: (uboot. armb: enter 816000 KHz, init 816000 KHz, kernel 0N/A)
  aplll 816000 KHz
  apllb 816000 KHz
  dpll 800000 KHz
  cpll 200000 KHz
  gpll 800000 KHz
  npll 600000 KHz
  vpll 24000 KHz
  aclk_perihp 133333 KHz
  hclk_perihp 66666 KHz
  pclk_perihp 33333 KHz
  aclk_perilp0 266666 KHz
  hclk_perilp0 88888 KHz
  pclk_perilp0 44444 KHz
  hclk_perilp1 100000 KHz
  pclk_perilp1 50000 KHz
Net:   eth0: ethernet@fe300000
Hit key to stop autoboot('CTRL+C'):  0 
ANDROID: reboot reason: "(none)"
optee api revision: 2.0
TEEC: Reset area[0] info...
TEEC: Reset area[1] info...
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...
Could not find "system" partition
Booting IMAGE kernel at 0x00280000 with fdt at 0x08300000...


Fdt Ramdisk skip relocation
## Booting Android Image at 0x0027f800 ...
Kernel: 0x00280000 - 0x01e4b010 (28461 KiB)
ramdisk:    0x0a200000 - 0x0a34d662 (1334 KiB)
## Flattened Device Tree blob at 0x08300000
   Booting using the fdt blob at 0x08300000
   XIP Kernel Image from 0x00280000 to 0x00280000 ... OK
   kernel loaded at 0x00280000, end = 0x01e4b010
  'reserved-memory' ramoops@110000: addr=110000 size=f0000
   Using Device Tree in place at 0000000008300000, end 000000000831d97e
failed to reserve drm-cubic-lut memory
Adding bank: 0x00200000 - 0x08400000 (size: 0x08200000)
Adding bank: 0x0a200000 - 0x80000000 (size: 0x75e00000)
Total: 793.314 ms

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 4.19.232 (rootroot@rootroot-X99-Turbo) (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 Tue Nov 21 09:54:44 CST 2023
[    0.000000] Machine model: Rockchip RK3399 Excavator Board edp avb (Android)
[    0.000000] earlycon: uart8250 at MMIO32 0x00000000ff1a0000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    0.000000] OF: fdt: Reserved memory: failed to reserve memory for node 'stb-devinfo@00000000': base 0x0000000000000000, size 0 MiB
[    0.000000] cma: Reserved 16 MiB at 0x000000007f000000
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.0 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.0
[    0.000000] percpu: Embedded 24 pages/cpu s58840 r8192 d31272 u98304
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: enabling workaround for ARM erratum 845719
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 507912
[    0.000000] Kernel command line: storagemedia=emmc androidboot.storagemedia=emmc androidboot.mode=normal  androidboot.dtb_idx=0 androidboot.dtbo_idx=0  androidboot.verifiedbootstate=orange androidboot.serialno=ba0638e619e20ff5 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=fe330000.sdhci androidboot.selinux=permissive buildvariant=userdebug earlycon=uart8250,mmio32,0xff1a0000 androidboot.baseband=N/A androidboot.veritymode=enforcing coherent_pool=1m
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 1978332K/2064384K available (15870K kernel code, 2094K rwdata, 9156K rodata, 1280K init, 949K bss, 69668K reserved, 16384K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6.
[    0.000000]     Tasks RCU enabled.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: no VLPI support, no direct LPI support
[    0.000000] ITS [mem 0xfee20000-0xfee3ffff]
[    0.000000] ITS@0x00000000fee20000: allocated 65536 Devices @200000 (flat, esz 8, psz 64K, shr 0)
[    0.000000] ITS: using cache flushing for cmd queue
[    0.000000] GIC: using LPI property table @0x000000000a3f0000
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000fef00000
[    0.000000] CPU0: using LPI pending table @0x000000007e000000
[    0.000000] GIC: using cache flushing for LPI property table
[    0.000000] GICv3: GIC: PPI partition interrupt-partition-0[0] { /cpus/cpu@0[0] /cpus/cpu@1[1] /cpus/cpu@2[2] /cpus/cpu@3[3] }
[    0.000000] GICv3: GIC: PPI partition interrupt-partition-1[1] { /cpus/cpu@100[4] /cpus/cpu@101[5] }
[    0.000000] random: random: get_random_bytes called from start_kernel+0x22c/0x3d0 with crng_init=0
[    0.000000] rockchip_clk_register_frac_branch: could not find dclk_vop0_frac as parent of dclk_vop0, rate changes may not work
[    0.000000] rockchip_clk_register_frac_branch: could not find dclk_vop1_frac as parent of dclk_vop1, rate changes may not work
[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    0.000005] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    0.001913] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[    0.002827] pid_max: default: 32768 minimum: 301
[    0.003355] Security Framework initialized
[    0.003726] SELinux:  Initializing.
[    0.004135] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.004737] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.006930] ASID allocator initialised with 32768 entries
[    0.007515] rcu: Hierarchical SRCU implementation.
[    0.008365] Platform MSI: interrupt-controller@fee20000 domain created
[    0.009448] PCI/MSI: /interrupt-controller@fee00000/interrupt-controller@fee20000 domain created
[    0.010993] smp: Bringing up secondary CPUs ...
[    0.011929] Detected VIPT I-cache on CPU1
[    0.011958] GICv3: CPU1: found redistributor 1 region 0:0x00000000fef20000
[    0.011995] CPU1: using LPI pending table @0x000000007e190000
[    0.012039] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.012716] Detected VIPT I-cache on CPU2
[    0.012737] GICv3: CPU2: found redistributor 2 region 0:0x00000000fef40000
[    0.012772] CPU2: using LPI pending table @0x000000007e1e0000
[    0.012804] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[    0.013372] Detected VIPT I-cache on CPU3
[    0.013391] GICv3: CPU3: found redistributor 3 region 0:0x00000000fef60000
[    0.013424] CPU3: using LPI pending table @0x000000007e210000
[    0.013455] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[    0.014030] ARM_SMCCC_ARCH_WORKAROUND_1 missing from firmware
[    0.014035] CPU features: enabling workaround for EL2 vector hardening
[    0.014043] Detected PIPT I-cache on CPU4
[    0.014068] GICv3: CPU4: found redistributor 100 region 0:0x00000000fef80000
[    0.014122] CPU4: using LPI pending table @0x000000007e260000
[    0.014155] CPU4: Booted secondary processor 0x0000000100 [0x410fd082]
[    0.014733] Detected PIPT I-cache on CPU5
[    0.014751] GICv3: CPU5: found redistributor 101 region 0:0x00000000fefa0000
[    0.014803] CPU5: using LPI pending table @0x000000007e270000
[    0.014830] CPU5: Booted secondary processor 0x0000000101 [0x410fd082]
[    0.014920] smp: Brought up 1 node, 6 CPUs
[    0.026657] SMP: Total of 6 processors activated.
[    0.027078] CPU features: detected: GIC system register CPU interface
[    0.027649] CPU features: detected: 32-bit EL0 Support
[    0.034197] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching
[    0.034938] CPU: All CPU(s) started at EL2
[    0.035338] alternatives: patching kernel code
[    0.037276] devtmpfs: initialized
[    0.050408] Trying to unpack rootfs image as initramfs...
[    0.050421] Registered cp15_barrier emulation handler
[    0.051446] Registered setend emulation handler
[    0.052239] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.053177] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.054101] pinctrl core: initialized pinctrl subsystem
[    0.055270] NET: Registered protocol family 16
[    0.056044] schedtune: configured to support 6 boost groups
[    0.056789] audit: initializing netlink subsys (disabled)
[    0.058952] audit: type=2000 audit(0.056:1): state=initialized audit_enabled=0 res=1
[    0.059748] cpuidle: using governor menu
[    0.060133] Registered FIQ tty driver
[    0.060694] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.072581] DMA: preallocated 1024 KiB pool for atomic allocations
[    0.075629] console [pstore-1] enabled
[    0.076125] pstore: Registered ramoops as persistent store backend
[    0.076721] ramoops: attached 0xf0000@0x110000, ecc: 0/0
[    0.094949] rockchip-gpio ff720000.gpio0: probed gpio0 (ff720000.gpio0)
[    0.095931] rockchip-gpio ff730000.gpio1: probed gpio1 (ff730000.gpio1)
[    0.096900] rockchip-gpio ff780000.gpio2: probed gpio2 (ff780000.gpio2)
[    0.097873] rockchip-gpio ff788000.gpio3: probed gpio3 (ff788000.gpio3)
[    0.098852] rockchip-gpio ff790000.gpio4: probed gpio4 (ff790000.gpio4)
[    0.099547] rockchip-pinctrl pinctrl: probed pinctrl
[    0.108642] cryptd: max_cpu_qlen set to 1000
[    0.110025] fiq debugger fiq mode enabled
[    0.110618] console [ttyFIQ0] enabled
[    0.110975] bootconsole [uart8250] disabled
[    0.110618] console [ttyFIQ0] enabled
[    0.110975] bootconsole [uart8250] disabled
[    0.111502] Registered fiq debugger ttyFIQ0
[    0.112033] reg-fixed-voltage vcc1v8-s3: Failed to register regulator: -517
[    0.112172] reg-fixed-voltage vcc3v0-sd: Failed to register regulator: -517
[    0.112248] reg-fixed-voltage vcc3v3-sys: Failed to register regulator: -517
[    0.112313] vcc_sys: supplied by dc_12v
[    0.112598] vcc5v0_host: supplied by vcc_sys
[    0.113033] vcc_lcd: supplied by vcc5v0_sys
[    0.115197] Freeing initrd memory: 1332K
[    0.139222] rk_iommu ff650800.iommu: version = 1
[    0.139606] rk_iommu ff660480.iommu: version = 1
[    0.139855] rk_iommu ff670800.iommu: version = 1
[    0.140122] rk_iommu ff8f3f00.iommu: version = 1
[    0.140316] rk_iommu ff903f00.iommu: version = 1
[    0.140513] rk_iommu ff914000.iommu: version = 1
[    0.140752] rk_iommu ff924000.iommu: version = 1
[    0.141234] SCSI subsystem initialized
[    0.141404] usbcore: registered new interface driver usbfs
[    0.141445] usbcore: registered new interface driver hub
[    0.141487] usbcore: registered new device driver usb
[    0.141719] media: Linux media interface: v0.10
[    0.141751] videodev: Linux video capture interface: v2.00
[    0.141828] pps_core: LinuxPPS API ver. 1 registered
[    0.141843] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti
[    0.141862] PTP clock support registered
[    0.143603] Advanced Linux Sound Architecture Driver Initialized.
[    0.143913] Bluetooth: Core ver 2.22
[    0.143950] NET: Registered protocol family 31
[    0.143964] Bluetooth: HCI device and connection manager initialized
[    0.143979] Bluetooth: HCI socket layer initialized
[    0.143995] Bluetooth: L2CAP socket layer initialized
[    0.144034] Bluetooth: SCO socket layer initialized
[    0.144430] rockchip-cpuinfo cpuinfo: SoC        : 0
[    0.144448] rockchip-cpuinfo cpuinfo: Serial        : ba0638e619e20ff5
[    0.144811] clocksource: Switched to clocksource arch_sys_counter
[    0.203138] VFS: Disk quotas dquot_6.6.0
[    0.203210] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.204165] thermal thermal_zone1: power_allocator: sustainable_power will be estimated
[    0.204362] NET: Registered protocol family 2
[    0.204516] IP idents hash table entries: 32768 (order: 6, 262144 bytes)
[    0.205691] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes)
[    0.205743] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[    0.205882] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[    0.206155] TCP: Hash tables configured (established 16384 bind 16384)
[    0.206251] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[    0.206324] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[    0.206462] NET: Registered protocol family 1
[    0.208174] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
[    0.208438] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
[    0.209793] Initialise system trusted keyrings
[    0.209931] workingset: timestamp_bits=45 max_order=19 bucket_order=0
[    0.213862] utf8_selftest: All 154 tests passed
[    0.213881] fuse init (API version 7.27)
[    0.214854] 
[    0.214854] TEE Core Framework initialization (ver 1:0.1)
[    0.214879] TEE armv7 Driver initialization
[    0.215222] tz_tee_probe: name="armv7sec", id=0, pdev_name="armv7sec.0"
[    0.215240] TEE core: Alloc the misc device "opteearmtz00" (id=0)
[    0.215368] TEE Core: Register the misc device "opteearmtz00" (id=0,minor=62)
[    0.216411] Key type asymmetric registered
[    0.216427] Asymmetric key parser 'x509' registered
[    0.216460] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.216474] io scheduler noop registered
[    0.216573] io scheduler cfq registered (default)
[    0.216582] io scheduler mq-deadline registered
[    0.216590] io scheduler kyber registered
[    0.216675] io scheduler bfq registered
[    0.218269] phy phy-ff770000.syscon:[email protected]: Linked as a consumer to regulator.6
[    0.218638] phy phy-ff770000.syscon:[email protected]: No vbus specified for otg port
[    0.220250] rockchip-mipi-dphy-rx ff770000.syscon:mipi-dphy-rx0: invalid resource
[    0.223554] rockchip-pcie f8000000.pcie: missing "memory-region" property
[    0.223680] rockchip-pcie f8000000.pcie: no vpcie12v regulator found
[    0.223702] rockchip-pcie f8000000.pcie: no vpcie3v3 regulator found
[    0.223721] rockchip-pcie f8000000.pcie: no vpcie1v8 regulator found
[    0.223740] rockchip-pcie f8000000.pcie: no vpcie0v9 regulator found
[    0.223768] rockchip-pcie f8000000.pcie: host bridge /pcie@f8000000 ranges:
[    0.223793] rockchip-pcie f8000000.pcie:   MEM 0xfa000000..0xfbdfffff -> 0xfa000000
[    0.223811] rockchip-pcie f8000000.pcie:    IO 0xfbe00000..0xfbefffff -> 0xfbe00000
[    0.774859] rockchip-pcie f8000000.pcie: PCIe link training gen1 timeout!
[    0.774884] rockchip-pcie f8000000.pcie: deferred probe failed
[    0.774965] rockchip-pcie: probe of f8000000.pcie failed with error -110
[    0.775576] pwm-backlight backlight: backlight supply power not found, using dummy regulator
[    0.775652] pwm-backlight backlight: Linked as a consumer to regulator.0
[    0.775943] iommu: Adding device ff670000.iep to group 2
[    0.775970] iep ff670000.iep: Linked as a consumer to ff670800.iommu
[    0.776122] iep: failed to find iep power down clock source.
[    0.776428] iep: IEP Power ON
[    0.776462] iep: IEP Power OFF
[    0.776528] iep: IEP Driver loaded succesfully
[    0.776679] iep: Module initialized.
[    0.776796] mpp_service mpp-srv: 4b382d7e3f50 author: Herman Chen 2021-11-26 video: rockchip: mpp: rkvdec2: setup link mode clk
[    0.776811] mpp_service mpp-srv: probe start
[    0.777138] iommu: Adding device ff660000.rkvdec to group 1
[    0.777167] mpp_rkvdec ff660000.rkvdec: Linked as a consumer to ff660480.iommu
[    0.777332] mpp_rkvdec ff660000.rkvdec: probing start
[    0.777635] rkvdec_init:1222: failed on clk_get clk_hevc_cabac
[    0.777695] mpp_rkvdec ff660000.rkvdec: shared_video_hevc_cabac is not found!
[    0.777707] rkvdec_init:1253: No hevc cabac reset resource define
[    0.777911] mpp_rkvdec ff660000.rkvdec: probing finish
[    0.778808] iommu: Adding device ff650400.vdpu to group 0
[    0.778834] mpp_vdpu2 ff650400.vdpu: Linked as a consumer to ff650800.iommu
[    0.778988] mpp_vdpu2 ff650400.vdpu: probe device
[    0.779300] mpp_vdpu2 ff650400.vdpu: reset_group->rw_sem_on=0
[    0.779322] mpp_vdpu2 ff650400.vdpu: reset_group->rw_sem_on=0
[    0.779457] mpp_vdpu2 ff650400.vdpu: probing finish
[    0.779772] iommu: Adding device ff650000.vepu to group 0
[    0.779796] mpp_vepu2 ff650000.vepu: Linked as a consumer to ff650800.iommu
[    0.779838] mpp_vepu2 ff650000.vepu: probe device
[    0.780098] mpp_vepu2 ff650000.vepu: reset_group->rw_sem_on=0
[    0.780116] mpp_vepu2 ff650000.vepu: reset_group->rw_sem_on=0
[    0.780260] mpp_vepu2 ff650000.vepu: probing finish
[    0.780876] mpp_service mpp-srv: probe success
[    0.783506] dma-pl330 ff6d0000.dma-controller: Loaded driver for PL330 DMAC-241330
[    0.783527] dma-pl330 ff6d0000.dma-controller:     DBUFF-32x8bytes Num_Chans-6 Num_Peri-12 Num_Events-12
[    0.784994] dma-pl330 ff6e0000.dma-controller: Loaded driver for PL330 DMAC-241330
[    0.785022] dma-pl330 ff6e0000.dma-controller:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-20 Num_Events-16
[    0.786060] rockchip-system-monitor rockchip-system-monitor: system monitor probe
[    0.786485] vdd_log: supplied by regulator-dummy
[    0.787261] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
[    0.787932] ff180000.serial: ttyS0 at MMIO 0xff180000 (irq = 38, base_baud = 1500000) is a 16550A
[    0.789967] random: fast init done
[    0.790010] iommu: Adding device ff8f0000.vop to group 3
[    0.790046] rockchip-vop ff8f0000.vop: Linked as a consumer to ff8f3f00.iommu
[    0.790260] random: crng init done
[    0.790378] iommu: Adding device ff900000.vop to group 4
[    0.790409] rockchip-vop ff900000.vop: Linked as a consumer to ff903f00.iommu
[    0.794614] rockchip-drm display-subsystem: Linked as a consumer to ff8f0000.vop
[    0.794649] rockchip-drm display-subsystem: Linked as a consumer to ff900000.vop
[    0.795529] rockchip-drm display-subsystem: Linked as a consumer to ff970000.edp
[    0.795663] rockchip-drm display-subsystem: Linked as a consumer to fec00000.dp
[    0.796073] rockchip-drm display-subsystem: Linked as a consumer to ff940000.hdmi
[    0.803643] panel-simple panel: Linked as a consumer to regulator.8
[    0.803677] panel-simple panel: panel supply vsp not found, using dummy regulator
[    0.803733] panel-simple panel: Linked as a consumer to regulator.0
[    0.803758] panel-simple panel: panel supply vsn not found, using dummy regulator
[    0.804697] midgard ff9a0000.gpu: Failed to get regulator
[    0.804715] midgard ff9a0000.gpu: Power control initialization failed
[    0.805242] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    0.811888] brd: module loaded
[    0.826472] loop: module loaded
[    0.826894] zram: Added device: zram0
[    0.827245] SCSI Media Changer driver v0.25 
[    0.829802] tun: Universal TUN/TAP device driver, 1.6
[    0.830528] rk_gmac-dwmac fe300000.ethernet: PTP uses main clock
[    0.830573] rk_gmac-dwmac fe300000.ethernet: phy regulator is not available yet, deferred probing
[    0.831126] PPP generic driver version 2.4.2
[    0.831260] PPP BSD Compression module registered
[    0.831274] PPP Deflate Compression module registered
[    0.831312] PPP MPPE Compression module registered
[    0.831326] NET: Registered protocol family 24
[    0.831353] PPTP driver version 0.8.5
[    0.831648] SLIP: version 0.8.4-NET3.019-NEWTTY (dynamic channels, max=256) (6 bit encapsulation enabled).
[    0.831663] CSLIP: code copyright 1989 Regents of the University of California.
[    0.831740] usbcore: registered new interface driver catc
[    0.831788] usbcore: registered new interface driver kaweth
[    0.831802] pegasus: v0.9.3 (2013/04/25), Pegasus/Pegasus II USB Ethernet driver
[    0.831844] usbcore: registered new interface driver pegasus
[    0.831888] usbcore: registered new interface driver rtl8150
[    0.831935] usbcore: registered new interface driver r8152
[    0.831948] hso: drivers/net/usb/hso.c: Option Wireless
[    0.832011] usbcore: registered new interface driver hso
[    0.832055] usbcore: registered new interface driver asix
[    0.832098] usbcore: registered new interface driver ax88179_178a
[    0.832141] usbcore: registered new interface driver cdc_ether
[    0.832186] usbcore: registered new interface driver cdc_eem
[    0.832229] usbcore: registered new interface driver dm9601
[    0.832279] usbcore: registered new interface driver smsc75xx
[    0.832330] usbcore: registered new interface driver smsc95xx
[    0.832375] usbcore: registered new interface driver gl620a
[    0.832418] usbcore: registered new interface driver net1080
[    0.832461] usbcore: registered new interface driver plusb
[    0.832505] usbcore: registered new interface driver rndis_host
[    0.832549] usbcore: registered new interface driver cdc_subset
[    0.832594] usbcore: registered new interface driver zaurus
[    0.832638] usbcore: registered new interface driver MOSCHIP usb-ethernet driver
[    0.832688] usbcore: registered new interface driver int51x1
[    0.832731] usbcore: registered new interface driver kalmia
[    0.832771] usbcore: registered new interface driver ipheth
[    0.832818] usbcore: registered new interface driver sierra_net
[    0.832862] usbcore: registered new interface driver cx82310_eth
[    0.832914] usbcore: registered new interface driver cdc_ncm
[    0.832959] usbcore: registered new interface driver qmi_wwan
[    0.832999] usbcore: registered new interface driver cdc_mbim
[    0.834057] dwc3 fe800000.dwc3: Failed to get clk 'ref': -2
[    0.835053] dwc3 fe900000.dwc3: Failed to get clk 'ref': -2
[    0.839750] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.839767] ehci-pci: EHCI PCI platform driver
[    0.839819] ehci-platform: EHCI generic platform driver
[    0.842116] ehci-platform fe3c0000.usb: EHCI Host Controller
[    0.842261] ehci-platform fe3c0000.usb: new USB bus registered, assigned bus number 1
[    0.842481] ehci-platform fe3c0000.usb: irq 33, io mem 0xfe3c0000
[    0.854837] ehci-platform fe3c0000.usb: USB 2.0 started, EHCI 1.00
[    0.854973] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
[    0.854990] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.855003] usb usb1: Product: EHCI Host Controller
[    0.855016] usb usb1: Manufacturer: Linux 4.19.232 ehci_hcd
[    0.855029] usb usb1: SerialNumber: fe3c0000.usb
[    0.855368] hub 1-0:1.0: USB hub found
[    0.855400] hub 1-0:1.0: 1 port detected
[    0.855897] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.855923] ohci-platform: OHCI generic platform driver
[    0.856183] ohci-platform fe3e0000.usb: Generic Platform OHCI controller
[    0.856360] ohci-platform fe3e0000.usb: new USB bus registered, assigned bus number 2
[    0.856706] ohci-platform fe3e0000.usb: irq 34, io mem 0xfe3e0000
[    0.915630] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.19
[    0.915649] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.915659] usb usb2: Product: Generic Platform OHCI controller
[    0.915668] usb usb2: Manufacturer: Linux 4.19.232 ohci_hcd
[    0.915676] usb usb2: SerialNumber: fe3e0000.usb
[    0.915992] hub 2-0:1.0: USB hub found
[    0.916031] hub 2-0:1.0: 1 port detected
[    0.916980] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[    0.917140] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3
[    0.917635] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000009002030010
[    0.917679] xhci-hcd xhci-hcd.1.auto: irq 73, io mem 0xfe900000
[    0.917947] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
[    0.917964] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.917979] usb usb3: Product: xHCI Host Controller
[    0.917992] usb usb3: Manufacturer: Linux 4.19.232 xhci-hcd
[    0.918005] usb usb3: SerialNumber: xhci-hcd.1.auto
[    0.918377] hub 3-0:1.0: USB hub found
[    0.918417] hub 3-0:1.0: 1 port detected
[    0.918652] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[    0.918775] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4
[    0.918791] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[    0.918847] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.918945] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 4.19
[    0.918961] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.918973] usb usb4: Product: xHCI Host Controller
[    0.918986] usb usb4: Manufacturer: Linux 4.19.232 xhci-hcd
[    0.918997] usb usb4: SerialNumber: xhci-hcd.1.auto
[    0.919305] hub 4-0:1.0: USB hub found
[    0.919339] hub 4-0:1.0: 1 port detected
[    0.919653] usbcore: registered new interface driver cdc_acm
[    0.919668] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    0.919717] usbcore: registered new interface driver usblp
[    0.919760] usbcore: registered new interface driver cdc_wdm
[    0.919978] usbcore: registered new interface driver uas
[    0.920045] usbcore: registered new interface driver usb-storage
[    0.920088] usbcore: registered new interface driver ums-alauda
[    0.920127] usbcore: registered new interface driver ums-cypress
[    0.920166] usbcore: registered new interface driver ums-datafab
[    0.920204] usbcore: registered new interface driver ums_eneub6250
[    0.920239] usbcore: registered new interface driver ums-freecom
[    0.920278] usbcore: registered new interface driver ums-isd200
[    0.920317] usbcore: registered new interface driver ums-jumpshot
[    0.920355] usbcore: registered new interface driver ums-karma
[    0.920395] usbcore: registered new interface driver ums-onetouch
[    0.920434] usbcore: registered new interface driver ums-sddr09
[    0.920472] usbcore: registered new interface driver ums-sddr55
[    0.920511] usbcore: registered new interface driver ums-usbat
[    0.920582] usbcore: registered new interface driver usbserial_generic
[    0.920609] usbserial: USB Serial support registered for generic
[    0.920653] usbcore: registered new interface driver option
[    0.920678] usbserial: USB Serial support registered for GSM modem (1-port)
[    0.920778] usbcore: registered new interface driver trancevibrator
[    0.921177] usbcore: registered new interface driver xpad
[    0.921227] usbcore: registered new interface driver usb_acecad
[    0.921269] usbcore: registered new interface driver aiptek
[    0.921308] usbcore: registered new interface driver gtco
[    0.921348] usbcore: registered new interface driver hanwang
[    0.921388] usbcore: registered new interface driver kbtab
[    0.921687] cyttsp5_loader_init: Parade TTSP FW Loader Driver (Built TTDA.03.08.874312) rc=0
[    0.921703] cyttsp5_device_access_init: Parade TTSP Device Access Driver (Built TTDA.03.08.874312) rc=0
[    0.922877] i2c /dev entries driver
[    0.924251] input: gsl3673 as /devices/platform/ff110000.i2c/i2c-1/1-0040/input/input0
[    0.994978] gsl3673 1-0040: GSL3673 test_i2c error!
[    0.994996] gsl3673 1-0040: gsl_probe: init_chip failed
[    0.995279] gsl3673: probe of 1-0040 failed with error -1
[    0.996758] rk808 0-001b: chip id: 0x0
[    0.999980] rk808-regulator rk808-regulator: there is no dvs0 gpio
[    1.000011] rk808-regulator rk808-regulator: there is no dvs1 gpio
[    1.000436] vdd_center: supplied by vcc_sys
[    1.001087] vdd_cpu_l: supplied by vcc_sys
[    1.001319] vcc_ddr: supplied by vcc_sys
[    1.001821] vcc_1v8: supplied by vcc_sys
[    1.002307] vcc1v8_dvp: supplied by vcc_sys
[    1.002781] vcc3v0_tp: supplied by vcc_sys
[    1.003266] vcc1v8_pmu: supplied by vcc_sys
[    1.003766] vcc_sdio: supplied by vcc_sys
[    1.004125] vcca3v0_codec: supplied by vcc_sys
[    1.004619] vcc_1v5: supplied by vcc_sys
[    1.004986] vcca1v8_codec: supplied by vcc_sys
[    1.005478] vcc_3v0: supplied by vcc_sys
[    1.005719] rk808 0-001b: failed to register 12 regulator
[    1.010357] rk808-rtc rk808-rtc: registered as rtc0
[    1.010865] rk808-rtc rk808-rtc: setting system clock to 2013-01-18 08:53:52 UTC (1358499232)
[    1.011360] fan53555-regulator 0-0040: FAN53555 Option[8] Rev[1] Detected!
[    1.011986] vdd_cpu_b: supplied by vcc_sys
[    1.013552] fan53555-regulator 0-0041: FAN53555 Option[8] Rev[1] Detected!
[    1.014169] vdd_gpu: supplied by vcc_sys
[    1.016099] fusb302 4-0022: Can't get property of role, set role to default DRP
[    1.019102] fusb302 4-0022: port 0 probe success with role ROLE_MODE_DRP, try_role ROLE_MODE_NONE
[    1.019210] input: Typec_Headphone as /devices/platform/ff3d0000.i2c/i2c-4/4-0022/input/input1
[    1.019498] gsensor_mpu6500 4-0068: sensor_register_device: mpu6500_acc, id = 29
[    1.019516] i2c i2c-4: sensor_probe: mpu6500_acc,00000000ef24233c
[    1.019560] gsensor_mpu6500 4-0068: sensor_chip_init:mpu6500_acc:devid=0x0,ops=0x0000000028317fd6
[    1.019871] gsensor_mpu6500 4-0068: set MPU6500_PWR_MGMT_1 error,res: -6!
[    1.019881] gsensor_mpu6500 4-0068: sensor_initial:fail to init sensor
[    1.019896] gsensor_mpu6500 4-0068: sensor_chip_init:fail to init sensor
[    1.019908] i2c i2c-4: sensor_probe failed -2
[    1.019908] 
[    1.019954] i2c i2c-4: 1 i2c clients have been registered at 0x68
[    1.020463] vm149c 1-000c: probing...
[    1.020479] vm149c 1-000c: driver version: 00.01.00
[    1.020493] vm149c 1-000c: could not get module rockchip,vcm-max-current from dts!
[    1.020506] vm149c 1-000c: could not get module rockchip,vcm-start-current from dts!
[    1.020519] vm149c 1-000c: could not get module rockchip,vcm-rated-current from dts!
[    1.020531] vm149c 1-000c: could not get module rockchip,vcm-step-mode from dts!
[    1.020563] vm149c 1-000c: probing successful
[    1.020656] sgm3784 1-0030: driver version: 00.01.00
[    1.020710] sgm3784 1-0030: get torch-gpio failed, using assist light mode
[    1.020750] sgm3784 1-0030: led0 max torch:299200UA flash:1122000UA timeout:1600000US
[    1.020767] sgm3784 1-0030: led1 max torch:299200UA flash:1122000UA timeout:1600000US
[    1.020929] sgm3784 1-0030: sgm3784_i2c_read: reg:0x0 failed
[    1.020944] sgm3784 1-0030: Read chip id error
[    1.022136] iommu: Adding device ff910000.rkisp1 to group 5
[    1.022164] rkisp1 ff910000.rkisp1: Linked as a consumer to ff914000.iommu
[    1.022332] rkisp1 ff910000.rkisp1: rkisp1 driver version: v00.01.05
[    1.022362] rkisp1 ff910000.rkisp1: Missing rockchip,grf property
[    1.022618] rkisp1 ff910000.rkisp1: Entity type for entity rkisp1-isp-subdev was not initialized!
[    1.024708] usbcore: registered new interface driver uvcvideo
[    1.024727] USB Video Class driver (1.1.1)
[    1.026134] __power_supply_register: Expected proper parent device for 'test_ac'
[    1.026318] __power_supply_register: Expected proper parent device for 'test_battery'
[    1.026601] thermal thermal_zone2: power_allocator: sustainable_power will be estimated
[    1.026685] __power_supply_register: Expected proper parent device for 'test_usb'
[    1.028113] rockchip-thermal ff260000.tsadc: tsadc is probed successfully!
[    1.029331] device-mapper: uevent: version 1.0.3
[    1.029585] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: [email protected]
[    1.029786] device-mapper: verity-avb: AVB error handler initialized with vbmeta device: 
[    1.029806] Bluetooth: HCI UART driver ver 2.3
[    1.029821] Bluetooth: HCI UART protocol H4 registered
[    1.030042] cpu cpu0: bin=1
[    1.030079] cpu cpu0: leakage=28
[    1.030118] cpu cpu0: Failed to get reg
[    1.030142] cpu cpu0: bin-scale=34
[    1.030205] cpu cpu4: bin=1
[    1.030235] cpu cpu4: leakage=49
[    1.030482] cpu cpu4: Linked as a consumer to regulator.23
[    1.042362] cpu cpu4: temp=38750, pvtm=160557 (160770 + -213)
[    1.042467] cpu cpu4: Dropping the link to regulator.23
[    1.042522] cpu cpu4: pvtm-volt-sel=3
[    1.042545] cpu cpu4: bin-scale=17
[    1.044213] sdhci: Secure Digital Host Controller Interface driver
[    1.044230] sdhci: Copyright(c) Pierre Ossman
[    1.044243] Synopsys Designware Multimedia Card Interface Driver
[    1.044982] dwmmc_rockchip fe310000.dwmmc: IDMAC supports 32-bit address mode.
[    1.045447] dwmmc_rockchip fe310000.dwmmc: Using internal DMA controller.
[    1.045471] dwmmc_rockchip fe310000.dwmmc: Version ID is 270a
[    1.045511] dwmmc_rockchip fe310000.dwmmc: DW MMC controller at irq 28,32 bit host data width,256 deep fifo
[    1.045612] dwmmc_rockchip fe310000.dwmmc: allocated mmc-pwrseq
[    1.045624] mmc_host mmc0: card is non-removable.
[    1.058592] mmc_host mmc0: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
[    1.072481] dwmmc_rockchip fe320000.dwmmc: IDMAC supports 32-bit address mode.
[    1.072792] dwmmc_rockchip fe320000.dwmmc: Using internal DMA controller.
[    1.072815] dwmmc_rockchip fe320000.dwmmc: Version ID is 270a
[    1.072884] dwmmc_rockchip fe320000.dwmmc: DW MMC controller at irq 29,32 bit host data width,256 deep fifo
[    1.073343] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.100166] mmc2: SDHCI controller on fe330000.sdhci [fe330000.sdhci] using ADMA
[    1.102032] cryptodev: driver 1.12 loaded.
[    1.102092] hidraw: raw HID events driver (C) Jiri Kosina
[    1.104841] usb 1-1: new high-speed USB device number 2 using ehci-platform
[    1.105174] usbcore: registered new interface driver usbhid
[    1.105189] usbhid: USB HID core driver
[    1.105310] ion_device_add_heap: ion_system_contig_heap id=0 type=1
[    1.105559] ion_device_add_heap: ion_system_heap id=1 type=0
[    1.105578] ion_device_add_heap: reserved id=2 type=4
[    1.105904] ashmem: initialized
[    1.108240] mmc0: queuing unknown CIS tuple 0x80 (2 bytes)
[    1.108919] rockchip-saradc ff100000.saradc: failed to get regulator, -517
[    1.109463] optee: probing for conduit method from DT.
[    1.109490] optee: revision 1.1
[    1.110044] optee: initialized driver
[    1.110070] rknandbase v1.2 2021-01-07
[    1.110566] usbcore: registered new interface driver snd-usb-audio
[    1.110626] mmc0: queuing unknown CIS tuple 0x80 (3 bytes)
[    1.112843] mmc0: queuing unknown CIS tuple 0x80 (3 bytes)
[    1.112951] rt5651 1-001a: Device with ID register 0xffffff80 is not rt5651
[    1.116543] netem: version 1.3
[    1.116565] u32 classifier
[    1.116572]     Actions configured
[    1.116815] mmc0: queuing unknown CIS tuple 0x80 (7 bytes)
[    1.117124] xt_time: kernel timezone is -0000
[    1.117272] gre: GRE over IPv4 demultiplexor driver
[    1.117284] IPv4 over IPsec tunneling driver
[    1.117900] Initializing XFRM netlink socket
[    1.117925] IPsec XFRM device driver
[    1.118261] NET: Registered protocol family 10
[    1.119257] Segment Routing with IPv6
[    1.119342] mip6: Mobile IPv6
[    1.119902] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    1.120581] NET: Registered protocol family 17
[    1.120608] NET: Registered protocol family 15
[    1.120661] Bridge firewalling registered
[    1.120972] Bluetooth: RFCOMM TTY layer initialized
[    1.120989] Bluetooth: RFCOMM socket layer initialized
[    1.121017] Bluetooth: RFCOMM ver 1.11
[    1.121036] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    1.121047] Bluetooth: BNEP filters: protocol multicast
[    1.121061] Bluetooth: BNEP socket layer initialized
[    1.121073] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    1.121085] Bluetooth: HIDP socket layer initialized
[    1.121106] _core: L2TP core driver, V2.0
[    1.121122] _ppp: PPPoL2TP kernel driver, V2.0
[    1.121134] [BT_RFKILL]: Enter rfkill_rk_init
[    1.121144] [WLAN_RFKILL]: Enter rfkill_wlan_init
[    1.121436] [WLAN_RFKILL]: Enter rfkill_wlan_probe
[    1.121499] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6354
[    1.121514] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control.
[    1.121526] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio.
[    1.121567] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,host_wake_irq = 3, flags = 0.
[    1.121581] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found !
[    1.121592] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio
[    1.121605] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 1
[    1.121617] [WLAN_RFKILL]: Exit rfkill_wlan_probe
[    1.122019] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 83.
[    1.122051] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 9.
[    1.122072] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 90.
[    1.122091] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 4.
[    1.122142] [BT_RFKILL]: Request irq for bt wakeup host
[    1.122210] [BT_RFKILL]: ** disable irq
[    1.122305] [BT_RFKILL]: bt_default device registered.
[    1.122533] gyro_mpu6500 4-0068-1: sensor_register_device: mpu6500_gyro, id = 58
[    1.122555] i2c i2c-4: sensor_probe: mpu6500_gyro,00000000d5b5f1ad
[    1.122597] gyro_mpu6500 4-0068-1: sensor_chip_init:mpu6500_gyro:devid=0x0,ops=0x000000002cbac7b8
[    1.123173] gyro_mpu6500 4-0068-1: sensor_active:fail to active sensor
[    1.123190] gyro_mpu6500 4-0068-1: sensor_init:line=84,error
[    1.123203] gyro_mpu6500 4-0068-1: sensor_initial:fail to init sensor
[    1.123215] gyro_mpu6500 4-0068-1: sensor_chip_init:fail to init sensor
[    1.123229] i2c i2c-4: sensor_probe failed -2
[    1.123229] 
[    1.123548] ov13850 1-0010: driver version: 00.01.05
[    1.123592] ov13850 1-0010: Failed to get power-gpios, maybe no use
[    1.123655] ov13850 1-0010: 1-0010 supply avdd not found, using dummy regulator
[    1.123715] ov13850 1-0010: Linked as a consumer to regulator.0
[    1.123738] ov13850 1-0010: 1-0010 supply dovdd not found, using dummy regulator
[    1.123787] ov13850 1-0010: 1-0010 supply dvdd not found, using dummy regulator
[    1.123864] ov13850 1-0010: could not get sleep pinstate
[    1.127853] ov13850 1-0010: Unexpected sensor id(000000), ret(-5)
[    1.128427] gc8034 1-0037: driver version: 00.01.06
[    1.128468] gc8034 1-0037: Failed to get power-gpios, maybe no use
[    1.128523] gc8034 1-0037: 1-0037 supply avdd not found, using dummy regulator
[    1.128572] gc8034 1-0037: Linked as a consumer to regulator.0
[    1.128598] gc8034 1-0037: 1-0037 supply dovdd not found, using dummy regulator
[    1.128647] gc8034 1-0037: 1-0037 supply dvdd not found, using dummy regulator
[    1.128693] gc8034 1-0037: lane_num(4)  pixel_rate(319887360)
[    1.128743] gc8034 1-0037: could not get sleep pinstate
[    1.133328] gc8034 1-0037: gc8034 read reg:0xf0 failed !
[    1.133537] gc8034 1-0037: gc8034 read reg:0xf1 failed !
[    1.133553] gc8034 1-0037: Unexpected sensor id(000000), ret(-6)
[    1.133928] mmc2: new HS400 Enhanced strobe MMC card at address 0001
[    1.134671] registered taskstats version 1
[    1.134695] Loading compiled-in X.509 certificates
[    1.134838] mmcblk2: mmc2:0001 DA6128 116 GiB 
[    1.134855] Key type ._fscrypt registered
[    1.134865] Key type .fscrypt registered
[    1.134875] Key type fscrypt-provisioning registered
[    1.135309] pstore: Using compression: deflate
[    1.135462] mmcblk2boot0: mmc2:0001 DA6128 partition 1 4.00 MiB
[    1.136002] mmcblk2boot1: mmc2:0001 DA6128 partition 2 4.00 MiB
[    1.136267] rga: rga2_irq, irq = 49, match scheduler
[    1.136277] mmcblk2rpmb: mmc2:0001 DA6128 partition 3 4.00 MiB, chardev (237:0)
[    1.136621] rga: Driver loaded successfully rga[3] ver:3.2.18218
[    1.136700] rga: probe successfully
[    1.137110] rga: Module initialized. v1.2.4
[    1.139661]  mmcblk2: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14
[    1.162364] reg-fixed-voltage vcc1v8-s3: Failed to register regulator: -517
[    1.162833] reg-fixed-voltage vcc3v0-sd: Failed to register regulator: -517
[    1.163114] vcc3v3_sys: supplied by vcc_sys
[    1.163495] phy phy-ff770000.syscon:[email protected]: Linked as a consumer to regulator.6
[    1.163997] phy phy-ff770000.syscon:[email protected]: No vbus specified for otg port
[    1.166074] rockchip-drm display-subsystem: defer getting devfreq
[    1.166248] rockchip-vop ff8f0000.vop: missing rockchip,grf property
[    1.166375] rockchip-drm display-subsystem: bound ff8f0000.vop (ops vop_component_ops)
[    1.166431] rockchip-vop ff900000.vop: missing rockchip,grf property
[    1.166588] rockchip-drm display-subsystem: bound ff900000.vop (ops vop_component_ops)
[    1.166625] rockchip-dp ff970000.edp: no DP phy configured
[    1.167335] rockchip-drm display-subsystem: bound ff970000.edp (ops rockchip_dp_component_ops)
[    1.167724] rockchip-drm display-subsystem: bound fec00000.dp (ops cdn_dp_component_ops)
[    1.167904] dwhdmi-rockchip ff940000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
[    1.168198] usb 3-1: new high-speed USB device number 2 using xhci-hcd
[    1.168650] dwhdmi-rockchip ff940000.hdmi: registered DesignWare HDMI I2C bus driver
[    1.169904] rockchip-drm display-subsystem: bound ff940000.hdmi (ops dw_hdmi_rockchip_ops)
[    1.169925] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    1.169937] [drm] No driver support for vblank timestamp query.
[    1.170156] rockchip-drm display-subsystem: connector[HDMI-A-1] can't found any modes
[    1.190305] rockchip-drm display-subsystem: fb0:  frame buffer device
[    1.191060] [drm] Initialized rockchip 2.0.0 20140818 for display-subsystem on minor 0
[    1.191762] midgard ff9a0000.gpu: Linked as a consumer to regulator.24
[    1.191814] midgard ff9a0000.gpu: leakage=36
[    1.204650] midgard ff9a0000.gpu: temp=37500, pvtm=129809 (129993 + -184)
[    1.206824] midgard ff9a0000.gpu: pvtm-volt-sel=3
[    1.207263] midgard ff9a0000.gpu: avs=0
[    1.207735] midgard ff9a0000.gpu: GPU identified as 0x0860 r2p0 status 0
[    1.207829] midgard ff9a0000.gpu: Protected mode not available
[    1.208313] midgard ff9a0000.gpu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    1.208366] midgard ff9a0000.gpu: Using configured power model mali-simple-power-model, and fallback mali-simple-power-model
[    1.208477] I : [File] : drivers/gpu/arm/midgard/backend/gpu/mali_kbase_devfreq.c; [Line] : 417; [Func] : midgard_kbase_devfreq_init(); success initing power_model_simple.
[    1.209168] midgard ff9a0000.gpu: Probed as mali0
[    1.209831] rk_gmac-dwmac fe300000.ethernet: PTP uses main clock
[    1.209869] rk_gmac-dwmac fe300000.ethernet: phy regulator is not available yet, deferred probing
[    1.210316] dwc3 fe800000.dwc3: Failed to get clk 'ref': -2
[    1.217527] mmc_host mmc0: Bus speed (slot 0) = 100000000Hz (slot req 100000000Hz, actual 100000000HZ div = 0)
[    1.217655] ehci-platform fe380000.usb: EHCI Host Controller
[    1.217923] ehci-platform fe380000.usb: new USB bus registered, assigned bus number 5
[    1.218214] ehci-platform fe380000.usb: irq 31, io mem 0xfe380000
[    1.254573] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=61.60
[    1.254602] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    1.254614] usb 1-1: Product: USB2.0 Hub
[    1.255667] hub 1-1:1.0: USB hub found
[    1.256160] hub 1-1:1.0: 4 ports detected
[    1.269347] vendor storage:20190527 ret = 0
[    1.305010] ehci-platform fe380000.usb: USB 2.0 started, EHCI 1.00
[    1.305205] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
[    1.305233] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.305248] usb usb5: Product: EHCI Host Controller
[    1.305261] usb usb5: Manufacturer: Linux 4.19.232 ehci_hcd
[    1.305274] usb usb5: SerialNumber: fe380000.usb
[    1.305655] hub 5-0:1.0: USB hub found
[    1.305691] hub 5-0:1.0: 1 port detected
[    1.306282] ohci-platform fe3a0000.usb: Generic Platform OHCI controller
[    1.306455] ohci-platform fe3a0000.usb: new USB bus registered, assigned bus number 6
[    1.306842] ohci-platform fe3a0000.usb: irq 32, io mem 0xfe3a0000
[    1.310117] usb 3-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=61.60
[    1.310137] usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    1.310152] usb 3-1: Product: USB2.0 Hub
[    1.365784] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.19
[    1.365810] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.365822] usb usb6: Product: Generic Platform OHCI controller
[    1.365833] usb usb6: Manufacturer: Linux 4.19.232 ohci_hcd
[    1.365842] usb usb6: SerialNumber: fe3a0000.usb
[    1.366307] hub 6-0:1.0: USB hub found
[    1.366348] hub 6-0:1.0: 1 port detected
[    1.367085] rk808-regulator rk808-regulator: there is no dvs0 gpio
[    1.367109] rk808-regulator rk808-regulator: there is no dvs1 gpio
[    1.367176] vdd_center: supplied by vcc_sys
[    1.367373] hub 3-1:1.0: USB hub found
[    1.367634] vdd_cpu_l: supplied by vcc_sys
[    1.367784] hub 3-1:1.0: 4 ports detected
[    1.367977] vcc_ddr: supplied by vcc_sys
[    1.368266] vcc_1v8: supplied by vcc_sys
[    1.368482] vcc1v8_dvp: supplied by vcc_sys
[    1.368709] vcc3v0_tp: supplied by vcc_sys
[    1.368921] vcc1v8_pmu: supplied by vcc_sys
[    1.369161] vcc_sdio: supplied by vcc_sys
[    1.369380] vcca3v0_codec: supplied by vcc_sys
[    1.369606] vcc_1v5: supplied by vcc_sys
[    1.369834] vcca1v8_codec: supplied by vcc_sys
[    1.370052] vcc_3v0: supplied by vcc_sys
[    1.370296] vcc3v3_s3: supplied by vcc3v3_sys
[    1.370525] vcc3v3_s0: supplied by vcc3v3_sys
[    1.371040] rockchip-iodomain ff320000.syscon:io-domains: Linked as a consumer to regulator.39
[    1.371076] rockchip-iodomain ff320000.syscon:io-domains: pmu1830(3000000 uV) supplied by vcc_3v0
[    1.371365] rockchip-iodomain ff770000.syscon:io-domains: Linked as a consumer to regulator.39
[    1.371389] rockchip-iodomain ff770000.syscon:io-domains: bt656(3000000 uV) supplied by vcc_3v0
[    1.371454] rockchip-iodomain ff770000.syscon:io-domains: Linked as a consumer to regulator.38
[    1.371507] rockchip-iodomain ff770000.syscon:io-domains: audio(1800000 uV) supplied by vcca1v8_codec
[    1.371589] rockchip-iodomain ff770000.syscon:io-domains: Linked as a consumer to regulator.35
[    1.371611] rockchip-iodomain ff770000.syscon:io-domains: sdmmc(3000000 uV) supplied by vcc_sdio
[    1.371686] rockchip-iodomain ff770000.syscon:io-domains: gpio1830(3000000 uV) supplied by vcc_3v0
[    1.371878] cpu cpu0: Linked as a consumer to regulator.29
[    1.371925] cpu cpu0: Dropping the link to regulator.29
[    1.372057] cpu cpu0: Linked as a consumer to regulator.29
[    1.372520] cpu cpu0: avs=0
[    1.372717] cpu cpu0: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    1.373185] cpu cpu0: failed to find power_model node
[    1.373530] cpu cpu4: Linked as a consumer to regulator.23
[    1.374160] cpu cpu4: avs=0
[    1.374205] energy_model: pd4: hertz/watts ratio non-monotonically decreasing: em_cap_state 2 >= em_cap_state1
[    1.374417] cpu cpu4: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    1.376537] cpu cpu4: failed to find power_model node
[    1.377646] dwmmc_rockchip fe320000.dwmmc: IDMAC supports 32-bit address mode.
[    1.377834] dwmmc_rockchip fe320000.dwmmc: Using internal DMA controller.
[    1.377861] dwmmc_rockchip fe320000.dwmmc: Version ID is 270a
[    1.377910] dwmmc_rockchip fe320000.dwmmc: DW MMC controller at irq 29,32 bit host data width,256 deep fifo
[    1.378079] dwmmc_rockchip fe320000.dwmmc: Linked as a consumer to regulator.35
[    1.378199] dwmmc_rockchip fe320000.dwmmc: Dropping the link to regulator.35
[    1.378686] rockchip-dmc dmc: Linked as a consumer to regulator.28
[    1.378724] rockchip-dmc dmc: Failed to get ddr_leakage
[    1.379147] rockchip-dmc dmc: avs=0
[    1.379411] rockchip-dmc dmc: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    1.379447] rockchip-dmc dmc: could not find power_model node
[    1.379830] rockchip-saradc ff100000.saradc: failed to get regulator, -517
[    1.380806] asoc-simple-card hdmi-sound: i2s-hifi <-> ff8a0000.i2s mapping ok
[    1.382900] asoc-simple-card spdif-sound: dit-hifi <-> ff870000.spdif mapping ok
[    1.383522] vcc1v8_s3: supplied by vcc_1v8
[    1.383914] vcc3v0_sd: supplied by vcc3v3_sys
[    1.384715] rk_gmac-dwmac fe300000.ethernet: PTP uses main clock
[    1.384794] rk_gmac-dwmac fe300000.ethernet: Linked as a consumer to regulator.40
[    1.384865] rk_gmac-dwmac fe300000.ethernet: clock input or output? (input).
[    1.384889] rk_gmac-dwmac fe300000.ethernet: TX delay(0x28).
[    1.384911] rk_gmac-dwmac fe300000.ethernet: RX delay(0x11).
[    1.384934] rk_gmac-dwmac fe300000.ethernet: integrated PHY? (no).
[    1.384981] rk_gmac-dwmac fe300000.ethernet: cannot get clock clk_mac_speed
[    1.385001] rk_gmac-dwmac fe300000.ethernet: clock input from PHY
[    1.390025] rk_gmac-dwmac fe300000.ethernet: init for RGMII
[    1.390338] rk_gmac-dwmac fe300000.ethernet: User ID: 0x10, Synopsys ID: 0x35
[    1.390350] rk_gmac-dwmac fe300000.ethernet:     DWMAC1000
[    1.390360] rk_gmac-dwmac fe300000.ethernet: DMA HW capability register supported
[    1.390371] rk_gmac-dwmac fe300000.ethernet: RX Checksum Offload Engine supported
[    1.390380] rk_gmac-dwmac fe300000.ethernet: COE Type 2
[    1.390390] rk_gmac-dwmac fe300000.ethernet: TX Checksum insertion supported
[    1.390399] rk_gmac-dwmac fe300000.ethernet: Wake-Up On Lan supported
[    1.390433] rk_gmac-dwmac fe300000.ethernet: Normal descriptors
[    1.390444] rk_gmac-dwmac fe300000.ethernet: Ring mode enabled
[    1.390452] rk_gmac-dwmac fe300000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    1.416315] dwmmc_rockchip fe310000.dwmmc: Successfully tuned phase to 60
[    1.419759] mmc0: new ultra high speed SDR104 SDIO card at address 0001
[    1.448385] phy phy-ff770000.syscon:[email protected]: charger = USB_SDP_CHARGER
[    1.472825] mdio_bus stmmac-0:00: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:00, irq=POLL)
[    1.472850] mdio_bus stmmac-0:01: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:01, irq=POLL)
[    1.472857] mdio_bus stmmac-0:02: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:02, irq=POLL)
[    1.472863] mdio_bus stmmac-0:03: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:03, irq=POLL)
[    1.472868] mdio_bus stmmac-0:04: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:04, irq=POLL)
[    1.472874] mdio_bus stmmac-0:05: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:05, irq=POLL)
[    1.472880] mdio_bus stmmac-0:06: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:06, irq=POLL)
[    1.472885] mdio_bus stmmac-0:07: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:07, irq=POLL)
[    1.472890] mdio_bus stmmac-0:08: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:08, irq=POLL)
[    1.472896] mdio_bus stmmac-0:09: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:09, irq=POLL)
[    1.472901] mdio_bus stmmac-0:0a: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:0a, irq=POLL)
[    1.472907] mdio_bus stmmac-0:0b: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:0b, irq=POLL)
[    1.472912] mdio_bus stmmac-0:0c: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:0c, irq=POLL)
[    1.472917] mdio_bus stmmac-0:0d: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:0d, irq=POLL)
[    1.472923] mdio_bus stmmac-0:0e: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:0e, irq=POLL)
[    1.472946] mdio_bus stmmac-0:0f: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:0f, irq=POLL)
[    1.472952] mdio_bus stmmac-0:10: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:10, irq=POLL)
[    1.472957] mdio_bus stmmac-0:11: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:11, irq=POLL)
[    1.472963] mdio_bus stmmac-0:12: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:12, irq=POLL)
[    1.472968] mdio_bus stmmac-0:13: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:13, irq=POLL)
[    1.472973] mdio_bus stmmac-0:14: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:14, irq=POLL)
[    1.472979] mdio_bus stmmac-0:15: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:15, irq=POLL)
[    1.472984] mdio_bus stmmac-0:16: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:16, irq=POLL)
[    1.472990] mdio_bus stmmac-0:17: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:17, irq=POLL)
[    1.472995] mdio_bus stmmac-0:18: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:18, irq=POLL)
[    1.473043] mdio_bus stmmac-0:19: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:19, irq=POLL)
[    1.473048] mdio_bus stmmac-0:1a: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:1a, irq=POLL)
[    1.473054] mdio_bus stmmac-0:1b: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:1b, irq=POLL)
[    1.473068] mdio_bus stmmac-0:1c: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:1c, irq=POLL)
[    1.473073] mdio_bus stmmac-0:1d: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:1d, irq=POLL)
[    1.473080] mdio_bus stmmac-0:1e: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:1e, irq=POLL)
[    1.473094] mdio_bus stmmac-0:1f: attached PHY driver [unbound] (mii_bus:phy_addr=stmmac-0:1f, irq=POLL)
[    1.474133] dwmmc_rockchip fe320000.dwmmc: IDMAC supports 32-bit address mode.
[    1.474551] dwmmc_rockchip fe320000.dwmmc: Using internal DMA controller.
[    1.474578] dwmmc_rockchip fe320000.dwmmc: Version ID is 270a
[    1.474621] dwmmc_rockchip fe320000.dwmmc: DW MMC controller at irq 29,32 bit host data width,256 deep fifo
[    1.474698] dwmmc_rockchip fe320000.dwmmc: Linked as a consumer to regulator.43
[    1.474741] dwmmc_rockchip fe320000.dwmmc: Linked as a consumer to regulator.35
[    1.474827] mmc_host mmc1: card is polling.
[    1.487626] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
[    1.498907] rockchip-saradc ff100000.saradc: Linked as a consumer to regulator.42
[    1.499506] input: adc-keys as /devices/platform/adc-keys/input/input2
[    1.501134] input: gpio-keys as /devices/platform/gpio-keys/input/input3
[    1.501809] It doesn't contain Rogue gpu
[    1.502134] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    1.502803] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    1.503633] I : [File] : drivers/gpu/arm/mali400/mali/linux/mali_kernel_linux.c; [Line] : 417; [Func] : mali_module_init(); svn_rev_string_from_arm of this mali_ko is '', rk_ko_ver is '5', built at '09:55:46', on 'Nov 21 2023'.
[    1.503777] Mali: 
[    1.503778] Mali device driver loaded
[    1.503794] rkisp1 ff910000.rkisp1: clear unready subdev num: 3
[    1.504183] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    1.504199] cfg80211: failed to load regulatory.db
[    1.504284] rockchip-mipi-dphy-rx: No link between dphy and sensor
[    1.504295] rkisp1: update sensor failed
[    1.521523] mmc_host mmc1: Bus speed (slot 0) = 300000Hz (slot req 300000Hz, actual 300000HZ div = 0)
[    1.554947] usb 5-1: new high-speed USB device number 2 using ehci-platform
[    1.558247] mmc_host mmc1: Bus speed (slot 0) = 200000Hz (slot req 200000Hz, actual 200000HZ div = 0)
[    1.599103] mmc_host mmc1: Bus speed (slot 0) = 100000Hz (slot req 100000Hz, actual 100000HZ div = 0)
[    1.706782] usb 5-1: New USB device found, idVendor=0bda, idProduct=8152, bcdDevice=20.00
[    1.706842] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.706865] usb 5-1: Product: USB 10/100 LAN
[    1.706884] usb 5-1: Manufacturer: Realtek
[    1.706902] usb 5-1: SerialNumber: 000000000000
[    1.718238] usb 3-1.2: new high-speed USB device number 3 using xhci-hcd
[    1.811668] usb 3-1.2: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=61.60
[    1.811729] usb 3-1.2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    1.811750] usb 3-1.2: Product: USB2.0 Hub
[    1.841787] usb 5-1: reset high-speed USB device number 2 using ehci-platform
[    1.848042] hub 3-1.2:1.0: USB hub found
[    1.848783] hub 3-1.2:1.0: 4 ports detected
[    1.991628] usb 3-1.4: new low-speed USB device number 4 using xhci-hcd
[    2.027898] r8152 5-1:1.0: skip request firmware
[    2.029450] r8152 5-1:1.0 (unnamed net_device) (uninitialized): Invalid ether addr 00:00:00:00:00:00
[    2.029517] r8152 5-1:1.0 (unnamed net_device) (uninitialized): Random ether addr a6:71:34:71:49:70
[    2.064616] r8152 5-1:1.0 eth1: v1.11.11
[    2.087435] usb 3-1.4: New USB device found, idVendor=046d, idProduct=c05a, bcdDevice=63.00
[    2.087495] usb 3-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.087517] usb 3-1.4: Product: USB Optical Mouse
[    2.087536] usb 3-1.4: Manufacturer: Logitech
[    2.140921] input: Logitech USB Optical Mouse as /devices/platform/usb@fe900000/fe900000.dwc3/xhci-hcd.1.auto/usb3/3-1/3-1.4/3-1.4:1.0/0003:046D:C05A.0001/input/input4
[    2.142208] hid-generic 0003:046D:C05A.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-xhci-hcd.1.auto-1.4/input0
[    2.142737] ALSA device list:
[    2.142809]   #0: hdmi-sound
[    2.142854]   #1: ROCKCHIP,SPDIF
[    2.144157] Freeing unused kernel memory: 1280K
[    2.144318] Run /init as init process
[    2.166029] init: init first stage started!
[    2.166204] init: Unable to open /lib/modules, skipping module loading.
[    2.166525] init: Copied ramdisk prop to /second_stage_resources/system/etc/ramdisk/build.prop
[    2.166886] init: [libfs_mgr]ReadFstabFromDt(): failed to read fstab from dt
[    2.167918] init: Using Android DT directory /proc/device-tree/firmware/android/
[    2.200243] init: [libfs_mgr]superblock s_max_mnt_count:65535,/dev/block/by-name/metadata
[    2.202710] EXT4-fs (mmcblk2p11): Ignoring removed nomblk_io_submit option
[    2.205808] EXT4-fs (mmcblk2p11): mounted filesystem with ordered data mode. Opts: errors=remount-ro,nomblk_io_submit
[    2.205912] init: [libfs_mgr]check_fs(): mount(/dev/block/by-name/metadata,/metadata,ext4)=0: Success
[    2.224270] init: [libfs_mgr]check_fs(): unmount(/metadata) succeeded
[    2.224374] init: [libfs_mgr]Not running /system/bin/e2fsck on /dev/block/mmcblk2p11 (executable not in system image)
[    2.228518] EXT4-fs (mmcblk2p11): mounted filesystem with ordered data mode. Opts: discard
[    2.228702] init: [libfs_mgr]__mount(source=/dev/block/by-name/metadata,target=/metadata,type=ext4)=0: Success
[    2.240356] EXT4-fs (dm-0): mounted filesystem without journal. Opts: barrier=1
[    2.246593] EXT4-fs (dm-2): mounted filesystem without journal. Opts: barrier=1
[    2.249537] EXT4-fs (dm-4): mounted filesystem without journal. Opts: barrier=1
[    2.252702] EXT4-fs (dm-1): mounted filesystem without journal. Opts: barrier=1
[    2.255458] EXT4-fs (dm-3): mounted filesystem without journal. Opts: barrier=1
[    2.258002] EXT4-fs (dm-5): mounted filesystem without journal. Opts: barrier=1
[    2.261545] EXT4-fs (dm-6): mounted filesystem without journal. Opts: barrier=1
[    2.274922] init: 25 output lines suppressed due to ratelimiting
[    2.409183] init: Opening SELinux policy
[    2.415056] init: Loading SELinux policy
[    2.428663] SELinux:  Permission nlmsg_getneigh in class netlink_route_socket not defined in policy.
[    2.428860] SELinux: the above unknown classes and permissions will be denied
[    2.428906] SELinux:  policy capability network_peer_controls=1
[    2.428917] SELinux:  policy capability open_perms=1
[    2.428922] SELinux:  policy capability extended_socket_class=1
[    2.428926] SELinux:  policy capability always_check_network=0
[    2.428937] SELinux:  policy capability cgroup_seclabel=0
[    2.428941] SELinux:  policy capability nnp_nosuid_transition=1
[    2.548536] audit: type=1403 audit(1358499234.036:2): auid=4294967295 ses=4294967295 lsm=selinux res=1
[    2.555123] selinux: SELinux: Loaded file_contexts
[    2.555146] selinux: 
[    2.631832] init: init second stage started!
[    2.677634] init: Using Android DT directory /proc/device-tree/firmware/android/
[    2.680500] init: Overriding previous property 'persist.sys.usb.config':'none' with new value 'adb'
[    2.680981] init: Overriding previous property 'persist.sys.usb.config':'adb' with new value 'none'
[    2.681035] init: Couldn't load property file '/vendor/default.prop': open() failed: No such file or directory: No such file or directory
[    2.682742] init: Do not have permissions to set 'http://www.google.com/webhp?client' to '' in property file '/vendor/build.prop': Illegal property name
[    2.682768] init: Do not have permissions to set '{CID}&source' to 'android-home' in property file '/vendor/build.prop': Illegal property name
[    2.688220] init: Setting product property ro.product.brand to 'rockchip' (from ro.product.product.brand)
[    2.688263] init: Setting product property ro.product.device to 'rk3399_Android12' (from ro.product.product.device)
[    2.688289] init: Setting product property ro.product.manufacturer to 'rockchip' (from ro.product.product.manufacturer)
[    2.763838] audit: type=1107 audit(1358499234.250: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'
[    2.764071] audit: type=1107 audit(1358499234.250: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'
[    2.902709] ueventd: ueventd started!
[    2.904675] selinux: SELinux: Loaded file_contexts
[    2.904692] selinux: 
[    2.904934] ueventd: Parsing file /system/etc/ueventd.rc...
[    2.905319] ueventd: Added '/vendor/etc/ueventd.rc' to import list
[    2.905335] ueventd: Added '/odm/etc/ueventd.rc' to import list
[    2.905597] ueventd: Parsing file /vendor/etc/ueventd.rc...
[    2.906465] ueventd: Parsing file /odm/etc/ueventd.rc...
[    2.906491] ueventd: Unable to read config file '/odm/etc/ueventd.rc': open() failed: No such file or directory
[    2.906515] ueventd: Parsing file /vendor/ueventd.rc...
[    3.173707] midgard_kbase: disagrees about version of symbol module_layout
[    3.493745] Trying to create more than 6 SchedTune boosting groups
[    3.532736] Registered swp emulation handler
[    3.573786] binder: 167:167 ioctl 40046210 7ff48fa084 returned -22
[    3.577634] logd.auditd: start
[    3.577681] logd.klogd: 3576207510
console:/ $ [    3.589560] binder: 171:171 ioctl 40046210 7fee09a444 returned -22
[    3.592094] binder: 168:168 ioctl 40046210 7fdf923fe4 returned -22
[    3.593988] EXT4-fs (mmcblk2p10): Ignoring removed nomblk_io_submit option
[    3.597524] EXT4-fs (mmcblk2p10): mounted filesystem with ordered data mode. Opts: errors=remount-ro,nomblk_io_submit
[    3.633782] binder: 176:176 ioctl 40046210 7fc0a35d04 returned -22
[    3.633922] binder: 176:176 ioctl 40046210 7fc0a35ca4 returned -22
[    3.641414] e2fsck: e2fsck 1.45.4 (23-Sep-2019)
[    3.644476] e2fsck: /dev/block/by-name/cache: clean, 17/98304 files, 7203/98304 blocks
[    3.655424] EXT4-fs (mmcblk2p10): mounted filesystem with ordered data mode. Opts: noauto_da_alloc,discard
[    3.688697] binder: 188:188 ioctl 40046210 7fd9157b64 returned -22
[    3.772521] type=1400 audit(1358499235.260:5): avc: denied { write } for comm="tee-supplicant" name="property_service" dev="tmpfs" ino=21892 scontext=u:r:tee:s0 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=1
[    3.772790] type=1400 audit(1358499235.260: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
[    3.773666] type=1107 audit(1358499235.260:7): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { set } for property=vendor.security.tee_supplicant pid=189 uid=0 gid=0 scontext=u:r:tee:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=property_service permissive=1'
[    3.788691] binder: 190:190 ioctl 40046210 7feb1e7954 returned -22
[    3.789225] binder: 190:190 ioctl 40046210 7feb1e7894 returned -22
[    3.822959] binder: 192:192 ioctl 40046210 7fe37e8724 returned -22
[    3.823765] binder: 193:193 ioctl 40046210 7fd874d6c4 returned -22
[    3.833331] wait_for_keymaster: Waiting for Keymaster device
[    3.833517] binder: 199:199 ioctl 40046210 7ffc0908c4 returned -22
INF USER-TA:read_data_from_uboot_ta:661: (read_data_from_uboot_ta) filename(security_partition) !


ERR [0x0] TEE-CORE:ree_fs_open:1492: tee file not exists
ERR USER-TA:read_data_from_uboot_ta:689: TEE_InvokeTACommand returned 0xffff0000


INF USER-TA:TA_OpenSessionEntryPoint:341: Hello Rockchip Keymaster! rpmb :1


INF USER-TA:read_data_from_uboot_ta:661: (read_data_from_uboot_ta) filename(security_partition) !


ERR [0x1] TEE-CORE:ree_fs_open:1492: tee file not exists
ERR USER-TA:read_data_from_uboot_ta:689: TEE_InvokeTACommand returned 0xffff0000


INF USER-TA:TA_OpenSessionEntryPoint:341: Hello Rockchip Keymaster! rpmb :1


[    3.866537] binder: 191:191 ioctl 40046210 7ffcb0cb74 returned -22
[    3.872743] binder: 191:201 ioctl 40046210 78ba9e1154 returned -22
[    3.967525] binder: 197:197 ioctl 40046210 7fdbb55824 returned -22
[    3.969049] binder: 197:197 ioctl 40046210 7fdbb55844 returned -22
[    4.149429] binder: 222:222 ioctl 40046210 7fefff7bf4 returned -22
[    4.149948] binder: 222:222 ioctl 40046210 7fefff7bd4 returned -22
[    4.238920] binder: 198:198 ioctl 40046210 7ffbf62484 returned -22
[    4.264590] binder: 242:242 ioctl 40046210 7fcc8301f4 returned -22
[    4.328023] cdn-dp fec00000.dp: [drm:cdn_dp_pd_event_work] Not connected. Disabling cdn
[    4.834552] ServiceManager: Waited one second for android.system.keystore2.IKeystoreService/default (is service started? are binder threads started and available?)
[    4.835577] wait_for_keymaster: Keymaster device ready
[    4.841564] binder: undelivered transaction 128, process died.
[    4.853315] binder: 253:253 ioctl 40046210 7ff473dd24 returned -22
[    4.876196] fsck.f2fs: Info: Fix the reported corruption.
[    4.877092] fsck.f2fs:     Info: No support kernel version!
[    4.877206] fsck.f2fs: Info: Segments per section = 1
[    4.877258] fsck.f2fs: Info: Sections per zone = 1
[    4.877310] fsck.f2fs: Info: sector size = 512
[    4.877367] fsck.f2fs: Info: total sectors = 235974623 (115221 MB)
[    4.877936] fsck.f2fs: Info: MKFS version
[    4.878078] fsck.f2fs:   "4.19.232"
[    4.887786] F2FS-fs (mmcblk2p14): Using encoding defined by superblock: utf8-12.1.0 with flags 0x0
[    4.939281] F2FS-fs (mmcblk2p14): Found nat_bits in checkpoint
[    5.096901] F2FS-fs (mmcblk2p14): Mounted with checkpoint version = 20493311
[    5.178890] binder: 258:258 ioctl 40046210 7fe2a1f6f4 returned -22
[    5.212785] type=1400 audit(1358499236.700:8): avc: denied { create } for comm="kdevtmpfs" name="dm-7" scontext=u:r:kernel:s0 tcontext=u:object_r:device:s0 tclass=blk_file permissive=1
[    5.213167] type=1400 audit(1358499236.700:9): avc: denied { setattr } for comm="kdevtmpfs" name="dm-7" dev="devtmpfs" ino=22689 scontext=u:r:kernel:s0 tcontext=u:object_r:device:s0 tclass=blk_file permissive=1
[    6.255769] binder: 198:252 ioctl 40046210 7067791ef4 returned -22
[    6.429117] type=1107 audit(1358499237.916:10): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { set } for property=vendor.rga_api.version pid=222 uid=1000 gid=1003 scontext=u:r:hal_graphics_composer_default:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=property_service permissive=1'
[    6.456851] Freeing drm_logo memory: 732K
[    9.308434] fsck.f2fs: Info: Fix the reported corruption.
[    9.308907] fsck.f2fs:     Info: No support kernel version!
[    9.308919] fsck.f2fs: Info: Segments per section = 1
[    9.308946] fsck.f2fs: Info: Sections per zone = 1
[    9.308958] fsck.f2fs: Info: sector size = 4096
[    9.308971] fsck.f2fs: Info: total sectors = 29496827 (115221 MB)
[    9.309574] fsck.f2fs: Info: MKFS version
[    9.309590] fsck.f2fs:   "4.19.232"
[    9.309599] fsck.f2fs: Info: FSCK version
[    9.309609] fsck.f2fs:   from "4.19.232"
[    9.316921] init: Unable to set property 'ro.boottime.init.fsck.data' from uid:0 gid:0 pid:176: Read-only property was already set
[    9.318771] F2FS-fs (dm-7): Using encoding defined by superblock: utf8-12.1.0 with flags 0x0
[    9.372739] F2FS-fs (dm-7): Found nat_bits in checkpoint
[    9.523307] F2FS-fs (dm-7): Mounted with checkpoint version = 20493315
[    9.523707] init: Unable to set property 'ro.boottime.init.mount.data' from uid:0 gid:0 pid:176: Read-only property was already set
[    9.546669] init: Userdata mounted using /vendor/etc/fstab.rk30board result : 6
[    9.546731] init: Keyring created with id 276147860 in process 1
[    9.546905] init: Command 'mount_all /vendor/etc/fstab.${ro.hardware} --late' action=late-fs (/vendor/etc/init/hw/init.mount_all.rc:19) took 4709ms and succeeded
[    9.548316] init: processing action (late-fs) from (/vendor/etc/init/init.tune_io.rc:1)
[    9.566763] init: processing action (post-fs-data) from (/system/etc/init/hw/init.rc:620)
[    9.566959] init: starting service 'exec 4 (/system/bin/vdc checkpoint prepareCheckpoint)'...
[    9.569375] init: SVC_EXEC service 'exec 4 (/system/bin/vdc checkpoint prepareCheckpoint)' pid 283 (uid 1000 gid 1000+0 context default) started; waiting...
[    9.579328] binder: 283:283 ioctl 40046210 7fcf09a8c4 returned -22
[    9.581902] init: Service 'exec 4 (/system/bin/vdc checkpoint prepareCheckpoint)' (pid 283) exited with status 0 waiting took 0.013000 seconds
[    9.597240] binder: 284:284 ioctl 40046210 7fd2a8ac34 returned -22
[    9.618236] fscrypt: AES-256-CTS-CBC using implementation "cts(cbc-aes-ce)"
[    9.644264] binder: 289:289 ioctl 40046210 7fdaac84d4 returned -22
[    9.656863] fscrypt: AES-256-XTS using implementation "xts-aes-ce"
INF USER-TA:TA_InvokeCommandEntryPoint:2132: -------1111-----TA_InvokeCommandEntryPoint------105

[    9.696916] apexd: This device does not support updatable APEX. Exiting
[    9.696973] apexd: Marking APEXd as activated
[    9.788934] binder: 295:295 ioctl 40046210 7fe1e07994 returned -22
[   10.070844] apexd: This device does not support updatable APEX. Exiting
[   10.070886] apexd: Marking APEXd as ready
[   10.129877] logd: logd reinit
[   10.130590] logd: FrameworkListener: read() failed (Connection reset by peer)
[   10.339626] type=1400 audit(1358499241.826:11): avc: denied { setattr } for comm="init" name="nfc" dev="dm-7" ino=118 scontext=u:r:vendor_init:s0 tcontext=u:object_r:system_data_file:s0 tclass=dir permissive=1
[   10.339779] type=1400 audit(1358499241.826:12): avc: denied { read } for comm="init" name="nfc" dev="dm-7" ino=118 scontext=u:r:vendor_init:s0 tcontext=u:object_r:system_data_file:s0 tclass=dir permissive=1
[   10.339841] type=1400 audit(1358499241.826:13): avc: denied { open } for comm="init" path="/data/nfc" dev="dm-7" ino=118 scontext=u:r:vendor_init:s0 tcontext=u:object_r:system_data_file:s0 tclass=dir permissive=1
[   10.339877] init: Verified that /data/nfc has the encryption policy e7de5ae5fcbc791f5af8a2769173dbcd v2 modes 1/4 flags 0xa
[   10.339892] type=1400 audit(1358499241.826:14): avc: denied { ioctl } for comm="init" path="/data/nfc" dev="dm-7" ino=118 ioctlcmd=0x6615 scontext=u:r:vendor_init:s0 tcontext=u:object_r:system_data_file:s0 tclass=dir permissive=1
[   10.340200] init: Inferred action different from explicit one, expected 0 but got 2
[   10.340455] init: Verified that /data/nfc/param has the encryption policy e7de5ae5fcbc791f5af8a2769173dbcd v2 modes 1/4 flags 0xa
[   10.346127] binder: 306:306 ioctl 40046210 7fd52837b4 returned -22
[   10.404643] binder: 313:313 ioctl 40046210 7fc747bbf4 returned -22
[   10.431989] binder: 315:315 ioctl 40046210 7fc229f844 returned -22
[   10.450335] binder: 314:314 ioctl 40046210 ff808b58 returned -22
[   10.451984] binder: 314:314 ioctl 40046210 ff808b40 returned -22
[   10.507491] binder: 316:316 ioctl 40046210 fff599e8 returned -22
[   10.508561] binder: 316:316 ioctl 40046210 fff599d0 returned -22
[   10.510902] binder: 324:324 ioctl 40046210 7fc568b4a4 returned -22
[   10.516442] binder: 330:330 ioctl 40046210 7fef379d44 returned -22
[   10.527167] binder: 307:307 ioctl 40046210 7fc80b7634 returned -22
[   10.530784] binder: 307:307 ioctl 40046210 7fc80b7844 returned -22
[   10.534578] binder: 321:321 ioctl 40046210 ffb7c050 returned -22
INF USER-TA:TA_OpenSessionEntryPoint:114: Hello Rockchip gatekeeper! rpmb :1


[   10.539044] type=1400 audit(1358499242.026:15): avc: denied { setattr } for comm="init" name="status" dev="debugfs" ino=19488 scontext=u:r:vendor_init:s0 tcontext=u:object_r:debugfs:s0 tclass=file permissive=1
[   10.542884] binder: 317:317 ioctl 40046210 ffd04e48 returned -22
[   10.543398] binder: 317:317 ioctl 40046210 ffd04e30 returned -22
[   10.544845] binder: 329:329 ioctl 40046210 7fecaf6544 returned -22
[   10.550923] binder: 325:325 ioctl 40046210 7ffba9b4b4 returned -22
[   10.553837] binder: 334:334 ioctl 40046210 7fc0c36254 returned -22
[   10.564971] binder: 335:335 ioctl 40046210 7ffd4432f4 returned -22
INF USER-TA:TA_OpenSessionEntryPoint:96: Hello Rockchip Weaver! rpmb :1


[   10.573970] healthd: BatteryCurrentNowPath not found
[   10.574005] healthd: BatteryCycleCountPath not found
[   10.578891] healthd: battery l=50 v=3 t=2.6 h=2 st=3 fc=100 chg=au
[   10.581033] file system registered
[   10.581949] using random self ethernet address
[   10.582001] using random host ethernet address
[   10.585756] binder: 323:323 ioctl 40046210 ffbf76c8 returned -22
[   10.597449] binder: 322:322 ioctl 40046210 7fc38a0d24 returned -22
[   10.607008] binder: 336:336 ioctl 40046210 7fc5843f24 returned -22
[   10.607592] binder: 336:336 ioctl 40046210 7fc5843f04 returned -22
[   10.617291] type=1400 audit(1358499242.103:16): avc: denied { write } for comm="init" name="sched_features" dev="debugfs" ino=1445 scontext=u:r:vendor_init:s0 tcontext=u:object_r:debugfs:s0 tclass=file permissive=1
[   10.617475] type=1400 audit(1358499242.103:17): avc: denied { open } for comm="init" path="/sys/kernel/debug/sched_features" dev="debugfs" ino=1445 scontext=u:r:vendor_init:s0 tcontext=u:object_r:debugfs:s0 tclass=file permissive=1
[   10.639320] binder: 339:339 ioctl 40046210 7fccd140a4 returned -22
[   10.684978] binder: 337:337 ioctl 40046210 ffaa0218 returned -22
[   10.685603] binder: 337:337 ioctl 40046210 ffaa0200 returned -22
[   10.710069] type=1400 audit(1358499242.196:18): avc: denied { mounton } for comm="init" path="/sys/kernel/debug/tracing" dev="tracefs" ino=1 scontext=u:r:init:s0 tcontext=u:object_r:debugfs_tracing_debug:s0 tclass=dir permissive=1
[   10.719984] binder: 340:340 ioctl 40046210 7fd9499fb4 returned -22
[   10.776739] read descriptors
[   10.776795] read strings
[   10.809802] binder: 378:378 ioctl 40046210 ffc684e0 returned -22
[   10.837191] dhd_module_init: in Dongle Host Driver, version 1.579.77.41.22 (r-20191105-2)(20191120-1)
[   10.837251] ======== dhd_wlan_init_plat_data ========
[   10.837259] [WLAN_RFKILL]: rockchip_wifi_get_oob_irq: Enter
[   10.837328] dhd_wlan_init_gpio: WL_HOST_WAKE=-1, oob_irq=90, oob_irq_flags=0x414
[   10.837345] dhd_wlan_init_gpio: WL_REG_ON=-1
[   10.837351] dhd_wifi_platform_load: Enter
[   10.837364] Power-up adapter 'DHD generic adapter'
[   10.843632] wifi_platform_set_power = 1
[   10.843648] ======== PULL WL_REG_ON(-1) HIGH! ========
[   10.843654] [WLAN_RFKILL]: rockchip_wifi_power: 1
[   10.843660] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[   10.843665] [WLAN_RFKILL]: wifi turn on power [GPIO-1-0]
[   10.853524] binder: 387:387 ioctl 40046210 7fd4ef55e4 returned -22
[   10.865814] binder: 391:391 ioctl 40046210 7ff5ccb434 returned -22
[   10.885416] binder: 338:338 ioctl 40046210 7fd1a564b4 returned -22
[   10.885667] binder: 338:338 ioctl 40046210 7fd1a564d4 returned -22
[   10.887655] binder: 389:389 ioctl 40046210 7fedebb144 returned -22
[   10.915243] binder: 326:326 ioctl 40046210 ff868f90 returned -22
[   10.915711] binder: 326:326 ioctl 40046210 ff868f78 returned -22
[   10.983188] binder: 408:408 ioctl 40046210 7fc6af2bc4 returned -22
[   11.015113] binder: 393:393 ioctl 40046210 7ffa0f71c4 returned -22
[   11.085367] binder: 415:415 ioctl 40046210 7ff9c04ba4 returned -22
[   11.088704] binder: 415:415 ioctl 40046210 7ff9c04b44 returned -22
[   11.091382] binder: 416:416 ioctl 40046210 7fcb0b07a4 returned -22
[   11.092489] binder: 381:381 ioctl 40046210 7fc29ea674 returned -22
[   11.092735] binder: 416:416 ioctl 40046210 7fcb0b0724 returned -22
[   11.092792] binder: 381:381 ioctl 40046210 7fc29ea694 returned -22
[   11.154842] wifi_platform_bus_enumerate device present 1
[   11.154879] ======== Card detection to detect SDIO card! ========
[   11.154886] mmc0:mmc host rescan start!
[   11.171403] bcmsdh_register: register client driver
[   11.174007] bcmsdh_sdmmc_probe: Enter num=1
[   11.178349] bcmsdh_sdmmc_probe: Enter num=2
[   11.178371] bus num (host idx)=0, slot num (rca)=1
[   11.178379] found adapter info 'DHD generic adapter'
[   11.178449] sdioh_attach: set sd_f2_blocksize 256
[   11.178476] sdioh_attach: sd clock rate = 0
[   11.178639] dhdsdio_probe : no mutex held. set lock
[   11.178709] F1 signature read @0x18000000=0x1042aae8
[   11.185161] F1 signature OK, socitype:0x1 chip:0xaae8 rev:0x2 pkg:0x4
[   11.185183] dhdsdio_probe_attach: unsupported chip: 0xaae8
[   11.185194] dhdsdio_probe: dhdsdio_probe_attach failed
[   11.185203] dhdsdio_probe : the lock is released.
[   11.185209] bcmsdh_probe: device attach failed
[   11.185216] sdioh_probe: bcmsdh_probe failed
[   11.185282] bcmsdh_sdmmc: probe of mmc0:0001:2 failed with error -12
[   11.227791] binder: 424:424 ioctl 40046210 ff8153f0 returned -22
[   11.228316] binder: 424:424 ioctl 40046210 ff8153d8 returned -22
[   11.235981] binder: 435:435 ioctl 40046210 7fc92b2724 returned -22
[   11.249828] binder: 434:434 ioctl 40046210 7fd246bfa4 returned -22
[   11.250632] binder: 434:434 ioctl 40046210 7fd246bdb4 returned -22
[   11.272684] binder: 433:433 ioctl 40046210 7fc2ae26a4 returned -22
[   11.313061] binder: 409:409 ioctl 40046210 fff177b0 returned -22
[   11.316082] binder: 409:409 ioctl 40046210 fff17798 returned -22
[   13.752220] binder: 468:468 ioctl 40046210 7fcc663d54 returned -22
[   14.910324] binder: 468:468 ioctl 40046210 7fcc663724 returned -22
[   16.414099] init: Control message: Processed ctl.start for 'idmap2d' from pid: 468 (system_server)
[   16.516815] healthd: battery l=50 v=3 t=2.6 h=2 st=3 fc=100 chg=au
[   16.972635] init: processing action (sys.sysctl.extra_free_kbytes=*) from (/system/etc/init/hw/init.rc:1157)
[   17.678006] CANNOT FIND postdiv1/2 to make fout in range from 800M to 2000M,fout = 6000000
[   17.679059] rockchip_rk3399_pll_wait_lock: timeout waiting for pll to lock
[   17.679081] rockchip_rk3399_pll_set_params: pll update unsuccessful, trying to restore old params
[   17.679099] clk_core_set_rate_nolock: failed to set pll_vpll clock to run at 6000000
[   17.679165] rockchip-vop ff8f0000.vop: [drm:vop_crtc_atomic_enable] Update mode to 1920x1080p60, type: 11
[   22.423256] read descriptors
[   22.423278] read strings
[   22.423326] read descriptors
[   22.423333] read strings
[   22.679363] Generic PHY stmmac-0:00: attached PHY driver [Generic PHY] (mii_bus:phy_addr=stmmac-0:00, irq=POLL)
[   22.683821] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   22.684539] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   22.691647] rk_gmac-dwmac fe300000.ethernet eth0: No Safety Features support found
[   22.691688] rk_gmac-dwmac fe300000.ethernet eth0: PTP not supported by HW
[   22.691957] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   22.729525] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   22.763386] rockchip-vop ff8f0000.vop: [drm:vop_crtc_atomic_enable] Update mode to 1920x1080p60, type: 11
[   22.949297] binder: 688:688 ioctl 40046210 7fcc663cf4 returned -22
[   22.983538] binder: 703:703 ioctl 40046210 7fcc663cf4 returned -22
[   23.015399] binder: 714:714 ioctl 40046210 7fcc663cf4 returned -22
[   23.139199] binder: 688:688 ioctl 40046210 7fcc661d64 returned -22
[   23.304877] dhd_wifi_platform_load_sdio: sdio_register_driver timeout or error 
[   23.305006] wifi_platform_set_power = 0
[   23.305015] ======== PULL WL_REG_ON(-1) LOW! ========
[   23.305021] [WLAN_RFKILL]: rockchip_wifi_power: 0
[   23.305032] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[   23.305037] [WLAN_RFKILL]: wifi shut off power [GPIO-1-1]
[   23.305041] wifi_platform_bus_enumerate device present 0
[   23.305045] ======== Card detection to remove SDIO card! ========
[   23.305050] mmc0:mmc host rescan start!
[   23.305055] unregister wifi platform drivers
[   23.305059] wifi_platform_bus_enumerate device present 0
[   23.305063] ======== Card detection to remove SDIO card! ========
[   23.305067] mmc0:mmc host rescan start!
[   23.305071] ======== dhd_wlan_deinit_plat_data ========
[   23.305076] dhd_module_init: Failed to load the driver, try cnt 0
[   23.305109] dhd_module_init: Failed to load driver max retry reached**
[   23.305114] dhd_module_init: Exit err=-62
[   23.608469] binder: 850:850 ioctl 40046210 ff875190 returned -22
[   23.626711] binder: 867:867 ioctl 40046210 7fcc663cf4 returned -22
[   23.686737] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   23.789838] alloc_contig_range: [7f158, 7f160) PFNs busy
[   24.032375] binder: 946:946 ioctl 40046210 7fcc663cf4 returned -22
[   24.146240] binder: 961:961 ioctl 40046210 7fcc663cf4 returned -22
[   24.179503] binder: 983:983 ioctl 40046210 7fcc663cf4 returned -22
[   24.191003] binder: 946:946 ioctl 40046210 7fcc662ce4 returned -22
[   24.286987] binder: 703:1007 ioctl 40046210 787e172114 returned -22
[   24.381222] binder: 1019:1019 ioctl 40046210 7fcc663cf4 returned -22
[   24.464927] binder: 1046:1046 ioctl 40046210 7fcc663cf4 returned -22
[   24.626523] binder: 1046:1068 ioctl 40046210 78930c7eb4 returned -22
[   24.688121] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   24.903024] type=1400 audit(1700536960.106:38): avc: denied { search } for comm="system_server" name="tethering" dev="bpf" ino=22967 scontext=u:r:system_server:s0 tcontext=u:object_r:fs_bpf_tethering:s0 tclass=dir permissive=1
[   25.227013] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   25.690209] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   26.140211] binder: undelivered transaction 27606, process died.
[   26.140646] init: Service 'bootanim' (pid 198) exited with status 0 oneshot service took 22.333000 seconds in background
[   26.140685] init: Sending signal 9 to service 'bootanim' (pid 198) process group...
[   26.140871] libprocessgroup: Successfully killed process cgroup uid 1003 pid 198 in 0ms
[   26.238710] init: processing action (sys.boot_completed=1) from (/system/etc/init/hw/init.rc:1148)
[   26.239166] init: starting service 'exec 17 (/bin/rm -rf /data/per_boot)'...
[   26.253185] binder: 1160:1160 ioctl 40046210 7fcc663cf4 returned -22
[   26.288405] binder: 1177:1177 ioctl 40046210 7fcc663cf4 returned -22
[   26.318028] binder: 1193:1193 ioctl 40046210 7fcc663cf4 returned -22
[   26.571381] zram0: detected capacity change from 0 to 1023004672
[   26.586447] mkswap: Swapspace size: 999024k, UUID=3f533f78-32de-4ddf-a5e8-b55b95bbaf8f
[   26.587360] Adding 999024k swap on /dev/block/zram0.  Priority:-2 extents:1 across:999024k SS
[   27.078931] binder: 1239:1239 ioctl 40046210 7fcc663cf4 returned -22
[   27.145534] binder: 1260:1260 ioctl 40046210 7fcc663cf4 returned -22
[   27.213684] binder: 1280:1280 ioctl 40046210 7fcc663cf4 returned -22
[   27.260669] binder: 1297:1297 ioctl 40046210 7fcc663cf4 returned -22
[   27.276849] binder: 1019:1318 ioctl 40046210 788fdb9eb4 returned -22
[   27.283582] binder: 1302:1302 ioctl 40046210 7fcc663cf4 returned -22
[   27.359005] binder: 1351:1351 ioctl 40046210 7fcc663cf4 returned -22
[   27.506841] binder: 1391:1391 ioctl 40046210 7fcc663cf4 returned -22
[   27.605308] binder: 1410:1410 ioctl 40046210 7fcc663cf4 returned -22
[   27.693632] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   27.813905] binder: 1452:1452 ioctl 40046210 7fcc663cf4 returned -22
[   27.886620] binder: 1468:1468 ioctl 40046210 7fcc663cf4 returned -22
[   28.251221] binder: 1494:1494 ioctl 40046210 7fcc663cf4 returned -22
[   28.694708] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   28.801176] binder: 1521:1521 ioctl 40046210 7fcc663cf4 returned -22
[   29.697445] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   30.072810] binder: 1554:1554 ioctl 40046210 7fcc663cf4 returned -22
[   30.698532] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   31.700844] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   32.702371] init: starting service 'idmap2d'...
[   32.705456] init: Control message: Processed ctl.start for 'idmap2d' from pid: 468 (system_server)
[   32.706140] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   32.725196] binder: 1582:1582 ioctl 40046210 7ff7937e84 returned -22
[   33.707965] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   33.729761] binder: 1617:1617 ioctl 40046210 7fcc663cf4 returned -22
[   34.066393] binder: 1639:1639 ioctl 40046210 7fcc663cf4 returned -22
[   34.545026] binder: 1669:1669 ioctl 40046210 7fcc663cf4 returned -22
[   34.709074] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   34.847558] binder: 1690:1690 ioctl 40046210 7fcc663cf4 returned -22
[   35.137241] binder: 1710:1710 ioctl 40046210 7fcc663cf4 returned -22
[   35.341369] binder: 1734:1734 ioctl 40046210 7fcc663cf4 returned -22
[   35.515516] binder: 1758:1758 ioctl 40046210 7fcc663cf4 returned -22
[   35.612487] binder: 1779:1779 ioctl 40046210 7fcc663cf4 returned -22
[   35.626411] binder: 1780:1780 ioctl 40046210 7fcc663cf4 returned -22
[   35.711166] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   35.844128] binder: 1822:1822 ioctl 40046210 7fcc663cf4 returned -22
[   35.952911] binder: 1838:1838 ioctl 40046210 7fcc663cf4 returned -22
[   36.103403] binder: 1856:1856 ioctl 40046210 7fcc663cf4 returned -22
[   36.207915] binder: 1876:1876 ioctl 40046210 7fcc663cf4 returned -22
[   36.319689] binder: 1894:1894 ioctl 40046210 7fcc663cf4 returned -22
[   36.494091] binder: 1913:1913 ioctl 40046210 7fcc663cf4 returned -22
[   36.599400] binder: 1933:1933 ioctl 40046210 7fcc663cf4 returned -22
[   36.697651] binder: 1951:1951 ioctl 40046210 7fcc663cf4 returned -22
[   36.712124] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   37.713566] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   38.714866] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   39.721629] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   40.721965] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   41.732593] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   42.729252] init: Control message: Processed ctl.interface_start for '[email protected]::IWifi/default' from pid: 168 (/system/bin/hwservicemanager)
[   42.776980] init: Sending signal 9 to service 'idmap2d' (pid 1582) process group...
[   42.788640] libprocessgroup: Successfully killed process cgroup uid 1000 pid 1582 in 11ms
[   42.789412] init: Control message: Processed ctl.stop for 'idmap2d' from pid: 468 (system_server)
[   42.789873] init: Service 'idmap2d' (pid 1582) received signal 9
[   43.579356] init: Unable to set property 'wlan.driver.status' from uid:1010 gid:1010 pid:332: Property type check failed, value doesn't match expected type 'enum ok unloaded'
[   43.580584] binder: 332:332 ioctl 40046210 7feeb44eb4 returned -22
[   70.583098] healthd: battery l=50 v=3 t=2.6 h=2 st=3 fc=100 chg=au
[  130.579009] healthd: battery l=50 v=3 t=2.6 h=2 st=3 fc=100 chg=au
[  190.581045] healthd: battery l=50 v=3 t=2.6 h=2 st=3 fc=100 chg=au

console:/ $ 
console:/ $ 
console:/ $ 
console:/ $ 
console:/ $ 
console:/ $ 
console:/ $ 
console:/ $ 
console:/ $ 
console:/ $ 
console:/ $ 
console:/ $ 
console:/ $ 
console:/ $ [  250.581287] healthd: battery l=50 v=3 t=2.6 h=2 st=3 fc=100 chg=au
[  310.581331] healthd: battery l=50 v=3 t=2.6 h=2 st=3 fc=100 chg=au
[  370.581376] healthd: battery l=50 v=3 t=2.6 h=2 st=3 fc=100 chg=au

console:/ $ 
console:/ $ 、
/system/bin/sh: 、: inaccessible or not found
127|console:/ $ 
127|console:/ $ 
127|console:/ $ 
127|console:/ $ 

[END] 2023/11/21 12:18:07
 

你可能感兴趣的:(杂质,杂质)