Firefly开源社区

打印 上一主题 下一主题

[技术讨论] Core-3588L将官方Android固件解压,重新编译并只烧写了kernel到设备后,启动报错

回帖奖励 9 灯泡 回复本帖可获得 1 灯泡奖励! 每人限 1 次

36

积分

0

威望

0

贡献

技术小白

积分
36

Core-3588L将官方Android固件解压,重新编译并只烧写了kernel到设备后,启动报错

发表于 2024-5-6 22:04:05      浏览:125 | 回复:4        打印      只看该作者   [复制链接] 楼主
问题描述及复现步骤:
本帖最后由 xcx 于 2024-5-8 16:17 编辑

【固件版本】:AIO-3588L_Android12_HDMI_240305(且采用bundle更新到了如下的版本)
  1. commit 0ea4638bfdf6473947e0065e659143df37b2e7d1 (HEAD -> firefly)   
复制代码


【编译环境】:虚拟机ubuntu18.04(按照指南安装了相关编译工具链)
设备状态】:设备通过RKDevTool v2.93的 "Update Firmware"升级了官方的的固件,且可以正常启动计入Android系统。
【编译kernel的参考指南】
  1. https://wiki.t-firefly.com/zh_CN/Core-3588L/android_compile_android12.0_firmware.html#dan-du-bian-yi-kernel-sheng-cheng-boot-img
复制代码

【需求】由于在下当前不需要修改Android部分,因此主要是想利用官方的固件 AIO-3588L_Android12_HDMI_240305.img,将其解压unpack后,参考上述指南中,只编译kernel,并将kernel的boot.img烧写到设备。

【kernel编译过程】
1. 解压官方固件;
解压采用的是 firefly_rk3588_android12.0_git_20220311/RK3588_Android12.0/RKTools/linux/Linux_Pack_Firmware/ 路径的工具,将其解压后,得到如下结果:
  1. output/
  2. ├── Image
  3. │   ├── baseparameter.img
  4. │   ├── boot.img
  5. │   ├── dtbo.img
  6. │   ├── misc.img
  7. │   ├── oem.img
  8. │   ├── recovery.img
  9. │   ├── super.img
  10. │   ├── uboot.img
  11. │   └── vbmeta.img
  12. ├── MiniLoaderAll.bin
  13. ├── package-file
  14. └── parameter.txt
复制代码

然后,按照指南中要求说明:
编译的原理:在kernel目录下将编译生成的 kernel.imgresource.img 替换到旧的 boot.img 中,以编译的时候需要用 BOOT_IMG=xxx 参数指定boot.img的路径:msk ARCH=arm64   BOOT_IMG=../rockdev/Image-aio_3588l/boot.img aio-3588l.img -j8


因此,我将output文件夹copy到kernel-5.10的上一层目录,并将目录名改为`rockdev`,同时将`output/Image`目录改为`rockdev/Image-aio_3588l`,作为单独编译kernel生成boot.img的输入源


(PS:采用了windows的RKDevTool工具中的图形界面的unpack功能也是一样的问题)
2. 编译kernel-5.10;
准备好旧的镜像解压资源后,按照指南编译内核,编译正常:
  1.   LD      vmlinux
  2.   SORTTAB vmlinux
  3.   SYSMAP  System.map
  4.   MODPOST modules-only.symvers
  5.   OBJCOPY arch/arm64/boot/Image
  6.   GEN     Module.symvers
  7.   CC [M]  drivers/media/usb/gspca/gspca_main.mod.o
  8.   CC [M]  drivers/net/ethernet/mucse/rnp/rnp.mod.o
  9.   CC [M]  drivers/net/ethernet/mucse/rnpvf/rnpvf.mod.o
  10.   CC [M]  drivers/net/ethernet/realtek/r8125/r8125.mod.o
  11.   CC [M]  drivers/net/ethernet/realtek/r8168/r8168.mod.o
  12.   CC [M]  drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/bcmdhd.mod.o
  13.   CC [M]  drivers/net/phy/realtek.mod.o
  14.   CC [M]  drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/dhd_static_buf.mod.o
  15.   CC [M]  drivers/net/wireless/rockchip_wlan/rtl8821cu/8821cu.mod.o
  16.   CC [M]  drivers/net/wireless/rockchip_wlan/rtl8822ce/8822ce.mod.o
  17.   CC [M]  drivers/uio/uio.mod.o
  18.   LD [M]  drivers/media/usb/gspca/gspca_main.ko
  19.   LD [M]  drivers/net/ethernet/mucse/rnpvf/rnpvf.ko
  20.   LD [M]  drivers/net/ethernet/realtek/r8125/r8125.ko
  21.   LD [M]  drivers/net/phy/realtek.ko
  22.   LD [M]  drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/bcmdhd.ko
  23.   LD [M]  drivers/net/ethernet/mucse/rnp/rnp.ko
  24.   LD [M]  drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/dhd_static_buf.ko
  25.   LD [M]  drivers/net/ethernet/realtek/r8168/r8168.ko
  26.   LD [M]  drivers/net/wireless/rockchip_wlan/rtl8821cu/8821cu.ko
  27.   LD [M]  drivers/net/wireless/rockchip_wlan/rtl8822ce/8822ce.ko
  28.   LZ4C    arch/arm64/boot/Image.lz4
  29.   LD [M]  drivers/uio/uio.ko
  30.   Image:  resource.img (with aio-3588l.dtb logo.bmp logo_kernel.bmp) is ready
  31.   Image:  boot.img (../rockdev/Image-aio_3588l/boot.img + Image) is ready
  32.   Image:  zboot.img (../rockdev/Image-aio_3588l/boot.img + Image.lz4) is ready
复制代码


编译后,可以看到 kernel-5.10/boot.img,

3. 烧写编译的内核镜像 kernel-5.10/boot.img
步骤:
    3.1 将编译完成的boot.img复制到windows中
    3.2 打开 RKDevTool v2.93,并将设备进入LOADER模式;
    3.3 在软件的"Download Image" 界面,右键加载了步骤1中解压的parameter.txt
    3.4 选中boot项,并将boot的路径设置为 3.1中复制的boot.img路径;
    3.5 勾选“Write by Address",并执行"Run";(经过测试,烧写旧的boot.img是可以启动的,说明烧写流程应该没啥问题)
    3.6 烧写正常,设备正常重启。
   

