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.

AM4372: Boot Failure from Custom board

Part Number: AM4372
Other Parts Discussed in Thread: AM5718

Hi Champs.

There's a request from Customer as they see a boot failure issue from their 1st prototype PCB with AM4372.

The followings are their observations.

1. Nothing is displayed by U-Boot which has been built on PROCESSOR SDK LINUX 7.3.0.5.

2. The factory default SD Card shows the log message as "Could not probe EEPROM at 0x50."

They believed the factory SD card is based on SDK 1.0.0.3. but the source code is not avaiable from ti.com previous release.

Is there big changes btw 1.x and 7.3 from Bootloader code? Why the latest SDK' binary does not show the EEPROM related error.

BTW,

Could you please also let us know how to hack the code to avoid an error from EEPROM Read and Board detection routine?

I am unable to find the similar routine to detect board name like below for am572x. AM437x has slightly different implementation.

Please help us to solve the boot failure issue.

Offline  in reply to Jack Cha
TI__Mastermind 46175 points

Hi Jack,

Boot flow: RoM code ---> SPL ---> U-boot.

SPL is loaded at 0x40300000 i.e internal SRAM. I see the address is totally different.
I am not able to follow what is going on.

EEPROM not mandatory to boot.

You can do a HACK to detect board as am5718:

diff --git a/board/ti/am57xx/board.c b/board/ti/am57xx/board.c
index c1f05253bc..cb1b6bb263 100644
--- a/board/ti/am57xx/board.c
+++ b/board/ti/am57xx/board.c
@@ -557,7 +557,7 @@ void do_board_detect(void)
bname = "AM574x IDK";
else if (board_is_am572x_idk())
bname = "AM572x IDK";
- else if (board_is_am571x_idk())
+ else if (1)
bname = "AM571x IDK";

