This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM3352: 蚂蚁矿机 阉割版BeagleBone Black 无法启动

Part Number: AM3352
Other Parts Discussed in Thread: AM3359

在二手市场上,有很多拆机的蚂蚁矿机阉割版BeagleBone Black。硬件方面,将AM3359降级为AM3352,512M DDR3减少为256M。移除了eMMC并且加入了256M的镁光NAND Flash。

我按照别人的patch,轻松解决了U-boot的问题,就是选择am335x-evm_defconfig,然后给board/ti/am335x/board.c打如下patch,使其不从eeprom中读取型号,而是写死。

固件方面,我下载了这个AM335x 11.7 2023-09-02 4GB eMMC IoT Flasher - BeagleBoard

用xzcat am335x-eMMC-flasher-debian-11.7-iot-armhf-2023-09-02-4gb.img.xz | sudo dd of=/dev/sdx status=progress指令写入插在读卡器上的SD卡

之后用Gparted将rootfs分区右移使其空出128M。

之后再用fdisk在前100M创建一个启动分区放置uboot和内核就像BeagleBone Black 从零开始制作操作系统 - 知乎 (zhihu.com)一样

把rootfs里的/boot里的文件全部复制到启动分区,创建extlinux目录,在目录里添加extlinux.conf,内容如下:

label kernel-5.10
    kernel /vmlinuz-5.10.168-ti-r71
    fdt /dtbs/5.10.168-ti-r71/am335x-boneblack.dtb
    initrd /initrd.img-5.10.168-ti-r71
    append console=ttyO0,115200n8 debug rw rootfstype=ext4 rootwait

 随后接上串口,给板子供电

结果就得到了内核报错Unhandled fault: external abort on non-linefetch (0x1008) at 0xd2326000

dtb换为am335x-bone.dtb am335x-evm.dtb后,故障依旧,所以排除是内存大小设置问题。

我有找到了这篇文章AM3354: am3354 移植sdk-evm-07.03, 内核卡在Unhandled fault: external abort on non-linefetch (0x1008) at 0xd02e6000 - 处理器论坛 - 处理器 - E2ETm 设计支持 (ti.com)

我就拉取https://github.com/beagleboard/linux.git的代码,checkout到v5.10.168-ti-r71分支,按照教程加入hello_world.dts,make dtbs。

最后把hello_world.dtb复制到板子上,修改extlinux.conf。

最后离谱的事情发生了:报错居然还是一模一样!

最后贴出开发板打印信息:


U-Boot SPL 2024.01-rc4-g27089f1e-dirty (Dec 15 2023 - 09:21:01 +0800)
Trying to boot from MMC1


U-Boot 2024.01-rc4-g27089f1e-dirty (Dec 15 2023 - 09:21:01 +0800)

CPU : AM335X-GP rev 2.1
Model: TI AM335x BeagleBone Black
DRAM: 256 MiB
Core: 160 devices, 18 uclasses, devicetree: separate
WDT: Started wdt@44e35000 with servicing every 1000ms (60s timeout)
NAND: 0 MiB
MMC: OMAP SD/MMC: 0, OMAP SD/MMC: 1
Loading Environment from FAT... Unable to read "uboot.env" from mmc0:1...
<ethaddr> not set. Validating first E-fuse MAC
Net: eth2: ethernet@4a100000using musb-hdrc, OUT ep1out IN ep1in STATUS ep2in
MAC de:ad:be:ef:00:01
HOST MAC de:ad:be:ef:00:00
RNDIS ready
, eth3: usb_ether
Hit any key to stop autoboot: 0
switch to partitions #0, OK
mmc0 is current device
Scanning mmc 0:1...
Found /extlinux/extlinux.conf
Retrieving file: /extlinux/extlinux.conf
1: kernel-5.10
Retrieving file: /vmlinuz-5.10.168-ti-r71
Retrieving file: /initrd.img-5.10.168-ti-r71
append: console=ttyO0,115200n8 debug rw rootfstype=ext4 rootwait
Retrieving file: /dtbs/5.10.168-ti-r71/hello_world.dtb
Kernel image @ 0x82000000 [ 0x000000 - 0xad1200 ]
## Flattened Device Tree blob at 88000000
Booting using the fdt blob at 0x88000000
Working FDT set to 88000000
Loading Ramdisk to 8c7c5000, end 8cf21aa4 ... OK
Loading Device Tree to 8c7ad000, end 8c7c45c8 ... OK
Working FDT set to 8c7ad000