【故障现象】
boot烧写完成后,设备正常重启,u-boot正常启动,kernel加载正常,但是kernel启动后出现watchdog异常、以及不间断的堆栈信息报错,启动信息如下:(具体参见附件 2024-05-06_21-51-36.zip (26.31 KB, 下载次数: 3)
  1. Starting kernel ...

  2. [    1.705709][    T0] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
  3. [    1.705730][    T0] Linux version 5.10.110 (xc@ubuntu1804) (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 Mon May 6 20:25:13 CST 2024
  4. [    1.720865][    T0] Machine model: Firefly AIO-3588L HDMI(Android)
  5. [    1.766504][    T0] earlycon: uart8250 at MMIO32 0x00000000feb50000 (options '')
  6. [    1.771370][    T0] printk: bootconsole [uart8250] enabled
  7. [    1.780014][    T0] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-cubic-lut@00000000': base 0x0000000000000000, size 0 MiB
  8. [    1.781250][    T0] Reserved memory: created CMA memory pool at 0x0000000010000000, size 128 MiB
  9. [    1.782052][    T0] OF: reserved mem: initialized node cma, compatible id shared-dma-pool
  10. [    2.000616][    T0] Zone ranges:
  11. [    2.000925][    T0]   DMA32    [mem 0x0000000000200000-0x00000000ffffffff]
  12. [    2.001564][    T0]   Normal   [mem 0x0000000100000000-0x00000004ffffffff]
  13. [    2.002197][    T0] Movable zone start for each node
  14. [    2.002652][    T0] Early memory node ranges
  15. [    2.003044][    T0]   node   0: [mem 0x0000000000200000-0x00000000083fffff]
  16. [    2.003681][    T0]   node   0: [mem 0x0000000009400000-0x00000000efffffff]
  17. [    2.004321][    T0]   node   0: [mem 0x0000000100000000-0x00000003fbffffff]
  18. [    2.004962][    T0]   node   0: [mem 0x00000003fc500000-0x00000003ffefffff]
  19. [    2.005601][    T0]   node   0: [mem 0x00000004f0000000-0x00000004ffffffff]
  20. [    2.006242][    T0] Initmem setup node 0 [mem 0x0000000000200000-0x00000004ffffffff]
  21. [    2.104570][    T0] On node 0, zone Normal: 256 pages in unavailable ranges
  22. [    2.104712][    T0] psci: probing for conduit method from DT.
  23. [    2.105882][    T0] psci: PSCIv1.1 detected in firmware.
  24. [    2.106368][    T0] psci: Using standard PSCI v0.2 function IDs
  25. [    2.106915][    T0] psci: Trusted OS migration not required
  26. [    2.107428][    T0] psci: SMC Calling Convention v1.2
  27. [    2.108272][    T0] percpu: Embedded 31 pages/cpu s88792 r8192 d29992 u126976
  28. [    2.109109][    T0] Detected VIPT I-cache on CPU0
  29. [    2.109573][    T0] CPU features: detected: GIC system register CPU interface
  30. [    2.110227][    T0] CPU features: detected: Virtualization Host Extensions
  31. [    2.110860][    T0] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
  32. [    2.111577][    T0] alternatives: patching kernel code
  33. [    2.114367][    T0] Built 1 zonelists, mobility grouping on.  Total pages: 4122720
  34. [    2.115070][    T0] Kernel command line: storagemedia=emmc androidboot.storagemedia=emmc androidboot.mode=normal  androidboot.storagenode=/mmc@fe2e0000 androidboot.dtb_idx=0 androidboot.dtbo_idx=0  androidboot.verifiedbootstate=orange androidboot.serialno=794e41464d1a4756 console=ttyFIQ0 firmware_class.path=/vendor/etc/firmware init=/init rootwait ro loop.max_part=7 androidboot.console=ttyFIQ0 androidboot.wificountrycode=CN androidboot.hardware=rk30board androidboot.boot_devices=fe2e0000.mmc,fe2c0000.mmc androidboot.selinux=permissive buildvariant=userdebug earlycon=uart8250,mmio32,0xfeb50000 irqchip.gicv3_pseudo_nmi=0
  35. [    2.122022][    T0] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
  36. [    2.123607][    T0] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
  37. [    2.124457][    T0] mem auto-init: stack:off, heap alloc:off, heap free:off
  38. [    2.131473][    T0] software IO TLB: mapped [mem 0x00000000e9f00000-0x00000000edf00000] (64MB)
  39. [    2.257590][    T0] Memory: 16190492K/16752640K available (21246K kernel code, 4262K rwdata, 12104K rodata, 1408K init, 988K bss, 431076K reserved, 131072K cma-reserved)
  40. [    2.259067][    T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
  41. [    2.259959][    T0] rcu: Preemptible hierarchical RCU implementation.
  42. [    2.260552][    T0] rcu:     RCU event tracing is enabled.
  43. [    2.261031][    T0]  Trampoline variant of Tasks RCU enabled.
  44. [    2.261557][    T0]  Tracing variant of Tasks RCU enabled.
  45. [    2.262059][    T0] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
  46. [    2.267670][    T0] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
  47. [    2.271063][    T0] GICv3: GIC: Using split EOI/Deactivate mode
  48. [    2.271610][    T0] GICv3: 480 SPIs implemented
  49. [    2.272026][    T0] GICv3: 0 Extended SPIs implemented
  50. [    2.272523][    T0] GICv3: Distributor has no Range Selector support
  51. [    2.273111][    T0] GICv3: 16 PPIs implemented
  52. [    2.273561][    T0] GICv3: CPU0: found redistributor 0 region 0:0x00000000fe680000
  53. [    2.274348][    T0] ITS [mem 0xfe640000-0xfe65ffff]
  54. [    2.274842][    T0] ITS@0x00000000fe640000: allocated 8192 Devices @3fc610000 (indirect, esz 8, psz 64K, shr 0)
  55. [    2.275786][    T0] ITS@0x00000000fe640000: allocated 32768 Interrupt Collections @3fc620000 (flat, esz 2, psz 64K, shr 0)
  56. [    2.276799][    T0] ITS: using cache flushing for cmd queue
  57. [    2.277337][    T0] ITS [mem 0xfe660000-0xfe67ffff]
  58. [    2.277821][    T0] ITS@0x00000000fe660000: allocated 8192 Devices @3fc640000 (indirect, esz 8, psz 64K, shr 0)
  59. [    2.278758][    T0] ITS@0x00000000fe660000: allocated 32768 Interrupt Collections @3fc650000 (flat, esz 2, psz 64K, shr 0)
  60. [    2.279771][    T0] ITS: using cache flushing for cmd queue
  61. [    2.280528][    T0] GICv3: using LPI property table @0x00000003fc660000
  62. [    2.281244][    T0] GIC: using cache flushing for LPI property table
  63. [    2.281834][    T0] GICv3: CPU0: using allocated LPI pending table @0x00000003fc670000
  64. [    2.282649][    T0] kfence: initialized - using 524288 bytes for 63 objects at 0x(____ptrval____)-0x(____ptrval____)
  65. [    2.283712][    T0] random: get_random_bytes called from start_kernel+0x268/0x500 with crng_init=0
  66. [    2.422505][    T0] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
  67. [    2.423952][    T0] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
  68. [    2.425006][    T0] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
  69. [    2.427098][    T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
  70. [    2.428108][    T0] pid_max: default: 32768 minimum: 301
  71. [    2.428680][    T0] LSM: Security Framework initializing
  72. [    2.429197][    T0] SELinux:  Initializing.
  73. [    2.429677][    T0] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
  74. [    2.430478][    T0] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
  75. [    2.433069][    T1] rcu: Hierarchical SRCU implementation.
  76. [    2.433924][    T1] Platform MSI: msi-controller@fe640000 domain created
  77. [    2.434552][    T1] Platform MSI: msi-controller@fe660000 domain created
  78. [    2.435524][    T1] PCI/MSI: /interrupt-controller@fe600000/msi-controller@fe640000 domain created
  79. [    2.436362][    T1] PCI/MSI: /interrupt-controller@fe600000/msi-controller@fe660000 domain created
  80. [    2.437850][    T1] smp: Bringing up secondary CPUs ...
  81. I/TC: Secondary CPU 1 initializing
  82. I/TC: Secondary CPU 1 switching to normal world boot
  83. I/TC: Secondary CPU 2 initializing
  84. I/TC: Secondary CPU 2 switching to normal world boot
  85. I/TC: Secondary CPU 3 initializing
  86. I/TC: Secondary CPU 3 switching to normal world boot
  87. I/TC: Secondary CPU 4 initializing
  88. I/TC: Secondary CPU 4 switching to normal world boot
  89. I/TC: Secondary CPU 5 initializing
  90. I/TC: Secondary CPU 5 switching to normal world boot
  91. I/TC: Secondary CPU 6 initializing
  92. I/TC: Secondary CPU 6 switching to normal world boot
  93. I/TC: Secondary CPU 7 initializing
  94. I/TC: Secondary CPU 7 switching to normal world boot
  95. [    2.439527][    T0] Detected VIPT I-cache on CPU1
  96. [    2.439554][    T0] GICv3: CPU1: found redistributor 100 region 0:0x00000000fe6a0000
  97. [    2.439569][    T0] GICv3: CPU1: using allocated LPI pending table @0x00000003fc680000
  98. [    2.439608][    T0] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
  99. [    2.440896][    T0] Detected VIPT I-cache on CPU2
  100. [    2.440916][    T0] GICv3: CPU2: found redistributor 200 region 0:0x00000000fe6c0000
  101. [    2.440930][    T0] GICv3: CPU2: using allocated LPI pending table @0x00000003fc690000
  102. [    2.440966][    T0] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
  103. [    2.442194][    T0] Detected VIPT I-cache on CPU3
  104. [    2.442212][    T0] GICv3: CPU3: found redistributor 300 region 0:0x00000000fe6e0000
  105. [    2.442225][    T0] GICv3: CPU3: using allocated LPI pending table @0x00000003fc6a0000
  106. [    2.442259][    T0] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
  107. [    2.443489][    T0] CPU features: detected: Spectre-v4
  108. [    2.443491][    T0] CPU features: detected: Spectre-BHB
  109. [    2.443493][    T0] Detected PIPT I-cache on CPU4
  110. [    2.443504][    T0] GICv3: CPU4: found redistributor 400 region 0:0x00000000fe700000
  111. [    2.443512][    T0] GICv3: CPU4: using allocated LPI pending table @0x00000003fc6b0000
  112. [    2.443535][    T0] CPU4: Booted secondary processor 0x0000000400 [0x414fd0b0]
  113. [    2.444709][    T0] Detected PIPT I-cache on CPU5
  114. [    2.444721][    T0] GICv3: CPU5: found redistributor 500 region 0:0x00000000fe720000
  115. [    2.444729][    T0] GICv3: CPU5: using allocated LPI pending table @0x00000003fc6c0000
  116. [    2.444751][    T0] CPU5: Booted secondary processor 0x0000000500 [0x414fd0b0]
  117. [    2.445952][    T0] Detected PIPT I-cache on CPU6
  118. [    2.445963][    T0] GICv3: CPU6: found redistributor 600 region 0:0x00000000fe740000
  119. [    2.445971][    T0] GICv3: CPU6: using allocated LPI pending table @0x00000003fc6d0000
  120. [    2.445994][    T0] CPU6: Booted secondary processor 0x0000000600 [0x414fd0b0]
  121. [    2.447172][    T0] Detected PIPT I-cache on CPU7
  122. [    2.447183][    T0] GICv3: CPU7: found redistributor 700 region 0:0x00000000fe760000
  123. [    2.447191][    T0] GICv3: CPU7: using allocated LPI pending table @0x00000003fc6e0000
  124. [    2.447213][    T0] CPU7: Booted secondary processor 0x0000000700 [0x414fd0b0]
  125. [    2.447273][    T1] smp: Brought up 1 node, 8 CPUs
  126. [    2.466332][    T1] SMP: Total of 8 processors activated.
  127. [    2.466829][    T1] CPU features: detected: Privileged Access Never
  128. [    2.467404][    T1] CPU features: detected: LSE atomic instructions
  129. [    2.467979][    T1] CPU features: detected: User Access Override
  130. [    2.468530][    T1] CPU features: detected: 32-bit EL0 Support
  131. [    2.469065][    T1] CPU features: detected: Common not Private translations
  132. [    2.469715][    T1] CPU features: detected: RAS Extension Support
  133. [    2.470274][    T1] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
  134. [    2.471126][    T1] CPU features: detected: CRC32 instructions
  135. [    2.471661][    T1] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
  136. [    2.472363][    T1] CPU features: detected: RCpc load-acquire (LDAPR)
  137. [    2.512719][    T1] CPU: All CPU(s) started at EL2
  138. [    2.516492][    T1] devtmpfs: initialized
  139. [    2.528053][    T1] dto_overide: not find dto node
  140. [    2.528884][    T1] Registered cp15_barrier emulation handler
  141. [    2.528898][    T7] Trying to unpack rootfs image as initramfs...
  142. [    2.529964][    T1] Registered setend emulation handler
  143. [    2.529968][    T1] KASLR disabled due to lack of seed
  144. [    2.530033][    T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
  145. [    2.531878][    T1] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
  146. [    2.532624][    T1] pinctrl core: initialized pinctrl subsystem
  147. [    2.533524][    T1] NET: Registered protocol family 16
  148. [    2.534506][    T1] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
  149. [    2.535324][    T1] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
  150. [    2.536130][    T1] audit: initializing netlink subsys (disabled)
  151. [    2.536808][   T61] audit: type=2000 audit(0.109:1): state=initialized audit_enabled=0 res=1
  152. [    2.537245][    T1] thermal_sys: Registered thermal governor 'fair_share'
  153. [    2.537583][    T1] thermal_sys: Registered thermal governor 'step_wise'
  154. [    2.538199][    T1] thermal_sys: Registered thermal governor 'user_space'
  155. [    2.538800][    T1] thermal_sys: Registered thermal governor 'power_allocator'
  156. [    2.539523][    T1] thermal thermal_zone1: power_allocator: sustainable_power will be estimated
  157. [    2.540970][    T1] thermal thermal_zone2: power_allocator: sustainable_power will be estimated
  158. [    2.541776][    T1] thermal thermal_zone3: power_allocator: sustainable_power will be estimated
  159. [    2.542701][    T1] thermal thermal_zone5: power_allocator: sustainable_power will be estimated
  160. [    2.543502][    T1] thermal thermal_zone6: power_allocator: sustainable_power will be estimated
  161. [    2.544308][    T1] cpuidle: using governor menu
  162. [    2.544727][    T1] Registered FIQ tty driver
  163. [    2.545225][    T1] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
  164. [    2.546022][    T1] ASID allocator initialised with 65536 entries
  165. [    2.547892][    T1] ramoops: boot-log-0      0x8000@0x0000000000110000
  166. [    2.548450][    T1] ramoops: dmesg-0 0x14000@0x0000000000118000
  167. [    2.548991][    T1] ramoops: dmesg-1 0x14000@0x000000000012c000
  168. [    2.549537][    T1] ramoops: console 0x80000@0x0000000000140000
  169. [    2.550072][    T1] ramoops: pmsg    0x30000@0x00000000001c0000
  170. [    2.550883][    T1] printk: console [ramoops-1] enabled
  171. [    2.551423][    T1] pstore: Registered ramoops as persistent store backend
  172. [    2.552045][    T1] ramoops: using 0xe0000@0x110000, ecc: 0
  173. [    2.572780][    T7] Freeing initrd memory: 1316K
  174. [    2.595383][    T1] rockchip-gpio fd8a0000.gpio: probed /pinctrl/gpio@fd8a0000
  175. [    2.596205][    T1] rockchip-gpio fec20000.gpio: probed /pinctrl/gpio@fec20000
  176. [    2.597036][    T1] rockchip-gpio fec30000.gpio: probed /pinctrl/gpio@fec30000
  177. [    2.597821][    T1] rockchip-gpio fec40000.gpio: probed /pinctrl/gpio@fec40000
  178. [    2.598638][    T1] rockchip-gpio fec50000.gpio: probed /pinctrl/gpio@fec50000
  179. [    2.599319][    T1] rockchip-pinctrl pinctrl: probed pinctrl
  180. [    2.612709][    T1] Lontium LT9211C driver installing....
  181. [    2.613659][    T1] fiq_debugger fiq_debugger.0: IRQ fiq not found
  182. [    2.614221][    T1] fiq_debugger fiq_debugger.0: IRQ wakeup not found
  183. [    2.614804][    T1] fiq_debugger_probe: could not install nmi irq handler
  184. [[    2.615461][    T1] printk: console [ttyFIQ0] enabled
  185.     2.615461][    T1] printk: console [ttyFIQ0] enabled
  186. [    2.616355][    T1] printk: bootconsole [uart8250] disabled
  187. [    2.616355][    T1] printk: bootconsole [uart8250] disabled
  188. [    2.616904][    T1] Registered fiq debugger ttyFIQ0
  189. [    2.617210][    T1] vcc5v0_sys: supplied by vcc12v_dcin
  190. [    2.617306][    T1] vcc5v0_usbdcin: supplied by vcc12v_dcin
  191. [    2.617388][    T1] vcc5v0_usb: supplied by vcc12v_dcin
  192. [    2.617483][    T1] vcc_1v1_nldo_s3: supplied by vcc5v0_sys
  193. [    2.617587][    T1] vcc5v0_host: supplied by vcc5v0_usb
  194. [    2.617770][    T1] vcc5v0_host3: supplied by vcc5v0_usb
  195. [    2.617864][    T1] vcc_sata_pwr_en: supplied by vcc12v_dcin
  196. [    2.625626][    T1] vcc3v3_pcie30: supplied by vcc12v_dcin
  197. [    2.625728][    T1] vcc3v3_pcie20_wifi: supplied by vcc12v_dcin
  198. [    2.626117][    T1] iommu: Default domain type: Translated
  199. [    2.626175][    T1] rk_iommu fdab9000.iommu: version = 2
  200. [    2.626477][    T1] rk_iommu fdb50800.iommu: version = 2
  201. [    2.626678][    T1] rk_iommu fdb60f00.iommu: version = 2
  202. [    2.626821][    T1] rk_iommu fdb70f00.iommu: version = 2
  203. [    2.626952][    T1] rk_iommu fdb90480.iommu: version = 2
  204. [    2.627103][    T1] rk_iommu fdba0800.iommu: version = 2
  205. [    2.627257][    T1] rk_iommu fdba4800.iommu: version = 2
  206. [    2.627408][    T1] rk_iommu fdba8800.iommu: version = 2
  207. [    2.627560][    T1] rk_iommu fdbac800.iommu: version = 2
  208. [    2.627712][    T1] rk_iommu fdbb0800.iommu: version = 2
  209. [    2.627863][    T1] rk_iommu fdbdf000.iommu: version = 2
  210. [    2.628070][    T1] rk_iommu fdbef000.iommu: version = 2
  211. [    2.628302][    T1] rk_iommu fdc38700.iommu: version = 2
  212. [    2.628535][    T1] rk_iommu fdc48700.iommu: version = 2
  213. [    2.628706][    T1] rk_iommu fdce0800.iommu: version = 2
  214. [    2.628802][    T1] rk_iommu fdd97e00.iommu: version = 2
  215. [    2.629054][    T1] SCSI subsystem initialized
  216. [    2.629120][    T1] usbcore: registered new interface driver usbfs
  217. [    2.629134][    T1] usbcore: registered new interface driver hub
  218. [    2.629147][    T1] usbcore: registered new device driver usb
  219. [    2.629270][    T1] mc: Linux media interface: v0.10
  220. [    2.629280][    T1] videodev: Linux video capture interface: v2.00
  221. [    2.629299][    T1] pps_core: LinuxPPS API ver. 1 registered
  222. [    2.629303][    T1] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
  223. [    2.629309][    T1] PTP clock support registered
  224. [    2.629502][    T1] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
  225. [    2.629533][    T1] arm-scmi firmware:scmi: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
  226. [    2.630395][    T1] Advanced Linux Sound Architecture Driver Initialized.
  227. [    2.630550][    T1] Bluetooth: Core ver 2.22
  228. [    2.630562][    T1] NET: Registered protocol family 31
  229. [    2.630565][    T1] Bluetooth: HCI device and connection manager initialized
  230. [    2.630571][    T1] Bluetooth: HCI socket layer initialized
  231. [    2.630575][    T1] Bluetooth: L2CAP socket layer initialized
  232. [    2.630582][    T1] Bluetooth: SCO socket layer initialized
  233. [    2.631836][    T1] rockchip-cpuinfo cpuinfo: SoC            : 35881000
  234. [    2.631841][    T1] rockchip-cpuinfo cpuinfo: Serial         : 794e41464d1a4756
  235. [    2.632093][    T1] clocksource: Switched to clocksource arch_sys_counter
  236. [    2.958621][    T1] VFS: Disk quotas dquot_6.6.0
  237. [    2.958647][    T1] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
  238. [    2.959326][    T1] NET: Registered protocol family 2
  239. [    2.959659][    T1] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
  240. [    2.963292][    T1] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
  241. [    2.963447][    T1] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
  242. [    2.964118][    T1] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
  243. [    2.964802][    T1] TCP: Hash tables configured (established 131072 bind 65536)
  244. [    2.964855][    T1] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
  245. [    2.965115][    T1] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
  246. [    2.965414][    T1] NET: Registered protocol family 1
  247. [    2.965612][    T1] RPC: Registered named UNIX socket transport module.
  248. [    2.965619][    T1] RPC: Registered udp transport module.
  249. [    2.965622][    T1] RPC: Registered tcp transport module.
  250. [    2.965626][    T1] RPC: Registered tcp NFSv4.1 backchannel transport module.
  251. [    2.965873][    T1] PCI: CLS 0 bytes, default 64
  252. [    2.966625][    T1] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
  253. [    2.968460][    T1] Initialise system trusted keyrings
  254. [    2.968521][    T1] workingset: timestamp_bits=46 max_order=22 bucket_order=0
  255. [    2.970070][    T1] NFS: Registering the id_resolver key type
  256. [    2.970081][    T1] Key type id_resolver registered
  257. [    2.970084][    T1] Key type id_legacy registered
  258. [    2.970108][    T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
  259. [    2.970114][    T1] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
  260. [    2.970200][    T1] utf8_selftest: All 154 tests passed
  261. [    2.970429][    T1] Key type cifs.idmap registered
  262. [    2.970435][    T1] ntfs: driver 2.1.32 [Flags: R/W].
  263. [    2.970477][    T1] fuse: init (API version 7.32)
  264. [    2.991769][    T1] Key type asymmetric registered
  265. [    2.991776][    T1] Asymmetric key parser 'x509' registered
  266. [    2.991790][    T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
  267. [    2.991794][    T1] io scheduler mq-deadline registered
  268. [    2.991800][    T1] io scheduler kyber registered
  269. [    2.991833][    T1] io scheduler bfq registered
  270. [    2.992227][    T1] rockchip-csi2-dphy-hw fedc0000.csi2-dphy0-hw: csi2 dphy hw probe successfully!
  271. [    2.992313][    T1] rockchip-csi2-dphy-hw fedc8000.csi2-dphy1-hw: csi2 dphy hw probe successfully!
  272. [    2.992467][    T1] rockchip-csi2-dphy csi2-dphy0: csi2 dphy0 probe successfully!
  273. [    2.992711][    T1] rockchip-csi2-dphy csi2-dphy3: csi2 dphy3 probe successfully!
  274. [    2.993400][    T1] input: fd5d0000.syscon:usb2-phy@0 as /devices/platform/fd5d0000.syscon/fd5d0000.syscon:usb2-phy@0/input/input0
  275. [    2.994437][    T1] input: fd5d8000.syscon:usb2-phy@8000 as /devices/platform/fd5d8000.syscon/fd5d8000.syscon:usb2-phy@8000/input/input1
  276. [    2.995628][    T1] input: fd5dc000.syscon:usb2-phy@c000 as /devices/platform/fd5dc000.syscon/fd5dc000.syscon:usb2-phy@c000/input/input2
  277. [    2.996850][    T1] input: fd5d4000.syscon:usb2-phy@4000 as /devices/platform/fd5d4000.syscon/fd5d4000.syscon:usb2-phy@4000/input/input3
  278. [    3.000199][    T1] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy init success
  279. [    3.000984][    T1] rockchip-hdptx-phy-hdmi fed70000.hdmiphy: hdptx phy init success
  280. [    3.002478][    T1] Firefly gpio driver init!
  281. [    3.002555][    T1] Firefly gpio driver register return : 0
  282. [    3.003541][  T152] rk-pcie fe150000.pcie: invalid prsnt-gpios property in node
  283. [    3.003624][  T153] rk-pcie fe170000.pcie: invalid prsnt-gpios property in node
  284. [    3.003801][    T1] iep: Module initialized.
  285. [    3.003829][    T1] mpp_service mpp-srv: 6697a9e7d author: xuchuan 2024-04-29 init(kernel):添加kernel-5.10源码
  286. [    3.003833][    T1] mpp_service mpp-srv: probe start
  287. [    3.004928][    T1] mpp_vdpu2 fdb50400.vdpu: Adding to iommu group 1
  288. [    3.005136][    T1] mpp_vdpu2 fdb50400.vdpu: probe device
  289. [    3.005226][    T1] mpp_vdpu2 fdb50400.vdpu: reset_group->rw_sem_on=0
  290. [    3.005233][    T1] mpp_vdpu2 fdb50400.vdpu: reset_group->rw_sem_on=0
  291. [    3.005309][    T1] mpp_vdpu2 fdb50400.vdpu: probing finish
  292. [    3.005489][    T1] mpp_vepu2 jpege-ccu: probing start
  293. [    3.005494][    T1] mpp_vepu2 jpege-ccu: probing finish
  294. [    3.005568][    T1] mpp_vepu2 fdb50000.vepu: Adding to iommu group 1
  295. [    3.005645][    T1] mpp_vepu2 fdb50000.vepu: probing start
  296. [    3.005719][    T1] mpp_vepu2 fdb50000.vepu: reset_group->rw_sem_on=0
  297. [    3.005724][    T1] mpp_vepu2 fdb50000.vepu: reset_group->rw_sem_on=0
  298. [    3.005795][    T1] mpp_vepu2 fdb50000.vepu: probing finish
  299. [    3.005890][    T1] mpp_vepu2 fdba0000.jpege-core: Adding to iommu group 5
  300. [    3.006018][    T1] mpp_vepu2 fdba0000.jpege-core: probing start
  301. [    3.006102][    T1] mpp_vepu2 fdba0000.jpege-core: attach ccu success
  302. [    3.006188][    T1] mpp_vepu2 fdba0000.jpege-core: probing finish
  303. [    3.006272][    T1] mpp_vepu2 fdba4000.jpege-core: Adding to iommu group 6
  304. [    3.006400][    T1] mpp_vepu2 fdba4000.jpege-core: probing start
  305. [    3.006476][    T1] mpp_vepu2 fdba4000.jpege-core: attach ccu success
  306. [    3.006546][    T1] mpp_vepu2 fdba4000.jpege-core: probing finish
  307. [    3.006628][    T1] mpp_vepu2 fdba8000.jpege-core: Adding to iommu group 7
  308. [    3.006756][    T1] mpp_vepu2 fdba8000.jpege-core: probing start
  309. [    3.006831][    T1] mpp_vepu2 fdba8000.jpege-core: attach ccu success
  310. [    3.006899][    T1] mpp_vepu2 fdba8000.jpege-core: probing finish
  311. [    3.006982][    T1] mpp_vepu2 fdbac000.jpege-core: Adding to iommu group 8
  312. [    3.007109][    T1] mpp_vepu2 fdbac000.jpege-core: probing start
  313. [    3.007182][    T1] mpp_vepu2 fdbac000.jpege-core: attach ccu success
  314. [    3.007252][    T1] mpp_vepu2 fdbac000.jpege-core: probing finish
  315. [    3.007485][    T1] mpp-iep2 fdbb0000.iep: Adding to iommu group 9
  316. [    3.007615][    T1] mpp-iep2 fdbb0000.iep: probe device
  317. [    3.007711][    T1] mpp-iep2 fdbb0000.iep: allocate roi buffer failed
  318. [    3.007763][    T1] mpp-iep2 fdbb0000.iep: probing finish
  319. [    3.007937][    T1] mpp_jpgdec fdb90000.jpegd: Adding to iommu group 4
  320. [    3.008136][    T1] mpp_jpgdec fdb90000.jpegd: probe device
  321. [    3.008274][    T1] mpp_jpgdec fdb90000.jpegd: probing finish
  322. [    3.008573][    T1] mpp_rkvdec2 fdc30000.rkvdec-ccu: rkvdec-ccu, probing start
  323. [    3.008620][    T1] mpp_rkvdec2 fdc30000.rkvdec-ccu: probing finish
  324. [    3.008691][    T1] mpp_rkvdec2 fdc38100.rkvdec-core: Adding to iommu group 12
  325. [    3.008960][    T1] mpp_rkvdec2 fdc38100.rkvdec-core: rkvdec-core, probing start
  326. [    3.009052][    T1] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_a is not found!
  327. [    3.009056][    T1] rkvdec2_init:1008: No niu aclk reset resource define
  328. [    3.009061][    T1] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_h is not found!
  329. [    3.009064][    T1] rkvdec2_init:1011: No niu hclk reset resource define
  330. [    3.009081][    T1] mpp_rkvdec2 fdc38100.rkvdec-core: no regulator, devfreq is disabled
  331. [    3.009128][    T1] mpp_rkvdec2 fdc38100.rkvdec-core: core_mask=00010001
  332. [    3.009131][    T1] mpp_rkvdec2 fdc38100.rkvdec-core: attach ccu as core 0
  333. [    3.013930][  T153] rk-pcie fe170000.pcie: missing legacy IRQ resource
  334. [    3.013942][  T153] rk-pcie fe170000.pcie: IRQ msi not found
  335. [    3.013946][  T153] rk-pcie fe170000.pcie: use outband MSI support
  336. [    3.013950][  T153] rk-pcie fe170000.pcie: Missing *config* reg space
  337. [    3.013957][  T153] rk-pcie fe170000.pcie: host bridge /pcie@fe170000 ranges:
  338. [    3.013967][  T153] rk-pcie fe170000.pcie:      err 0x00f2000000..0x00f20fffff -> 0x00f2000000
  339. [    3.013975][  T153] rk-pcie fe170000.pcie:       IO 0x00f2100000..0x00f21fffff -> 0x00f2100000
  340. [    3.013981][  T153] rk-pcie fe170000.pcie:      MEM 0x00f2200000..0x00f2ffffff -> 0x00f2200000
  341. [    3.013986][  T153] rk-pcie fe170000.pcie:      MEM 0x0980000000..0x09bfffffff -> 0x0980000000
  342. <font color="#ff0000">[    3.014010][  T153] rk-pcie fe170000.pcie: Missing *config* reg space
  343. [    3.014034][  T153] rk-pcie fe170000.pcie: invalid resource
  344. [    3.519866][  T153] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
  345. [    3.545426][  T153] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
  346. [    3.572092][  T153] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
  347. [    3.598759][  T153] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
  348. [    3.625431][  T153] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
  349. [    3.652095][  T153] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
  350. [    3.678759][  T153] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
  351. [    3.705426][  T153] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
  352. [    3.732092][  T153] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
  353. [    3.758759][  T153] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
  354. [    6.185424][  T153] rk-pcie fe170000.pcie: PCIe Link Fail
  355. [    6.185430][  T153] rk-pcie fe170000.pcie: failed to initialize host
  356. [   18.445422][    C3] ------------[ cut here ]------------
  357. [   18.445441][    C3] Watchdog detected hard LOCKUP on cpu 4
  358. [   18.445467][    C3] WARNING: CPU: 3 PID: 0 at kernel/watchdog.c:418 watchdog_timer_fn+0x168/0x3c8
  359. [   18.445480][    C3] Modules linked in:
  360. [   18.445495][    C3] CPU: 3 PID: 0 Comm: swapper/3 Not tainted 5.10.110 #1
  361. [   18.445502][    C3] Hardware name: Firefly AIO-3588L HDMI(Android) (DT)
  362. [   18.445513][    C3] pstate: 60400089 (nZCv daIf +PAN -UAO -TCO BTYPE=--)
  363. [   18.445522][    C3] pc : watchdog_timer_fn+0x168/0x3c8
  364. [   18.445531][    C3] lr : watchdog_timer_fn+0x158/0x3c8</font>
  365. [   18.445539][    C3] sp : ffffffc012753e20
  366. [   18.445546][    C3] x29: ffffffc012753e30 x28: ffffffc0121d38d8
  367. [   18.445558][    C3] x27: 0000000000000004 x26: ffffffc0121d3840
  368. [   18.445570][    C3] x25: ffffffc01220a000 x24: 000000000000000b
  369. [   18.445582][    C3] x23: ffffffc0121d3830 x22: 0000000000000000
  370. [   18.445593][    C3] x21: ffffffc01220a5a8 x20: ffffff84fde3b850
  371. [   18.445605][    C3] x19: ffffffc012953da0 x18: ffffffc01273d038
  372. [   18.445616][    C3] x17: 0000000000000020 x16: 0000000000000118
  373. [   18.445628][    C3] x15: 0000000000000004 x14: 0000000000003fff
  374. [   18.445639][    C3] x13: ffffffc01228ccf0 x12: 0000000000000003
  375. [   18.445650][    C3] x11: 00000000ffffbfff x10: 00000000ffffffff
  376. [   18.445662][    C3] x9 : 1bd950b0efe99e00 x8 : 1bd950b0efe99e00
  377. [   18.445673][    C3] x7 : 554b434f4c206472 x6 : ffffffc01263802e
  378. [   18.445685][    C3] x5 : ffffffffffffffff x4 : 0000000000000000
  379. [   18.445696][    C3] x3 : ffffffc011eee5be x2 : 0000000000000000
  380. [   18.445708][    C3] x1 : 0000000000000000 x0 : ffffffc0126b8780
  381. [   18.445719][    C3] Call trace:
  382. [   18.445730][    C3]  watchdog_timer_fn+0x168/0x3c8
  383. [   18.445741][    C3]  __run_hrtimer+0xa8/0x2a8
  384. [   18.445750][    C3]  hrtimer_interrupt+0x174/0x3fc
  385. [   18.445761][    C3]  arch_timer_handler_phys+0x40/0x54
  386. [   18.445771][    C3]  handle_percpu_devid_irq+0x88/0x280
  387. [   18.445782][    C3]  __handle_domain_irq+0x80/0xd0
  388. [   18.445793][    C3]  gic_handle_irq+0x78/0x154
  389. [   18.445803][    C3]  el1_irq+0xe4/0x1c0
  390. [   18.445815][    C3]  arch_cpu_idle+0x1c/0x40
  391. [   18.445825][    C3]  default_idle_call+0x3c/0x194
  392. [   18.445836][    C3]  cpuidle_idle_call+0x64/0x238
  393. [   18.445845][    C3]  do_idle+0xac/0xfc
  394. [   18.445854][    C3]  cpu_startup_entry+0x28/0x2c
  395. [   18.445865][    C3]  secondary_start_kernel+0x1b4/0x274
  396. [   18.445873][    C3]
  397. [   18.445873][    C3] PC: 0xffffffc0101523dc:
  398. [   18.445880][    C3] 21dc  a9034ff4 910003fd aa0003f7 f0011520 91172000 aa0403f3 aa0303f4 aa0203f5
  399. [   18.445908][    C3] 21fc  2a0103f6 944d6998 aa1703e0 2a1603e1 aa1503e2 aa1403e3 aa1303e4 97fc18ff
  400. [   18.445935][    C3] 221c  2a0003f3 34000156 35000133 f00105a8 f00105a9 b94fe10a b94dd129 0a090149
  401. [   18.445962][    C3] 223c  92401d29 f907f109 94000112 f0011520 91172000 944d69a7 2a1303e0 a9434ff4
  402. [   18.445988][    C3] 225c  a94257f6 f9400bf7 a8c47bfd f85f8e5e d50323bf d65f03c0 d503233f d101c3ff
  403. [   18.446014][    C3] 227c  f800865e a9017bfd a9026ffc a90367fa a9045ff8 a90557f6 a9064ff4 910043fd
  404. [   18.446039][    C3] 229c  f000eee8 f943d908 900105d9 f90007e8 d53cd048 f9400729 b4000669 b001041a
  405. [   18.446065][    C3] 22bc  9121035a b0010417 f0010449 f87a690c 9120c2f7 9136e129 900105ca b201f3eb
  406. [   18.446091][    C3] 22dc  f8776918 f8696913 b9401956 f295556b 9b0b7d89 b200f3ea aa0003f4 eb0a013f
  407. [   18.446117][    C3] 22fc  54000868 b00103c9 91002129 f00105aa b8696915 f947f94a 910003e1 2a1503e0
  408. [   18.446142][    C3] 231c  f90003ea 94169465 f00105bb b94f8b68 6b08001f 540000c3 910003e0 52800101
  409. [   18.446168][    C3] 233c  aa1f03e2 94159a85 b94f8b68 6b15001f 1a800101 6b08003f 540005a2 900105d5
  410. [   18.446194][    C3] 235c  d50339bf 9116a2b5 f8615aa8 b0010409 9120a129 3869690a 340000aa 3828693f
  411. [   18.446220][    C3] 237c  14000023 2a1f03e0 1400008a b001040a 9121214a f87a6909 f86a690b 2a0103fb
  412. [   18.446245][    C3] 239c  eb09017f 540002a1 b001041c 9123639c 387c6908 350002c8 f00105a8 b94fe908
  413. [   18.446271][    C3] 23bc  35001228 f000ec60 912a8400 97fbdf47 d0012b20 911e0000 aa1f03e1 aa1f03e2
  414. [   18.446297][    C3] 23dc* d4210000 97fcb563 f87b7aa8 52800029 383c6909 14000006 f87b7aab f8286949
  415. [   18.446323][    C3] 23fc  b0010408 91236108 3828697f d53cd048 f87a6909 b0010415 912242b5 91000529
  416. [   18.446349][    C3] 241c  f83a6909 d53cd048 8b150100 97fd6846 360001c0 b00103c9 d53cd048 b835691f
  417. [   18.446375][    C3] 243c  91002129 d53cd048 b8696900 b0010409 9122c129 90000001 8b090103 9118f021
  418. [   18.446400][    C3] 245c  aa1f03e2 97ffbd7b f9401a88 900105c9 f9401135 f9401908 d63f0100 aa0003e1
  419. [   18.446426][    C3] 247c  aa1403e0 aa1503e2 97feabce b100071f 540007c0 97fd0e05 39402329 aa0003e8
  420. [   18.446452][    C3] 249c  52800020 36080869 f00105a9 b94fdd29 34000809 d35efd08 531f7929 cb08030a
  421. [   18.446478][    C3] 24bc  ab29c15f 54000745 6b180114 54000700 34000176 d0012b28 f943cd08 37000688
  422. [   18.446503][    C3] 24dc  d503201f d503201f d0012b29 52800028 911e6129 f8a83128 370005a8 97fd0deb
  423. [   18.446529][    C3] 24fc  d35efc09 d53cd048 f8376909 b00103c9 91002129 d53cd048 d538410a b8696901
  424. [   18.446555][    C3] 251c  b9455144 9000e440 911c6143 912afc00 2a1403e2 944d4f8b 97ff3879 b40005f3
  425. [   18.446581][    C3] 253c  aa1303e0 97fae056 340000f6 d503201f d503201f d0012b28 52800029 911e6108
  426. [   18.446607][    C3] 255c  f8691109 528001c0 2a1f03e1 97fbddbb f00105a8 b94ff908 340001a8 9000e8c0
  427. [   18.446632][    C3] 257c  910bd800 944d4e8e b0010409 9120e129 d53cd048 3869690a 350002aa 97fd0dc3
  428. [   18.446658][    C3] 259c  d35efc09 d53cd048 f8376909 52800020 f000eee9 f94007e8 f943d929 eb08013f
  429. [   18.446684][    C3] 25bc  540001a1 a9417bfd a9464ff4 a94557f6 a9445ff8 a94367fa a9426ffc f85f8e5e
  430. [   18.446710][    C3]
  431. [   18.446710][    C3] LR: 0xffffffc0101523cc:
  432. [   18.446717][    C3] 21cc  f800865e a9bc7bfd f9000bf7 a90257f6 a9034ff4 910003fd aa0003f7 f0011520
  433. [   18.446742][    C3] 21ec  91172000 aa0403f3 aa0303f4 aa0203f5 2a0103f6 944d6998 aa1703e0 2a1603e1
  434. [   18.446768][    C3] 220c  aa1503e2 aa1403e3 aa1303e4 97fc18ff 2a0003f3 34000156 35000133 f00105a8
  435. [   18.446794][    C3] 222c  f00105a9 b94fe10a b94dd129 0a090149 92401d29 f907f109 94000112 f0011520
  436. [   18.446820][    C3] 224c  91172000 944d69a7 2a1303e0 a9434ff4 a94257f6 f9400bf7 a8c47bfd f85f8e5e
  437. [   18.446846][    C3] 226c  d50323bf d65f03c0 d503233f d101c3ff f800865e a9017bfd a9026ffc a90367fa
  438. [   18.446871][    C3] 228c  a9045ff8 a90557f6 a9064ff4 910043fd f000eee8 f943d908 900105d9 f90007e8
  439. [   18.446898][    C3] 22ac  d53cd048 f9400729 b4000669 b001041a 9121035a b0010417 f0010449 f87a690c
  440. [   18.446924][    C3] 22cc  9120c2f7 9136e129 900105ca b201f3eb f8776918 f8696913 b9401956 f295556b
  441. [   18.446949][    C3] 22ec  9b0b7d89 b200f3ea aa0003f4 eb0a013f 54000868 b00103c9 91002129 f00105aa
  442. [   18.446975][    C3] 230c  b8696915 f947f94a 910003e1 2a1503e0 f90003ea 94169465 f00105bb b94f8b68
  443. [   18.447001][    C3] 232c  6b08001f 540000c3 910003e0 52800101 aa1f03e2 94159a85 b94f8b68 6b15001f
  444. [   18.447027][    C3] 234c  1a800101 6b08003f 540005a2 900105d5 d50339bf 9116a2b5 f8615aa8 b0010409
  445. [   18.447053][    C3] 236c  9120a129 3869690a 340000aa 3828693f 14000023 2a1f03e0 1400008a b001040a
  446. [   18.447079][    C3] 238c  9121214a f87a6909 f86a690b 2a0103fb eb09017f 540002a1 b001041c 9123639c
  447. [   18.447105][    C3] 23ac  387c6908 350002c8 f00105a8 b94fe908 35001228 f000ec60 912a8400 97fbdf47
  448. [   18.447131][    C3] 23cc* d0012b20 911e0000 aa1f03e1 aa1f03e2 d4210000 97fcb563 f87b7aa8 52800029
  449. [   18.447156][    C3] 23ec  383c6909 14000006 f87b7aab f8286949 b0010408 91236108 3828697f d53cd048
  450. [   18.447182][    C3] 240c  f87a6909 b0010415 912242b5 91000529 f83a6909 d53cd048 8b150100 97fd6846
  451. [   18.447208][    C3] 242c  360001c0 b00103c9 d53cd048 b835691f 91002129 d53cd048 b8696900 b0010409
  452. [   18.447233][    C3] 244c  9122c129 90000001 8b090103 9118f021 aa1f03e2 97ffbd7b f9401a88 900105c9
  453. [   18.447259][    C3] 246c  f9401135 f9401908 d63f0100 aa0003e1 aa1403e0 aa1503e2 97feabce b100071f
  454. [   18.447284][    C3] 248c  540007c0 97fd0e05 39402329 aa0003e8 52800020 36080869 f00105a9 b94fdd29
  455. [   18.447310][    C3] 24ac  34000809 d35efd08 531f7929 cb08030a ab29c15f 54000745 6b180114 54000700
  456. [   18.447336][    C3] 24cc  34000176 d0012b28 f943cd08 37000688 d503201f d503201f d0012b29 52800028
  457. [   18.447361][    C3] 24ec  911e6129 f8a83128 370005a8 97fd0deb d35efc09 d53cd048 f8376909 b00103c9
  458. [   18.447388][    C3] 250c  91002129 d53cd048 d538410a b8696901 b9455144 9000e440 911c6143 912afc00
  459. [   18.447414][    C3] 252c  2a1403e2 944d4f8b 97ff3879 b40005f3 aa1303e0 97fae056 340000f6 d503201f
  460. [   18.447439][    C3] 254c  d503201f d0012b28 52800029 911e6108 f8691109 528001c0 2a1f03e1 97fbddbb
  461. [   18.447465][    C3] 256c  f00105a8 b94ff908 340001a8 9000e8c0 910bd800 944d4e8e b0010409 9120e129
  462. [   18.447491][    C3] 258c  d53cd048 3869690a 350002aa 97fd0dc3 d35efc09 d53cd048 f8376909 52800020
  463. [   18.447516][    C3] 25ac  f000eee9 f94007e8 f943d929 eb08013f 540001a1 a9417bfd a9464ff4 a94557f6
  464. [   18.447543][    C3]
  465. [   18.447543][    C3] SP: 0xffffffc012753e20:
  466. [   18.447550][    C3] 3c20  12753cd0 ffffffc0 100c6f3c ffffffc0 12753c50 ffffffc0 100336c0 ffffffc0
  467. [   18.447575][    C3] 3c40  f2000800 00000000 00000000 00000000 12753c90 ffffffc0 114a8260 ffffffc0
  468. [   18.447601][    C3] 3c60  0000000b 00000000 60400089 00000000 101523dc ffffffc0 00700008 fb7ffdff
  469. [   18.447627][    C3] 3c80  12753cd0 ffffffc0 f2000800 00000000 12753cc0 ffffffc0 114a7f60 ffffffc0
  470. [   18.447653][    C3] 3ca0  12753e20 ffffffc0 100c9c80 ffffffc0 ffffffff 0000007f 12953da0 ffffffc0
  471. [   18.447679][    C3] 3cc0  12753e00 ffffffc0 1000244c ffffffc0 126b8780 ffffffc0 00000000 00000000
  472. [   18.447705][    C3] 3ce0  00000000 00000000 11eee5be ffffffc0 00000000 00000000 ffffffff ffffffff
  473. [   18.447730][    C3] 3d00  1263802e ffffffc0 4c206472 554b434f efe99e00 1bd950b0 efe99e00 1bd950b0
  474. [   18.447756][    C3] 3d20  ffffffff 00000000 ffffbfff 00000000 00000003 00000000 1228ccf0 ffffffc0
  475. [   18.447782][    C3] 3d40  00003fff 00000000 00000004 00000000 00000118 00000000 00000020 00000000
  476. [   18.447807][    C3] 3d60  1273d038 ffffffc0 12953da0 ffffffc0 fde3b850 ffffff84 1220a5a8 ffffffc0
  477. [   18.447833][    C3] 3d80  00000000 00000000 121d3830 ffffffc0 0000000b 00000000 1220a000 ffffffc0
  478. [   18.447858][    C3] 3da0  121d3840 ffffffc0 00000004 00000000 121d38d8 ffffffc0 12753e30 ffffffc0
  479. [   18.447884][    C3] 3dc0  101523cc ffffffc0 12753e20 ffffffc0 101523dc ffffffc0 60400089 00000000
  480. [   18.447910][    C3] 3de0  12753db8 ffffffc0 fde476c0 ffffff84 ffffffff 0000007f efe99e00 1bd950b0
  481. [   18.447936][    C3] 3e00  12753e30 ffffffc0 101523dc ffffffc0 00000000 00000000 10152324 ffffffc0
  482. [   18.447962][    C3] 3e20* 000000ff 00000000 efe99e00 1bd950b0 12753e90 ffffffc0 100ff6ec ffffffc0
  483. [   18.447988][    C3] 3e40  00000001 00000000 fde3b1c0 ffffff84 baaaf7ab 00000003 fde3b18c ffffff84
  484. [   18.448013][    C3] 3e60  10152274 ffffffc0 00000080 00000000 12753ef0 ffffffc0 fde3b180 ffffff84
  485. [   18.448039][    C3] 3e80  fde3b850 ffffff84 fde3b1c0 ffffff84 12753f00 ffffffc0 100fe358 ffffffc0
  486. [   18.448065][    C3] 3ea0  00000080 00000000 fde3b1e8 ffffff84 00000000 00000000 00000001 00000000
  487. [   18.448090][    C3] 3ec0  00000001 00000000 fde3b180 ffffff84 baaaee8e 00000003 fde3b2b8 ffffff84
  488. [   18.448116][    C3] 3ee0  fde3b278 ffffff84 fde3b238 ffffff84 baaaf7ab 00000003 efe99e00 1bd950b0
  489. [   18.448142][    C3] 3f00  12753f60 ffffffc0 10f1de48 ffffffc0 004e0ec0 ffffff81 00000000 00000000
  490. [   18.448167][    C3] 3f20  ebc68000 ffffffc4 12750000 ffffffc0 127fd030 ffffffc0 60800009 00000000
  491. [   18.448193][    C3] 3f40  124938f0 ffffffc0 fc7a0480 ffffff83 0000000d 00000000 fc792400 ffffff83
  492. [   18.448219][    C3] 3f60  12753f70 ffffffc0 100d30fc ffffffc0 12753fb0 ffffffc0 100cbc70 ffffffc0
  493. [   18.448245][    C3] 3f80  127fd030 ffffffc0 60800009 00000000 114a8e38 ffffffc0 00000000 00000000
  494. [   18.448270][    C3] 3fa0  121dddb8 ffffffc0 fc792400 ffffff83 12753fe0 ffffffc0 107150a0 ffffffc0
  495. [   18.448296][    C3] 3fc0  12953ef0 ffffffc0 00000000 00000000 12953da0 ffffffc0 0000001a 00000000
  496. [   18.448322][    C3] 3fe0  12953ed0 ffffffc0 100025e4 ffffffc0 ffffffff 0000007f 12953da0 ffffffc0
  497. [   18.448347][    C3] 4000  ******** ******** ******** ******** ******** ******** ******** ********
  498. [   18.448383][    C3]
  499. [   18.448383][    C3] X0: 0xffffffc0126b8780:
  500. [   18.448389][    C3] 8580  126b8578 ffffffc0 126b8588 ffffffc0 126b8588 ffffffc0 126b8598 ffffffc0
  501. [   18.448416][    C3] 85a0  126b8598 ffffffc0 126b85a8 ffffffc0 126b85a8 ffffffc0 126b85b8 ffffffc0
  502. [   18.448442][    C3] 85c0  126b85b8 ffffffc0 126b85c8 ffffffc0 126b85c8 ffffffc0 126b85d8 ffffffc0
  503. [   18.448468][    C3] 85e0  126b85d8 ffffffc0 126b85e8 ffffffc0 126b85e8 ffffffc0 126b85f8 ffffffc0
  504. [   18.448494][    C3] 8600  126b85f8 ffffffc0 126b8608 ffffffc0 126b8608 ffffffc0 126b8618 ffffffc0
  505. [   18.448519][    C3] 8620  126b8618 ffffffc0 126b8628 ffffffc0 126b8628 ffffffc0 126b8638 ffffffc0
  506. [   18.448545][    C3] 8640  126b8638 ffffffc0 126b8648 ffffffc0 126b8648 ffffffc0 126b8658 ffffffc0
  507. [   18.448571][    C3] 8660  126b8658 ffffffc0 126b8668 ffffffc0 126b8668 ffffffc0 126b8678 ffffffc0
  508. [   18.448597][    C3] 8680  126b8678 ffffffc0 126b8688 ffffffc0 126b8688 ffffffc0 126b8698 ffffffc0
  509. [   18.448622][    C3] 86a0  126b8698 ffffffc0 126b86a8 ffffffc0 126b86a8 ffffffc0 126b86b8 ffffffc0
  510. [   18.448648][    C3] 86c0  126b86b8 ffffffc0 126b86c8 ffffffc0 126b86c8 ffffffc0 126b86d8 ffffffc0
  511. [   18.448674][    C3] 86e0  126b86d8 ffffffc0 126b86e8 ffffffc0 126b86e8 ffffffc0 126b86f8 ffffffc0
  512. [   18.448699][    C3] 8700  126b86f8 ffffffc0 126b8708 ffffffc0 126b8708 ffffffc0 126b8718 ffffffc0
  513. [   18.448725][    C3] 8720  126b8718 ffffffc0 126b8728 ffffffc0 126b8728 ffffffc0 126b8738 ffffffc0
  514. [   18.448751][    C3] 8740
  515. [   18.448753][    C6] ------------[ cut here ]------------
  516. [   18.448756][    C6] Watchdog detected hard LOCKUP on cpu 7
  517. [   18.448761][    C3]  126b8738 ffffffc0 126b8748 ffffffc0
  518. [   18.448774][    C6] WARNING: CPU: 6 PID: 0 at kernel/watchdog.c:418 watchdog_timer_fn+0x168/0x3c8
  519. [   18.448778][    C6] Modules linked in:
  520. [   18.448783][    C3]  126b8748 ffffffc0
  521. [   18.448787][    C6]
  522. [   18.448789][    C3]  126b8758 ffffffc0
  523. [   18.448795][    C3] 8760  126b8758
  524. [   18.448800][    C6] CPU: 6 PID: 0 Comm: swapper/6 Not tainted 5.10.110 #1
  525. [   18.448804][    C6] Hardware name: Firefly AIO-3588L HDMI(Android) (DT)
  526. [   18.448809][    C3]  ffffffc0 020b8100
  527. [   18.448815][    C6] pstate: 60400089 (nZCv daIf +PAN -UAO -TCO BTYPE=--)
  528. [   18.448817][    C3]  ffffff81 00fb0000 ffffff81
  529. [   18.448825][    C6] pc : watchdog_timer_fn+0x168/0x3c8
  530. [   18.448827][    C3]  00000000 00000000
  531. [   18.448834][    C3] 8780*
  532. [   18.448837][    C6] lr : watchdog_timer_fn+0x158/0x3c8
  533. [   18.448839][    C3]  00000000 00000000 124cef80
  534. [   18.448845][    C6] sp : ffffffc01276be20
  535. [   18.448846][    C3]  ffffffc0 00000000 00000000
  536. [   18.448853][    C6] x29: ffffffc01276be30
  537. [   18.448855][    C3]  00000000 00000000
  538. [   18.448863][    C3] 87a0
  539. [   18.448865][    C6] x28: ffffffc0121d38d8
  540. [   18.448866][    C3]  00000000 00000000 fc7a3700
  541. [   18.448872][    C6]
  542. [   18.448874][    C3]  ffffff83 00000000 00000000
  543. [   18.448880][    C6] x27: 0000000000000007
  544. [   18.448882][    C3]  fc7a3600 ffffff83
  545. [   18.448889][    C3] 87c0
  546. [   18.448891][    C6] x26: ffffffc0121d3840
  547. [   18.448893][    C3]  00000000 00000000 00000000
  548. [   18.448898][    C6]
  549. [   18.448900][    C3]  00000001 00000000 00000000
  550. [   18.448906][    C6] x25: ffffffc01220a000
  551. [   18.448908][    C3]  00000000 00000000
  552. [   18.448914][    C3] 87e0
  553. [   18.448916][    C6] x24: ffffffffffffffff
  554. [   18.448918][    C3]  00000000 00000000 00000000
  555. [   18.448924][    C6]
  556. [   18.448926][    C3]  00000000 00000000 00000000
  557. [   18.448931][    C6] x23: ffffffc0121d3830
  558. [   18.448933][    C3]  00000000 00000000
  559. [   18.448940][    C3] 8800
  560. [   18.448942][    C6] x22: 0000000000000000
  561. [   18.448943][    C3]  00000000 00000000 00000000
  562. [   18.448949][    C6]
  563. [   18.448951][    C3]  00000000 00000000 00000000
  564. [   18.448958][    C6] x21: ffffffc01220a5a8
  565. [   18.448959][    C3]  00000000 00000000
  566. [   18.448966][    C3] 8820
  567. [   18.448968][    C6] x20: ffffff84fde98850
  568. [   18.448970][    C3]  00000000 00000000 00000000
  569. [   18.448975][    C6]
  570. [   18.448977][    C3]  00000000 00000000 00000000
  571. [   18.448983][    C6] x19: ffffffc01296bda0
  572. [   18.448984][    C3]  00000000 00000000
  573. [   18.448992][    C3] 8840
  574. [   18.448993][    C6] x18: ffffffc012755038
  575. [   18.448995][    C3]  00000000 00000000 00000000
  576. [   18.449001][    C6]
  577. [   18.449003][    C3]  00000000 00000000 00000000
  578. [   18.449009][    C6] x17: 0000000000000000
  579. [   18.449010][    C3]  00000000 00000000
  580. [   18.449017][    C3] 8860
  581. [   18.449019][    C6] x16: 00000000000000d8
  582. [   18.449021][    C3]  00000000 00000000 00000001
  583. [   18.449026][    C6]
  584. [   18.449028][    C3]  00000000 00000000 00000000
  585. [   18.449034][    C6] x15: 0000000000000004
  586. [   18.449036][    C3]  00000000 00000000
  587. [   18.449042][    C3] 8880
  588. [   18.449044][    C6] x14: 0000000000003fff
  589. [   18.449046][    C3]  00000000 00000000 00000000
  590. [   18.449051][    C6]
  591. [   18.449053][    C3]  00000000 fc504000 ffffff83
  592. [   18.449059][    C6] x13: ffffffc01228ccf0
  593. [   18.449061][    C3]  00000000 00000000
  594. [   18.449068][    C3] 88a0
  595. [   18.449069][    C6] x12: 0000000000000003
  596. [   18.449071][    C3]  00000000 00000000 00000000
  597. [   18.449077][    C6]
  598. [   18.449078][    C3]  00000000 00000000 00000000
  599. [   18.449084][    C6] x11: 00000000ffffbfff
  600. [   18.449086][    C3]  00000000 00000000
  601. [   18.449093][    C3] 88c0
  602. [   18.449095][    C6] x10: 00000000ffffffff
  603. [   18.449096][    C3]  00000000 00000000 00000000
  604. [   18.449102][    C6]
  605. [   18.449104][    C3]  00000000 00000000 00000000
  606. [   18.449110][    C6] x9 : 1bd950b0efe99e00
  607. [   18.449112][    C3]  00000000 00000000
  608. [   18.449119][    C3] 88e0
  609. [   18.449120][    C6] x8 : 1bd950b0efe99e00
  610. [   18.449122][    C3]  00000000 00000000 00000000
  611. [   18.449127][    C6]
  612. [   18.449131][    C6] x7 : 6574636574656420
  613. [   18.449135][    C3]  00000000 00000000
  614. [   18.449139][    C6] x6 : ffffffc0124be830
  615. [   18.449141][    C3]  00000000 00000000 00000000
  616. [   18.449147][    C6]
  617. [   18.449148][    C3]
  618. [   18.449151][    C3] 8900  00000000 00000000
  619. [   18.449157][    C6] x5 : ffffffffffffffff
  620. [   18.449158][    C3]  00000000 00000000 00000000
  621. [   18.449165][    C6] x4 : 0000000000000000
  622. [   18.449166][    C3]  00000000 00000000 00000000
  623. [   18.449172][    C6]
  624. [   18.449173][    C3]
  625. [   18.449176][    C3] 8920  00000000 00000000
  626. [   18.449182][    C6] x3 : ffffffc011eee5be
  627. [   18.449184][    C3]  00000000 00000000 00000000
  628. [   18.449190][    C6] x2 : 0000000000000000
  629. [   18.449192][    C3]  00000000 00000000 00000000
  630. [   18.449197][    C6]
  631. [   18.449199][    C3]
  632. [   18.449201][    C3] 8940  00000000 00000000
  633. [   18.449208][    C6] x1 : 0000000000000000
  634. [   18.449209][    C3]  00000000 00000000 00000000
  635. [   18.449215][    C6] x0 : ffffffc0126b8780
  636. [   18.449217][    C3]  00000000 00000000 00000000
  637. [   18.449223][    C6]
  638. [   18.449224][    C3]
  639. [   18.449227][    C3] 8960  00000000 00000000
  640. [   18.449233][    C6] Call trace:
  641. [   18.449235][    C3]  00000000 00000000 00000000
  642. [   18.449243][    C6]  watchdog_timer_fn+0x168/0x3c8
  643. [   18.449245][    C3]  00000000 00000000 00000000
  644. [   18.449252][    C6]  __run_hrtimer+0xa8/0x2a8
  645. [   18.449254][    C3]
  646. [   18.449259][    C3]
  647. [   18.449259][    C3] X3: 0xffffffc011eee5be:
  648. [   18.449262][    C3] e3bc  72657669
  649. [   18.449267][    C6]  hrtimer_interrupt+0x174/0x3fc
  650. [   18.449269][    C3]  69616620 6572756c 6425203a
  651. [   18.449278][    C6]  arch_timer_handler_phys+0x40/0x54
  652. [   18.449279][    C3]  6e65000a 656c6261 6165625f
  653. [   18.449286][    C6]  handle_percpu_devid_irq+0x88/0x280
  654. [   18.449288][    C3]  006e6f63
  655. [   18.449293][    C3] e3dc  636e7973
  656. [   18.449299][    C6]  __handle_domain_irq+0x80/0xd0
  657. [   18.449301][    C3]  6673745f 5f636d00 6e756f63
  658. [   18.449309][    C6]  gic_handle_irq+0x78/0x154
  659. [   18.449311][    C3]  36010074 203a7325 6c696166
  660. [   18.449318][    C6]  el1_irq+0xe4/0x1c0
  661. [   18.449320][    C3]  74206465
  662. [   18.449324][    C3] e3fc  6572206f
  663. [   18.449329][    C6]  arch_cpu_idle+0x1c/0x40
  664. [   18.449331][    C3]  76726573 68632065 656e6e61
  665. [   18.449340][    C6]  default_idle_call+0x3c/0x194
  666. [   18.449341][    C3]  6f63206c 7865746e 6f662074
  667. [   18.449350][    C6]  cpuidle_idle_call+0x64/0x238
  668. [   18.449352][    C3]  68632072
  669. [   18.449357][    C3] e41c  656e6e61
  670. [   18.449362][    C6]  do_idle+0xac/0xfc
  671. [   18.449364][    C3]  7773206c 68637469 6964202c
  672. [   18.449372][    C6]  cpu_startup_entry+0x28/0x2c
  673. [   18.449374][    C3]  6e6f6373 7463656e 20676e69
  674. [   18.449382][    C6]  secondary_start_kernel+0x1b4/0x274
  675. [   18.449384][    C3]  72726528
  676. [   18.449388][    C3] e43c  2964253d
  677. [   18.449393][    C6]
  678. [   18.449393][    C6] PC: 0xffffffc0101523dc:
  679. [   18.449395][    C3]  3601000a 203a7325 68747561
  680. [   18.449401][    C6] 21dc
  681. [   18.449403][    C3]  69746e65 69746163 77206e6f
  682. [   18.449409][    C6]  a9034ff4
  683. [   18.449411][    C3]  20687469
  684. [   18.449416][    C3] e45c  204d7025
  685. [   18.449420][    C6]  910003fd
  686. [   18.449422][    C3]  656d6974 756f2064 25000a74
  687. [   18.449427][    C6]  aa0003f7
  688. [   18.449430][    C3]  53203a73 25204154 6e204d70
  689. [   18.449436][    C6]  f0011520
  690. [   18.449438][    C3]  6620746
复制代码





回复

使用道具 举报

1042

积分

1

威望

3

贡献

官方团队

Rank: 9Rank: 9Rank: 9

积分
1042
发表于 2024-5-7 09:02:48        只看该作者  来自 2#

回帖奖励 +1 灯泡

dts中屏蔽pcie3.0

点评

It works, Thanks  发表于 2024-5-7 10:19
回复

使用道具 举报

36

积分

0

威望

0

贡献

技术小白

积分
36
发表于 2024-5-7 10:16:47        只看该作者  来自 4#
经过验证测试,采用 @zhangzhengzhao 兄台的方案:将设备树中的pcie3.0屏蔽掉就可以了

此问题,建议在在线指南中加以说明Core-3588L Manual在线手册
回复

使用道具 举报

36

积分

0

威望

0

贡献

技术小白

积分
36
发表于 2024-5-7 09:40:00        只看该作者  板凳

好的,我试下,多谢老铁!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

友情链接 : 爱板网 电子发烧友论坛 云汉电子社区 粤ICP备14022046号-2
快速回复 返回顶部 返回列表