TMDS64EVM: Provide Steps to flash images in EMMC via DFU boot

Part Number: TMDS64EVM
Other Parts Discussed in Thread: AM6442

Tool/software:

Hi,

I am using AM64x processor SDK "10_01_10_04" version & EVM Kit TMDS64EVM.

As per page https://software-dl.ti.com/processor-sdk-linux/esd/AM64X/10_01_10_04/exports/docs/linux/Foundational_Components/U-Boot/UG-DFU.html, DFU is already enabled and no need to do any changes in u-boot. We can use same u-boot for DFU and same to store on EMMC. Is it correct?

Actually there are other threads which are confusing me.
https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1346143/tmds64evm-flashing-linux-image-on-emmc-via-usb-dfu
https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1127618/faq-sk-am62-how-to-flash-emmc-using-usb-dfu-on-am62x-sk-e2

this thread mention "Two sets of images must be built before flashing to eMMC, one set for USB-DFU boot, another set for flashing to eMMC (eMMC boot)." is it correct? If yes, can you please provide final list of changes to do in u-boot for USB DFU boot.

Also above thread mention to manually enter some commands to do the EMMC partition and all. So all are confusing. Please share final changes and command to do USB-DFU boot.

Regards,

Rahul Shah

  • Hi Rahul.

    To boot u-boot using USB-DFU you can follow this guide: https://software-dl.ti.com/processor-sdk-linux/esd/AM64X/10_01_10_04/exports/docs/linux/Foundational_Components/U-Boot/UG-DFU.html

    You are correct about the DFU already being enabled in the default u-boot for AM64x, this thread: https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1127618/faq-sk-am62-how-to-flash-emmc-using-usb-dfu-on-am62x-sk-e2 is for AM62x so there might be some deviation in the process.

    Once the u-boot prompt is booted, you can use this guide to flash as well as configuring the eMMC to boot the linux: https://software-dl.ti.com/processor-sdk-linux/esd/AM64X/10_01_10_04/exports/docs/linux/Foundational_Components/U-Boot/UG-Memory-K3.html Please let me know if there is still some confusion.

    Best Regards,

    Meet.

  • Hi Meet,

    Thanks for the response.

    So no need to change in bootloader. Same bootloader will work for DFU as well as for flashing in EMMC. No two copies required ? Right?

    Also with latest SDK 10_01_10_04, i cant see DFU_flash directory under bin directory which contains (dfu_flash.py) file to help flashing over DFU. Is it ok to use it from old directory? and what was the reason of missing this directory from latest SDK?

    Regards,

    Sharad

  • So no need to change in bootloader. Same bootloader will work for DFU as well as for flashing in EMMC. No two copies required ? Right?

    That is correct.

    Also with latest SDK 10_01_10_04, i cant see DFU_flash directory under bin directory which contains (dfu_flash.py) file to help flashing over DFU.

    In the latest SDK, snagfactory tool is provided to support flashing over USB_DFU: https://software-dl.ti.com/processor-sdk-linux/esd/AM64X/10_01_10_04/exports/docs/linux/Foundational_Components/Tools/Flash_via_Fastboot.html#flash-via-fastboot

    Best Regards

    Meet.

  • Hi Meet,

    I am able to flash uboot and rootfs via USB DFU, but after changing boot mode to EMMC u-boot not boots up and stuck at following logs:

    U-Boot SPL 2024.04-00007-gdbe96e1dc15-dirty (Mar 11 2025 - 17:30:52 +0530)
    Resetting on cold boot to workaround ErrataID:i2331
    Please resend tiboot3.bin in case of UART/DFU boot
    resetting ...
    
    

    Following steps i have followed :

    1. set boot mode to USB DFU Mode only.
    2. Flash bootloader via USB-DFU using following command:
        # snagrecover -s am6442 -f fw.yaml

    3. This will boot the U-BOOT and able to stop on u-boot.

    4. on U-boot prompt EMMC detected :
     

    => mmc list
    mmc@fa10000: 0 (eMMC)
    mmc@fa00000: 1
    => setenv dfu_alt_info ${dfu_alt_info_emmc}
    => dfu 0 mmc 0
    

    5. After that write u-boot and rootfs in EMMC using following command :

    * sudo dfu-util -a tiboot3.bin.raw -D <your_tiboot3.bin>
    * sudo dfu-util -a tispl.bin.raw -D <your_tispl.bin>
    * sudo dfu-util -a u-boot.img.raw -D <your_u-boot.img>
    * sudo dfu-util -a rootfs -D <your_rootfs.ext4>


    6. Give ROM access to boot partition using following command :
     => mmc partconf 0 1 1 1
     => mmc bootbus 0 2 0 0
    

    7. Reboot board and set bootmode to EMMC.

    8. After that u-boot not boot and only sees following logs on console :

    U-Boot SPL 2024.04-00007-gdbe96e1dc15-dirty (Mar 11 2025 - 17:30:52 +0530)
    Resetting on cold boot to workaround ErrataID:i2331
    Please resend tiboot3.bin in case of UART/DFU boot
    resetting ...

    Please let me know if any steps missing.

    Regards,

    Rahul Shah

  • Hi Rahul,

    I am able to flash uboot and rootfs via USB DFU, but after changing boot mode to EMMC u-boot not boots up and stuck at following logs:

    As described in the logs, there is a reset triggered here as a part of workaround for errata i23331. After this you have to resend the tiboot3.bin and boot the device again.

    Best Regards,

    Meet.

  • Hi Meet,

    So i have verified code and in latest SDK, this errata is handled and following patch is already there in SDK 10_01_10_04. https://patchwork.ozlabs.org/project/uboot/patch/20230406075936.2590125-1-vigneshr@ti.com/#3092222

    So switching to EMMC boot found the u-boot from EMMC and after POR first time UBOOT start working and due to handling of errata 2331, do_reset logic added, so it will try to reset. But after debugging it found that uboot reach to "ti_sci_cmd_core_reboot" function and send "TI_SCI_MSG_SYS_RESET" msg to SCI controller, but it not resets and stuck as per below.Somehow SCI controller not resets.

    U-Boot SPL 2024.04-00007-gdbe96e1dc15-dirty (Mar 11 2025 - 17:30:52 +0530)
    Resetting on cold boot to workaround ErrataID:i2331
    Please resend tiboot3.bin in case of UART/DFU boot
    resetting ...


    From HW perspective :

    We are using custom HW design in that , EMMC part number is Kingston EMMC08G-WV28-01J10.

    In our design, we have provided MCU_PORz signal for eMMC reset input, no other SoC GPIO has been used to manually reset eMMC while in AM64 EVM board, GPIO_eMMC_RSTn is been used to reset eMMC after ANDing with RESETSTATz signal.

    Are we missing something here? I have attached reference design and our custom design snaps here in zip file for reference.

    AM46x EVM Reference design.zipCustom design.zip

    Can you please help to debug this issue. One more finding is if we disable 2331 patch, then it move forward but after that it not reads EMMC properly and i think it is because if reset not happens. So we need to first fix 2331 issue of resetting then may be it works.

  • Hi Meet,

    so in our case we are not getting uboot prompt from EMMC boot. do we need to execute “mmc rst-function 0 1” from USB DFU mode after executing step6 mentioned above(ROM access) and  before switching to EMMC boot?

    Tried that but still reset not working from EMMC and stuck as mentioned above.

  • Hi Sharad,

    do we need to execute “mmc rst-function 0 1” from USB DFU mode after

    That is correct, please note that, this is a write-once field.

    I am a bit confused here, the logs you attached in the previous response seem to be for USB-DFU booting, to fix this you just need to send the tiboot3.bin again using dfu-util and it will work as expected after that you can continue booting tispl.bin and u-boot.img and you should be able to see the u-boot prompt. Can you please confirm if you are able to reach till here using USB-DFU?

    Once you are in the u-boot, you can flash the eMMC using the steps mentioned in the link shared by me, after which you switch to eMMC boot.

    so in our case we are not getting uboot prompt from EMMC boot

    In case you are stuck in eMMC boot please share the boot logs for the same, the logs shared by you previously are for USB-DFU boot.

    Best Regards,

    Meet.

  • Hi Meet,

    Following logs are from EMMC boot mode and stucks there.

    U-Boot SPL 2024.04-00007-gdbe96e1dc15-dirty (Mar 11 2025 - 17:30:52 +0530)
    Resetting on cold boot to workaround ErrataID:i2331
    Please resend tiboot3.bin in case of UART/DFU boot
    resetting ...

    Please check my full steps as below, already added in previous comment.

    Following steps i have followed:

    1. set boot mode to USB DFU Mode only.

    2. Flash bootloader via USB-DFU using following command, this will send all three binaries (tiboot3.bin, tispl.bin, uboot.img) via USB DFU.

    snagrecover -s am6442 -f fw.yaml

    3. This will boot the U-BOOT and able to stop on u-boot.

    4. on U-boot prompt EMMC detected:

    => mmc list
    mmc@fa10000: 0 (eMMC)
    mmc@fa00000: 1
    => setenv dfu_alt_info ${dfu_alt_info_emmc}
    => dfu 0 mmc 0

    5. After that write u-boot and rootfs in EMMC using following command:

    sudo dfu-util -a tiboot3.bin.raw -D <your_tiboot3.bin>
    sudo dfu-util -a tispl.bin.raw -D <your_tispl.bin>
    sudo dfu-util -a u-boot.img.raw -D <your_u-boot.img>
    sudo dfu-util -a rootfs -D <your_rootfs.ext4>
    

    6. Give ROM access to boot partition using following command

    => mmc partconf 0 1 1 1
    => mmc bootbus 0 2 0 0
    => mmc rst-function 0 1 

    7. power off the board and set bootmode to EMMC.

    8. power on the board.

    9. on console following logs printed and then stuck

    U-Boot SPL 2024.04-00007-gdbe96e1dc15-dirty (Mar 11 2025 - 17:30:52 +0530)
    Resetting on cold boot to workaround ErrataID:i2331
    Please resend tiboot3.bin in case of UART/DFU boot
    resetting ...

    As per you, it is in USB DFU mode. But i am resetting the board and see following logs, so how is that possible because There is no code in RAM after reset in USB DFU mode. After reset i can see above logs that means it runs from EMMC and stuck there due to cold boot not happens from EMMC.

  • Hi Meet,

    Any update, we are stuck right now.

  • Hi Sharad,

    Can you try again using the following configurations in the .yaml file:

    tiboot3:
      path: board-support/prebuilt-images/am64xx-evm/tiboot3.bin
    tiboot3:
      path: board-support/prebuilt-images/am64xx-evm/tiboot3.bin
    tispl:
      path: board-support/prebuilt-images/am64xx-evm/tispl.bin
    u-boot:
      path: board-support/prebuilt-images/am64xx-evm/u-boot.img

    As you need to re-flash tiboot3.bin for DFU boot, you should add it twice in the configuration file to take care of the same.

    After reset i can see above logs that means it runs from EMMC and stuck there due to cold boot not happens from EMMC.

    As far as I know, you wouldn't get these logs from eMMC boot. The logs are still from DFU boot only, I suspect that as you are not re-flashing tiboot3.bin it's stuck at these logs and not moving further. Please try the same process again using the above yaml file.

    Best Regards,

    Meet.

  • Hi Meet,

    We have some progress and now uboot runs and stuck with following error:

    U-Boot SPL 2024.04-00007-gdbe96e1dc15-dirty (Mar 22 2025 - 11:30:28 +0530)
    Resetting on cold boot to workaround ErrataID:i2331
    Please resend tiboot3.bin in case of UART/DFU boot
    resetting ...
    
    U-Boot SPL 2024.04-00007-gdbe96e1dc15-dirty (Mar 22 2025 - 11:30:28 +0530)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.1.8--v10.01.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Loading Environment from nowhere... OK
    init_env from device 9 not supported!
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.11.0(release):v2.11.0-906-g58b25570c9-dirty
    NOTICE:  BL31: Built : 04:20:32, Nov  1 2024
    I/TC: 
    I/TC: OP-TEE version: 4.4.0-dev (gcc version 13.3.0 (GCC)) #1 Fri Oct 18 17:45:27 UTC 2024 aarch64
    I/TC: WARNING: This OP-TEE configuration might be insecure!
    I/TC: WARNING: Please check https://optee.readthedocs.io/en/latest/architecture/porting_guidelines.hl
    I/TC: Primary CPU initializing
    I/TC: GIC redistributor base address not provided
    I/TC: Assuming default GIC group status and modifier
    I/TC: SYSFW ABI: 4.0 (firmware rev 0x000a '10.1.8--v10.01.08 (Fiery Fox)')
    I/TC: Activated SA2UL device
    I/TC: Enabled firewalls for SA2UL TRNG device
    I/TC: SA2UL TRNG initialized
    I/TC: SA2UL Drivers initialized
    I/TC: HUK Initialized
    I/TC: Primary CPU switching to normal world boot
    
    U-Boot SPL 2024.04-00007-gdbe96e1dc15-dirty (Mar 22 2025 - 11:31:37 +0530)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.1.8--v10.01.08 (Fiery Fox)')
    Trying to boot from MMC1
    mmc_load_image_raw_sector: mmc block read error
    Partition 1 invalid on device 0
    spl_register_fat_device: fat register err - -1
    spl_load_image_fat: error reading image u-boot.img, err - -1
    SPL: failed to boot from all boot devices
    ### ERROR ### Please RESET the board ###


    Verified mmc partion and content from USB-DFU uboot prompt

    => mmc part
    rahul : __init_mmc_device . 1
    rahul : __init_mmc_device . 2
    
    Partition Map for MMC device 0  --   Partition Type: EFI
    
    Part    Start LBA       End LBA         Name
            Attributes
            Type GUID
            Partition GUID
      1     0x00000022      0x00e993de      "rootfs"
            attrs:  0x0000000000000000
            type:   ebd0a0a2-b9e5-4433-87c0-68b6b72699c7
            guid:   3a499c45-b9ae-4311-a29b-cc6130eda70c
    => mmc list
    mmc@fa10000: 0 (eMMC)
    mmc@fa00000: 1
    => mmc part
    rahul : __init_mmc_device . 1
    rahul : __init_mmc_device . 2
    
    Partition Map for MMC device 0  --   Partition Type: EFI
    
    Part    Start LBA       End LBA         Name
            Attributes
            Type GUID
            Partition GUID
      1     0x00000022      0x00e993de      "rootfs"
            attrs:  0x0000000000000000
            type:   ebd0a0a2-b9e5-4433-87c0-68b6b72699c7
            guid:   3a499c45-b9ae-4311-a29b-cc6130eda70c

    => ls mmc 0:1
    <DIR>       4096 .
    <DIR>       4096 ..
    <DIR>      16384 lost+found
    <SYM>          7 bin
    <DIR>       4096 boot
    <DIR>       4096 dev
    <DIR>       4096 etc
    <DIR>       4096 home
    <SYM>          7 lib
    <DIR>       4096 media
    <DIR>       4096 mnt
    <DIR>       4096 proc
    <DIR>       4096 root
    <DIR>       4096 run
    <SYM>          8 sbin
    <DIR>       4096 srv
    <DIR>       4096 sys
    <DIR>       4096 tmp
    <DIR>       4096 usr
    <DIR>       4096 var
    => ls mmc 0:1 /boot
    <DIR>       4096 .
    <DIR>       4096 ..
    <DIR>       4096 EFI
    <SYM>         41 Image
            21029376 Image-6.6.58-ti-01497-ga7758da17c28-dirty
    <DIR>       4096 dtb
    <SYM>         44 fitImage
             9097134 fitImage-6.6.58-ti-01497-ga7758da17c28-dirty
    => ls mmc 0:1 /boot/dtb/ti
    <DIR>       4096 .
    <DIR>       4096 ..
                2488 k3-am642-evm-icssg1-dualemac-mii.dtbo
                2241 k3-am642-evm-icssg1-dualemac.dtbo
                3102 k3-am642-evm-nand.dtbo
                1472 k3-am642-evm-pcie0-ep.dtbo
                1017 k3-am642-evm-sk-cpsw3g-pps.dtbo
               64721 k3-am642-evm.dtb
               60276 k3-am642-phyboard-electra-rdk.dtb
                3371 k3-am642-sk-pwm.dtbo
               61937 k3-am642-sk.dtb
               66121 k3-am642-tqma64xxl-mbax4xxl.dtb

    => pri
    addr_fit=0x90000000
    arch=arm
    args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000 ${mtdparts}
    args_mmc=run finduuid;setenv bootargs console=${console} ${optargs} root=PARTUUID=${uuid} rw rootfstype=${mmcrootfstype}
    args_usb=run finduuid;setenv bootargs console=${console} ${optargs} root=PARTUUID=${uuid} rw rootfstype=${mmcrootfstype}
    baudrate=115200
    board=am64x
    board_name=am64x
    boot=mmc
    boot_fdt=try
    boot_fit=0
    boot_rprocs=if test ${dorprocboot} -eq 1 && test ${boot} = mmc; then rproc init; run boot_rprocs_mmc; fi;
    boot_rprocs_mmc=env set rproc_id; env set rproc_fw; env set secure_suffix; if test ${secure_rprocs} -eq 1; then env set secure_suffix -sec; fi; for i in ${rproc_fw_binaries} ; do if test -z "${rproc_id}e
    boot_targets=mmc1 mmc0 usb pxe dhcp
    bootargs=console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 omap2-nand.0:2m(NAND.tiboot3),2m(NAND.tispl),2m(NAND.tiboot3.backup),4m(NAND.u-boot),256k(NAND.u-boot-env),256k(NAND.u-boot-env.backupt
    bootcmd=run envboot; run bootcmd_ti_mmc; bootflow scan -lb
    bootcmd_ti_mmc=run init_${boot}; run update_do_main_cpsw0_qsgmii_phyinit; if test ${do_main_cpsw0_qsgmii_phyinit} -eq 1; then run main_cpsw0_qsgmii_phyinit; fi; run boot_rprocs; if test ${boot_fit} -eq ;
    bootdelay=2
    bootdir=/boot

    bootenvfile=uEnv.txt
    bootm_size=0x10000000
    bootpart=0
    bootscript=echo Running bootscript from mmc${mmcdev} ...; source ${loadaddr}
    console=ttyS2,115200n8
    cpu=armv8
    dfu_alt_info_emmc=rawemmc raw 0 0x800000 mmcpart 1; rootfs part 0 1; tiboot3.bin.raw raw 0x0 0x800 mmcpart 1; tispl.bin.raw raw 0x800 0x1000 mmcpart 1; u-boot.img.raw raw 0x1000 0x2000 mmcpart 1; u-env.1
    dfu_alt_info_mmc=boot part 1 1; rootfs part 1 2; tiboot3.bin fat 1 1; tispl.bin fat 1 1; u-boot.img fat 1 1; uEnv.txt fat 1 1; sysfw.itb fat 1 1
    dfu_alt_info_nand=NAND.tiboot3 part 0 1; NAND.tispl part 0 2; NAND.tiboot3.backup part 0 3; NAND.u-boot part 0 4; NAND.u-boot-env part 0 5; NAND.u-boot-env.backup part 0 6; NAND.file-system part 0 7
    dfu_alt_info_ospi=tiboot3.bin raw 0x0 0x100000; tispl.bin raw 0x100000 0x200000; u-boot.img raw 0x300000 0x400000; u-boot-env raw 0x700000 0x020000; rootfs raw 0x800000 0x3800000
    dfu_alt_info_ospi_nand=ospi_nand.tiboot3 part 1; ospi_nand.tispl part 2; ospi_nand.u-boot part 3; ospi_nand.env part 4; ospi_nand.env.backup part 5; ospi_nand.rootfs part 6; ospi_nand.phypattern part 7
    dfu_alt_info_ram=tispl.bin ram 0x80080000 0x200000; u-boot.img ram 0x81000000 0x400000
    do_main_cpsw0_qsgmii_phyinit=0
    dorprocboot=0
    dtboaddr=0x89000000
    envboot=if mmc dev ${mmcdev}; then if mmc rescan; then echo SD/MMC found on device ${mmcdev}; if test -n "${loadbootscript}" && run loadbootscript; then run bootscript; else if run loadbootenv; then ech;
    ethact=ethernet@8000000port@1
    ethaddr=28:b5:e8:cf:c6:40
    fdt_addr_r=0x88000000
    fdtaddr=0x88000000
    fdtcontroladdr=fde8d6e0
    fdtoverlay_addr_r=0x89500000
    fileaddr=82000000
    filesize=140e200

    finduuid=part uuid ${boot} ${bootpart} uuid
    fw_dev_part=1:2
    get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/dtb/${fdtfile}
    get_fdt_usb=load usb ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}
    get_fit_config=setexpr name_fit_config gsub / _ conf-${fdtfile}
    get_fit_mmc=load mmc ${bootpart} ${addr_fit} ${bootdir}/${name_fit}
    get_fit_overlaystring=for overlay in $name_overlays; do; setexpr name_fit_overlay gsub / _ conf-${overlay}; setenv overlaystring ${overlaystring}'#'${name_fit_overlay}; done;
    get_fit_usb=load usb ${bootpart} ${addr_fit} ${bootdir}/${name_fit}
    get_kern_mmc=load mmc ${bootpart} ${loadaddr} ${bootdir}/${name_kern}
    get_kern_usb=load usb ${bootpart} ${loadaddr} ${bootdir}/${name_kern}
    get_overlay_mmc=fdt address ${fdtaddr}; fdt resize 0x100000; for overlay in $name_overlays; do; load mmc ${bootpart} ${dtboaddr} ${bootdir}/dtb/${overlay} && fdt apply ${dtboaddr}; done;
    get_overlay_usb=fdt address ${fdtaddr}; fdt resize 0x100000; for overlay in $name_overlays; do; load usb ${bootpart} ${dtboaddr} ${bootdir}/${overlay} && fdt apply ${dtboaddr}; done;
    importbootenv=echo Importing environment from mmc${mmcdev} ...; env import -t ${loadaddr} ${filesize}
    init_mmc=run args_all args_mmc
    init_usb=run args_all args_usb
    kernel_addr_r=0x82000000
    loadaddr=0x82000000

    loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenvfile}
    loadfdt=load ${devtype} ${bootpart} ${fdtaddr} ${bootdir}/dtb/${fdtfile}
    loadimage=load ${devtype} ${bootpart} ${loadaddr} ${bootdir}/${bootfile}
    mmcboot=if mmc dev ${mmcdev}; then devnum=${mmcdev}; devtype=mmc; if mmc rescan; then echo SD/MMC found on device ${mmcdev}; if run loadimage; then run args_mmc; if test ${boot_fit} -eq 1; then run run_;
    mmcdev=0
    mmcloados=if test ${boot_fdt} = yes || test ${boot_fdt} = try; then if run get_fdt_mmc; then bootz ${loadaddr} - ${fdtaddr}; else if test ${boot_fdt} = try; then bootz; else echo WARN: Cannot load the D;
    mmcrootfstype=ext4 rootwait
    mtdids=nand0=omap2-nand.0
    mtdparts=omap2-nand.0:2m(NAND.tiboot3),2m(NAND.tispl),2m(NAND.tiboot3.backup),4m(NAND.u-boot),256k(NAND.u-boot-env),256k(NAND.u-boot-env.backup),-(NAND.file-system)
    name_fit=fitImage
    name_kern=Image
    nandargs=setenv bootargs console=${console} ${optargs} root=${nandroot} rootfstype=${nandrootfstype}
    nandboot=echo Booting from nand ...; run nandargs; nand read ${fdtaddr} NAND.u-boot-spl-os; nand read ${loadaddr} NAND.kernel; bootz ${loadaddr} - ${fdtaddr}
    nandroot=ubi0:rootfs rw ubi.mtd=NAND.file-system,2048
    nandrootfstype=ubifs rootwait
    optargs=earlycon=ns16550a,mmio32,0x02800000 omap2-nand.0:2m(NAND.tiboot3),2m(NAND.tispl),2m(NAND.tiboot3.backup),4m(NAND.u-boot),256k(NAND.u-boot-env),256k(NAND.u-boot-env.backup),-(NAND.file-system)
    partitions=name=rootfs,start=0,size=-,uuid=${uuid_gpt_rootfs}
    pxefile_addr_r=0x80100000
    ramdisk_addr_r=0x88080000

    rd_spec=-
    rdaddr=0x88080000
    rproc_fw_binaries= 0 /lib/firmware/am64-mcu-m4f0_0-fw 1 /lib/firmware/am64-main-r5f0_0-fw 2 /lib/firmware/am64-main-r5f0_1-fw 3 /lib/firmware/am64-main-r5f1_0-fw 4 /lib/firmware/am64-main-r5f1_1-fw
    rproc_load_and_boot_one=if load mmc ${bootpart} $loadaddr ${rproc_fw}; then if rproc load ${rproc_id} ${loadaddr} ${filesize}; then rproc start ${rproc_id}; fi; fi
    run_fit=run get_fit_config; bootm ${addr_fit}#${name_fit_config}${overlaystring}
    run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}
    scriptaddr=0x80000000
    secure_rprocs=0
    soc=k3
    stderr=serial@2800000
    stdin=serial@2800000
    stdout=serial@2800000
    storage_interface=mmc
    update_do_main_cpsw0_qsgmii_phyinit=setenv do_main_cpsw0_qsgmii_phyinit 0;
    update_to_fit=setenv loadaddr ${addr_fit}; setenv bootfile ${name_fit}
    usbboot=setenv boot usb; setenv bootpart 0:2; usb start; run init_usb; run get_kern_usb; run get_fdt_usb; run run_kern;
    uuid=3a499c45-b9ae-4311-a29b-cc6130eda70c
    vendor=ti
    
    Environment size: 7321/126972 bytes
    

  • Hi Meet,

    we are using following boot mode setting "Primary boot mode = EMMC" & "Backup boot mode = None"

    B[7-0]    : 01001011   
    B[15-8]  : 00000010

    In out custom hardware, only EMMC is attached at port mmc0 port. No SD Card available in our Hardware.

  • Hi Meet,

    Any update on this.

    thanks

  • Hello,

    Could you please apply the following patch and share the boot logs?

    diff --git a/configs/am64x_evm_a53_defconfig b/configs/am64x_evm_a53_defconfig
    index 4c2f4c20b4b..9a512da7dbb 100644
    --- a/configs/am64x_evm_a53_defconfig
    +++ b/configs/am64x_evm_a53_defconfig
    @@ -222,3 +222,6 @@ CONFIG_SYS_MAX_NAND_DEVICE=1
     CONFIG_SPL_MTD_SUPPORT=y
     CONFIG_SYS_NAND_U_BOOT_LOCATIONS=y
     CONFIG_SYS_NAND_U_BOOT_OFFS=0x600000
    +
    +CONFIG_MMC_TRACE=y
    +
    

    Thanks!

  • HI Prashant,

    Please find attached log files.

    USB_DFU_WITH_MMC_TRACE  -> This is contain log of UDB DFU bootloader flashing and running


    writing_uboot_in_emmc   -> this file contains log of writing uboot in EMMC from USB-DFU mode

    set_boot0_hw_partititon_for_boot -> log contains setting of boot0 hw partition


    EMMC_boot_logs  -> This log file contains EMMC booting log



  • HI Prashant,

    Please find attached log files.

    USB_DFU_WITH_MMC_TRACE  -> This is contain log of UDB DFU bootloader flashing and running

    
    
    
    
    U-Boot SPL 2024.04-00009-gee92f258678-dirty (Mar 26 2025 - 09:19:20 +0530)
    Resetting on cold boot to workaround ErrataID:i2331
    Please resend tiboot3.bin in case of UART/DFU boot
    resetting ...
    
    U-Boot SPL 2024.04-00009-gee92f258678-dirty (Mar 26 2025 - 09:19:20 +0530)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.1.8--v10.01.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from DFU
    ###################################################DOWNLOAD ... OK
    Ctrl+C to exit ...
    ###################################################################DOWNLOAD ... OK
    Ctrl+C to exit ...
    Authentication passed
    Authentication passed
    Loading Environment from nowhere... OK
    init_env from device 10 not supported!
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.11.0(release):v2.11.0-906-g58b25570c9-dirty
    NOTICE:  BL31: Built : 04:20:32, Nov  1 2024
    I/TC: 
    I/TC: OP-TEE version: 4.4.0-dev (gcc version 13.3.0 (GCC)) #1 Fri Oct 18 17:45:27 UTC 2024 aarch64
    I/TC: WARNING: This OP-TEE configuration might be insecure!
    I/TC: WARNING: Please check https://optee.readthedocs.io/en/latest/architecture/porting_guidelines.hl
    I/TC: Primary CPU initializing
    I/TC: GIC redistributor base address not provided
    I/TC: Assuming default GIC group status and modifier
    I/TC: SYSFW ABI: 4.0 (firmware rev 0x000a '10.1.8--v10.01.08 (Fiery Fox)')
    I/TC: Activated SA2UL device
    I/TC: Enabled firewalls for SA2UL TRNG device
    I/TC: SA2UL TRNG initialized
    I/TC: SA2UL Drivers initialized
    I/TC: HUK Initialized
    I/TC: Primary CPU switching to normal world boot
    
    U-Boot SPL 2024.04-00009-gee92f258678-dirty (Mar 26 2025 - 09:20:25 +0530)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.1.8--v10.01.08 (Fiery Fox)')
    Trying to boot from DFU
    ######DOWNLOAD ... OK
    Ctrl+C to exit ...
    Authentication passed
    Authentication passed
    
    
    U-Boot 2024.04-00009-gee92f258678-dirty (Mar 26 2025 - 09:20:25 +0530)
    
    SoC:   AM64X SR2.0 HS-FS
    Model: Texas Instruments AM642 EVM
    DRAM:  2 GiB
    Core:  98 devices, 31 uclasses, devicetree: separate
    NAND:  0 MiB
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from nowhere... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    Net:   eth0: ethernet@8000000port@1Could not get PHY for mdio@32400: addr 15
    prueth_port icssg1-eth-port@0: phy_connect() failed
    
    Hit any key to stop autoboot:  0 
    MMC: no card present
    MMC: no card present
    ** Bad device specification mmc 1 **
    MMC: no card present
    ** Bad device specification mmc 1 **
    Couldn't find partition mmc 1:2
    Can't set block device
    MMC: no card present
    ** Bad device specification mmc 1 **
    Couldn't find partition mmc 1:2
    Can't set block device
    libfdt fdt_check_header(): FDT_ERR_BADMAGIC
    No FDT memory address configured. Please configure
    the FDT address via "fdt addr <address>" command.
    Aborting!
    Bad Linux ARM64 Image magic!
    Scanning for bootflows in all bootdevs
    Seq  Method       State   Uclass    Part  Name                      Filename
    ---  -----------  ------  --------  ----  ------------------------  ----------------
    Scanning global bootmeth 'efi_mgr':
    CMD_SEND:0
                    ARG                      0x00000000
                    MMC_RSP_NONE
    CMD_SEND:8
                    ARG                      0x000000aa
                    RET                      -110
    CMD_SEND:55
                    ARG                      0x00000000
                    RET                      -110
    CMD_SEND:0
                    ARG                      0x00000000
                    MMC_RSP_NONE
    CMD_SEND:1
                    ARG                      0x00000000
                    MMC_RSP_R3,4             0x00ff8080 
    CMD_SEND:1
                    ARG                      0x40000080
                    MMC_RSP_R3,4             0x00ff8080 
    CMD_SEND:1
                    ARG                      0x40000080
                    MMC_RSP_R3,4             0x00ff8080 
    CMD_SEND:1
                    ARG                      0x40000080
                    MMC_RSP_R3,4             0x00ff8080 
    CMD_SEND:1
                    ARG                      0x40000080
                    MMC_RSP_R3,4             0x00ff8080 
    CMD_SEND:1
                    ARG                      0x40000080
                    MMC_RSP_R3,4             0x00ff8080 
    CMD_SEND:1
                    ARG                      0x40000080
                    MMC_RSP_R3,4             0xc0ff8080 
    CMD_SEND:2
                    ARG                      0x00000000
                    MMC_RSP_R2               0x70010057 
                                             0x56323830 
                                             0x38013235 
                                             0x9ba91b00 
    
                                            DUMPING DATA
                                            000 - 70 01 00 57 
                                            004 - 56 32 38 30 
                                            008 - 38 01 32 35 
                                            012 - 9b a9 1b 00 
    CMD_SEND:3
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000500 
    CMD_SEND:9
                    ARG                      0x00010000
                    MMC_RSP_R2               0xd04f0132 
                                             0x8f5903ff 
                                             0xffffbfef 
                                             0x8a400000 
    
                                            DUMPING DATA
                                            000 - d0 4f 01 32 
                                            004 - 8f 59 03 ff 
                                            008 - ff ff bf ef 
                                            012 - 8a 40 00 00 
    CMD_SEND:7
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000700 
    CMD_SEND:8
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:6
                    ARG                      0x03b70200
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:6
                    ARG                      0x03b90200
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:21
                    ARG                      0x00000000
                    RET                      -70
    CMD_SEND:21
                    ARG                      0x00000000
                    RET                      -70
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    RET                      -70
    CMD_SEND:21
                    ARG                      0x00000000
                    RET                      -70
    CMD_SEND:8
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x00000001
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x00000022
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000024
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x0000002a
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x000008fa
                    MMC_RSP_R1,5,6,7         0x00000900 
    MMC: no card present
    No EFI system partition
    No EFI system partition
    Failed to persist EFI variables
    No EFI system partition
    Failed to persist EFI variables
    No EFI system partition
    Failed to persist EFI variables
      0  efi_mgr      ready   (none)       0  <NULL>                    
    ** Booting bootflow '<NULL>' with efi_mgr
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x000102fa
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x00010301
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    Loading Boot0000 'mmc 0' failed
    EFI boot manager: Cannot load any image
    Boot failed (err=-14)
    Scanning bootdev 'mmc@fa00000.bootdev':
    MMC: no card present
    MMC: no card present
    MMC: no card present
    MMC: no card present
    Scanning bootdev 'mmc@fa10000.bootdev':
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x0000189a
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x0001032a
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x00010331
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    No working controllers found
    link up on port 1, speed 10, half duplex
    BOOTP broadcast 1
    BOOTP broadcast 2
    BOOTP broadcast 3
    BOOTP broadcast 4
    BOOTP broadcast 5
    BOOTP broadcast 6
    BOOTP broadcast 7
    BOOTP broadcast 8
    BOOTP broadcast 9
    BOOTP broadcast 10
    BOOTP broadcast 11
    BOOTP broadcast 12
    BOOTP broadcast 13
    BOOTP broadcast 14
    BOOTP broadcast 15
    BOOTP broadcast 16
    BOOTP broadcast 17
    
    Retry time exceeded; starting again
    link up on port 1, speed 10, half duplex
    BOOTP broadcast 1
    BOOTP broadcast 2
    BOOTP broadcast 3
    BOOTP broadcast 4
    BOOTP broadcast 5
    BOOTP broadcast 6
    BOOTP broadcast 7
    BOOTP broadcast 8
    BOOTP broadcast 9
    BOOTP broadcast 10
    BOOTP broadcast 11
    BOOTP broadcast 12
    BOOTP broadcast 13
    BOOTP broadcast 14
    BOOTP broadcast 15
    BOOTP broadcast 16
    BOOTP broadcast 17
    
    Retry time exceeded; starting again
    No more bootdevs
    ---  -----------  ------  --------  ----  ------------------------  ----------------
    (1 bootflow, 1 valid)
    


    writing_uboot_in_emmc   -> this file contains log of writing uboot in EMMC from USB-DFU mode

    => setenv dfu_alt_info ${dfu_alt_info_emmc}
    => dfu 0 mmc 0
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:18
                    ARG                      0x00000002
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000b00 
    CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00000400
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #DOWNLOAD ... OK
    Ctrl+C to exit ...
    CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00000800
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00000a00
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00000c00
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00000e00
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #DOWNLOAD ... OK
    Ctrl+C to exit ...
    CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00001000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00001200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00001400
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00001600
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00001800
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:25
                    ARG                      0x00001a00
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:12
                    ARG                      0x00000000
                    MMC_RSP_R1b              0x00000c00 
    CMD_SEND:6
                    ARG                      0x03b34800
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    #DOWNLOAD ... OK
    Ctrl+C to exit ...
    

    set_boot0_hw_partititon_for_boot -> log contains setting of boot0 hw partition

    => mmc partconf 0 1 1 1
    CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    => mmc bootbus 0 2 0 0
    CMD_SEND:6
                    ARG                      0x03b10200
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    Set to BOOT_BUS_WIDTH = 0x2, RESET = 0x0, BOOT_MODE = 0x0
    => mmc rst-function 0 1 
    CMD_SEND:6
                    ARG                      0x03a20100
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    

    EMMC_boot_logs  -> This log file contains EMMC booting log

    -Boot SPL 2024.04-00007-gdbe96e1dc15-dirty (Mar 26 2025 - 09:21:15 +0530)
    Resetting on cold boot to workaround ErrataID:i2331
    Please resend tiboot3.bin in case of UART/DFU boot
    resetting ...
    
    U-Boot SPL 2024.04-00007-gdbe96e1dc15-dirty (Mar 26 2025 - 09:21:15 +0530)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.1.8--v10.01.08 (Fiery Fox)')
    SPL initial stack usage: 13392 bytes
    Trying to boot from MMC1
    Authentication passed
    Authentication passed
    Loading Environment from nowhere... OK
    init_env from device 9 not supported!
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.11.0(release):v2.11.0-906-g58b25570c9-dirty
    NOTICE:  BL31: Built : 04:20:32, Nov  1 2024
    I/TC: 
    I/TC: OP-TEE version: 4.4.0-dev (gcc version 13.3.0 (GCC)) #1 Fri Oct 18 17:45:27 UTC 2024 aarch64
    I/TC: WARNING: This OP-TEE configuration might be insecure!
    I/TC: WARNING: Please check https://optee.readthedocs.io/en/latest/architecture/porting_guidelines.hl
    I/TC: Primary CPU initializing
    I/TC: GIC redistributor base address not provided
    I/TC: Assuming default GIC group status and modifier
    I/TC: SYSFW ABI: 4.0 (firmware rev 0x000a '10.1.8--v10.01.08 (Fiery Fox)')
    I/TC: Activated SA2UL device
    I/TC: Enabled firewalls for SA2UL TRNG device
    I/TC: SA2UL TRNG initialized
    I/TC: SA2UL Drivers initialized
    I/TC: HUK Initialized
    I/TC: Primary CPU switching to normal world boot
    
    U-Boot SPL 2024.04-00007-gdbe96e1dc15-dirty (Mar 26 2025 - 09:22:32 +0530)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.1.8--v10.01.08 (Fiery Fox)')
    Trying to boot from MMC1
    CMD_SEND:0
                    ARG                      0x00000000
                    MMC_RSP_NONE
    CMD_SEND:8
                    ARG                      0x000000aa
                    RET                      -110
    CMD_SEND:55
                    ARG                      0x00000000
                    RET                      -110
    CMD_SEND:0
                    ARG                      0x00000000
                    MMC_RSP_NONE
    CMD_SEND:1
                    ARG                      0x00000000
                    MMC_RSP_R3,4             0x00ff8080 
    CMD_SEND:1
                    ARG                      0x40000080
                    MMC_RSP_R3,4             0xc0ff8080 
    CMD_SEND:2
                    ARG                      0x00000000
                    MMC_RSP_R2               0x70010057 
                                             0x56323830 
                                             0x38013235 
                                             0x9ba91b00 
    
                                            DUMPING DATA
                                            000 - 70 01 00 57 
                                            004 - 56 32 38 30 
                                            008 - 38 01 32 35 
                                            012 - 9b a9 1b 00 
    CMD_SEND:3
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000500 
    CMD_SEND:9
                    ARG                      0x00010000
                    MMC_RSP_R2               0xd04f0132 
                                             0x8f5903ff 
                                             0xffffbfef 
                                             0x8a400000 
    
                                            DUMPING DATA
                                            000 - d0 4f 01 32 
                                            004 - 8f 59 03 ff 
                                            008 - ff ff bf ef 
                                            012 - 8a 40 00 00 
    CMD_SEND:7
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000700 
    CMD_SEND:8
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:6
                    ARG                      0x03b70200
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:6
                    ARG                      0x03b90200
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:21
                    ARG                      0x00000000
                    RET                      -70
    CMD_SEND:21
                    ARG                      0x00000000
                    RET                      -70
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:21
                    ARG                      0x00000000
                    RET                      -70
    CMD_SEND:21
                    ARG                      0x00000000
                    RET                      -70
    CMD_SEND:8
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:6
                    ARG                      0x03b34900
                    MMC_RSP_R1b              0x00000800 
    CMD_SEND:13
                    ARG                      0x00010000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CURR STATE:4
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x00001800
                    MMC_RSP_R1,5,6,7         0x00000900 
    mmc_load_image_raw_sector: mmc block read error
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:16
                    ARG                      0x00000200
                    MMC_RSP_R1,5,6,7         0x00000900 
    CMD_SEND:17
                    ARG                      0x00000000
                    MMC_RSP_R1,5,6,7         0x00000900 
    Partition 1 invalid on device 0
    spl_register_fat_device: fat register err - -1
    spl_load_image_fat: error reading image u-boot.img, err - -1
    SPL: failed to boot from all boot devices
    ### ERROR ### Please RESET the board ###
    

  • Hello,

    Since you are trying all this on TI EVM, could you please share the U-Boot images for me to try them locally?

    Thanks!

  • Hi Prashant,

    No , we are working on our custom hardware design based on AM64 GP EVM.

    Are logs not helpful?. Please let me know if any other debugs want to add to debug this issue.

  • Also as mentioned previously,

    We are using custom HW design in that , EMMC part number is Kingston EMMC08G-WV28-01J10.

    In our design, we have provided MCU_PORz signal for eMMC reset input, no other SoC GPIO has been used to manually reset eMMC while in AM64 EVM board, GPIO_eMMC_RSTn is been used to reset eMMC after ANDing with RESETSTATz signal.

    Are we missing something here? I have attached reference design and our custom design snaps here in zip file for reference.

    e2e.ti.com/.../AM46x-EVM-Reference-design.zipe2e.ti.com/.../Custom-design.zip

  • Hi prashant,

    Any update?

  • Hi Prashant,

    Can you please provide any guidance or direction for fix the issue.

  • Hello,

    Could you please share the U-Boot images that you have flashed and booting?

    Thanks!