Best Regards,
Keerthy

  • Hi Jack,

    Let me try to comment some options on bypassing EEPROM read for board_ID detectin on AM335x/AM43xx SoC based boards.
    In order to support TI reference board variants, board _ID is used in the SPL/u-boot boot flow in TI Linux SDK u-boot build, where the board_ID is detected by reading the pre-programmed on-board EEPROM via I2C link.

    A quick summary of board_ID usage for AM335x/AM43xx SoCs is listed below:

    1. Board_ID detection in SPL
    The board_ID reading from EEPROM via I2C to DDR in early SPL boot flow:
    - The board_ID is read by calling do_board_detect() in early_system_init () in “arch/arm/mach-omap2/am33xx/board.c”
    - do_board_detect() is in the SoC board file,“board/ti/am43xx/board.c” for AM43xx boards, and “board/ti/am335x/board.c” for AM335x boards.
    - The board_ID is read from EEPROM to DDR @TI_EEPROM_DATA in “board/ti/common/board_detect.c”
    - The board_ID data population is defined in “board/ti/common/board_detect.h”
    - The board_ID reading from EEPROM above is controlled by the “CONFIG_TI_I2C_BOARD_DETECT” flag when building SPL/u-boot

    2. Board configuration based on the detected board_ID in SPL
    - The board specific configurations such as DPLL, DDR, PMIC etc… are all configured depending on the detected board_ID in the board file.
    - Refer to “board/ti/am43xx/board.c” for details on AM43xx SoC boards.

    3. SPL search, select, and load the matching DTB file for u-boot.
    - In TI Linux SDK u-boot build, multiple board DTB files are grouped along with u-boot.bin into u-boot.img FIT file.
    - SPL parse the FIT file header to load u-boot.bin, search/select/load the matching DTB, where searching the matching DTB file is based on the detected board_ID.

    Some options to bypass reading EEPROM for board_ID detection for the above steps #1 to #3:


    1. Board_ID detection in SPL
    - Comment off “CONFIG_TI_I2C_BOARD_DETECT” in the u-boot build so all EEPORM read via I2C be bypassed.

    2. Board configuration based on the detected board_ID in SPL
    Since the board_ID is not read from EEPROM in the last step, some options
    a). Adding a customer board_ID, and populated it to DDR @TI_EEPROM_DATA, and the customer board configurations for DPLL/DDR/PMIC are configured in the board file based the newly added customer board_ID.
    b). Alternatives, if the customer board design is similar to one of TI reference board, let’s use AM437x GP EVM as an example.
    - Then one of options is using AM437x GP EVM as an subsititute for the customer board_ID, and modify HW configuration structure for AM437x GP EVM with customer board data for PMIC/DPLL/DDR...
    - In “board/ti/am43xx/board.h”, modify board_is_gpevm() call return "true" as listed below:

    static inline int board_is_gpevm(void)
    {
    return 1;
    // return board_ti_is("AM43__GP");
    }

    3. SPL search, select, and load the matching DTB file for u-boot.
    - For 2a), the new board DTB file is appended into u-boot.img, and the DTB file is searched/loaded based on the new customer board_ID.
    - For 2b), use AM437x GP EVM board DTS file as a base, and modify it as needed, and the DTB file is searched/loaded based on the substituted AM437x board_ID.

    There were previous e2e posts on options to bypassing EEPROM read for board_ID, here is one of them.
    e2e.ti.com/.../3462245

    Best,
    -Hong

  • Hi

    Here is the log message captured from custom board with SDK1.0 image since SDK7.0 image does not work yet.

    Please check the reason of panic when used 256MB DDR with SDK1.0 image. 

    U-Boot 2014.07 (Jan 24 2022 - 14:56:42)
    
    I2C:   ready
    DRAM:  256 MiB
    NAND:  128 MiB
    MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1
    reading uboot.env
    
    ** Unable to read "uboot.env" from mmc0:1 **
    Using default environment
    
    AGAPAO>>board_late_init
    AGAPAO>>board_name : AM43__GP
    AGAPAO>>board_rev : 1.5B
    Net:   <ethaddr> not set. Validating first E-fuse MAC
    Phy not found
    cpsw, usb_ether
    Hit any key to stop autoboot:  0
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    reading uEnv.txt
    ** Unable to read file uEnv.txt **
    4351280 bytes read in 229 ms (18.1 MiB/s)
    48112 bytes read in 13 ms (3.5 MiB/s)
    Booting from mmc0 ...
    Kernel image @ 0x82000000 [ 0x000000 - 0x426530 ]
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       Loading Device Tree to 8e710000, end 8e71ebef ... OK
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Linux version 3.14.43-g875c69b (root@ubuntu) (gcc version 4.7.3 20130226 (prerelease) (crosstool-NG linaro-1.13.1-4.7-2013.03-20130313 - Linaro GCC 2013.03) ) #1 Mon Jan 24 19:26:19 KST 2022
    [    0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c5387d
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
    [    0.000000] Machine model: TI AM437x GP EVM
    [    0.000000] cma: CMA: reserved 24 MiB at 8cc00000
    [    0.000000] Memory policy: Data cache writeback
    [    0.000000] CPU: All CPU(s) started in SVC mode.
    [    0.000000] AM437x ES1.2 (neon )
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 64512
    [    0.000000] Kernel command line: console=ttyO0,115200n8 root=/dev/mmcblk0p2 rw rootfstype=ext4 rootwait
    [    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)
    [    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
    [    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
    [    0.000000] Memory: 224180K/260096K available (5871K kernel code, 308K rwdata, 2148K rodata, 267K init, 232K bss, 35916K reserved, 0K highmem)
    [    0.000000] Virtual kernel memory layout:
    [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    [    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
    [    0.000000]     vmalloc : 0xd0800000 - 0xff000000   ( 744 MB)
    [    0.000000]     lowmem  : 0xc0000000 - 0xd0000000   ( 256 MB)
    [    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
    [    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
    [    0.000000]       .text : 0xc0008000 - 0xc07dd0c4   (8021 kB)
    [    0.000000]       .init : 0xc07de000 - 0xc0820c74   ( 268 kB)
    [    0.000000]       .data : 0xc0822000 - 0xc086f3e0   ( 309 kB)
    [    0.000000]        .bss : 0xc086f3e0 - 0xc08a96f8   ( 233 kB)
    [    0.000000] NR_IRQS:16 nr_irqs:16 16
    [    0.000000] GIC CPU mask not found - kernel will fail to boot.
    [    0.000000] GIC CPU mask not found - kernel will fail to boot.
    [    0.000000] OMAP clockevent source: timer2 at 24000000 Hz
    [    0.000026] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956969942ns
    [    0.000061] OMAP clocksource: timer1 at 24000000 Hz
    [    0.000384] Console: colour dummy device 80x30
    [    0.000424] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
    [    0.000435] This ensures that you still see kernel messages. Please
    [    0.000442] update your kernel commandline.
    [    0.000477] Calibrating delay loop... 1196.85 BogoMIPS (lpj=5984256)
    [    0.088854] pid_max: default: 32768 minimum: 301
    [    0.089011] Security Framework initialized
    [    0.089091] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [    0.089111] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [    0.098564] CPU: Testing write buffer coherency: ok
    [    0.099114] Setting up static identity map for 0x805c1a20 - 0x805c1a78
    [    0.099258] L310 cache controller enabled
    [    0.099283] l2x0: 16 ways, CACHE_ID 0x410000c9, AUX_CTRL 0x7e030000, Cache size: 256 kB
    [    0.100273] devtmpfs: initialized
    [    0.103813] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4
    [    0.115713] omap_hwmod: tptc0 using broken dt data from edma
    [    0.115816] omap_hwmod: tptc1 using broken dt data from edma
    [    0.115904] omap_hwmod: tptc2 using broken dt data from edma
    [    0.180060] omap_hwmod: dss_dispc: cannot be enabled for reset (3)
    [    0.183501] omap_hwmod: dss_rfbi: cannot be enabled for reset (3)
    [    0.193315] omap_hwmod: rtc: _wait_target_disable failed
    [    0.194035] pinctrl core: initialized pinctrl subsystem
    [    0.195183] regulator-dummy: no parameters
    [    0.197392] NET: Registered protocol family 16
    [    0.199224] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.202086] cpuidle: using governor ladder
    [    0.202099] cpuidle: using governor menu
    [    0.210112] syscon 44e10000.control_module: regmap [mem 0x44e10000-0x44e107f3] registered
    [    0.211736] platform 49000000.edma: alias fck already exists
    [    0.211763] platform 49000000.edma: alias fck already exists
    [    0.211780] platform 49000000.edma: alias fck already exists
    [    0.215398] OMAP GPIO hardware version 0.1
    [    0.230402] omap-gpmc 50000000.gpmc: could not find pctldev for node /pinmux@44e10800/nand_flash_x8_default, deferring probe
    [    0.230438] platform 50000000.gpmc: Driver omap-gpmc requests probe deferral
    [    0.239113] No ATAGs?
    [    0.239143] hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers.
    [    0.239156] hw-breakpoint: maximum watchpoint size is 4 bytes.
    [    0.272308] bio: create slab <bio-0> at 0
    [    0.292235] edma-dma-engine edma-dma-engine.0: TI EDMA DMA engine driver
    [    0.293553] evm_v3_3d: 3300 mV
    [    0.294179] vtt_fixed: 1500 mV
    [    0.294786] vmmcwl_fixed: 1800 mV
    [    0.299658] vgaarb: loaded
    [    0.300296] i2c-core: driver [palmas] using legacy suspend method
    [    0.300308] i2c-core: driver [palmas] using legacy resume method
    [    0.301132] SCSI subsystem initialized
    [    0.302913] usbcore: registered new interface driver usbfs
    [    0.303142] usbcore: registered new interface driver hub
    [    0.303389] usbcore: registered new device driver usb
    [    0.304650] omap_i2c 44e0b000.i2c: could not find pctldev for node /pinmux@44e10800/i2c0_pins, deferring probe
    [    0.304680] platform 44e0b000.i2c: Driver omap_i2c requests probe deferral
    [    0.304713] omap_i2c 4802a000.i2c: could not find pctldev for node /pinmux@44e10800/i2c1_pins_default, deferring probe
    [    0.304730] platform 4802a000.i2c: Driver omap_i2c requests probe deferral
    [    0.305275] pps_core: LinuxPPS API ver. 1 registered
    [    0.305288] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.305452] PTP clock support registered
    [    0.307706] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400
    [    0.309105] Advanced Linux Sound Architecture Driver Initialized.
    [    0.310911] Switched to clocksource timer1
    [    0.334024] NET: Registered protocol family 2
    [    0.335004] TCP established hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.335045] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.335081] TCP: Hash tables configured (established 2048 bind 2048)
    [    0.335174] TCP: reno registered
    [    0.335190] UDP hash table entries: 256 (order: 0, 4096 bytes)
    [    0.335213] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
    [    0.335440] NET: Registered protocol family 1
    [    0.335843] RPC: Registered named UNIX socket transport module.
    [    0.335856] RPC: Registered udp transport module.
    [    0.335864] RPC: Registered tcp transport module.
    [    0.335871] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.339971] futex hash table entries: 256 (order: -1, 3072 bytes)
    [    0.522874] VFS: Disk quotas dquot_6.5.2
    [    0.522940] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [    0.523471] NFS: Registering the id_resolver key type
    [    0.523532] Key type id_resolver registered
    [    0.523543] Key type id_legacy registered
    [    0.523585] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
    [    0.523765] msgmni has been set to 485
    [    0.525495] NET: Registered protocol family 38
    [    0.525542] io scheduler noop registered
    [    0.525552] io scheduler deadline registered
    [    0.525576] io scheduler cfq registered (default)
    [    0.530664] pinctrl-single 44e10800.pinmux: 199 pins at pa f9e10800 size 796
    [    0.535912] backlight supply power not found, using dummy regulator
    [    0.538186] OMAP DSS rev 2.0
    [    0.546078] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
    [    0.551538] omap8250 44e09000.serial: No clock speed specified: using default: 48000000
    [    0.552232] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 104, base_baud = 3000000) is a 8250
    [    1.256153] console [ttyS0] enabled
    [    1.260317] omap8250 481a6000.serial: No clock speed specified: using default: 48000000
    [    1.269054] 481a6000.serial: ttyS3 at MMIO 0x481a6000 (irq = 76, base_baud = 3000000) is a 8250
    [    1.280294] omap_rng 48310000.rng: OMAP Random Number Generator ver. 20
    [    1.287600] [drm] Initialized drm 1.1.0 20060810
    [    1.304685] brd: module loaded
    [    1.314388] loop: module loaded
    [    1.317902] (stk) :sysfs entries created
    [    1.322011] (stk) : debugfs entries created
    [    1.326377] (hci_tty): inside hci_tty_init
    [    1.331261] (hci_tty): allocated 250, 0
    [    1.340224] mtdoops: mtd device (mtddev=name/number) must be supplied
    [    1.352327] usbcore: registered new interface driver asix
    [    1.358024] usbcore: registered new interface driver ax88179_178a
    [    1.364362] usbcore: registered new interface driver cdc_ether
    [    1.370473] usbcore: registered new interface driver smsc95xx
    [    1.376438] usbcore: registered new interface driver net1080
    [    1.382354] usbcore: registered new interface driver cdc_subset
    [    1.388517] usbcore: registered new interface driver zaurus
    [    1.394353] usbcore: registered new interface driver cdc_ncm
    [    1.400681] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [    1.407286] ehci-pci: EHCI PCI platform driver
    [    1.412020] ehci-omap: OMAP-EHCI Host Controller driver
    [    1.417978] usbcore: registered new interface driver cdc_wdm
    [    1.423961] usbcore: registered new interface driver usb-storage
    [    1.431520] mousedev: PS/2 mouse device common for all mice
    [    1.439710] i2c-core: driver [rtc-ds1307] using legacy suspend method
    [    1.446247] i2c-core: driver [rtc-ds1307] using legacy resume method
    [    1.453419] omap_rtc 44e3e000.rtc: rtc core: registered 44e3e000.rtc as rtc0
    [    1.461830] i2c /dev entries driver
    [    1.465544] Driver for 1-wire Dallas network protocol.
    [    1.473841] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
    [    1.601147] mmc0: host does not support reading read-only switch. assuming write-enable.
    [    1.613920] mmc0: new high speed SDHC card at address aaaa
    [    1.620132] mmcblk0: mmc0:aaaa SS16G 14.8 GiB
    [    1.629424]  mmcblk0: p1 p2
    [    1.642080] ledtrig-cpu: registered to indicate activity on CPUs
    [    1.651664] omap-aes 53501000.aes: OMAP AES hw accel rev: 0.1
    [    1.658907] omap-des 53701000.des: OMAP DES hw accel rev: 0.33
    [    1.666411] omap-sham 53100000.sham: hw accel on OMAP rev 0.0
    [    1.675798] usbcore: registered new interface driver usbhid
    [    1.681452] usbhid: USB HID core driver
    [    1.685664] platform 44d00000.wkup_m3: Driver wkup_m3 requests probe deferral
    [    1.696630] platform sound@0: Driver asoc-simple-card requests probe deferral
    [    1.704934] oprofile: no performance counters
    [    1.709779] oprofile: using timer interrupt.
    [    1.714503] TCP: cubic registered
    [    1.717839] Initializing XFRM netlink socket
    [    1.722177] NET: Registered protocol family 17
    [    1.726679] NET: Registered protocol family 15
    [    1.731350] Key type dns_resolver registered
    [    1.736467] cpu cpu0: of_pm_voltdm_notifier_register: Failed to get cpu0 regulator/voltdm: -517
    [    1.745284] cpu cpu0: cpu0 clock notifier not ready, retry
    [    1.750901] platform cpufreq-cpu0.0: Driver cpufreq-cpu0 requests probe deferral
    [    1.759230] PM: bootloader does not support rtc-only!
    [    1.764472] ThumbEE CPU extension supported.
    [    1.768790] Registering SWP/SWPB emulation handler
    [    1.775680] vmmcwl_fixed: disabling
    [    1.779204] regulator-dummy: disabling
    [    1.785095] omapdrm omapdrm.0: DMM not available, disable DMM support
    [    1.793051] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [    1.799705] [drm] No driver support for vblank timestamp query.
    [    1.857911] Console: switching to colour frame buffer device 100x30
    [    1.871160] omapdrm omapdrm.0: fb0: omapdrm frame buffer device
    [    1.877110] omapdrm omapdrm.0: registered panic notifier
    [    1.882480] [drm] Initialized omapdrm 1.0.0 20110917 on minor 0
    [    1.888742] Error: Driver 'tfp410' is already registered, aborting...
    [    1.896994] omap-gpmc 50000000.gpmc: GPMC revision 6.0
    [    1.902231] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    1.909379] nand: device found, Manufacturer ID: 0xc8, Chip ID: 0xd1
    [    1.915820] nand: Unknown NAND 128MiB 3,3V 8-bit
    [    1.920464] nand: 128MiB, SLC, page size: 2048, OOB size: 64
    [    1.926164] using OMAP_ECC_BCH16_CODE_HW ECC scheme
    [    1.931109] not enough OOB bytes required = 104, available=64
    [    1.936990] omap2-nand: probe of omap2-nand.0 failed with error -22
    [    1.947621] prom_parse: Bad cell count for /ocp/i2c@44e0b000/tps65218@24
    [    1.957111] vdd_core: 920 <--> 1140 mV at 1100 mV
    [    1.962577] prom_parse: Bad cell count for /ocp/i2c@44e0b000/tps65218@24
    [    1.971462] vdd_mpu: 920 <--> 1375 mV at 1100 mV
    [    1.976334] prom_parse: Bad cell count for /ocp/i2c@44e0b000/tps65218@24
    [    1.986975] vdcdc3: 1500 mV
    [    1.990035] prom_parse: Bad cell count for /ocp/i2c@44e0b000/tps65218@24
    [    1.999576] v1_0bat: 1000 mV
    [    2.002735] prom_parse: Bad cell count for /ocp/i2c@44e0b000/tps65218@24
    [    2.011768] v1_8bat: 1800 mV
    [    2.014894] prom_parse: Bad cell count for /ocp/i2c@44e0b000/tps65218@24
    [    2.024233] LDO1: 1800 mV
    [    2.028187] omap_i2c 44e0b000.i2c: bus 0 rev0.12 at 100 kHz
    [    2.036972] omap_i2c 4802a000.i2c: bus 1 rev0.12 at 100 kHz
    [    2.043607]  remoteproc0: wkup_m3 is available
    [    2.048084]  remoteproc0: Note: remoteproc is still under development and considered experimental.
    [    2.057136]  remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    2.067686]  remoteproc0: Direct firmware load failed with error -2
    [    2.074015]  remoteproc0: Falling back to user helper
    [    2.079824] platform sound@0: Driver asoc-simple-card requests probe deferral
    [    2.088136] platform sound@0: Driver asoc-simple-card requests probe deferral
    [    2.160972] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6
    [    2.167116] davinci_mdio 4a101000.mdio: no live phy, scanning all
    [    2.173788] davinci_mdio: probe of 4a101000.mdio failed with error -5
    [    2.181925] platform sound@0: Driver asoc-simple-card requests probe deferral
    [    2.189249] cpsw 4a100000.ethernet: Detected MACID = 24:76:25:79:d5:3f
    [    2.211802] platform sound@0: Driver asoc-simple-card requests probe deferral
    [    2.219849] omap_rtc 44e3e000.rtc: hctosys: invalid date/time
    [    2.229390] ALSA device list:
    [    2.232469]   No soundcards found.
    [    2.272028] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
    [    2.280226] VFS: Mounted root (ext4 filesystem) on device 179:2.
    [    2.291269] devtmpfs: mounted
    [    2.294747] Freeing unused kernel memory: 264K (c07de000 - c0820000)
    [    2.327965] Unhandled fault: imprecise external abort (0x1406) at 0xb6ff887c
    [    2.335394] Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000007
    [    2.335394]
    [    2.344577] drm_kms_helper: panic occurred, switching back to text console
                                  <= INIT process 들어가자마자 panic 발생되는 것으로 추정
                                  <- Supposed that Panic occurred upon when enters INITprocess.
                                  
    
    

  • Hi Jack,
    There's a board porting guide:
    software-dl.ti.com/.../How_to_Guides_Board_Port.html
    Please refer the porting guide for options for the new board porting, the debugging tips for new board bring-up...
    Best,
    -Hong

  • Thanks Hong.

    The same issue is filed from separated thread. 

    Please also look into other thread.

    https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1071766/processor-sdk-am437x-minimum-required-ddr-memory-size-for-processor-sdk-am4372/3970834#3970834

    Their custom board attached ISSI 256MB DDR. and SDK7.3 does not work at all even they managed EEPROM reading as they did it on top of SDK1.0 based code. and also appied their new DDR optimized parameter.

    Their system produces the paninc upon filesystem mounted although AM437x GP EVM works fine with their new built image based on SDK1.0 release. They tried to test with both SDK1.0 and 7.3 since the factory released SDCARD image was able to pass the EEPROM reading in the beginning of their issue earlier.

    Thanks.

    Regards, 

    Jack

  • Hi Jack,
    As replied earlier from Nick in the referenced e2e post, please clarify which TI SDK release is used.
    Best,
    -Hong

  • Hi Hong

    Sorry for lack of information about SDK used. They did compare btw SDK 1.0(factory SD card) and SDK 7.3.0.5.

    the latest SDK version would be verified by customer. PROCESSOR-SDK-AM437x-7.3.0.005.

    BTW. 

    Could you please figure out why the PROCESSOR-SDK latest version can not boot up on top of their custom board. The differences are from DDR size (256MB) and Ethernet which was removed.

    Please see the their captured log from both EVM Kit and Custom Board. There's no further progress after displaying "Starting Kernel..." from the target board.

    Selecting environment with bad CRC
    Initial value for argc=3
    Final value for argc=3
    initcall: 808101f1 (relocated to 8ff421f1)
    initcall: 808187f9 (relocated to 8ff4a7f9)
    initcall: 808100a7 (relocated to 8ff420a7)
    initcall: 80815119 (relocated to 8ff47119)
    Initial value for argc=3
    Final value for argc=3
    Initial value for argc=3
    Final value for argc=3
    Initial value for argc=3
    Final value for argc=3
    initcall: 808018c1 (relocated to 8ff338c1)
    initcall: 8081009d (relocated to 8ff4209d)
    initcall: 80810085 (relocated to 8ff42085)
    initcall: 80802251 (relocated to 8ff34251)
    Enable clock module - 44df8a60
    Enable clock module - 44df8db8
    Enable clock module - 44df8a68
    Enable clock module - 44df8dc0
    ofnode_read_u32: clock-frequency: 0xb71b00 (12000000)
    clk_set_defaults(oscillator)
    clk_set_default_parents: could not read assigned-clock-parents for 8df22f08
    clk_set_defaults(oscillator)
    clk_set_default_parents: could not read assigned-clock-parents for 8df22f08
    initcall: 80810071 (relocated to 8ff42071)
    Net:   OF: ** translation for device ethernet@4a100000 **
    OF: bus is default (na=1, ns=1) on ocp
    OF: translating address: 0000104a
    OF: parent bus is default (na=1, ns=1) on
    OF: no ranges, 1:1 translation
    OF: parent translation for: 00000000
    OF: with offset: 1242562560
    OF: one level translation: 0000104a
    OF: reached root node
    ofnode_read_u32: cpdma_channels: 0x8 (8)
    ofnode_read_u32: slaves: 0x1 (1)
    ofnode_read_u32: ale_entries: 0x400 (1024)
    ofnode_read_u32: bd_ram_size: 0x2000 (8192)
    ofnode_read_u32: mac_control: 0x20 (32)
    gpio_get_list_count: Node 'ethernet@4a100000', property 'mode-gpios', GPIO count failed: -2
    ofnode_read_u32: active_slave: 0x0 (0)
    fdtdec_get_addr_size_fixed: reg: OF: ** translation for device mdio@4a101000 **
    OF: bus is default (na=1, ns=1) on ethernet@4a100000
    OF: translating address: 0010104a
    OF: parent bus is default (na=1, ns=1) on ocp
    OF: no ranges, 1:1 translation
    OF: parent translation for: 00000000
    OF: with offset: 1242566656
    OF: one level translation: 0010104a
    OF: parent bus is default (na=1, ns=1) on
    OF: no ranges, 1:1 translation
    OF: parent translation for: 00000000
    OF: with offset: 1242566656
    OF: one level translation: 0010104a
    OF: reached root node
    addr=4a101000, size=100
    ofnode_read_string: phy-mode: rgmii
    ofnode_read_u32: reg: 0x0 (0)
    ofnode_read_u32: max-speed: (not found)
    fdtdec_get_addr_size_fixed: reg: OF: ** translation for device cpsw-phy-sel@44e10650 **
    OF: bus is default (na=1, ns=1) on ethernet@4a100000
    OF: translating address: 5006e144
    OF: parent bus is default (na=1, ns=1) on ocp
    OF: no ranges, 1:1 translation
    OF: parent translation for: 00000000
    OF: with offset: 1155597904
    OF: one level translation: 5006e144
    OF: parent bus is default (na=1, ns=1) on
    OF: no ranges, 1:1 translation
    OF: parent translation for: 00000000
    OF: with offset: 1155597904
    OF: one level translation: 5006e144
    OF: reached root node
    addr=44e10650, size=4
    ofnode_read_bool: rmii-clock-ext: false
    ofnode_read_string: compatible: ti,am43xx-cpsw-phy-sel
    fdtdec_lookup_phandle: syscon
    OF: ** translation for device scm_conf@0 **
    OF: bus is default (na=1, ns=1) on scm@210000
    OF: translating address: 00000000
    OF: parent bus is default (na=1, ns=1) on l4_wkup@44c00000
    OF: walking ranges...
    OF: default map, cp=0, s=4000, da=0
    OF: parent translation for: 00002100
    OF: with offset: 0
    OF: one level translation: 00002100
    OF: parent bus is default (na=1, ns=1) on ocp
    OF: walking ranges...
    OF: default map, cp=0, s=287000, da=210000
    OF: parent translation for: 0000c044
    OF: with offset: 2162688
    OF: one level translation: 0000e144
    OF: parent bus is default (na=1, ns=1) on
    OF: no ranges, 1:1 translation
    OF: parent translation for: 00000000
    OF: with offset: 1155596288
    OF: one level translation: 0000e144
    OF: reached root node
    clk_set_defaults(ethernet@4a100000)
    clk_set_default_parents: could not read assigned-clock-parents for 8df22a00
    ethernet@4a100000 connected to Generic PHY
    get_prop_check_min_len: mac-address
    get_prop_check_min_len: local-mac-address
    Initial value for argc=3
    Final value for argc=3
    
    Warning: ethernet@4a100000 using MAC address from ROM
    eth0: ethernet@4a100000
    initcall: 80810069 (relocated to 8ff42069)
    Initial value for argc=3
    Final value for argc=3
    fdtdec_get_config_int: bootdelay
    ### main_loop entered: bootdelay=2
    
    fdtdec_get_config_int: kernel-offset
    fdtdec_get_config_int: rootdisk-offset
    fdtdec_get_config_string: bootcmd
    fdtdec_get_config_int: bootsecure
    ### main_loop: bootcmd="if test ${boot_fit} -eq 1; then run update_to_fit;fi;run findfdt; run envboot;run mmcboot;run usbboot;run nandboot; "
    Hit any key to stop autoboot:  0
    test(4): '0' '-eq' '1': returns 1
    Command failed, result=1
    Initial value for argc=3
    Final value for argc=3
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    clock is disabled (0Hz)
    clock is enabled (400000Hz)
    clock is enabled (50000000Hz)
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    switch to partitions #0, OK
    mmc0 is current device
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    clock is disabled (0Hz)
    clock is enabled (400000Hz)
    clock is enabled (50000000Hz)
    SD/MMC found on device 0
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    miss: start 800, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 800, count 1
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf13000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf12000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    EFI: efi_add_memory_map: 0x8cf11000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf10000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf12000 0x1 7 no
    miss: start 800, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 800, count 1
    FAT32, fat_sect: 32, fatlength: 1182
    Rootdir begins at cluster: 2, sector: 2396, offset: 12b800
    Data begins at: 2394
    Sector size: 512, cluster size: 1
    FAT read(sect=2396), clust_size=1, read_size=1, DIRENTSPERBLOCK=16
    miss: start 115c, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 115c, count 1
    FAT32: entry: 0x00000002 = 2, offset: 0x0002 = 2
    debug: evicting -1, dirty: 0
    miss: start 820, count 6
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 820, count 6
    FAT32: ret: 0x0ffffff8, entry: 0x00000002, offset: 0x0002
    nextclust: 0xffffff8
    hit: start 800, count 1
    FAT32, fat_sect: 32, fatlength: 1182
    Rootdir begins at cluster: 2, sector: 2396, offset: 12b800
    Data begins at: 2394
    Sector size: 512, cluster size: 1
    FAT read(sect=2396), clust_size=1, read_size=1, DIRENTSPERBLOCK=16
    hit: start 115c, count 1
    FAT32: entry: 0x00000002 = 2, offset: 0x0002 = 2
    debug: evicting -1, dirty: 0
    hit: start 820, count 6
    FAT32: ret: 0x0ffffff8, entry: 0x00000002, offset: 0x0002
    nextclust: 0xffffff8
    Command failed, result=1
    Command failed, result=1
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    miss: start 800, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 800, count 1
    EFI: efi_add_memory_map: 0x8cf13000 0x1 7 no
    EFI: efi_add_memory_map: 0x8cf10000 0x1 7 no
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf13000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf12000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    EFI: efi_add_memory_map: 0x8cf10000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf0f000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf12000 0x1 7 no
    miss: start 800, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 800, count 1
    FAT32, fat_sect: 32, fatlength: 1182
    Rootdir begins at cluster: 2, sector: 2396, offset: 12b800
    Data begins at: 2394
    Sector size: 512, cluster size: 1
    FAT read(sect=2396), clust_size=1, read_size=1, DIRENTSPERBLOCK=16
    miss: start 115c, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 115c, count 1
    FAT32: entry: 0x00000002 = 2, offset: 0x0002 = 2
    debug: evicting -1, dirty: 0
    miss: start 820, count 6
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 820, count 6
    FAT32: ret: 0x0ffffff8, entry: 0x00000002, offset: 0x0002
    nextclust: 0xffffff8
    hit: start 800, count 1
    FAT32, fat_sect: 32, fatlength: 1182
    Rootdir begins at cluster: 2, sector: 2396, offset: 12b800
    Data begins at: 2394
    Sector size: 512, cluster size: 1
    FAT read(sect=2396), clust_size=1, read_size=1, DIRENTSPERBLOCK=16
    hit: start 115c, count 1
    FAT32: entry: 0x00000002 = 2, offset: 0x0002 = 2
    debug: evicting -1, dirty: 0
    hit: start 820, count 6
    FAT32: ret: 0x0ffffff8, entry: 0x00000002, offset: 0x0002
    nextclust: 0xffffff8
    Command failed, result=1
    Command failed, result=1
    Command failed, result=1
    Command failed, result=1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    clock is disabled (0Hz)
    clock is enabled (400000Hz)
    clock is enabled (50000000Hz)
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    switch to partitions #0, OK
    mmc0 is current device
    Initial value for argc=3
    Final value for argc=3
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    clock is disabled (0Hz)
    clock is enabled (400000Hz)
    clock is enabled (50000000Hz)
    SD/MMC found on device 0
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    miss: start 26000, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 26000, count 1
     <2, 0, 1024>
    miss: start 26002, count 2
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 26002, count 2
    EXT4 features COMPAT: 0000003c INCOMPAT: 00000002 RO_COMPAT: 00000003
    EXT2 rev 1, inode_size 256, descriptor size 32
    ext4fs read 0 group descriptor (blkno 1 blkoff 0)
     <8, 0, 32>
    miss: start 26008, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 26008, count 1
     <7584, 256, 128>
    miss: start 27da0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 27da0, count 1
    EFI: efi_add_memory_map: 0x8cf13000 0x1 7 no
    EFI: efi_add_memory_map: 0x8cf0f000 0x1 7 no
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf13000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf12000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    EFI: efi_add_memory_map: 0x8cf0f000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf0e000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf12000 0x1 7 no
    Iterate dir boot
    read_allocated_block 1457
     <11656, 0, 8>
    miss: start 28d88, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 28d88, count 1
    read_allocated_block 1457
     <11656, 8, 1>
    hit: start 28d88, count 1
    iterate >.<
    read_allocated_block 1457
     <11656, 12, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 20, 2>
    hit: start 28d88, count 1
    iterate >..<
    read_allocated_block 1457
     <11656, 24, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 32, 3>
    hit: start 28d88, count 1
    iterate >bin<
    read_allocated_block 1457
     <11656, 36, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 44, 4>
    hit: start 28d88, count 1
    iterate >boot<
    Iterate dir zImage
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    miss: start 2600b, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 2600b, count 1
     <13107216, 0, 128>
    miss: start ca6010, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start ca6010, count 1
    read_allocated_block 1638911
     <13111288, 0, 8>
    miss: start ca6ff8, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 8, 1>
    hit: start ca6ff8, count 1
    iterate >.<
    read_allocated_block 1638911
     <13111288, 12, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 20, 2>
    hit: start ca6ff8, count 1
    iterate >..<
    read_allocated_block 1638911
     <13111288, 24, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 32, 6>
    hit: start ca6ff8, count 1
    iterate >zImage<
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    hit: start 2600b, count 1
     <13107216, 256, 128>
    hit: start ca6010, count 1
    ## Current stack ends at 0x8df14180 lmb_dump_all:
        memory.cnt             = 0x1
        memory.size            = 0x0
        memory.reg[0x0].base   = 0x80000000
                       .size   = 0x10000000
    
        reserved.cnt           = 0x1
        reserved.size          = 0x0
        reserved.reg[0x0].base = 0x8df13180
                         .size = 0x20ece80
    Iterate dir boot
    read_allocated_block 1457
     <11656, 0, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 8, 1>
    hit: start 28d88, count 1
    iterate >.<
    read_allocated_block 1457
     <11656, 12, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 20, 2>
    hit: start 28d88, count 1
    iterate >..<
    read_allocated_block 1457
     <11656, 24, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 32, 3>
    hit: start 28d88, count 1
    iterate >bin<
    read_allocated_block 1457
     <11656, 36, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 44, 4>
    hit: start 28d88, count 1
    iterate >boot<
    Iterate dir zImage
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    hit: start 2600b, count 1
     <13107216, 0, 128>
    hit: start ca6010, count 1
    read_allocated_block 1638911
     <13111288, 0, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 8, 1>
    hit: start ca6ff8, count 1
    iterate >.<
    read_allocated_block 1638911
     <13111288, 12, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 20, 2>
    hit: start ca6ff8, count 1
    iterate >..<
    read_allocated_block 1638911
     <13111288, 24, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 32, 6>
    hit: start ca6ff8, count 1
    iterate >zImage<
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    hit: start 2600b, count 1
     <13107216, 256, 128>
    hit: start ca6010, count 1
    read_allocated_block 2785838
    read_allocated_block 2785839
    read_allocated_block 2785840
    read_allocated_block 2785841
    read_allocated_block 2785842
    read_allocated_block 2785843
    read_allocated_block 2785844
    read_allocated_block 2785845
    read_allocated_block 2785846
    read_allocated_block 2785847
    read_allocated_block 2785848
    read_allocated_block 2785849
     <22290440, 0, 4096>
    miss: start 1568008, count 8
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 1568008, count 8
    read_allocated_block 2785850
    read_allocated_block 2785851
    read_allocated_block 2785852
    read_allocated_block 2785853
    read_allocated_block 17968
     <22286704, 0, 65536>
    miss: start 1567170, count 128
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 17969
    read_allocated_block 17970
    read_allocated_block 17971
    read_allocated_block 17972
    read_allocated_block 17973
    read_allocated_block 17974
    read_allocated_block 17975
    read_allocated_block 17976
    read_allocated_block 17977
    read_allocated_block 17978
    read_allocated_block 17979
    read_allocated_block 17980
    read_allocated_block 17981
    read_allocated_block 17982
    read_allocated_block 17983
    read_allocated_block 18080
     <143744, 0, 65536>
    miss: start 49180, count 128
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 18081
    read_allocated_block 18082
    read_allocated_block 18083
    read_allocated_block 18084
    read_allocated_block 18085
    read_allocated_block 18086
    read_allocated_block 18087
    read_allocated_block 18088
    read_allocated_block 18089
    read_allocated_block 18090
    read_allocated_block 18091
    read_allocated_block 18092
    read_allocated_block 18093
    read_allocated_block 18094
    read_allocated_block 18095
    read_allocated_block 18096
    read_allocated_block 18097
    read_allocated_block 18098
    read_allocated_block 18099
    read_allocated_block 18100
    read_allocated_block 18101
    read_allocated_block 18102
    read_allocated_block 18103
    read_allocated_block 18104
    read_allocated_block 18105
    read_allocated_block 18106
    read_allocated_block 18107
    read_allocated_block 18108
    read_allocated_block 18109
    read_allocated_block 18110
    read_allocated_block 18111
    read_allocated_block 18144
     <144640, 0, 131072>
    miss: start 49500, count 256
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 18145
    read_allocated_block 18146
    read_allocated_block 18147
    read_allocated_block 18148
    read_allocated_block 18149
    read_allocated_block 18150
    read_allocated_block 18151
    read_allocated_block 18152
    read_allocated_block 18153
    read_allocated_block 18154
    read_allocated_block 18155
    read_allocated_block 18156
    read_allocated_block 18157
    read_allocated_block 18158
    read_allocated_block 18159
    read_allocated_block 18160
    read_allocated_block 18161
    read_allocated_block 18162
    read_allocated_block 18163
    read_allocated_block 18164
    read_allocated_block 18165
    read_allocated_block 18166
    read_allocated_block 18167
    read_allocated_block 18168
    read_allocated_block 18169
    read_allocated_block 18170
    read_allocated_block 18171
    read_allocated_block 18172
    read_allocated_block 18173
    read_allocated_block 18174
    read_allocated_block 18175
    read_allocated_block 18176
    read_allocated_block 18177
    read_allocated_block 18178
    read_allocated_block 18179
    read_allocated_block 18180
    read_allocated_block 18181
    read_allocated_block 18182
    read_allocated_block 18183
    read_allocated_block 18184
    read_allocated_block 18185
    read_allocated_block 18186
    read_allocated_block 18187
    read_allocated_block 18188
    read_allocated_block 18189
    read_allocated_block 18190
    read_allocated_block 18191
    read_allocated_block 18192
    read_allocated_block 18193
    read_allocated_block 18194
    read_allocated_block 18195
    read_allocated_block 18196
    read_allocated_block 18197
    read_allocated_block 18198
    read_allocated_block 18199
    read_allocated_block 18200
    read_allocated_block 18201
    read_allocated_block 18202
    read_allocated_block 18203
    read_allocated_block 18204
    read_allocated_block 18205
    read_allocated_block 18206
    read_allocated_block 18207
    read_allocated_block 18304
     <145152, 0, 262144>
    miss: start 49700, count 512
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 18305
    read_allocated_block 18306
    read_allocated_block 18307
    read_allocated_block 18308
    read_allocated_block 18309
    read_allocated_block 18310
    read_allocated_block 18311
    read_allocated_block 18312
    read_allocated_block 18313
    read_allocated_block 18314
    read_allocated_block 18315
    read_allocated_block 18316
    read_allocated_block 18317
    read_allocated_block 18318
    read_allocated_block 18319
    read_allocated_block 18320
    read_allocated_block 18321
    read_allocated_block 18322
    read_allocated_block 18323
    read_allocated_block 18324
    read_allocated_block 18325
    read_allocated_block 18326
    read_allocated_block 18327
    read_allocated_block 18328
    read_allocated_block 18329
    read_allocated_block 18330
    read_allocated_block 18331
    read_allocated_block 18332
    read_allocated_block 18333
    read_allocated_block 18334
    read_allocated_block 18335
    read_allocated_block 18336
    read_allocated_block 18337
    read_allocated_block 18338
    read_allocated_block 18339
    read_allocated_block 18340
    read_allocated_block 18341
    read_allocated_block 18342
    read_allocated_block 18343
    read_allocated_block 18344
    read_allocated_block 18345
    read_allocated_block 18346
    read_allocated_block 18347
    read_allocated_block 18348
    read_allocated_block 18349
    read_allocated_block 18350
    read_allocated_block 18351
    read_allocated_block 18352
    read_allocated_block 18353
    read_allocated_block 18354
    read_allocated_block 18355
    read_allocated_block 18356
    read_allocated_block 18357
    read_allocated_block 18358
    read_allocated_block 18359
    read_allocated_block 18360
    read_allocated_block 18361
    read_allocated_block 18362
    read_allocated_block 18363
    read_allocated_block 18364
    read_allocated_block 18365
    read_allocated_block 18366
    read_allocated_block 18367
    read_allocated_block 18368
    read_allocated_block 18369
    read_allocated_block 18370
    read_allocated_block 18371
    read_allocated_block 18372
    read_allocated_block 18373
    read_allocated_block 18374
    read_allocated_block 18375
    read_allocated_block 18376
    read_allocated_block 18377
    read_allocated_block 18378
    read_allocated_block 18379
    read_allocated_block 18380
    read_allocated_block 18381
    read_allocated_block 18382
    read_allocated_block 18383
    read_allocated_block 18384
    read_allocated_block 18385
    read_allocated_block 18386
    read_allocated_block 18387
    read_allocated_block 18388
    read_allocated_block 18389
    read_allocated_block 18390
    read_allocated_block 18391
    read_allocated_block 18392
    read_allocated_block 18393
    read_allocated_block 18394
    read_allocated_block 18395
    read_allocated_block 18396
    read_allocated_block 18397
    read_allocated_block 18398
    read_allocated_block 18399
    read_allocated_block 18400
    read_allocated_block 18401
    read_allocated_block 18402
    read_allocated_block 18403
    read_allocated_block 18404
    read_allocated_block 18405
    read_allocated_block 18406
    read_allocated_block 18407
    read_allocated_block 18408
    read_allocated_block 18409
    read_allocated_block 18410
    read_allocated_block 18411
    read_allocated_block 18412
    read_allocated_block 18413
    read_allocated_block 18414
    read_allocated_block 18415
    read_allocated_block 18416
    read_allocated_block 18417
    read_allocated_block 18418
    read_allocated_block 18419
    read_allocated_block 18420
    read_allocated_block 18421
    read_allocated_block 18422
    read_allocated_block 18423
    read_allocated_block 18424
    read_allocated_block 18425
    read_allocated_block 18426
    read_allocated_block 18427
    read_allocated_block 18428
    read_allocated_block 18429
    read_allocated_block 18430
    read_allocated_block 18431
    read_allocated_block 18560
     <146432, 0, 524288>
    miss: start 49c00, count 1024
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 18561
    read_allocated_block 18562
    read_allocated_block 18563
    read_allocated_block 18564
    read_allocated_block 18565
    read_allocated_block 18566
    read_allocated_block 18567
    read_allocated_block 18568
    read_allocated_block 18569
    read_allocated_block 18570
    read_allocated_block 18571
    read_allocated_block 18572
    read_allocated_block 18573
    read_allocated_block 18574
    read_allocated_block 18575
    read_allocated_block 18576
    read_allocated_block 18577
    read_allocated_block 18578
    read_allocated_block 18579
    read_allocated_block 18580
    read_allocated_block 18581
    read_allocated_block 18582
    read_allocated_block 18583
    read_allocated_block 18584
    read_allocated_block 18585
    read_allocated_block 18586
    read_allocated_block 18587
    read_allocated_block 18588
    read_allocated_block 18589
    read_allocated_block 18590
    read_allocated_block 18591
    read_allocated_block 18592
    read_allocated_block 18593
    read_allocated_block 18594
    read_allocated_block 18595
    read_allocated_block 18596
    read_allocated_block 18597
    read_allocated_block 18598
    read_allocated_block 18599
    read_allocated_block 18600
    read_allocated_block 18601
    read_allocated_block 18602
    read_allocated_block 18603
    read_allocated_block 18604
    read_allocated_block 18605
    read_allocated_block 18606
    read_allocated_block 18607
    read_allocated_block 18608
    read_allocated_block 18609
    read_allocated_block 18610
    read_allocated_block 18611
    read_allocated_block 18612
    read_allocated_block 18613
    read_allocated_block 18614
    read_allocated_block 18615
    read_allocated_block 18616
    read_allocated_block 18617
    read_allocated_block 18618
    read_allocated_block 18619
    read_allocated_block 18620
    read_allocated_block 18621
    read_allocated_block 18622
    read_allocated_block 18623
    read_allocated_block 18624
    read_allocated_block 18625
    read_allocated_block 18626
    read_allocated_block 18627
    read_allocated_block 18628
    read_allocated_block 18629
    read_allocated_block 18630
    read_allocated_block 18631
    read_allocated_block 18632
    read_allocated_block 18633
    read_allocated_block 18634
    read_allocated_block 18635
    read_allocated_block 18636
    read_allocated_block 18637
    read_allocated_block 18638
    read_allocated_block 18639
    read_allocated_block 18640
    read_allocated_block 18641
    read_allocated_block 18642
    read_allocated_block 18643
    read_allocated_block 18644
    read_allocated_block 18645
    read_allocated_block 18646
    read_allocated_block 18647
    read_allocated_block 18648
    read_allocated_block 18649
    read_allocated_block 18650
    read_allocated_block 18651
    read_allocated_block 18652
    read_allocated_block 18653
    read_allocated_block 18654
    read_allocated_block 18655
    read_allocated_block 18656
    read_allocated_block 18657
    read_allocated_block 18658
    read_allocated_block 18659
    read_allocated_block 18660
    read_allocated_block 18661
    read_allocated_block 18662
    read_allocated_block 18663
    read_allocated_block 18664
    read_allocated_block 18665
    read_allocated_block 18666
    read_allocated_block 18667
    read_allocated_block 18668
    read_allocated_block 18669
    read_allocated_block 18670
    read_allocated_block 18671
    read_allocated_block 18672
    read_allocated_block 18673
    read_allocated_block 18674
    read_allocated_block 18675
    read_allocated_block 18676
    read_allocated_block 18677
    read_allocated_block 18678
    read_allocated_block 18679
    read_allocated_block 18680
    read_allocated_block 18681
    read_allocated_block 18682
    read_allocated_block 18683
    read_allocated_block 18684
    read_allocated_block 18685
    read_allocated_block 18686
    read_allocated_block 18687
    read_allocated_block 18688
    read_allocated_block 18689
    read_allocated_block 18690
    read_allocated_block 18691
    read_allocated_block 18692
    read_allocated_block 18693
    read_allocated_block 18694
    read_allocated_block 18695
    read_allocated_block 18696
    read_allocated_block 18697
    read_allocated_block 18698
    read_allocated_block 18699
    read_allocated_block 18700
    read_allocated_block 18701
    read_allocated_block 18702
    read_allocated_block 18703
    read_allocated_block 18704
    read_allocated_block 18705
    read_allocated_block 18706
    read_allocated_block 18707
    read_allocated_block 18708
    read_allocated_block 18709
    read_allocated_block 18710
    read_allocated_block 18711
    read_allocated_block 18712
    read_allocated_block 18713
    read_allocated_block 18714
    read_allocated_block 18715
    read_allocated_block 18716
    read_allocated_block 18717
    read_allocated_block 18718
    read_allocated_block 18719
    read_allocated_block 18720
    read_allocated_block 18721
    read_allocated_block 18722
    read_allocated_block 18723
    read_allocated_block 18724
    read_allocated_block 18725
    read_allocated_block 18726
    read_allocated_block 18727
    read_allocated_block 18728
    read_allocated_block 18729
    read_allocated_block 18730
    read_allocated_block 18731
    read_allocated_block 18732
    read_allocated_block 18733
    read_allocated_block 18734
    read_allocated_block 18735
    read_allocated_block 18736
    read_allocated_block 18737
    read_allocated_block 18738
    read_allocated_block 18739
    read_allocated_block 18740
    read_allocated_block 18741
    read_allocated_block 18742
    read_allocated_block 18743
    read_allocated_block 18744
    read_allocated_block 18745
    read_allocated_block 18746
    read_allocated_block 18747
    read_allocated_block 18748
    read_allocated_block 18749
    read_allocated_block 18750
    read_allocated_block 18751
    read_allocated_block 18752
    read_allocated_block 18753
    read_allocated_block 18754
    read_allocated_block 18755
    read_allocated_block 18756
    read_allocated_block 18757
    read_allocated_block 18758
    read_allocated_block 18759
    read_allocated_block 18760
    read_allocated_block 18761
    read_allocated_block 18762
    read_allocated_block 18763
    read_allocated_block 18764
    read_allocated_block 18765
    read_allocated_block 18766
    read_allocated_block 18767
    read_allocated_block 18768
    read_allocated_block 18769
    read_allocated_block 18770
    read_allocated_block 18771
    read_allocated_block 18772
    read_allocated_block 18773
    read_allocated_block 18774
    read_allocated_block 18775
    read_allocated_block 18776
    read_allocated_block 18777
    read_allocated_block 18778
    read_allocated_block 18779
    read_allocated_block 18780
    read_allocated_block 18781
    read_allocated_block 18782
    read_allocated_block 18783
    read_allocated_block 18784
    read_allocated_block 18785
    read_allocated_block 18786
    read_allocated_block 18787
    read_allocated_block 18788
    read_allocated_block 18789
    read_allocated_block 18790
    read_allocated_block 18791
    read_allocated_block 18792
    read_allocated_block 18793
    read_allocated_block 18794
    read_allocated_block 18795
    read_allocated_block 18796
    read_allocated_block 18797
    read_allocated_block 18798
    read_allocated_block 18799
    read_allocated_block 18800
    read_allocated_block 18801
    read_allocated_block 18802
    read_allocated_block 18803
    read_allocated_block 18804
    read_allocated_block 18805
    read_allocated_block 18806
    read_allocated_block 18807
    read_allocated_block 18808
    read_allocated_block 18809
    read_allocated_block 18810
    read_allocated_block 18811
    read_allocated_block 18812
    read_allocated_block 18813
    read_allocated_block 18814
    read_allocated_block 18815
    read_allocated_block 18944
     <148480, 0, 1048576>
    miss: start 4a400, count 2048
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 18945
    read_allocated_block 18946
    read_allocated_block 18947
    read_allocated_block 18948
    read_allocated_block 18949
    read_allocated_block 18950
    read_allocated_block 18951
    read_allocated_block 18952
    read_allocated_block 18953
    read_allocated_block 18954
    read_allocated_block 18955
    read_allocated_block 18956
    read_allocated_block 18957
    read_allocated_block 18958
    read_allocated_block 18959
    read_allocated_block 18960
    read_allocated_block 18961
    read_allocated_block 18962
    read_allocated_block 18963
    read_allocated_block 18964
    read_allocated_block 18965
    read_allocated_block 18966
    read_allocated_block 18967
    read_allocated_block 18968
    read_allocated_block 18969
    read_allocated_block 18970
    read_allocated_block 18971
    read_allocated_block 18972
    read_allocated_block 18973
    read_allocated_block 18974
    read_allocated_block 18975
    read_allocated_block 18976
    read_allocated_block 18977
    read_allocated_block 18978
    read_allocated_block 18979
    read_allocated_block 18980
    read_allocated_block 18981
    read_allocated_block 18982
    read_allocated_block 18983
    read_allocated_block 18984
    read_allocated_block 18985
    read_allocated_block 18986
    read_allocated_block 18987
    read_allocated_block 18988
    read_allocated_block 18989
    read_allocated_block 18990
    read_allocated_block 18991
    read_allocated_block 18992
    read_allocated_block 18993
    read_allocated_block 18994
    read_allocated_block 18995
    read_allocated_block 18996
    read_allocated_block 18997
    read_allocated_block 18998
    read_allocated_block 18999
    read_allocated_block 19000
    read_allocated_block 19001
    read_allocated_block 19002
    read_allocated_block 19003
    read_allocated_block 19004
    read_allocated_block 19005
    read_allocated_block 19006
    read_allocated_block 19007
    read_allocated_block 19008
    read_allocated_block 19009
    read_allocated_block 19010
    read_allocated_block 19011
    read_allocated_block 19012
    read_allocated_block 19013
    read_allocated_block 19014
    read_allocated_block 19015
    read_allocated_block 19016
    read_allocated_block 19017
    read_allocated_block 19018
    read_allocated_block 19019
    read_allocated_block 19020
    read_allocated_block 19021
    read_allocated_block 19022
    read_allocated_block 19023
    read_allocated_block 19024
    read_allocated_block 19025
    read_allocated_block 19026
    read_allocated_block 19027
    read_allocated_block 19028
    read_allocated_block 19029
    read_allocated_block 19030
    read_allocated_block 19031
    read_allocated_block 19032
    read_allocated_block 19033
    read_allocated_block 19034
    read_allocated_block 19035
    read_allocated_block 19036
    read_allocated_block 19037
    read_allocated_block 19038
    read_allocated_block 19039
    read_allocated_block 19040
    read_allocated_block 19041
    read_allocated_block 19042
    read_allocated_block 19043
    read_allocated_block 19044
    read_allocated_block 19045
    read_allocated_block 19046
    read_allocated_block 19047
    read_allocated_block 19048
    read_allocated_block 19049
    read_allocated_block 19050
    read_allocated_block 19051
    read_allocated_block 19052
    read_allocated_block 19053
    read_allocated_block 19054
    read_allocated_block 19055
    read_allocated_block 19056
    read_allocated_block 19057
    read_allocated_block 19058
    read_allocated_block 19059
    read_allocated_block 19060
    read_allocated_block 19061
    read_allocated_block 19062
    read_allocated_block 19063
    read_allocated_block 19064
    read_allocated_block 19065
    read_allocated_block 19066
    read_allocated_block 19067
    read_allocated_block 19068
    read_allocated_block 19069
    read_allocated_block 19070
    read_allocated_block 19071
    read_allocated_block 19072
    read_allocated_block 19073
    read_allocated_block 19074
    read_allocated_block 19075
    read_allocated_block 19076
    read_allocated_block 19077
    read_allocated_block 19078
    read_allocated_block 19079
    read_allocated_block 19080
    read_allocated_block 19081
    read_allocated_block 19082
    read_allocated_block 19083
    read_allocated_block 19084
    read_allocated_block 19085
    read_allocated_block 19086
    read_allocated_block 19087
    read_allocated_block 19088
    read_allocated_block 19089
    read_allocated_block 19090
    read_allocated_block 19091
    read_allocated_block 19092
    read_allocated_block 19093
    read_allocated_block 19094
    read_allocated_block 19095
    read_allocated_block 19096
    read_allocated_block 19097
    read_allocated_block 19098
    read_allocated_block 19099
    read_allocated_block 19100
    read_allocated_block 19101
    read_allocated_block 19102
    read_allocated_block 19103
    read_allocated_block 19104
    read_allocated_block 19105
    read_allocated_block 19106
    read_allocated_block 19107
    read_allocated_block 19108
    read_allocated_block 19109
    read_allocated_block 19110
    read_allocated_block 19111
    read_allocated_block 19112
    read_allocated_block 19113
    read_allocated_block 19114
    read_allocated_block 19115
    read_allocated_block 19116
    read_allocated_block 19117
    read_allocated_block 19118
    read_allocated_block 19119
    read_allocated_block 19120
    read_allocated_block 19121
    read_allocated_block 19122
    read_allocated_block 19123
    read_allocated_block 19124
    read_allocated_block 19125
    read_allocated_block 19126
    read_allocated_block 19127
    read_allocated_block 19128
    read_allocated_block 19129
    read_allocated_block 19130
    read_allocated_block 19131
    read_allocated_block 19132
    read_allocated_block 19133
    read_allocated_block 19134
    read_allocated_block 19135
    read_allocated_block 19136
    read_allocated_block 19137
    read_allocated_block 19138
    read_allocated_block 19139
    read_allocated_block 19140
    read_allocated_block 19141
    read_allocated_block 19142
    read_allocated_block 19143
    read_allocated_block 19144
    read_allocated_block 19145
    read_allocated_block 19146
    read_allocated_block 19147
    read_allocated_block 19148
    read_allocated_block 19149
    read_allocated_block 19150
    read_allocated_block 19151
    read_allocated_block 19152
    read_allocated_block 19153
    read_allocated_block 19154
    read_allocated_block 19155
    read_allocated_block 19156
    read_allocated_block 19157
    read_allocated_block 19158
    read_allocated_block 19159
    read_allocated_block 19160
    read_allocated_block 19161
    read_allocated_block 19162
    read_allocated_block 19163
    read_allocated_block 19164
    read_allocated_block 19165
    read_allocated_block 19166
    read_allocated_block 19167
    read_allocated_block 19168
    read_allocated_block 19169
    read_allocated_block 19170
    read_allocated_block 19171
    read_allocated_block 19172
    read_allocated_block 19173
    read_allocated_block 19174
    read_allocated_block 19175
    read_allocated_block 19176
    read_allocated_block 19177
    read_allocated_block 19178
    read_allocated_block 19179
    read_allocated_block 19180
    read_allocated_block 19181
    read_allocated_block 19182
    read_allocated_block 19183
    read_allocated_block 19184
    read_allocated_block 19185
    read_allocated_block 19186
    read_allocated_block 19187
    read_allocated_block 19188
    read_allocated_block 19189
    read_allocated_block 19190
    read_allocated_block 19191
    read_allocated_block 19192
    read_allocated_block 19193
    read_allocated_block 19194
    read_allocated_block 19195
    read_allocated_block 19196
    read_allocated_block 19197
    read_allocated_block 19198
    read_allocated_block 19199
    read_allocated_block 19200
    read_allocated_block 19201
    read_allocated_block 19202
    read_allocated_block 19203
    read_allocated_block 19204
    read_allocated_block 19205
    read_allocated_block 19206
    read_allocated_block 19207
    read_allocated_block 19208
    read_allocated_block 19209
    read_allocated_block 19210
    read_allocated_block 19211
    read_allocated_block 19212
    read_allocated_block 19213
    read_allocated_block 19214
    read_allocated_block 19215
    read_allocated_block 19216
    read_allocated_block 19217
    read_allocated_block 19218
    read_allocated_block 19219
    read_allocated_block 19220
    read_allocated_block 19221
    read_allocated_block 19222
    read_allocated_block 19223
    read_allocated_block 19224
    read_allocated_block 19225
    read_allocated_block 19226
    read_allocated_block 19227
    read_allocated_block 19228
    read_allocated_block 19229
    read_allocated_block 19230
    read_allocated_block 19231
    read_allocated_block 19232
    read_allocated_block 19233
    read_allocated_block 19234
    read_allocated_block 19235
    read_allocated_block 19236
    read_allocated_block 19237
    read_allocated_block 19238
    read_allocated_block 19239
    read_allocated_block 19240
    read_allocated_block 19241
    read_allocated_block 19242
    read_allocated_block 19243
    read_allocated_block 19244
    read_allocated_block 19245
    read_allocated_block 19246
    read_allocated_block 19247
    read_allocated_block 19248
    read_allocated_block 19249
    read_allocated_block 19250
    read_allocated_block 19251
    read_allocated_block 19252
    read_allocated_block 19253
    read_allocated_block 19254
    read_allocated_block 19255
    read_allocated_block 19256
    read_allocated_block 19257
    read_allocated_block 19258
    read_allocated_block 19259
    read_allocated_block 19260
    read_allocated_block 19261
    read_allocated_block 19262
    read_allocated_block 19263
    read_allocated_block 19264
    read_allocated_block 19265
    read_allocated_block 19266
    read_allocated_block 19267
    read_allocated_block 19268
    read_allocated_block 19269
    read_allocated_block 19270
    read_allocated_block 19271
    read_allocated_block 19272
    read_allocated_block 19273
    read_allocated_block 19274
    read_allocated_block 19275
    read_allocated_block 19276
    read_allocated_block 19277
    read_allocated_block 19278
    read_allocated_block 19279
    read_allocated_block 19280
    read_allocated_block 19281
    read_allocated_block 19282
    read_allocated_block 19283
    read_allocated_block 19284
    read_allocated_block 19285
    read_allocated_block 19286
    read_allocated_block 19287
    read_allocated_block 19288
    read_allocated_block 19289
    read_allocated_block 19290
    read_allocated_block 19291
    read_allocated_block 19292
    read_allocated_block 19293
    read_allocated_block 19294
    read_allocated_block 19295
    read_allocated_block 19296
    read_allocated_block 19297
    read_allocated_block 19298
    read_allocated_block 19299
    read_allocated_block 19300
    read_allocated_block 19301
    read_allocated_block 19302
    read_allocated_block 19303
    read_allocated_block 19304
    read_allocated_block 19305
    read_allocated_block 19306
    read_allocated_block 19307
    read_allocated_block 19308
    read_allocated_block 19309
    read_allocated_block 19310
    read_allocated_block 19311
    read_allocated_block 19312
    read_allocated_block 19313
    read_allocated_block 19314
    read_allocated_block 19315
    read_allocated_block 19316
    read_allocated_block 19317
    read_allocated_block 19318
    read_allocated_block 19319
    read_allocated_block 19320
    read_allocated_block 19321
    read_allocated_block 19322
    read_allocated_block 19323
    read_allocated_block 19324
    read_allocated_block 19325
    read_allocated_block 19326
    read_allocated_block 19327
    read_allocated_block 19328
    read_allocated_block 19329
    read_allocated_block 19330
    read_allocated_block 19331
    read_allocated_block 19332
    read_allocated_block 19333
    read_allocated_block 19334
    read_allocated_block 19335
    read_allocated_block 19336
    read_allocated_block 19337
    read_allocated_block 19338
    read_allocated_block 19339
    read_allocated_block 19340
    read_allocated_block 19341
    read_allocated_block 19342
    read_allocated_block 19343
    read_allocated_block 19344
    read_allocated_block 19345
    read_allocated_block 19346
    read_allocated_block 19347
    read_allocated_block 19348
    read_allocated_block 19349
    read_allocated_block 19350
    read_allocated_block 19351
    read_allocated_block 19352
    read_allocated_block 19353
    read_allocated_block 19354
    read_allocated_block 19355
    read_allocated_block 19356
    read_allocated_block 19357
    read_allocated_block 19358
    read_allocated_block 19359
    read_allocated_block 19360
    read_allocated_block 19361
    read_allocated_block 19362
    read_allocated_block 19363
    read_allocated_block 19364
    read_allocated_block 19365
    read_allocated_block 19366
    read_allocated_block 19367
    read_allocated_block 19368
    read_allocated_block 19369
    read_allocated_block 19370
    read_allocated_block 19371
    read_allocated_block 19372
    read_allocated_block 19373
    read_allocated_block 19374
    read_allocated_block 19375
    read_allocated_block 19376
    read_allocated_block 19377
    read_allocated_block 19378
    read_allocated_block 19379
    read_allocated_block 19380
    read_allocated_block 19381
    read_allocated_block 19382
    read_allocated_block 19383
    read_allocated_block 19384
    read_allocated_block 19385
    read_allocated_block 19386
    read_allocated_block 19387
    read_allocated_block 19388
    read_allocated_block 19389
    read_allocated_block 19390
    read_allocated_block 19391
    read_allocated_block 19392
    read_allocated_block 19393
    read_allocated_block 19394
    read_allocated_block 19395
    read_allocated_block 19396
    read_allocated_block 19397
    read_allocated_block 19398
    read_allocated_block 19399
    read_allocated_block 19400
    read_allocated_block 19401
    read_allocated_block 19402
    read_allocated_block 19403
    read_allocated_block 19404
    read_allocated_block 19405
    read_allocated_block 19406
    read_allocated_block 19407
    read_allocated_block 19408
    read_allocated_block 19409
    read_allocated_block 19410
    read_allocated_block 19411
    read_allocated_block 19412
    read_allocated_block 19413
    read_allocated_block 19414
    read_allocated_block 19415
    read_allocated_block 19416
    read_allocated_block 19417
    read_allocated_block 19418
    read_allocated_block 19419
    read_allocated_block 19420
    read_allocated_block 19421
    read_allocated_block 19422
    read_allocated_block 19423
    read_allocated_block 19424
    read_allocated_block 19425
    read_allocated_block 19426
    read_allocated_block 19427
    read_allocated_block 19428
    read_allocated_block 19429
    read_allocated_block 19430
    read_allocated_block 19431
    read_allocated_block 19432
    read_allocated_block 19433
    read_allocated_block 19434
    read_allocated_block 19435
    read_allocated_block 19436
    read_allocated_block 19437
    read_allocated_block 19438
    read_allocated_block 19439
    read_allocated_block 19440
    read_allocated_block 19441
    read_allocated_block 19442
    read_allocated_block 19443
    read_allocated_block 19444
    read_allocated_block 19445
    read_allocated_block 19446
    read_allocated_block 19447
    read_allocated_block 19448
    read_allocated_block 19449
    read_allocated_block 19450
    read_allocated_block 19451
    read_allocated_block 19452
    read_allocated_block 19453
    read_allocated_block 19454
    read_allocated_block 19455
    read_allocated_block 19456
    read_allocated_block 19457
    read_allocated_block 19458
    read_allocated_block 19459
    read_allocated_block 19460
    read_allocated_block 19461
    read_allocated_block 19462
    read_allocated_block 19463
    read_allocated_block 19464
    read_allocated_block 19465
    read_allocated_block 19466
    read_allocated_block 19467
     <22290448, 0, 4096>
    miss: start 1568010, count 8
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 1568010, count 8
     <22290456, 0, 4096>
    miss: start 1568018, count 8
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 1568018, count 8
    read_allocated_block 19468
    read_allocated_block 19469
    read_allocated_block 19470
    read_allocated_block 19471
    read_allocated_block 19472
    read_allocated_block 19473
    read_allocated_block 19474
    read_allocated_block 19475
    read_allocated_block 19476
    read_allocated_block 19477
    read_allocated_block 19478
    read_allocated_block 19479
    read_allocated_block 19480
    read_allocated_block 19481
    read_allocated_block 19482
    read_allocated_block 19483
    read_allocated_block 19484
    read_allocated_block 19485
    read_allocated_block 19486
    read_allocated_block 19487
    read_allocated_block 19488
    read_allocated_block 19489
    read_allocated_block 19490
    read_allocated_block 19491
    read_allocated_block 19492
    read_allocated_block 19493
    read_allocated_block 19494
    read_allocated_block 19495
    read_allocated_block 19496
    read_allocated_block 19497
    read_allocated_block 19498
    read_allocated_block 19499
    read_allocated_block 19500
    read_allocated_block 19501
    read_allocated_block 19502
    read_allocated_block 19503
    read_allocated_block 19504
    read_allocated_block 19505
    read_allocated_block 19506
    read_allocated_block 19507
    read_allocated_block 19508
    read_allocated_block 19509
    read_allocated_block 19510
    read_allocated_block 19511
    read_allocated_block 19512
    read_allocated_block 19513
    read_allocated_block 19514
    read_allocated_block 19515
    read_allocated_block 19516
    read_allocated_block 19517
    read_allocated_block 19518
    read_allocated_block 19519
    read_allocated_block 19520
    read_allocated_block 19521
    read_allocated_block 19522
    read_allocated_block 19523
    read_allocated_block 19524
    read_allocated_block 19525
    read_allocated_block 19526
    read_allocated_block 19527
    read_allocated_block 19528
    read_allocated_block 19529
    read_allocated_block 19530
    read_allocated_block 19531
    read_allocated_block 19532
    read_allocated_block 19533
    read_allocated_block 19534
    read_allocated_block 19535
    read_allocated_block 19536
    read_allocated_block 19537
    read_allocated_block 19538
    read_allocated_block 19539
    read_allocated_block 19540
    read_allocated_block 19541
    read_allocated_block 19542
    read_allocated_block 19543
    read_allocated_block 19544
    read_allocated_block 19545
    read_allocated_block 19546
    read_allocated_block 19547
    read_allocated_block 19548
    read_allocated_block 19549
    read_allocated_block 19550
    read_allocated_block 19551
    read_allocated_block 19552
    read_allocated_block 19553
    read_allocated_block 19554
    read_allocated_block 19555
    read_allocated_block 19556
    read_allocated_block 19557
    read_allocated_block 19558
    read_allocated_block 19559
    read_allocated_block 19560
    read_allocated_block 19561
    read_allocated_block 19562
    read_allocated_block 19563
    read_allocated_block 19564
    read_allocated_block 19565
    read_allocated_block 19566
    read_allocated_block 19567
    read_allocated_block 19568
    read_allocated_block 19569
    read_allocated_block 19570
     <151552, 0, 2564608>
    miss: start 4b000, count 5009
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    4661760 bytes read in 3471 ms (1.3 MiB/s)
    Initial value for argc=3
    Final value for argc=3
    Initial value for argc=3
    Final value for argc=3
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    Initial value for argc=3
    Final value for argc=3
    Initial value for argc=7
    Final value for argc=7
    test(4): '0' '-eq' '1': returns 1
    Command failed, result=1
    test(4): 'try' '=' 'yes': returns 1
    Command failed, result=1
    test(4): 'try' '=' 'try': returns 0
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    miss: start 26000, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 26000, count 1
     <2, 0, 1024>
    miss: start 26002, count 2
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 26002, count 2
    EXT4 features COMPAT: 0000003c INCOMPAT: 00000002 RO_COMPAT: 00000003
    EXT2 rev 1, inode_size 256, descriptor size 32
    ext4fs read 0 group descriptor (blkno 1 blkoff 0)
     <8, 0, 32>
    miss: start 26008, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 26008, count 1
     <7584, 256, 128>
    miss: start 27da0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 27da0, count 1
    EFI: efi_add_memory_map: 0x8cf13000 0x1 7 no
    EFI: efi_add_memory_map: 0x8cf0e000 0x1 7 no
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf13000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf12000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    EFI: efi_add_memory_map: 0x8cf0e000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf0d000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf12000 0x1 7 no
    Iterate dir boot
    read_allocated_block 1457
     <11656, 0, 8>
    miss: start 28d88, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 28d88, count 1
    read_allocated_block 1457
     <11656, 8, 1>
    hit: start 28d88, count 1
    iterate >.<
    read_allocated_block 1457
     <11656, 12, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 20, 2>
    hit: start 28d88, count 1
    iterate >..<
    read_allocated_block 1457
     <11656, 24, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 32, 3>
    hit: start 28d88, count 1
    iterate >bin<
    read_allocated_block 1457
     <11656, 36, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 44, 4>
    hit: start 28d88, count 1
    iterate >boot<
    Iterate dir am437x-aum100.dtb
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    miss: start 2600b, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 2600b, count 1
     <13107216, 0, 128>
    miss: start ca6010, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start ca6010, count 1
    read_allocated_block 1638911
     <13111288, 0, 8>
    miss: start ca6ff8, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 8, 1>
    hit: start ca6ff8, count 1
    iterate >.<
    read_allocated_block 1638911
     <13111288, 12, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 20, 2>
    hit: start ca6ff8, count 1
    iterate >..<
    read_allocated_block 1638911
     <13111288, 24, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 32, 6>
    hit: start ca6ff8, count 1
    iterate >zImage<
    read_allocated_block 1638911
     <13111288, 40, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 48, 17>
    hit: start ca6ff8, count 1
    iterate >am437x-gp-evm.dtb<
    read_allocated_block 1638911
     <13111288, 68, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 76, 17>
    hit: start ca6ff8, count 1
    iterate >am437x-aum100.dtb<
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    hit: start 2600b, count 1
     <13107217, 256, 128>
    miss: start ca6011, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start ca6011, count 1
    ## Current stack ends at 0x8df13f50 lmb_dump_all:
        memory.cnt             = 0x1
        memory.size            = 0x0
        memory.reg[0x0].base   = 0x80000000
                       .size   = 0x10000000
    
        reserved.cnt           = 0x1
        reserved.size          = 0x0
        reserved.reg[0x0].base = 0x8df12f50
                         .size = 0x20ed0b0
    Iterate dir boot
    read_allocated_block 1457
     <11656, 0, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 8, 1>
    hit: start 28d88, count 1
    iterate >.<
    read_allocated_block 1457
     <11656, 12, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 20, 2>
    hit: start 28d88, count 1
    iterate >..<
    read_allocated_block 1457
     <11656, 24, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 32, 3>
    hit: start 28d88, count 1
    iterate >bin<
    read_allocated_block 1457
     <11656, 36, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 44, 4>
    hit: start 28d88, count 1
    iterate >boot<
    Iterate dir am437x-aum100.dtb
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    hit: start 2600b, count 1
     <13107216, 0, 128>
    hit: start ca6010, count 1
    read_allocated_block 1638911
     <13111288, 0, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 8, 1>
    hit: start ca6ff8, count 1
    iterate >.<
    read_allocated_block 1638911
     <13111288, 12, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 20, 2>
    hit: start ca6ff8, count 1
    iterate >..<
    read_allocated_block 1638911
     <13111288, 24, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 32, 6>
    hit: start ca6ff8, count 1
    iterate >zImage<
    read_allocated_block 1638911
     <13111288, 40, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 48, 17>
    hit: start ca6ff8, count 1
    iterate >am437x-gp-evm.dtb<
    read_allocated_block 1638911
     <13111288, 68, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 76, 17>
    hit: start ca6ff8, count 1
    iterate >am437x-aum100.dtb<
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    hit: start 2600b, count 1
     <13107217, 256, 128>
    hit: start ca6011, count 1
    read_allocated_block 2785870
    read_allocated_block 2785871
    read_allocated_block 2785872
    read_allocated_block 2785873
    read_allocated_block 2785874
    read_allocated_block 2785875
    read_allocated_block 2785876
    read_allocated_block 2785877
    read_allocated_block 2785878
    read_allocated_block 2785879
    read_allocated_block 2785880
    read_allocated_block 2785881
     <22290472, 0, 4096>
    miss: start 1568028, count 8
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 1568028, count 8
    read_allocated_block 2785882
    read_allocated_block 2785883
    read_allocated_block 2785884
    read_allocated_block 2785885
    read_allocated_block 18224
     <22286960, 0, 65536>
    miss: start 1567270, count 128
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 18225
    read_allocated_block 18226
     <145792, 0, 8255>
    miss: start 49980, count 16
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    miss: start 49990, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 49990, count 1
    73791 bytes read in 504 ms (142.6 KiB/s)
    Initial value for argc=3
    Final value for argc=3
    Initial value for argc=3
    Final value for argc=3
    ## Current stack ends at 0x8df14138 *  kernel: cmdline image address = 0x82000000
    ## Skipping init Ramdisk
    ## No init Ramdisk
       ramdisk start = 0x00000000, ramdisk end = 0x00000000
    *  fdt: cmdline image address = 0x88000000
    ## Checking for 'FDT'/'FDT Image' at 88000000
    Wrong FIT format: no description
    *  fdt: raw FDT blob
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       of_flat_tree at 0x88000000 size 0x0001203f
    Initial value for argc=3
    Final value for argc=3
    ## FIT configuration was not specified
    ## initrd_high = 0x90000000, copy_to_ram = 1
       ramdisk load start = 0x00000000, ramdisk load end = 0x00000000
    Initial value for argc=3
    Final value for argc=3
    Initial value for argc=3
    Final value for argc=3
    using: FDT
    ## device tree at 88000000 ... 8801203e (len=86079 [0x1503F])
       Loading Device Tree to 8defe000, end 8df1303e ... OK
    Initial value for argc=3
    Final value for argc=3
    Updating property '/ocp@44000000/interconnect@4a000000/segment@0/target-module@100000/ethernet@0/slave@200/mac-address' =  68 9e 19 b8 3f 48
    Updating property '/ocp@44000000/interconnect@4a000000/segment@0/target-module@100000/ethernet@0/slave@200/local-mac-address' =  68 9e 19 b8 3f 48
    ## Transferring control to Linux (at address 82000000)...
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Linux version 5.4.106-g023faefa70 (root@ubuntu) (gcc version 9.2.1 20191025 (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10))) #1 PREEMPT Sat Jan 29 11:58:12 KST 2022
    [    0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
    [    0.000000] OF: fdt: Machine model: ACROWELL AM437x AUM100
    [    0.000000] Memory policy: Data cache writeback
    [    0.000000] efi: Getting EFI parameters from FDT:
    [    0.000000] efi: UEFI not found.
    [    0.000000] cma: Reserved 48 MiB at 0x8ac00000
    [    0.000000] CPU: All CPU(s) started in SVC mode.
    [    0.000000] AM437x ES1.2 (sgx neon)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 64960
    [    0.000000] Kernel command line: console=ttyO0,115200n8 root=PARTUUID=fecd3b84-02 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:off, heap free:off
    [    0.000000] Memory: 195160K/262144K available (9216K kernel code, 303K rwdata, 3100K rodata, 1024K init, 255K bss, 17832K 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]  Tasks RCU enabled.
    

    Selecting environment with bad CRC
    Initial value for argc=3
    Final value for argc=3
    initcall: 808101f1 (relocated to 8ff421f1)
    initcall: 808187f9 (relocated to 8ff4a7f9)
    initcall: 808100a7 (relocated to 8ff420a7)
    initcall: 80815119 (relocated to 8ff47119)
    Initial value for argc=3
    Final value for argc=3
    Initial value for argc=3
    Final value for argc=3
    Initial value for argc=3
    Final value for argc=3
    initcall: 808018c1 (relocated to 8ff338c1)
    initcall: 8081009d (relocated to 8ff4209d)
    initcall: 80810085 (relocated to 8ff42085)
    initcall: 80802251 (relocated to 8ff34251)
    Enable clock module - 44df8a60
    Enable clock module - 44df8db8
    Enable clock module - 44df8a68
    Enable clock module - 44df8dc0
    ofnode_read_u32: clock-frequency: 0xb71b00 (12000000)
    clk_set_defaults(oscillator)
    clk_set_default_parents: could not read assigned-clock-parents for 8df22f08
    clk_set_defaults(oscillator)
    clk_set_default_parents: could not read assigned-clock-parents for 8df22f08
    initcall: 80810071 (relocated to 8ff42071)
    Net:   OF: ** translation for device ethernet@4a100000 **
    OF: bus is default (na=1, ns=1) on ocp
    OF: translating address: 0000104a
    OF: parent bus is default (na=1, ns=1) on
    OF: no ranges, 1:1 translation
    OF: parent translation for: 00000000
    OF: with offset: 1242562560
    OF: one level translation: 0000104a
    OF: reached root node
    ofnode_read_u32: cpdma_channels: 0x8 (8)
    ofnode_read_u32: slaves: 0x1 (1)
    ofnode_read_u32: ale_entries: 0x400 (1024)
    ofnode_read_u32: bd_ram_size: 0x2000 (8192)
    ofnode_read_u32: mac_control: 0x20 (32)
    gpio_get_list_count: Node 'ethernet@4a100000', property 'mode-gpios', GPIO count failed: -2
    ofnode_read_u32: active_slave: 0x0 (0)
    fdtdec_get_addr_size_fixed: reg: OF: ** translation for device mdio@4a101000 **
    OF: bus is default (na=1, ns=1) on ethernet@4a100000
    OF: translating address: 0010104a
    OF: parent bus is default (na=1, ns=1) on ocp
    OF: no ranges, 1:1 translation
    OF: parent translation for: 00000000
    OF: with offset: 1242566656
    OF: one level translation: 0010104a
    OF: parent bus is default (na=1, ns=1) on
    OF: no ranges, 1:1 translation
    OF: parent translation for: 00000000
    OF: with offset: 1242566656
    OF: one level translation: 0010104a
    OF: reached root node
    addr=4a101000, size=100
    ofnode_read_string: phy-mode: rgmii
    ofnode_read_u32: reg: 0x0 (0)
    ofnode_read_u32: max-speed: (not found)
    fdtdec_get_addr_size_fixed: reg: OF: ** translation for device cpsw-phy-sel@44e10650 **
    OF: bus is default (na=1, ns=1) on ethernet@4a100000
    OF: translating address: 5006e144
    OF: parent bus is default (na=1, ns=1) on ocp
    OF: no ranges, 1:1 translation
    OF: parent translation for: 00000000
    OF: with offset: 1155597904
    OF: one level translation: 5006e144
    OF: parent bus is default (na=1, ns=1) on
    OF: no ranges, 1:1 translation
    OF: parent translation for: 00000000
    OF: with offset: 1155597904
    OF: one level translation: 5006e144
    OF: reached root node
    addr=44e10650, size=4
    ofnode_read_bool: rmii-clock-ext: false
    ofnode_read_string: compatible: ti,am43xx-cpsw-phy-sel
    fdtdec_lookup_phandle: syscon
    OF: ** translation for device scm_conf@0 **
    OF: bus is default (na=1, ns=1) on scm@210000
    OF: translating address: 00000000
    OF: parent bus is default (na=1, ns=1) on l4_wkup@44c00000
    OF: walking ranges...
    OF: default map, cp=0, s=4000, da=0
    OF: parent translation for: 00002100
    OF: with offset: 0
    OF: one level translation: 00002100
    OF: parent bus is default (na=1, ns=1) on ocp
    OF: walking ranges...
    OF: default map, cp=0, s=287000, da=210000
    OF: parent translation for: 0000c044
    OF: with offset: 2162688
    OF: one level translation: 0000e144
    OF: parent bus is default (na=1, ns=1) on
    OF: no ranges, 1:1 translation
    OF: parent translation for: 00000000
    OF: with offset: 1155596288
    OF: one level translation: 0000e144
    OF: reached root node
    clk_set_defaults(ethernet@4a100000)
    clk_set_default_parents: could not read assigned-clock-parents for 8df22a00
    
    ethernet@4a100000 PHY: 0 not found
    Could not get PHY for ethernet@4a100000: addr 0
    get_prop_check_min_len: mac-address
    get_prop_check_min_len: local-mac-address
    Initial value for argc=3
    Final value for argc=3
    
    Warning: ethernet@4a100000 using MAC address from ROM
    eth0: ethernet@4a100000
    initcall: 80810069 (relocated to 8ff42069)
    Initial value for argc=3
    Final value for argc=3
    fdtdec_get_config_int: bootdelay
    ### main_loop entered: bootdelay=2
    
    fdtdec_get_config_int: kernel-offset
    fdtdec_get_config_int: rootdisk-offset
    fdtdec_get_config_string: bootcmd
    fdtdec_get_config_int: bootsecure
    ### main_loop: bootcmd="if test ${boot_fit} -eq 1; then run update_to_fit;fi;run findfdt; run envboot;run mmcboot;run usbboot;run nandboot; "
    Hit any key to stop autoboot:  0
    test(4): '0' '-eq' '1': returns 1
    Command failed, result=1
    Initial value for argc=3
    Final value for argc=3
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    clock is disabled (0Hz)
    clock is enabled (400000Hz)
    clock is enabled (50000000Hz)
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    switch to partitions #0, OK
    mmc0 is current device
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    clock is disabled (0Hz)
    clock is enabled (400000Hz)
    clock is enabled (50000000Hz)
    SD/MMC found on device 0
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    miss: start 800, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 800, count 1
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf13000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf12000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    EFI: efi_add_memory_map: 0x8cf11000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf10000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf12000 0x1 7 no
    miss: start 800, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 800, count 1
    FAT32, fat_sect: 32, fatlength: 1182
    Rootdir begins at cluster: 2, sector: 2396, offset: 12b800
    Data begins at: 2394
    Sector size: 512, cluster size: 1
    FAT read(sect=2396), clust_size=1, read_size=1, DIRENTSPERBLOCK=16
    miss: start 115c, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 115c, count 1
    FAT32: entry: 0x00000002 = 2, offset: 0x0002 = 2
    debug: evicting -1, dirty: 0
    miss: start 820, count 6
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 820, count 6
    FAT32: ret: 0x0ffffff8, entry: 0x00000002, offset: 0x0002
    nextclust: 0xffffff8
    hit: start 800, count 1
    FAT32, fat_sect: 32, fatlength: 1182
    Rootdir begins at cluster: 2, sector: 2396, offset: 12b800
    Data begins at: 2394
    Sector size: 512, cluster size: 1
    FAT read(sect=2396), clust_size=1, read_size=1, DIRENTSPERBLOCK=16
    hit: start 115c, count 1
    FAT32: entry: 0x00000002 = 2, offset: 0x0002 = 2
    debug: evicting -1, dirty: 0
    hit: start 820, count 6
    FAT32: ret: 0x0ffffff8, entry: 0x00000002, offset: 0x0002
    nextclust: 0xffffff8
    Command failed, result=1
    Command failed, result=1
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    miss: start 800, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 800, count 1
    EFI: efi_add_memory_map: 0x8cf13000 0x1 7 no
    EFI: efi_add_memory_map: 0x8cf10000 0x1 7 no
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf13000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf12000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    EFI: efi_add_memory_map: 0x8cf10000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf0f000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf12000 0x1 7 no
    miss: start 800, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 800, count 1
    FAT32, fat_sect: 32, fatlength: 1182
    Rootdir begins at cluster: 2, sector: 2396, offset: 12b800
    Data begins at: 2394
    Sector size: 512, cluster size: 1
    FAT read(sect=2396), clust_size=1, read_size=1, DIRENTSPERBLOCK=16
    miss: start 115c, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 115c, count 1
    FAT32: entry: 0x00000002 = 2, offset: 0x0002 = 2
    debug: evicting -1, dirty: 0
    miss: start 820, count 6
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 820, count 6
    FAT32: ret: 0x0ffffff8, entry: 0x00000002, offset: 0x0002
    nextclust: 0xffffff8
    hit: start 800, count 1
    FAT32, fat_sect: 32, fatlength: 1182
    Rootdir begins at cluster: 2, sector: 2396, offset: 12b800
    Data begins at: 2394
    Sector size: 512, cluster size: 1
    FAT read(sect=2396), clust_size=1, read_size=1, DIRENTSPERBLOCK=16
    hit: start 115c, count 1
    FAT32: entry: 0x00000002 = 2, offset: 0x0002 = 2
    debug: evicting -1, dirty: 0
    hit: start 820, count 6
    FAT32: ret: 0x0ffffff8, entry: 0x00000002, offset: 0x0002
    nextclust: 0xffffff8
    Command failed, result=1
    Command failed, result=1
    Command failed, result=1
    Command failed, result=1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    clock is disabled (0Hz)
    clock is enabled (400000Hz)
    clock is enabled (50000000Hz)
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    switch to partitions #0, OK
    mmc0 is current device
    Initial value for argc=3
    Final value for argc=3
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    clock is disabled (0Hz)
    clock is enabled (400000Hz)
    clock is enabled (50000000Hz)
    SD/MMC found on device 0
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    miss: start 26000, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 26000, count 1
     <2, 0, 1024>
    miss: start 26002, count 2
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 26002, count 2
    EXT4 features COMPAT: 0000003c INCOMPAT: 00000002 RO_COMPAT: 00000003
    EXT2 rev 1, inode_size 256, descriptor size 32
    ext4fs read 0 group descriptor (blkno 1 blkoff 0)
     <8, 0, 32>
    miss: start 26008, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 26008, count 1
     <7584, 256, 128>
    miss: start 27da0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 27da0, count 1
    EFI: efi_add_memory_map: 0x8cf13000 0x1 7 no
    EFI: efi_add_memory_map: 0x8cf0f000 0x1 7 no
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf13000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf12000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    EFI: efi_add_memory_map: 0x8cf0f000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf0e000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf12000 0x1 7 no
    Iterate dir boot
    read_allocated_block 1457
     <11656, 0, 8>
    miss: start 28d88, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 28d88, count 1
    read_allocated_block 1457
     <11656, 8, 1>
    hit: start 28d88, count 1
    iterate >.<
    read_allocated_block 1457
     <11656, 12, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 20, 2>
    hit: start 28d88, count 1
    iterate >..<
    read_allocated_block 1457
     <11656, 24, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 32, 3>
    hit: start 28d88, count 1
    iterate >bin<
    read_allocated_block 1457
     <11656, 36, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 44, 4>
    hit: start 28d88, count 1
    iterate >boot<
    Iterate dir zImage
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    miss: start 2600b, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 2600b, count 1
     <13107216, 0, 128>
    miss: start ca6010, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start ca6010, count 1
    read_allocated_block 1638911
     <13111288, 0, 8>
    miss: start ca6ff8, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 8, 1>
    hit: start ca6ff8, count 1
    iterate >.<
    read_allocated_block 1638911
     <13111288, 12, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 20, 2>
    hit: start ca6ff8, count 1
    iterate >..<
    read_allocated_block 1638911
     <13111288, 24, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 32, 6>
    hit: start ca6ff8, count 1
    iterate >zImage<
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    hit: start 2600b, count 1
     <13107216, 256, 128>
    hit: start ca6010, count 1
    ## Current stack ends at 0x8df14180 lmb_dump_all:
        memory.cnt             = 0x1
        memory.size            = 0x0
        memory.reg[0x0].base   = 0x80000000
                       .size   = 0x10000000
    
        reserved.cnt           = 0x1
        reserved.size          = 0x0
        reserved.reg[0x0].base = 0x8df13180
                         .size = 0x20ece80
    Iterate dir boot
    read_allocated_block 1457
     <11656, 0, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 8, 1>
    hit: start 28d88, count 1
    iterate >.<
    read_allocated_block 1457
     <11656, 12, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 20, 2>
    hit: start 28d88, count 1
    iterate >..<
    read_allocated_block 1457
     <11656, 24, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 32, 3>
    hit: start 28d88, count 1
    iterate >bin<
    read_allocated_block 1457
     <11656, 36, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 44, 4>
    hit: start 28d88, count 1
    iterate >boot<
    Iterate dir zImage
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    hit: start 2600b, count 1
     <13107216, 0, 128>
    hit: start ca6010, count 1
    read_allocated_block 1638911
     <13111288, 0, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 8, 1>
    hit: start ca6ff8, count 1
    iterate >.<
    read_allocated_block 1638911
     <13111288, 12, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 20, 2>
    hit: start ca6ff8, count 1
    iterate >..<
    read_allocated_block 1638911
     <13111288, 24, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 32, 6>
    hit: start ca6ff8, count 1
    iterate >zImage<
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    hit: start 2600b, count 1
     <13107216, 256, 128>
    hit: start ca6010, count 1
    read_allocated_block 2785838
    read_allocated_block 2785839
    read_allocated_block 2785840
    read_allocated_block 2785841
    read_allocated_block 2785842
    read_allocated_block 2785843
    read_allocated_block 2785844
    read_allocated_block 2785845
    read_allocated_block 2785846
    read_allocated_block 2785847
    read_allocated_block 2785848
    read_allocated_block 2785849
     <22290440, 0, 4096>
    miss: start 1568008, count 8
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 1568008, count 8
    read_allocated_block 2785850
    read_allocated_block 2785851
    read_allocated_block 2785852
    read_allocated_block 2785853
    read_allocated_block 17968
     <22286704, 0, 65536>
    miss: start 1567170, count 128
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 17969
    read_allocated_block 17970
    read_allocated_block 17971
    read_allocated_block 17972
    read_allocated_block 17973
    read_allocated_block 17974
    read_allocated_block 17975
    read_allocated_block 17976
    read_allocated_block 17977
    read_allocated_block 17978
    read_allocated_block 17979
    read_allocated_block 17980
    read_allocated_block 17981
    read_allocated_block 17982
    read_allocated_block 17983
    read_allocated_block 18080
     <143744, 0, 65536>
    miss: start 49180, count 128
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 18081
    read_allocated_block 18082
    read_allocated_block 18083
    read_allocated_block 18084
    read_allocated_block 18085
    read_allocated_block 18086
    read_allocated_block 18087
    read_allocated_block 18088
    read_allocated_block 18089
    read_allocated_block 18090
    read_allocated_block 18091
    read_allocated_block 18092
    read_allocated_block 18093
    read_allocated_block 18094
    read_allocated_block 18095
    read_allocated_block 18096
    read_allocated_block 18097
    read_allocated_block 18098
    read_allocated_block 18099
    read_allocated_block 18100
    read_allocated_block 18101
    read_allocated_block 18102
    read_allocated_block 18103
    read_allocated_block 18104
    read_allocated_block 18105
    read_allocated_block 18106
    read_allocated_block 18107
    read_allocated_block 18108
    read_allocated_block 18109
    read_allocated_block 18110
    read_allocated_block 18111
    read_allocated_block 18144
     <144640, 0, 131072>
    miss: start 49500, count 256
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 18145
    read_allocated_block 18146
    read_allocated_block 18147
    read_allocated_block 18148
    read_allocated_block 18149
    read_allocated_block 18150
    read_allocated_block 18151
    read_allocated_block 18152
    read_allocated_block 18153
    read_allocated_block 18154
    read_allocated_block 18155
    read_allocated_block 18156
    read_allocated_block 18157
    read_allocated_block 18158
    read_allocated_block 18159
    read_allocated_block 18160
    read_allocated_block 18161
    read_allocated_block 18162
    read_allocated_block 18163
    read_allocated_block 18164
    read_allocated_block 18165
    read_allocated_block 18166
    read_allocated_block 18167
    read_allocated_block 18168
    read_allocated_block 18169
    read_allocated_block 18170
    read_allocated_block 18171
    read_allocated_block 18172
    read_allocated_block 18173
    read_allocated_block 18174
    read_allocated_block 18175
    read_allocated_block 18176
    read_allocated_block 18177
    read_allocated_block 18178
    read_allocated_block 18179
    read_allocated_block 18180
    read_allocated_block 18181
    read_allocated_block 18182
    read_allocated_block 18183
    read_allocated_block 18184
    read_allocated_block 18185
    read_allocated_block 18186
    read_allocated_block 18187
    read_allocated_block 18188
    read_allocated_block 18189
    read_allocated_block 18190
    read_allocated_block 18191
    read_allocated_block 18192
    read_allocated_block 18193
    read_allocated_block 18194
    read_allocated_block 18195
    read_allocated_block 18196
    read_allocated_block 18197
    read_allocated_block 18198
    read_allocated_block 18199
    read_allocated_block 18200
    read_allocated_block 18201
    read_allocated_block 18202
    read_allocated_block 18203
    read_allocated_block 18204
    read_allocated_block 18205
    read_allocated_block 18206
    read_allocated_block 18207
    read_allocated_block 18304
     <145152, 0, 262144>
    miss: start 49700, count 512
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 18305
    read_allocated_block 18306
    read_allocated_block 18307
    read_allocated_block 18308
    read_allocated_block 18309
    read_allocated_block 18310
    read_allocated_block 18311
    read_allocated_block 18312
    read_allocated_block 18313
    read_allocated_block 18314
    read_allocated_block 18315
    read_allocated_block 18316
    read_allocated_block 18317
    read_allocated_block 18318
    read_allocated_block 18319
    read_allocated_block 18320
    read_allocated_block 18321
    read_allocated_block 18322
    read_allocated_block 18323
    read_allocated_block 18324
    read_allocated_block 18325
    read_allocated_block 18326
    read_allocated_block 18327
    read_allocated_block 18328
    read_allocated_block 18329
    read_allocated_block 18330
    read_allocated_block 18331
    read_allocated_block 18332
    read_allocated_block 18333
    read_allocated_block 18334
    read_allocated_block 18335
    read_allocated_block 18336
    read_allocated_block 18337
    read_allocated_block 18338
    read_allocated_block 18339
    read_allocated_block 18340
    read_allocated_block 18341
    read_allocated_block 18342
    read_allocated_block 18343
    read_allocated_block 18344
    read_allocated_block 18345
    read_allocated_block 18346
    read_allocated_block 18347
    read_allocated_block 18348
    read_allocated_block 18349
    read_allocated_block 18350
    read_allocated_block 18351
    read_allocated_block 18352
    read_allocated_block 18353
    read_allocated_block 18354
    read_allocated_block 18355
    read_allocated_block 18356
    read_allocated_block 18357
    read_allocated_block 18358
    read_allocated_block 18359
    read_allocated_block 18360
    read_allocated_block 18361
    read_allocated_block 18362
    read_allocated_block 18363
    read_allocated_block 18364
    read_allocated_block 18365
    read_allocated_block 18366
    read_allocated_block 18367
    read_allocated_block 18368
    read_allocated_block 18369
    read_allocated_block 18370
    read_allocated_block 18371
    read_allocated_block 18372
    read_allocated_block 18373
    read_allocated_block 18374
    read_allocated_block 18375
    read_allocated_block 18376
    read_allocated_block 18377
    read_allocated_block 18378
    read_allocated_block 18379
    read_allocated_block 18380
    read_allocated_block 18381
    read_allocated_block 18382
    read_allocated_block 18383
    read_allocated_block 18384
    read_allocated_block 18385
    read_allocated_block 18386
    read_allocated_block 18387
    read_allocated_block 18388
    read_allocated_block 18389
    read_allocated_block 18390
    read_allocated_block 18391
    read_allocated_block 18392
    read_allocated_block 18393
    read_allocated_block 18394
    read_allocated_block 18395
    read_allocated_block 18396
    read_allocated_block 18397
    read_allocated_block 18398
    read_allocated_block 18399
    read_allocated_block 18400
    read_allocated_block 18401
    read_allocated_block 18402
    read_allocated_block 18403
    read_allocated_block 18404
    read_allocated_block 18405
    read_allocated_block 18406
    read_allocated_block 18407
    read_allocated_block 18408
    read_allocated_block 18409
    read_allocated_block 18410
    read_allocated_block 18411
    read_allocated_block 18412
    read_allocated_block 18413
    read_allocated_block 18414
    read_allocated_block 18415
    read_allocated_block 18416
    read_allocated_block 18417
    read_allocated_block 18418
    read_allocated_block 18419
    read_allocated_block 18420
    read_allocated_block 18421
    read_allocated_block 18422
    read_allocated_block 18423
    read_allocated_block 18424
    read_allocated_block 18425
    read_allocated_block 18426
    read_allocated_block 18427
    read_allocated_block 18428
    read_allocated_block 18429
    read_allocated_block 18430
    read_allocated_block 18431
    read_allocated_block 18560
     <146432, 0, 524288>
    miss: start 49c00, count 1024
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 18561
    read_allocated_block 18562
    read_allocated_block 18563
    read_allocated_block 18564
    read_allocated_block 18565
    read_allocated_block 18566
    read_allocated_block 18567
    read_allocated_block 18568
    read_allocated_block 18569
    read_allocated_block 18570
    read_allocated_block 18571
    read_allocated_block 18572
    read_allocated_block 18573
    read_allocated_block 18574
    read_allocated_block 18575
    read_allocated_block 18576
    read_allocated_block 18577
    read_allocated_block 18578
    read_allocated_block 18579
    read_allocated_block 18580
    read_allocated_block 18581
    read_allocated_block 18582
    read_allocated_block 18583
    read_allocated_block 18584
    read_allocated_block 18585
    read_allocated_block 18586
    read_allocated_block 18587
    read_allocated_block 18588
    read_allocated_block 18589
    read_allocated_block 18590
    read_allocated_block 18591
    read_allocated_block 18592
    read_allocated_block 18593
    read_allocated_block 18594
    read_allocated_block 18595
    read_allocated_block 18596
    read_allocated_block 18597
    read_allocated_block 18598
    read_allocated_block 18599
    read_allocated_block 18600
    read_allocated_block 18601
    read_allocated_block 18602
    read_allocated_block 18603
    read_allocated_block 18604
    read_allocated_block 18605
    read_allocated_block 18606
    read_allocated_block 18607
    read_allocated_block 18608
    read_allocated_block 18609
    read_allocated_block 18610
    read_allocated_block 18611
    read_allocated_block 18612
    read_allocated_block 18613
    read_allocated_block 18614
    read_allocated_block 18615
    read_allocated_block 18616
    read_allocated_block 18617
    read_allocated_block 18618
    read_allocated_block 18619
    read_allocated_block 18620
    read_allocated_block 18621
    read_allocated_block 18622
    read_allocated_block 18623
    read_allocated_block 18624
    read_allocated_block 18625
    read_allocated_block 18626
    read_allocated_block 18627
    read_allocated_block 18628
    read_allocated_block 18629
    read_allocated_block 18630
    read_allocated_block 18631
    read_allocated_block 18632
    read_allocated_block 18633
    read_allocated_block 18634
    read_allocated_block 18635
    read_allocated_block 18636
    read_allocated_block 18637
    read_allocated_block 18638
    read_allocated_block 18639
    read_allocated_block 18640
    read_allocated_block 18641
    read_allocated_block 18642
    read_allocated_block 18643
    read_allocated_block 18644
    read_allocated_block 18645
    read_allocated_block 18646
    read_allocated_block 18647
    read_allocated_block 18648
    read_allocated_block 18649
    read_allocated_block 18650
    read_allocated_block 18651
    read_allocated_block 18652
    read_allocated_block 18653
    read_allocated_block 18654
    read_allocated_block 18655
    read_allocated_block 18656
    read_allocated_block 18657
    read_allocated_block 18658
    read_allocated_block 18659
    read_allocated_block 18660
    read_allocated_block 18661
    read_allocated_block 18662
    read_allocated_block 18663
    read_allocated_block 18664
    read_allocated_block 18665
    read_allocated_block 18666
    read_allocated_block 18667
    read_allocated_block 18668
    read_allocated_block 18669
    read_allocated_block 18670
    read_allocated_block 18671
    read_allocated_block 18672
    read_allocated_block 18673
    read_allocated_block 18674
    read_allocated_block 18675
    read_allocated_block 18676
    read_allocated_block 18677
    read_allocated_block 18678
    read_allocated_block 18679
    read_allocated_block 18680
    read_allocated_block 18681
    read_allocated_block 18682
    read_allocated_block 18683
    read_allocated_block 18684
    read_allocated_block 18685
    read_allocated_block 18686
    read_allocated_block 18687
    read_allocated_block 18688
    read_allocated_block 18689
    read_allocated_block 18690
    read_allocated_block 18691
    read_allocated_block 18692
    read_allocated_block 18693
    read_allocated_block 18694
    read_allocated_block 18695
    read_allocated_block 18696
    read_allocated_block 18697
    read_allocated_block 18698
    read_allocated_block 18699
    read_allocated_block 18700
    read_allocated_block 18701
    read_allocated_block 18702
    read_allocated_block 18703
    read_allocated_block 18704
    read_allocated_block 18705
    read_allocated_block 18706
    read_allocated_block 18707
    read_allocated_block 18708
    read_allocated_block 18709
    read_allocated_block 18710
    read_allocated_block 18711
    read_allocated_block 18712
    read_allocated_block 18713
    read_allocated_block 18714
    read_allocated_block 18715
    read_allocated_block 18716
    read_allocated_block 18717
    read_allocated_block 18718
    read_allocated_block 18719
    read_allocated_block 18720
    read_allocated_block 18721
    read_allocated_block 18722
    read_allocated_block 18723
    read_allocated_block 18724
    read_allocated_block 18725
    read_allocated_block 18726
    read_allocated_block 18727
    read_allocated_block 18728
    read_allocated_block 18729
    read_allocated_block 18730
    read_allocated_block 18731
    read_allocated_block 18732
    read_allocated_block 18733
    read_allocated_block 18734
    read_allocated_block 18735
    read_allocated_block 18736
    read_allocated_block 18737
    read_allocated_block 18738
    read_allocated_block 18739
    read_allocated_block 18740
    read_allocated_block 18741
    read_allocated_block 18742
    read_allocated_block 18743
    read_allocated_block 18744
    read_allocated_block 18745
    read_allocated_block 18746
    read_allocated_block 18747
    read_allocated_block 18748
    read_allocated_block 18749
    read_allocated_block 18750
    read_allocated_block 18751
    read_allocated_block 18752
    read_allocated_block 18753
    read_allocated_block 18754
    read_allocated_block 18755
    read_allocated_block 18756
    read_allocated_block 18757
    read_allocated_block 18758
    read_allocated_block 18759
    read_allocated_block 18760
    read_allocated_block 18761
    read_allocated_block 18762
    read_allocated_block 18763
    read_allocated_block 18764
    read_allocated_block 18765
    read_allocated_block 18766
    read_allocated_block 18767
    read_allocated_block 18768
    read_allocated_block 18769
    read_allocated_block 18770
    read_allocated_block 18771
    read_allocated_block 18772
    read_allocated_block 18773
    read_allocated_block 18774
    read_allocated_block 18775
    read_allocated_block 18776
    read_allocated_block 18777
    read_allocated_block 18778
    read_allocated_block 18779
    read_allocated_block 18780
    read_allocated_block 18781
    read_allocated_block 18782
    read_allocated_block 18783
    read_allocated_block 18784
    read_allocated_block 18785
    read_allocated_block 18786
    read_allocated_block 18787
    read_allocated_block 18788
    read_allocated_block 18789
    read_allocated_block 18790
    read_allocated_block 18791
    read_allocated_block 18792
    read_allocated_block 18793
    read_allocated_block 18794
    read_allocated_block 18795
    read_allocated_block 18796
    read_allocated_block 18797
    read_allocated_block 18798
    read_allocated_block 18799
    read_allocated_block 18800
    read_allocated_block 18801
    read_allocated_block 18802
    read_allocated_block 18803
    read_allocated_block 18804
    read_allocated_block 18805
    read_allocated_block 18806
    read_allocated_block 18807
    read_allocated_block 18808
    read_allocated_block 18809
    read_allocated_block 18810
    read_allocated_block 18811
    read_allocated_block 18812
    read_allocated_block 18813
    read_allocated_block 18814
    read_allocated_block 18815
    read_allocated_block 18944
     <148480, 0, 1048576>
    miss: start 4a400, count 2048
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 18945
    read_allocated_block 18946
    read_allocated_block 18947
    read_allocated_block 18948
    read_allocated_block 18949
    read_allocated_block 18950
    read_allocated_block 18951
    read_allocated_block 18952
    read_allocated_block 18953
    read_allocated_block 18954
    read_allocated_block 18955
    read_allocated_block 18956
    read_allocated_block 18957
    read_allocated_block 18958
    read_allocated_block 18959
    read_allocated_block 18960
    read_allocated_block 18961
    read_allocated_block 18962
    read_allocated_block 18963
    read_allocated_block 18964
    read_allocated_block 18965
    read_allocated_block 18966
    read_allocated_block 18967
    read_allocated_block 18968
    read_allocated_block 18969
    read_allocated_block 18970
    read_allocated_block 18971
    read_allocated_block 18972
    read_allocated_block 18973
    read_allocated_block 18974
    read_allocated_block 18975
    read_allocated_block 18976
    read_allocated_block 18977
    read_allocated_block 18978
    read_allocated_block 18979
    read_allocated_block 18980
    read_allocated_block 18981
    read_allocated_block 18982
    read_allocated_block 18983
    read_allocated_block 18984
    read_allocated_block 18985
    read_allocated_block 18986
    read_allocated_block 18987
    read_allocated_block 18988
    read_allocated_block 18989
    read_allocated_block 18990
    read_allocated_block 18991
    read_allocated_block 18992
    read_allocated_block 18993
    read_allocated_block 18994
    read_allocated_block 18995
    read_allocated_block 18996
    read_allocated_block 18997
    read_allocated_block 18998
    read_allocated_block 18999
    read_allocated_block 19000
    read_allocated_block 19001
    read_allocated_block 19002
    read_allocated_block 19003
    read_allocated_block 19004
    read_allocated_block 19005
    read_allocated_block 19006
    read_allocated_block 19007
    read_allocated_block 19008
    read_allocated_block 19009
    read_allocated_block 19010
    read_allocated_block 19011
    read_allocated_block 19012
    read_allocated_block 19013
    read_allocated_block 19014
    read_allocated_block 19015
    read_allocated_block 19016
    read_allocated_block 19017
    read_allocated_block 19018
    read_allocated_block 19019
    read_allocated_block 19020
    read_allocated_block 19021
    read_allocated_block 19022
    read_allocated_block 19023
    read_allocated_block 19024
    read_allocated_block 19025
    read_allocated_block 19026
    read_allocated_block 19027
    read_allocated_block 19028
    read_allocated_block 19029
    read_allocated_block 19030
    read_allocated_block 19031
    read_allocated_block 19032
    read_allocated_block 19033
    read_allocated_block 19034
    read_allocated_block 19035
    read_allocated_block 19036
    read_allocated_block 19037
    read_allocated_block 19038
    read_allocated_block 19039
    read_allocated_block 19040
    read_allocated_block 19041
    read_allocated_block 19042
    read_allocated_block 19043
    read_allocated_block 19044
    read_allocated_block 19045
    read_allocated_block 19046
    read_allocated_block 19047
    read_allocated_block 19048
    read_allocated_block 19049
    read_allocated_block 19050
    read_allocated_block 19051
    read_allocated_block 19052
    read_allocated_block 19053
    read_allocated_block 19054
    read_allocated_block 19055
    read_allocated_block 19056
    read_allocated_block 19057
    read_allocated_block 19058
    read_allocated_block 19059
    read_allocated_block 19060
    read_allocated_block 19061
    read_allocated_block 19062
    read_allocated_block 19063
    read_allocated_block 19064
    read_allocated_block 19065
    read_allocated_block 19066
    read_allocated_block 19067
    read_allocated_block 19068
    read_allocated_block 19069
    read_allocated_block 19070
    read_allocated_block 19071
    read_allocated_block 19072
    read_allocated_block 19073
    read_allocated_block 19074
    read_allocated_block 19075
    read_allocated_block 19076
    read_allocated_block 19077
    read_allocated_block 19078
    read_allocated_block 19079
    read_allocated_block 19080
    read_allocated_block 19081
    read_allocated_block 19082
    read_allocated_block 19083
    read_allocated_block 19084
    read_allocated_block 19085
    read_allocated_block 19086
    read_allocated_block 19087
    read_allocated_block 19088
    read_allocated_block 19089
    read_allocated_block 19090
    read_allocated_block 19091
    read_allocated_block 19092
    read_allocated_block 19093
    read_allocated_block 19094
    read_allocated_block 19095
    read_allocated_block 19096
    read_allocated_block 19097
    read_allocated_block 19098
    read_allocated_block 19099
    read_allocated_block 19100
    read_allocated_block 19101
    read_allocated_block 19102
    read_allocated_block 19103
    read_allocated_block 19104
    read_allocated_block 19105
    read_allocated_block 19106
    read_allocated_block 19107
    read_allocated_block 19108
    read_allocated_block 19109
    read_allocated_block 19110
    read_allocated_block 19111
    read_allocated_block 19112
    read_allocated_block 19113
    read_allocated_block 19114
    read_allocated_block 19115
    read_allocated_block 19116
    read_allocated_block 19117
    read_allocated_block 19118
    read_allocated_block 19119
    read_allocated_block 19120
    read_allocated_block 19121
    read_allocated_block 19122
    read_allocated_block 19123
    read_allocated_block 19124
    read_allocated_block 19125
    read_allocated_block 19126
    read_allocated_block 19127
    read_allocated_block 19128
    read_allocated_block 19129
    read_allocated_block 19130
    read_allocated_block 19131
    read_allocated_block 19132
    read_allocated_block 19133
    read_allocated_block 19134
    read_allocated_block 19135
    read_allocated_block 19136
    read_allocated_block 19137
    read_allocated_block 19138
    read_allocated_block 19139
    read_allocated_block 19140
    read_allocated_block 19141
    read_allocated_block 19142
    read_allocated_block 19143
    read_allocated_block 19144
    read_allocated_block 19145
    read_allocated_block 19146
    read_allocated_block 19147
    read_allocated_block 19148
    read_allocated_block 19149
    read_allocated_block 19150
    read_allocated_block 19151
    read_allocated_block 19152
    read_allocated_block 19153
    read_allocated_block 19154
    read_allocated_block 19155
    read_allocated_block 19156
    read_allocated_block 19157
    read_allocated_block 19158
    read_allocated_block 19159
    read_allocated_block 19160
    read_allocated_block 19161
    read_allocated_block 19162
    read_allocated_block 19163
    read_allocated_block 19164
    read_allocated_block 19165
    read_allocated_block 19166
    read_allocated_block 19167
    read_allocated_block 19168
    read_allocated_block 19169
    read_allocated_block 19170
    read_allocated_block 19171
    read_allocated_block 19172
    read_allocated_block 19173
    read_allocated_block 19174
    read_allocated_block 19175
    read_allocated_block 19176
    read_allocated_block 19177
    read_allocated_block 19178
    read_allocated_block 19179
    read_allocated_block 19180
    read_allocated_block 19181
    read_allocated_block 19182
    read_allocated_block 19183
    read_allocated_block 19184
    read_allocated_block 19185
    read_allocated_block 19186
    read_allocated_block 19187
    read_allocated_block 19188
    read_allocated_block 19189
    read_allocated_block 19190
    read_allocated_block 19191
    read_allocated_block 19192
    read_allocated_block 19193
    read_allocated_block 19194
    read_allocated_block 19195
    read_allocated_block 19196
    read_allocated_block 19197
    read_allocated_block 19198
    read_allocated_block 19199
    read_allocated_block 19200
    read_allocated_block 19201
    read_allocated_block 19202
    read_allocated_block 19203
    read_allocated_block 19204
    read_allocated_block 19205
    read_allocated_block 19206
    read_allocated_block 19207
    read_allocated_block 19208
    read_allocated_block 19209
    read_allocated_block 19210
    read_allocated_block 19211
    read_allocated_block 19212
    read_allocated_block 19213
    read_allocated_block 19214
    read_allocated_block 19215
    read_allocated_block 19216
    read_allocated_block 19217
    read_allocated_block 19218
    read_allocated_block 19219
    read_allocated_block 19220
    read_allocated_block 19221
    read_allocated_block 19222
    read_allocated_block 19223
    read_allocated_block 19224
    read_allocated_block 19225
    read_allocated_block 19226
    read_allocated_block 19227
    read_allocated_block 19228
    read_allocated_block 19229
    read_allocated_block 19230
    read_allocated_block 19231
    read_allocated_block 19232
    read_allocated_block 19233
    read_allocated_block 19234
    read_allocated_block 19235
    read_allocated_block 19236
    read_allocated_block 19237
    read_allocated_block 19238
    read_allocated_block 19239
    read_allocated_block 19240
    read_allocated_block 19241
    read_allocated_block 19242
    read_allocated_block 19243
    read_allocated_block 19244
    read_allocated_block 19245
    read_allocated_block 19246
    read_allocated_block 19247
    read_allocated_block 19248
    read_allocated_block 19249
    read_allocated_block 19250
    read_allocated_block 19251
    read_allocated_block 19252
    read_allocated_block 19253
    read_allocated_block 19254
    read_allocated_block 19255
    read_allocated_block 19256
    read_allocated_block 19257
    read_allocated_block 19258
    read_allocated_block 19259
    read_allocated_block 19260
    read_allocated_block 19261
    read_allocated_block 19262
    read_allocated_block 19263
    read_allocated_block 19264
    read_allocated_block 19265
    read_allocated_block 19266
    read_allocated_block 19267
    read_allocated_block 19268
    read_allocated_block 19269
    read_allocated_block 19270
    read_allocated_block 19271
    read_allocated_block 19272
    read_allocated_block 19273
    read_allocated_block 19274
    read_allocated_block 19275
    read_allocated_block 19276
    read_allocated_block 19277
    read_allocated_block 19278
    read_allocated_block 19279
    read_allocated_block 19280
    read_allocated_block 19281
    read_allocated_block 19282
    read_allocated_block 19283
    read_allocated_block 19284
    read_allocated_block 19285
    read_allocated_block 19286
    read_allocated_block 19287
    read_allocated_block 19288
    read_allocated_block 19289
    read_allocated_block 19290
    read_allocated_block 19291
    read_allocated_block 19292
    read_allocated_block 19293
    read_allocated_block 19294
    read_allocated_block 19295
    read_allocated_block 19296
    read_allocated_block 19297
    read_allocated_block 19298
    read_allocated_block 19299
    read_allocated_block 19300
    read_allocated_block 19301
    read_allocated_block 19302
    read_allocated_block 19303
    read_allocated_block 19304
    read_allocated_block 19305
    read_allocated_block 19306
    read_allocated_block 19307
    read_allocated_block 19308
    read_allocated_block 19309
    read_allocated_block 19310
    read_allocated_block 19311
    read_allocated_block 19312
    read_allocated_block 19313
    read_allocated_block 19314
    read_allocated_block 19315
    read_allocated_block 19316
    read_allocated_block 19317
    read_allocated_block 19318
    read_allocated_block 19319
    read_allocated_block 19320
    read_allocated_block 19321
    read_allocated_block 19322
    read_allocated_block 19323
    read_allocated_block 19324
    read_allocated_block 19325
    read_allocated_block 19326
    read_allocated_block 19327
    read_allocated_block 19328
    read_allocated_block 19329
    read_allocated_block 19330
    read_allocated_block 19331
    read_allocated_block 19332
    read_allocated_block 19333
    read_allocated_block 19334
    read_allocated_block 19335
    read_allocated_block 19336
    read_allocated_block 19337
    read_allocated_block 19338
    read_allocated_block 19339
    read_allocated_block 19340
    read_allocated_block 19341
    read_allocated_block 19342
    read_allocated_block 19343
    read_allocated_block 19344
    read_allocated_block 19345
    read_allocated_block 19346
    read_allocated_block 19347
    read_allocated_block 19348
    read_allocated_block 19349
    read_allocated_block 19350
    read_allocated_block 19351
    read_allocated_block 19352
    read_allocated_block 19353
    read_allocated_block 19354
    read_allocated_block 19355
    read_allocated_block 19356
    read_allocated_block 19357
    read_allocated_block 19358
    read_allocated_block 19359
    read_allocated_block 19360
    read_allocated_block 19361
    read_allocated_block 19362
    read_allocated_block 19363
    read_allocated_block 19364
    read_allocated_block 19365
    read_allocated_block 19366
    read_allocated_block 19367
    read_allocated_block 19368
    read_allocated_block 19369
    read_allocated_block 19370
    read_allocated_block 19371
    read_allocated_block 19372
    read_allocated_block 19373
    read_allocated_block 19374
    read_allocated_block 19375
    read_allocated_block 19376
    read_allocated_block 19377
    read_allocated_block 19378
    read_allocated_block 19379
    read_allocated_block 19380
    read_allocated_block 19381
    read_allocated_block 19382
    read_allocated_block 19383
    read_allocated_block 19384
    read_allocated_block 19385
    read_allocated_block 19386
    read_allocated_block 19387
    read_allocated_block 19388
    read_allocated_block 19389
    read_allocated_block 19390
    read_allocated_block 19391
    read_allocated_block 19392
    read_allocated_block 19393
    read_allocated_block 19394
    read_allocated_block 19395
    read_allocated_block 19396
    read_allocated_block 19397
    read_allocated_block 19398
    read_allocated_block 19399
    read_allocated_block 19400
    read_allocated_block 19401
    read_allocated_block 19402
    read_allocated_block 19403
    read_allocated_block 19404
    read_allocated_block 19405
    read_allocated_block 19406
    read_allocated_block 19407
    read_allocated_block 19408
    read_allocated_block 19409
    read_allocated_block 19410
    read_allocated_block 19411
    read_allocated_block 19412
    read_allocated_block 19413
    read_allocated_block 19414
    read_allocated_block 19415
    read_allocated_block 19416
    read_allocated_block 19417
    read_allocated_block 19418
    read_allocated_block 19419
    read_allocated_block 19420
    read_allocated_block 19421
    read_allocated_block 19422
    read_allocated_block 19423
    read_allocated_block 19424
    read_allocated_block 19425
    read_allocated_block 19426
    read_allocated_block 19427
    read_allocated_block 19428
    read_allocated_block 19429
    read_allocated_block 19430
    read_allocated_block 19431
    read_allocated_block 19432
    read_allocated_block 19433
    read_allocated_block 19434
    read_allocated_block 19435
    read_allocated_block 19436
    read_allocated_block 19437
    read_allocated_block 19438
    read_allocated_block 19439
    read_allocated_block 19440
    read_allocated_block 19441
    read_allocated_block 19442
    read_allocated_block 19443
    read_allocated_block 19444
    read_allocated_block 19445
    read_allocated_block 19446
    read_allocated_block 19447
    read_allocated_block 19448
    read_allocated_block 19449
    read_allocated_block 19450
    read_allocated_block 19451
    read_allocated_block 19452
    read_allocated_block 19453
    read_allocated_block 19454
    read_allocated_block 19455
    read_allocated_block 19456
    read_allocated_block 19457
    read_allocated_block 19458
    read_allocated_block 19459
    read_allocated_block 19460
    read_allocated_block 19461
    read_allocated_block 19462
    read_allocated_block 19463
    read_allocated_block 19464
    read_allocated_block 19465
    read_allocated_block 19466
    read_allocated_block 19467
     <22290448, 0, 4096>
    miss: start 1568010, count 8
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 1568010, count 8
     <22290456, 0, 4096>
    miss: start 1568018, count 8
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 1568018, count 8
    read_allocated_block 19468
    read_allocated_block 19469
    read_allocated_block 19470
    read_allocated_block 19471
    read_allocated_block 19472
    read_allocated_block 19473
    read_allocated_block 19474
    read_allocated_block 19475
    read_allocated_block 19476
    read_allocated_block 19477
    read_allocated_block 19478
    read_allocated_block 19479
    read_allocated_block 19480
    read_allocated_block 19481
    read_allocated_block 19482
    read_allocated_block 19483
    read_allocated_block 19484
    read_allocated_block 19485
    read_allocated_block 19486
    read_allocated_block 19487
    read_allocated_block 19488
    read_allocated_block 19489
    read_allocated_block 19490
    read_allocated_block 19491
    read_allocated_block 19492
    read_allocated_block 19493
    read_allocated_block 19494
    read_allocated_block 19495
    read_allocated_block 19496
    read_allocated_block 19497
    read_allocated_block 19498
    read_allocated_block 19499
    read_allocated_block 19500
    read_allocated_block 19501
    read_allocated_block 19502
    read_allocated_block 19503
    read_allocated_block 19504
    read_allocated_block 19505
    read_allocated_block 19506
    read_allocated_block 19507
    read_allocated_block 19508
    read_allocated_block 19509
    read_allocated_block 19510
    read_allocated_block 19511
    read_allocated_block 19512
    read_allocated_block 19513
    read_allocated_block 19514
    read_allocated_block 19515
    read_allocated_block 19516
    read_allocated_block 19517
    read_allocated_block 19518
    read_allocated_block 19519
    read_allocated_block 19520
    read_allocated_block 19521
    read_allocated_block 19522
    read_allocated_block 19523
    read_allocated_block 19524
    read_allocated_block 19525
    read_allocated_block 19526
    read_allocated_block 19527
    read_allocated_block 19528
    read_allocated_block 19529
    read_allocated_block 19530
    read_allocated_block 19531
    read_allocated_block 19532
    read_allocated_block 19533
    read_allocated_block 19534
    read_allocated_block 19535
    read_allocated_block 19536
    read_allocated_block 19537
    read_allocated_block 19538
    read_allocated_block 19539
    read_allocated_block 19540
    read_allocated_block 19541
    read_allocated_block 19542
    read_allocated_block 19543
    read_allocated_block 19544
    read_allocated_block 19545
    read_allocated_block 19546
    read_allocated_block 19547
    read_allocated_block 19548
    read_allocated_block 19549
    read_allocated_block 19550
    read_allocated_block 19551
    read_allocated_block 19552
    read_allocated_block 19553
    read_allocated_block 19554
    read_allocated_block 19555
    read_allocated_block 19556
    read_allocated_block 19557
    read_allocated_block 19558
    read_allocated_block 19559
    read_allocated_block 19560
    read_allocated_block 19561
    read_allocated_block 19562
    read_allocated_block 19563
    read_allocated_block 19564
    read_allocated_block 19565
    read_allocated_block 19566
    read_allocated_block 19567
    read_allocated_block 19568
    read_allocated_block 19569
    read_allocated_block 19570
     <151552, 0, 2564608>
    miss: start 4b000, count 5009
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    4661760 bytes read in 3512 ms (1.3 MiB/s)
    Initial value for argc=3
    Final value for argc=3
    Initial value for argc=3
    Final value for argc=3
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    Initial value for argc=3
    Final value for argc=3
    Initial value for argc=7
    Final value for argc=7
    test(4): '0' '-eq' '1': returns 1
    Command failed, result=1
    test(4): 'try' '=' 'yes': returns 1
    Command failed, result=1
    test(4): 'try' '=' 'try': returns 0
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    miss: start 26000, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 26000, count 1
     <2, 0, 1024>
    miss: start 26002, count 2
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 26002, count 2
    EXT4 features COMPAT: 0000003c INCOMPAT: 00000002 RO_COMPAT: 00000003
    EXT2 rev 1, inode_size 256, descriptor size 32
    ext4fs read 0 group descriptor (blkno 1 blkoff 0)
     <8, 0, 32>
    miss: start 26008, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 26008, count 1
     <7584, 256, 128>
    miss: start 27da0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 27da0, count 1
    EFI: efi_add_memory_map: 0x8cf13000 0x1 7 no
    EFI: efi_add_memory_map: 0x8cf0e000 0x1 7 no
    blk_get_devnum_by_typename: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_get_devnum_by_typename: Device desc 8df22948
    miss: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 0, count 1
    part_init: try 'EFI': ret=-1
    hit: start 0, count 1
    part_init: try 'DOS': ret=0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf13000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    EFI: efi_add_memory_map: 0x8cf12000 0x1 0 yes
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    hit: start 0, count 1
    EFI: efi_add_memory_map: 0x8cf0e000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf0d000 0x1 0 yes
    EFI: efi_add_memory_map: 0x8cf12000 0x1 7 no
    Iterate dir boot
    read_allocated_block 1457
     <11656, 0, 8>
    miss: start 28d88, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 28d88, count 1
    read_allocated_block 1457
     <11656, 8, 1>
    hit: start 28d88, count 1
    iterate >.<
    read_allocated_block 1457
     <11656, 12, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 20, 2>
    hit: start 28d88, count 1
    iterate >..<
    read_allocated_block 1457
     <11656, 24, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 32, 3>
    hit: start 28d88, count 1
    iterate >bin<
    read_allocated_block 1457
     <11656, 36, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 44, 4>
    hit: start 28d88, count 1
    iterate >boot<
    Iterate dir am437x-aum100.dtb
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    miss: start 2600b, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 2600b, count 1
     <13107216, 0, 128>
    miss: start ca6010, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start ca6010, count 1
    read_allocated_block 1638911
     <13111288, 0, 8>
    miss: start ca6ff8, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 8, 1>
    hit: start ca6ff8, count 1
    iterate >.<
    read_allocated_block 1638911
     <13111288, 12, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 20, 2>
    hit: start ca6ff8, count 1
    iterate >..<
    read_allocated_block 1638911
     <13111288, 24, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 32, 6>
    hit: start ca6ff8, count 1
    iterate >zImage<
    read_allocated_block 1638911
     <13111288, 40, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 48, 17>
    hit: start ca6ff8, count 1
    iterate >am437x-gp-evm.dtb<
    read_allocated_block 1638911
     <13111288, 68, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 76, 17>
    hit: start ca6ff8, count 1
    iterate >am437x-aum100.dtb<
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    hit: start 2600b, count 1
     <13107217, 256, 128>
    miss: start ca6011, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start ca6011, count 1
    ## Current stack ends at 0x8df13f50 lmb_dump_all:
        memory.cnt             = 0x1
        memory.size            = 0x0
        memory.reg[0x0].base   = 0x80000000
                       .size   = 0x10000000
    
        reserved.cnt           = 0x1
        reserved.size          = 0x0
        reserved.reg[0x0].base = 0x8df12f50
                         .size = 0x20ed0b0
    Iterate dir boot
    read_allocated_block 1457
     <11656, 0, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 8, 1>
    hit: start 28d88, count 1
    iterate >.<
    read_allocated_block 1457
     <11656, 12, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 20, 2>
    hit: start 28d88, count 1
    iterate >..<
    read_allocated_block 1457
     <11656, 24, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 32, 3>
    hit: start 28d88, count 1
    iterate >bin<
    read_allocated_block 1457
     <11656, 36, 8>
    hit: start 28d88, count 1
    read_allocated_block 1457
     <11656, 44, 4>
    hit: start 28d88, count 1
    iterate >boot<
    Iterate dir am437x-aum100.dtb
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    hit: start 2600b, count 1
     <13107216, 0, 128>
    hit: start ca6010, count 1
    read_allocated_block 1638911
     <13111288, 0, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 8, 1>
    hit: start ca6ff8, count 1
    iterate >.<
    read_allocated_block 1638911
     <13111288, 12, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 20, 2>
    hit: start ca6ff8, count 1
    iterate >..<
    read_allocated_block 1638911
     <13111288, 24, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 32, 6>
    hit: start ca6ff8, count 1
    iterate >zImage<
    read_allocated_block 1638911
     <13111288, 40, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 48, 17>
    hit: start ca6ff8, count 1
    iterate >am437x-gp-evm.dtb<
    read_allocated_block 1638911
     <13111288, 68, 8>
    hit: start ca6ff8, count 1
    read_allocated_block 1638911
     <13111288, 76, 17>
    hit: start ca6ff8, count 1
    iterate >am437x-aum100.dtb<
    ext4fs read 50 group descriptor (blkno 1 blkoff 1600)
     <11, 64, 32>
    hit: start 2600b, count 1
     <13107217, 256, 128>
    hit: start ca6011, count 1
    read_allocated_block 2785870
    read_allocated_block 2785871
    read_allocated_block 2785872
    read_allocated_block 2785873
    read_allocated_block 2785874
    read_allocated_block 2785875
    read_allocated_block 2785876
    read_allocated_block 2785877
    read_allocated_block 2785878
    read_allocated_block 2785879
    read_allocated_block 2785880
    read_allocated_block 2785881
     <22290472, 0, 4096>
    miss: start 1568028, count 8
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 1568028, count 8
    read_allocated_block 2785882
    read_allocated_block 2785883
    read_allocated_block 2785884
    read_allocated_block 2785885
    read_allocated_block 18224
     <22286960, 0, 65536>
    miss: start 1567270, count 128
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    read_allocated_block 18225
    read_allocated_block 18226
     <145792, 0, 8255>
    miss: start 49980, count 16
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    miss: start 49990, count 1
    blk_find_device: if_type=6, devnum=0: mmc@48060000.blk, 6, 0
    fill: start 49990, count 1
    73791 bytes read in 505 ms (142.6 KiB/s)
    Initial value for argc=3
    Final value for argc=3
    Initial value for argc=3
    Final value for argc=3
    ## Current stack ends at 0x8df14138 *  kernel: cmdline image address = 0x82000000
    ## Skipping init Ramdisk
    ## No init Ramdisk
       ramdisk start = 0x00000000, ramdisk end = 0x00000000
    *  fdt: cmdline image address = 0x88000000
    ## Checking for 'FDT'/'FDT Image' at 88000000
    Wrong FIT format: no description
    *  fdt: raw FDT blob
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       of_flat_tree at 0x88000000 size 0x0001203f
    Initial value for argc=3
    Final value for argc=3
    ## FIT configuration was not specified
    ## initrd_high = 0x90000000, copy_to_ram = 1
       ramdisk load start = 0x00000000, ramdisk load end = 0x00000000
    Initial value for argc=3
    Final value for argc=3
    Initial value for argc=3
    Final value for argc=3
    using: FDT
    ## device tree at 88000000 ... 8801203e (len=86079 [0x1503F])
       Loading Device Tree to 8defe000, end 8df1303e ... OK
    Initial value for argc=3
    Final value for argc=3
    Updating property '/ocp@44000000/interconnect@4a000000/segment@0/target-module@100000/ethernet@0/slave@200/mac-address' =  24 76 25 79 d5 3f
    Updating property '/ocp@44000000/interconnect@4a000000/segment@0/target-module@100000/ethernet@0/slave@200/local-mac-address' =  24 76 25 79 d5 3f
    ## Transferring control to Linux (at address 82000000)...
    
    Starting kernel ...
    
    

     In addition they removed the ethernet interface from their design. Could you please let us know how to change the DTS file to apply the Ethernet removed status?

    Regards,

    Jack

  • Hi Hong.

    Can you please also check if there's anything related with TI EVM check which blocks the kernel start like Board ID check via EEPROM reading in u-boot?

    Regards, 

    Jack

  • Hi Jack,
    Let's close this e2e, and continue our discussion in the new e2e.
    e2e.ti.com/.../1074901
    Best,
    -Hong

  • Hi Hong

    Issue could be resolved by modifying DTS according to their custom design.

    Thanks.

    Regards, 

    Jack