Starting kernel ...

[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 5.10.168-ti-r71 (voodoo@rpi4b4g-02) (gcc (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1bullseye SMP PREEMPT Fri Sep 1 04:05:07 UTC 2023
[ 0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[ 0.000000] OF: fdt: Machine model: TI AM335x Hello World
[ 0.000000] Memory policy: Data cache writeback
[ 0.000000] efi: UEFI not found.
[ 0.000000] cma: Reserved 48 MiB at 0x89000000
[ 0.000000] Zone ranges:
[ 0.000000] Normal [mem 0x0000000080000000-0x000000008fdfffff]
[ 0.000000] HighMem empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000080000000-0x000000008fdfffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000008fdfffff]
[ 0.000000] On node 0 totalpages: 65024
[ 0.000000] Normal zone: 572 pages used for memmap
[ 0.000000] Normal zone: 0 pages reserved
[ 0.000000] Normal zone: 65024 pages, LIFO batch:15
[ 0.000000] CPU: All CPU(s) started in SVC mode.
[ 0.000000] AM335X ES2.1 (neon)
[ 0.000000] percpu: Embedded 21 pages/cpu s54604 r8192 d23220 u86016
[ 0.000000] pcpu-alloc: s54604 r8192 d23220 u86016 alloc=21*4096
[ 0.000000] pcpu-alloc: [0] 0
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 64452
[ 0.000000] Kernel command line: console=ttyO0,115200n8 debug rw rootfstype=ext4 rootwait
[ 0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes, linear)
[ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off
[ 0.000000] Memory: 177028K/260096K available (15360K kernel code, 1446K rwdata, 4040K rodata, 1024K init, 444K bss, 33916K reserved, 49152K cma-reserved, 0K highmem)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[ 0.000000] rcu: RCU event tracing is enabled.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=2 to nr_cpu_ids=1.
[ 0.000000] Trampoline variant of Tasks RCU enabled.
[ 0.000000] Tracing variant of Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[ 0.000000] IRQ: Found an INTC at 0x(ptrval) (revision 5.0) with 128 interrupts
[ 0.000000] TI gptimer clocksource: always-on /ocp/interconnect@44c00000/segment@200000/target-module@31000
[ 0.000011] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns
[ 0.000030] clocksource: dmtimer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns
[ 0.000381] TI gptimer clockevent: 24000000 Hz at /ocp/interconnect@48000000/segment@0/target-module@40000
[ 0.001571] Console: colour dummy device 80x30
[ 0.001612] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
[ 0.001621] This ensures that you still see kernel messages. Please
[ 0.001629] update your kernel commandline.
[ 0.001687] Calibrating delay loop... 995.32 BogoMIPS (lpj=1990656)
[ 0.048436] pid_max: default: 32768 minimum: 301
[ 0.049060] LSM: Security Framework initializing
[ 0.049184] Yama: becoming mindful.
[ 0.049479] AppArmor: AppArmor initialized
[ 0.049501] TOMOYO Linux initialized
[ 0.049694] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[ 0.049712] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[ 0.051398] CPU: Testing write buffer coherency: ok
[ 0.051490] CPU0: Spectre v2: using BPIALL workaround
[ 0.072876] Setting up static identity map for 0x80100000 - 0x80100060
[ 0.080456] rcu: Hierarchical SRCU implementation.
[ 0.089715] EFI services will not be available.
[ 0.100470] smp: Bringing up secondary CPUs ...
[ 0.100494] smp: Brought up 1 node, 1 CPU
[ 0.100507] SMP: Total of 1 processors activated (995.32 BogoMIPS).
[ 0.100519] CPU: All CPU(s) started in SVC mode.
[ 0.101432] devtmpfs: initialized
[ 0.120741] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
[ 0.121262] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.121309] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
[ 0.125125] pinctrl core: initialized pinctrl subsystem
[ 0.126339] DMI not present or invalid.
[ 0.127282] NET: Registered protocol family 16
[ 0.130426] DMA: preallocated 256 KiB pool for atomic coherent allocations
[ 0.152020] l3-aon-clkctrl:0000:0: failed to disable
[ 0.152765] audit: initializing netlink subsys (disabled)
[ 0.154236] thermal_sys: Registered thermal governor 'fair_share'
[ 0.154250] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.154267] thermal_sys: Registered thermal governor 'step_wise'
[ 0.154277] thermal_sys: Registered thermal governor 'user_space'
[ 0.154287] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.154662] cpuidle: using governor ladder
[ 0.154720] cpuidle: using governor menu
[ 0.160540] audit: type=2000 audit(0.144:1): state=initialized audit_enabled=0 res=1
[ 1.155813] hw-breakpoint: debug architecture 0x4 unsupported.
[ 1.177593] Kprobes globally optimized
[ 1.200828] raid6: skip pq benchmark and using algorithm neonx8
[ 1.200861] raid6: using neon recovery algorithm
[ 1.204576] iommu: Default domain type: Translated
[ 1.206878] SCSI subsystem initialized
[ 1.207320] libata version 3.00 loaded.
[ 1.207671] usbcore: registered new interface driver usbfs
[ 1.207772] usbcore: registered new interface driver hub
[ 1.207837] usbcore: registered new device driver usb
[ 1.208740] mc: Linux media interface: v0.10
[ 1.208801] videodev: Linux video capture interface: v2.00
[ 1.209025] pps_core: LinuxPPS API ver. 1 registered
[ 1.209039] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.209066] PTP clock support registered
[ 1.211253] NetLabel: Initializing
[ 1.211278] NetLabel: domain hash size = 128
[ 1.211288] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 1.211427] NetLabel: unlabeled traffic allowed by default
[ 1.212622] clocksource: Switched to clocksource dmtimer
[ 2.274919] VFS: Disk quotas dquot_6.6.0
[ 2.275092] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 2.275390] FS-Cache: Loaded
[ 2.275830] CacheFiles: Loaded
[ 2.276955] AppArmor: AppArmor Filesystem Enabled
[ 2.290148] NET: Registered protocol family 2
[ 2.290426] IP idents hash table entries: 4096 (order: 3, 32768 bytes, linear)
[ 2.291886] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear)
[ 2.292187] TCP established hash table entries: 2048 (order: 1, 8192 bytes, linear)
[ 2.292232] TCP bind hash table entries: 2048 (order: 2, 16384 bytes, linear)
[ 2.292269] TCP: Hash tables configured (established 2048 bind 2048)
[ 2.293012] MPTCP token hash table entries: 256 (order: 0, 4096 bytes, linear)
[ 2.293117] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
[ 2.293154] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
[ 2.293455] NET: Registered protocol family 1
[ 2.306936] RPC: Registered named UNIX socket transport module.
[ 2.306960] RPC: Registered udp transport module.
[ 2.306970] RPC: Registered tcp transport module.
[ 2.306979] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 2.306997] NET: Registered protocol family 44
[ 2.307740] Trying to unpack rootfs image as initramfs...
[ 2.740482] Freeing initrd memory: 7540K
[ 2.741262] hw perfevents: enabled with armv7_cortex_a8 PMU driver, 5 counters available
[ 2.746755] Initialise system trusted keyrings
[ 2.747264] workingset: timestamp_bits=14 max_order=16 bucket_order=2
[ 2.755468] zbud: loaded
[ 2.763681] NFS: Registering the id_resolver key type
[ 2.763771] Key type id_resolver registered
[ 2.763783] Key type id_legacy registered
[ 2.763982] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 2.764000] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[ 2.764051] jffs2: version 2.2. (NAND) (SUMMARY) © 2001-2006 Red Hat, Inc.
[ 2.765333] fuse: init (API version 7.32)
[ 2.852870] xor: automatically using best checksumming function neon
[ 2.852903] Key type asymmetric registered
[ 2.852916] Asymmetric key parser 'x509' registered
[ 2.853004] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 2.857442] io scheduler mq-deadline registered
[ 3.044874] ti-sysc: probe of 44e31000.target-module failed with error -16
[ 3.067186] ti-sysc: probe of 48040000.target-module failed with error -16
[ 3.146264] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400
[ 3.204550] debugfs: Directory '49000000.dma' with parent 'dmaengine' already present!
[ 3.204681] edma 49000000.dma: TI EDMA DMA engine driver
[ 3.221662] pinctrl-single 44e10800.pinmux: 142 pins, size 568
[ 3.236224] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled
[ 3.241066] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 20, base_baud = 3000000) is a 8250
[ 4.101168] printk: console [ttyS0] enabled
[ 4.109574] omap_rng 48310000.rng: Random Number Generator ver. 20
[ 4.116142] random: crng init done
[ 4.224810] loop: module loaded
[ 4.235340] usbcore: registered new interface driver smsc95xx
[ 4.242995] am335x-phy-driver 47401300.usb-phy: supply vcc not found, using dummy regulator
[ 4.251881] am335x-phy-driver 47401300.usb-phy: dummy supplies not allowed for exclusive requests
[ 4.265772] am335x-phy-driver 47401b00.usb-phy: supply vcc not found, using dummy regulator
[ 4.274591] am335x-phy-driver 47401b00.usb-phy: dummy supplies not allowed for exclusive requests
[ 4.290138] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 4.296914] ehci-platform: EHCI generic platform driver
[ 4.302604] ehci-omap: OMAP-EHCI Host Controller driver
[ 4.311781] musb-hdrc musb-hdrc.0: MUSB HDRC host driver
[ 4.317260] musb-hdrc musb-hdrc.0: new USB bus registered, assigned bus number 1
[ 4.325063] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 4.333408] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.340686] usb usb1: Product: MUSB HDRC host driver
[ 4.345690] usb usb1: Manufacturer: Linux 5.10.168-ti-r71 musb-hcd
[ 4.351916] usb usb1: SerialNumber: musb-hdrc.0
[ 4.357415] hub 1-0:1.0: USB hub found
[ 4.361371] hub 1-0:1.0: 1 port detected
[ 4.375724] musb-hdrc musb-hdrc.1: MUSB HDRC host driver
[ 4.382023] musb-hdrc musb-hdrc.1: new USB bus registered, assigned bus number 2
[ 4.389940] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 4.398302] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.405580] usb usb2: Product: MUSB HDRC host driver
[ 4.410587] usb usb2: Manufacturer: Linux 5.10.168-ti-r71 musb-hcd
[ 4.416813] usb usb2: SerialNumber: musb-hdrc.1
[ 4.422296] hub 2-0:1.0: USB hub found
[ 4.426243] hub 2-0:1.0: 1 port detected
[ 4.442366] omap_rtc 44e3e000.rtc: registered as rtc0
[ 4.447933] omap_rtc 44e3e000.rtc: setting system clock to 2000-01-01T00:00:00 UTC (946684800)
[ 4.458054] i2c /dev entries driver
[ 4.465095] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
[ 4.472728] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[ 4.481251] softdog: soft_reboot_cmd=<not set> soft_active_on_boot=0
[ 4.490172] cpuidle: enable-method property 'ti,am3352' found operations
[ 4.498308] sdhci: Secure Digital Host Controller Interface driver
[ 4.504610] sdhci: Copyright(c) Pierre Ossman
[ 4.509006] sdhci-pltfm: SDHCI platform and OF driver helper
[ 4.516811] ledtrig-cpu: registered to indicate activity on CPUs
[ 4.523597] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2
[ 4.529821] omap-aes 53500000.aes: will run requests pump with realtime priority
[ 4.540193] omap-sham 53100000.sham: hw accel on OMAP rev 4.3
[ 4.546633] omap-sham 53100000.sham: will run requests pump with realtime priority
[ 4.558565] hid: raw HID events driver (C) Jiri Kosina
[ 4.565140] usbcore: registered new interface driver usbhid
[ 4.571041] usbhid: USB HID core driver
[ 4.575456] remoteproc remoteproc0: wkup_m3 is available
[ 4.585538] NET: Registered protocol family 10
[ 4.663557] Segment Routing with IPv6
[ 4.667691] mip6: Mobile IPv6
[ 4.670843] NET: Registered protocol family 17
[ 4.679928] Key type dns_resolver registered
[ 4.684342] mpls_gso: MPLS GSO support
[ 4.688321] ThumbEE CPU extension supported.
[ 4.692666] Registering SWP/SWPB emulation handler
[ 4.697504] omap_voltage_late_init: Voltage driver support not added
[ 4.705038] registered taskstats version 1
[ 4.709229] Loading compiled-in X.509 certificates
[ 4.714226] zswap: loaded using pool lzo/zbud
[ 4.723521] Key type .fscrypt registered
[ 4.727585] Key type fscrypt-provisioning registered
[ 4.739755] Btrfs loaded, crc32c=crc32c-generic
[ 4.744519] AppArmor: AppArmor sha1 policy hashing enabled
[ 4.770838] OMAP GPIO hardware version 0.1
[ 4.778318] 8<--- cut here ---
[ 4.781412] Unhandled fault: external abort on non-linefetch (0x1008) at 0xd22e6000
[ 4.789108] pgd = e1118281
[ 4.791827] [d22e6000] *pgd=8352b811, *pte=4a326653, *ppte=4a326453
[ 4.798156] Internal error: : 1008 [#1] PREEMPT SMP ARM
[ 4.803408] Modules linked in:
[ 4.806487] CPU: 0 PID: 93 Comm: kworker/0:4 Not tainted 5.10.168-ti-r71 #1bullseye
[ 4.814176] Hardware name: Generic AM33XX (Flattened Device Tree)
[ 4.820319] Workqueue: events deferred_probe_work_func
[ 4.825499] PC is at sysc_probe+0xd18/0x15f8
[ 4.829791] LR is at _raw_spin_unlock_irqrestore+0x28/0x54
[ 4.835299] pc : [<c08829bc>] lr : [<c0efec34>] psr: 600e0013
[ 4.841592] sp : c3387df8 ip : 00280a00 fp : 00000000
[ 4.846839] r10: c107fa74 r9 : 00000000 r8 : c107ff34
[ 4.852085] r7 : 00000000 r6 : c1a19c10 r5 : c17c08f0 r4 : c35afb40
[ 4.858641] r3 : d22e6000 r2 : 00026000 r1 : d22c0000 r0 : 00000000
[ 4.865198] Flags: nZCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment none
[ 4.872364] Control: 10c5387d Table: 833d8019 DAC: 00000051
[ 4.878137] Process kworker/0:4 (pid: 93, stack limit = 0xe381de9d)
[ 4.884432] Stack: (0xc3387df8 to 0xc3388000)
[ 4.888810] 7de0: 00000001 00000000
[ 4.897029] 7e00: c161a558 c12b826c c17c08f0 00000001 c1a19c10 c12b812c 00000001 00000001
[ 4.905248] 7e20: 00000030 14f128c0 00000000 00000000 c1a19c10 c16da9dc 00000000 c17c7b94
[ 4.913466] 7e40: c16da9dc 00000005 cfb6b540 c09e2810 c1a19c10 c17c7b8c 00000000 c09e0040
[ 4.921684] 7e60: c16da9dc 14f128c0 cfb6b540 c1a19c10 c16da9dc c09e0a7c c16e8064 c12e3080
[ 4.929904] 7e80: c174eca8 00000000 cfb6b540 c09e0868 c12e3080 c09e0a50 c16da9dc 00000000
[ 4.938122] 7ea0: c3387edc c09e0a7c c16e8064 c12e3080 c174eca8 c09ddcf4 cfb6b540 c189f36c
[ 4.946341] 7ec0: c1ba9eb8 14f128c0 c1a19c10 00000001 c1a19c54 c09e04d8 00000000 c1a19c10
[ 4.954559] 7ee0: 00000001 14f128c0 c1a08c54 c16e82c0 c1a19c10 c09df024 c1a08c54 c1a19c10
[ 4.962778] 7f00: c16e801c c09df85c c16e8048 c337de80 cfb6b540 cfb6e800 00000000 00000000
[ 4.970996] 7f20: 00000000 c015a640 c3386000 cfb6b540 c18c7ebc c337de80 cfb6b540 c337de94
[ 4.979214] 7f40: cfb6b558 c1604d00 00000008 c3386000 cfb6b540 c015abe0 c31755e4 c1736757
[ 4.987432] 7f60: c31755e4 c31755c0 c31751c0 00000000 c3386000 c015aa00 c337de80 c312becc
[ 4.995651] 7f80: c31755e4 c0160224 00000000 c31751c0 c01600d8 00000000 00000000 00000000
[ 5.003869] 7fa0: 00000000 00000000 00000000 c0100148 00000000 00000000 00000000 00000000
[ 5.012088] 7fc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 5.020307] 7fe0: 00000000 00000000 00000000 00000000 00000013 00000000 00000000 00000000
[ 5.028545] [<c08829bc>] (sysc_probe) from [<c09e2810>] (platform_drv_probe+0x48/0x98)
[ 5.036506] [<c09e2810>] (platform_drv_probe) from [<c09e0040>] (really_probe+0xf8/0x4e4)
[ 5.044728] [<c09e0040>] (really_probe) from [<c09e0868>] (driver_probe_device+0xf4/0x1c8)
[ 5.053035] [<c09e0868>] (driver_probe_device) from [<c09ddcf4>] (bus_for_each_drv+0x80/0xd0)
[ 5.061602] [<c09ddcf4>] (bus_for_each_drv) from [<c09e04d8>] (__device_attach+0xac/0x200)
[ 5.069907] [<c09e04d8>] (__device_attach) from [<c09df024>] (bus_probe_device+0x84/0x8c)
[ 5.078125] [<c09df024>] (bus_probe_device) from [<c09df85c>] (deferred_probe_work_func+0x98/0xdc)
[ 5.087134] [<c09df85c>] (deferred_probe_work_func) from [<c015a640>] (process_one_work+0x1b8/0x578)
[ 5.096313] [<c015a640>] (process_one_work) from [<c015abe0>] (worker_thread+0x1e0/0x524)
[ 5.104536] [<c015abe0>] (worker_thread) from [<c0160224>] (kthread+0x14c/0x150)
[ 5.111972] [<c0160224>] (kthread) from [<c0100148>] (ret_from_fork+0x14/0x2c)
[ 5.119224] Exception stack(0xc3387fb0 to 0xc3387ff8)
[ 5.124300] 7fa0: 00000000 00000000 00000000 00000000
[ 5.132517] 7fc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[ 5.140734] 7fe0: 00000000 00000000 00000000 00000000 00000013 00000000
[ 5.147384] Code: e5941014 e3130004 e0813002 1a000193 (e5933000)
[ 5.153513] ---[ end trace 285b122019919f41 ]---