This thread has been locked.

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

ipnc DM8127 vram as 50M IE(internet explorer) is not streaming.

Other Parts Discussed in Thread: TPS65910, DM385

Hi,

when i set vram as 50M wis-streamer is not streaming IE(internet explorer) also not streaming only streaming on vram as 4M.

i need vram as 50M for creating fbdev(frame buffer) nodes(/dev/fb0).

please help to solve the problem.

Thanks in Advance

   RAJ M

  • Hello,

    If you increase vram =50M , then you need to change the mem=80M to a bigger size like mem=128M.

    After this, you will need to move the memory config by changing "config_512M.bld" file

    CMEM addresses in bootargs needs to be changed appropriately, if you change to mem=128

    CMEM base address ahs to be 0x88000000 currently this is set to 80M i.e. 0x85000000

    Please let kow if there is any more details needed

    Regards,

    Raghu

  • Hi Raghu,

    Thank u

    Now i changed mem=128M and also changed

    var LINUX_SIZE = 128*MB;

    on config_512M.bld file. my new bootargs is 

    setenv bootargs 'root=/dev/nfs console=ttyO0,115200n8 mem=128M rw vram=50M notifyk.vpssm3_sva=0xBFD00000 nfsroot=192.168.1.102:/home/embdes/Projects/embdes_ipnc/Source/ipnc_rdk/target/filesys,nolock,tcp ip=192.168.1.168 eth=00:0C:0C:02:39:1B cmemk.phys_start=0x88000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 earlyprintk';saveenv

    is it correct?

    Regards,

    RAJ M


  • Hello,

    OK, from this i see that you have kept cmem as only 16M this might be less for streaming.

    You can make it to 32M in config_512M.bld and keep bootargs as cmemk.phys_start=0x88000000 cmemk.phys_end=0x8A000000

    This means you need reduce (SR1) Bitstream buffer by 16M. I.e. to 48M from 60M

    After this change, please change the streaming buffer CMEM size allocation of 32M in mem_mng.c

    Change MEM_LAYOUT_512MB_TRISTREAM to match 32M

    Example given below

    Regards,

    Raghu

    .profiles[VIDOE_INFO_MJPG] = {
    .cache_size =
    0x200000,
    .cache_blk_size =
    (100 * 1024),
    .mem_size =
    0x200000,
    .mem_blk_size =
    (100 * 1024),
    .ext_size = 0,
    },
    .profiles[VIDOE_INFO_MP4] = {
    .cache_size =
    0xA00000 -
    (MP4_1_EXTRA_SIZE / 2),
    .cache_blk_size =
    (50 * 1024),
    .mem_size =
    0xA00000 -
    (MP4_1_EXTRA_SIZE / 2),
    .mem_blk_size =
    (50 * 1024),
    .ext_size = MP4_1_EXTRA_SIZE,
    },
    .profiles[VIDOE_INFO_MP4_EXT] = {
    .cache_size =
    0x200000 -
    (MP4_2_EXTRA_SIZE / 2),
    .cache_blk_size =
    (30 * 1024),
    .mem_size =
    0x200000 -
    (MP4_2_EXTRA_SIZE / 2),
    .mem_blk_size =
    (30 * 1024),
    .ext_size =
    MP4_2_EXTRA_SIZE,
    },
    .profiles[AUDIO_INFO_G711] = {
    .cache_size =
    AUDIO_CACHE_SIZE,
    .cache_blk_size =
    AUDIO_CACHE_BLK_SIZE,
    .mem_size =
    AUDIO_MEM_SIZE,
    .mem_blk_size =
    AUDIO_BLK_SIZE,
    .ext_size = 0,
    },
    .totalsizes = 0,

  • Hi Raghu,

    Thank u

    As i followed and changed

    ipnc_mcfw/mcfw/src_bios6/cfg/ti814x/config_512M.bld

    /* first 256MB */
    var LINUX_SIZE                 = 128*MB;
    var CMEM_SIZE                  = 32*MB
    var SR1_SIZE                   = 16*MB;

    ipnc_mcfw/demos/mcfw_api_demos/stream/mem_mng.c

    MEM_LAYOUT mem_layout_setting[MEM_LAYOUT_NUM] = {
        [MEM_LAYOUT_512MB] = {
                          .profiles[VIDOE_INFO_MJPG] = {
                                                        .cache_size = 0x200000,
                                                        .cache_blk_size =
                                                        (100 * 1024),
                                                        .mem_size = 0x200000,
                                                        .mem_blk_size =
                                                        (100 * 1024),
                                                        .ext_size = 0,
                                                        },
                          .profiles[VIDOE_INFO_MP4] = {
                                                       .cache_size =
                                                       0xA00000 -
                                                       (MP4_1_EXTRA_SIZE / 2),
                                                       .cache_blk_size =
                                                       (50 * 1024),
                                                       .mem_size =
                                                       0xA00000 -
                                                       (MP4_1_EXTRA_SIZE / 2),
                                                       .mem_blk_size = (50 * 1024),
                                                       .ext_size = MP4_1_EXTRA_SIZE,
                                                       },
                          .profiles[VIDOE_INFO_MP4_EXT] = {
                                                           .cache_size =
                                                           0x200000 -
                                                           (MP4_2_EXTRA_SIZE / 2),
                                                           .cache_blk_size =
                                                           (30 * 1024),
                                                           .mem_size =
                                                           0x200000 -
                                                           (MP4_2_EXTRA_SIZE / 2),
                                                           .mem_blk_size =
                                                           (30 * 1024),
                                                           .ext_size =
                                                           MP4_2_EXTRA_SIZE,
                                                           },
                          .profiles[AUDIO_INFO_G711] = {
                                                        .cache_size =
                                                        AUDIO_CACHE_SIZE,
                                                        .cache_blk_size =
                                                        AUDIO_CACHE_BLK_SIZE,
                                                        .mem_size = AUDIO_MEM_SIZE,
                                                        .mem_blk_size =
                                                        AUDIO_BLK_SIZE,
                                                        .ext_size = 0,
                                                        },
                          .totalsizes = 0,
                          },

    compile using $make -s sysall

    my bootargs

    setenv bootargs 'root=/dev/nfs console=ttyO0,115200n8 mem=128M rw vram=50M notifyk.vpssm3_sva=0xBFD00000 nfsroot=192.168.1.103:/home/embdes/Projects/embdes_ipnc/Source/ipnc_rdk/target/filesys,nolock,tcp ip=192.168.1.168 eth=00:0C:0C:02:39:1B cmemk.phys_start=0x88000000 cmemk.phys_end=0x8A000000 cmemk.allowOverlap=1 earlyprintk';saveenv

    still same problem streaming and IE(internet explorer) not working

    my minicom log


    Loading from nand0, offset 0x280000
       Image Name:   Linux-2.6.37_DM8127_IPNC_3.00.00
       Created:      2013-07-04   6:59:48 UTC
       Image Type:   ARM Linux Kernel Image (uncompressed)
       Data Size:    2338836 Bytes = 2.2 MiB
       Load Address: 80008000
       Entry Point:  80008000
    ## Booting kernel from Legacy Image at 81000000 ...
       Image Name:   Linux-2.6.37_DM8127_IPNC_3.00.00
       Created:      2013-07-04   6:59:48 UTC
       Image Type:   ARM Linux Kernel Image (uncompressed)
       Data Size:    2338836 Bytes = 2.2 MiB
       Load Address: 80008000
       Entry Point:  80008000
       Verifying Checksum ... OK
       Loading Kernel Image ... OK
    OK

    Starting kernel ...

    Uncompressing Linux... done, booting the kernel.
    Linux version 2.6.37_DM8127_IPNC_3.00.00 (embdes@embdes) (gcc version 4.3.3 (Sourcery G++ Lite 2009q1-203) ) #1 Thu Jul 4 12:29:41 IST 2013
    CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c53c7f
    CPU: VIPT nonaliasing data cache, VIPT aliasing instruction cache
    Machine: ti8148ipnc
    vram size = 52428800 at 0x0
    bootconsole [earlycon0] enabled
    reserved size = 52428800 at 0x0
    FB: Reserving 52428800 bytes SDRAM for VRAM
    Memory policy: ECC disabled, Data cache writeback
    OMAP chip is TI8148 2.0
    SRAM: Mapped pa 0x402f1000 to va 0xfe400000 size: 0xf000
    Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 19712
    Kernel command line: root=/dev/nfs console=ttyO0,115200n8 mem=128M rw vram=50M notifyk.vpssm3_sva=0xBFD00000 nfsroot=192.168.1.103:/home/embdes/Projects/embdes_ipnc/Source/ipnc_rdk/target/filesys,nolock,tcp ip=192.168.1.168 eth=00:0C:0C:02:39:1B cmemk.phys_start=0x88000000 cmemk.phys_end=0x8A000000 cmemk.allowOverlap=1 earlyprintk
    cpsw: kernel boot params Ethernet address: 00:0C:0C:02:39:1B
    PID hash table entries: 512 (order: -1, 2048 bytes)
    Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
    Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
    Memory: 78MB = 78MB total
    Memory: 73688k/73688k available, 57384k reserved, 0K highmem
    Virtual kernel memory layout:
        vector  : 0xffff0000 - 0xffff1000   (   4 kB)
        fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
        DMA     : 0xffc00000 - 0xffe00000   (   2 MB)
        vmalloc : 0xc8800000 - 0xf8000000   ( 760 MB)
        lowmem  : 0xc0000000 - 0xc8000000   ( 128 MB)
        pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
        modules : 0xbf000000 - 0xbfe00000   (  14 MB)
          .init : 0xc0008000 - 0xc0038000   ( 192 kB)
          .text : 0xc0038000 - 0xc046d000   (4308 kB)
          .data : 0xc046e000 - 0xc04ab400   ( 245 kB)
    SLUB: Genslabs=11, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    NR_IRQS:375
    IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
    Total of 128 interrupts on 1 active controller
    GPMC revision 6.0
    Trying to install interrupt handler for IRQ368
    Trying to install interrupt handler for IRQ369
    Trying to install interrupt handler for IRQ370
    Trying to install interrupt handler for IRQ371
    Trying to install interrupt handler for IRQ372
    Trying to install interrupt handler for IRQ373
    Trying to install interrupt handler for IRQ374
    Trying to install type control for IRQ375
    Trying to set irq flags for IRQ375
    OMAP clockevent source: GPTIMER1 at 20000000 Hz
    Console: colour dummy device 80x30
    Calibrating delay loop... 598.01 BogoMIPS (lpj=2990080)
    pid_max: default: 32768 minimum: 301
    Security Framework initialized
    Mount-cache hash table entries: 512
    CPU: Testing write buffer coherency: ok
    devtmpfs: initialized
    omap_voltage_early_init: voltage driver support not added
    regulator: core version 0.5
    regulator: dummy:
    NET: Registered protocol family 16
    omap_voltage_domain_lookup: Voltage driver init not yet happened.Faulting!
    omap_voltage_add_dev: VDD specified does not exist!
    OMAP GPIO hardware version 0.1
    OMAP GPIO hardware version 0.1
    OMAP GPIO hardware version 0.1
    OMAP GPIO hardware version 0.1
    omap_mux_init: Add partition: #1: core, flags: 4
    _omap_mux_init_gpio: Could not set gpio79
    _omap_mux_init_gpio: Could not set gpio80
    Debugfs: Only enabling/disabling deep sleep and wakeup timer is supported now
    registered ti81xx_vpss device
    registered ti81xx_vidout device
    registered ti81xx on-chip HDMI device
    registered ti81xx_fb device
    PWM0 init success.
    PWM1 init success.
    bio: create slab <bio-0> at 0
    SCSI subsystem initialized
    USBSS revision 4ea2080b
    registerd cppi-dma Intr @ IRQ 17
    Cppi41 Init Done
    omap_i2c omap_i2c.1: bus 1 rev4.0 at 100 kHz
    regulator: VRTC: 1800 mV
    regulator: VIO: 1500 mV
    regulator: VDD1: 600 <--> 1500 mV at 1100 mV
    regulator: VDD2: 600 <--> 1500 mV at 1350 mV
    regulator: VDDCTRL: 600 <--> 1400 mV at 1200 mV
    regulator: LDO1: 1100 <--> 3300 mV at 1800 mV
    regulator: LDO2: 1100 <--> 3300 mV at 1800 mV
    regulator: LDO3: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO4: 1100 <--> 3300 mV at 1800 mV
    regulator: LDO5: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO6: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO7: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO8: 1100 <--> 3300 mV at 1800 mV
    tps65911-rtc tps65911-rtc: rtc core: registered tps65911-rtc as rtc0
    tps65910 1-002d: No interrupt support, no core IRQ
    Advanced Linux Sound Architecture Driver Version 1.0.23.
    Switching to clocksource gp timer
    musb-hdrc: version 6.0, peripheral, debug=0
    musb-hdrc musb-hdrc.0: dma type: dma-cppi41
    MUSB controller-0 revision 4ea20800
    musb-hdrc musb-hdrc.0: USB Peripheral mode controller at c881e000 using DMA, IRQ 18
    NET: Registered protocol family 2
    IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
    TCP established hash table entries: 4096 (order: 3, 32768 bytes)
    TCP bind hash table entries: 4096 (order: 2, 16384 bytes)
    TCP: Hash tables configured (established 4096 bind 4096)
    TCP reno registered
    UDP hash table entries: 256 (order: 0, 4096 bytes)
    UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
    NET: Registered protocol family 1
    RPC: Registered udp transport module.
    RPC: Registered tcp transport module.
    RPC: Registered tcp NFSv4.1 backchannel transport module.
    NetWinder Floating Point Emulator V0.97 (double precision)
    PMU: registered new PMU device of type 0
    omap-iommu omap-iommu.0: ducati registered
    omap-iommu omap-iommu.1: sys registered
    JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
    msgmni has been set to 143
    io scheduler noop registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    CMEMK module: built on Jul  4 2013 at 12:22:18
      Reference Linux version 2.6.37
      File /home/embdes/Projects/embdes_ipnc/Source/ti_tools/linuxutils_3_22_00_02/packages/ti/sdo/linuxutils/cmem/src/module/cmemk.c
    allocated heap buffer 0xcd000000 of size 0x2000000
    cmemk initialized
    Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    omap_uart.0: ttyO0 at MMIO 0x48020000 (irq = 72) is a OMAP UART0
    console [ttyO0] enabled, bootconsole disabled
    console [ttyO0] enabled, bootconsole disabled
    omap_uart.1: ttyO1 at MMIO 0x48022000 (irq = 73) is a OMAP UART1
    omap_uart.2: ttyO2 at MMIO 0x48024000 (irq = 74) is a OMAP UART2
    omap_uart.3: ttyO3 at MMIO 0x481a6000 (irq = 44) is a OMAP UART3
    omap_uart.4: ttyO4 at MMIO 0x481a8000 (irq = 45) is a OMAP UART4
    omap_uart.5: ttyO5 at MMIO 0x481aa000 (irq = 46) is a OMAP UART5
    brd: module loaded
    loop: module loaded
    omap2-nand driver initializing
    NAND device: Manufacturer ID: 0x2c, Chip ID: 0xca (Micron )
    Creating 7 MTD partitions on "omap2-nand.0":
    0x000000000000-0x000000020000 : "U-Boot-min"
    0x000000020000-0x000000260000 : "U-Boot"
    0x000000260000-0x000000280000 : "U-Boot Env"
    0x000000280000-0x0000006c0000 : "Kernel"
    0x0000006c0000-0x00000c000000 : "File System"
    0x00000c000000-0x00000cc00000 : "Data"
    0x00000cc00000-0x000010000000 : "Reserved"
    davinci_mdio davinci_mdio.0: davinci mdio revision 1.6
    davinci_mdio davinci_mdio.0: detected phy mask fffffffe
    davinci_mdio.0: probed
    davinci_mdio davinci_mdio.0: phy[0]: device 0:00, driver unknown
    mice: PS/2 mouse device common for all mice
    i2c /dev entries driver
    Linux video capture interface: v2.00
    OMAP Watchdog Timer Rev 0x00: initial timeout 60 sec
    notify_init : notify drivercreated  for  remote proc id 2 at physical Address 0xbfd00000
    asoc: tlv320aic3x-hifi <-> davinci-mcasp.2 mapping ok
    asoc: HDMI-DAI-CODEC <-> hdmi-dai mapping ok
    ALSA device list:
      #0: TI8148 IPNC
    TCP cubic registered
    NET: Registered protocol family 17
    Registering the dns_resolver key type
    VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
    omap_voltage_late_init: Voltage driver support not added
    Power Management for TI81XX.
    Detected MACID=0:c:c:2:39:1b
    tps65911-rtc tps65911-rtc: setting system clock to 2013-05-17 19:33:54 UTC (1368819234)
    mmc0: new high speed SDHC card at address aaaa
    mmcblk0: mmc0:aaaa SU04G 3.69 GiB
     mmcblk0: p1

    CPSW phy found : id is : 0x4dd074
    PHY 0:01 not found
    IP-Config: Guessing netmask 255.255.255.0
    IP-Config: Complete:
         device=eth0, addr=192.168.1.168, mask=255.255.255.0, gw=255.255.255.255,
         host=192.168.1.168, domain=, nis-domain=(none),
         bootserver=255.255.255.255, rootserver=192.168.1.103, rootpath=
    PHY: 0:00 - Link is Up - 100/Full
    VFS: Mounted root (nfs filesystem) on device 0:14.
    devtmpfs: mounted
    Freeing init memory: 192K
    INIT: version 2.86 booting
    Error opening /dev/fb0: No such file or directory
    Please wait: booting...
    Starting udev
    udevd (77): /proc/77/oom_adj is deprecated, please use /proc/77/oom_score_adj instead.
    udev: starting version 141
    udevd-event[80]: error changing netif name eth0 to eth7: Device or resource busy

    Root filesystem already rw, not remounting
    Caching udev devnodes
    Populating dev cache
    NOT configuring network interfaces: / is an NFS mount
    rm: cannot remove '/tmp': Device or resource busy
     inside finish.sh
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0000003c: 0xd685 instead
    Empty flash at 0x00000040 ends at 0x00000800
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000800: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000804: 0x0101 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000820: 0xddaa instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0000083c: 0x26c5 instead
    Empty flash at 0x00000a00 ends at 0x00001000
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00001000: 0x4019 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00001004: 0x03eb instead
    Further such events for this erase block will not be printed
    Empty flash at 0x00001cc4 ends at 0x00002000
    Empty flash at 0x0000204c ends at 0x00002800
    Empty flash at 0x0000284c ends at 0x00003000
    Empty flash at 0x0000304c ends at 0x00003800
    Empty flash at 0x0000384c ends at 0x00004000
    Empty flash at 0x0000404c ends at 0x00004800
    Empty flash at 0x0000484c ends at 0x00005000
    Empty flash at 0x0000504c ends at 0x00005800
    Empty flash at 0x0000584c ends at 0x00006000
    Empty flash at 0x0000604c ends at 0x00006800
    Empty flash at 0x0000684c ends at 0x00007000
    Empty flash at 0x0000704c ends at 0x00007800
    Empty flash at 0x0000784c ends at 0x00008000
    Empty flash at 0x0000804c ends at 0x00008800
    Empty flash at 0x0000884c ends at 0x00009000
    Empty flash at 0x0000904c ends at 0x00009800
    Empty flash at 0x0000984c ends at 0x0000a000
    Empty flash at 0x0000a04c ends at 0x0000a800
    Empty flash at 0x0000a84c ends at 0x0000b000
    Empty flash at 0x0000b04c ends at 0x0000b800
    Empty flash at 0x0000b84c ends at 0x0000c000
    Empty flash at 0x0000c04c ends at 0x0000c800
    Empty flash at 0x0000c84c ends at 0x0000d000
    Empty flash at 0x0000d04c ends at 0x0000d800
    Empty flash at 0x0000d84c ends at 0x0000e000
    Empty flash at 0x0000e04c ends at 0x0000e800
    Empty flash at 0x0000e84c ends at 0x0000f000
    Empty flash at 0x0000f04c ends at 0x0000f800
    Empty flash at 0x0000f84c ends at 0x00010000
    Empty flash at 0x0001004c ends at 0x00010800
    Empty flash at 0x0001084c ends at 0x00011000
    Empty flash at 0x0001104c ends at 0x00011800
    Empty flash at 0x0001184c ends at 0x00012000
    Empty flash at 0x0001204c ends at 0x00012800
    Empty flash at 0x0001284c ends at 0x00013000
    Empty flash at 0x0001304c ends at 0x00013800
    Empty flash at 0x0001384c ends at 0x00014000
    Empty flash at 0x0001404c ends at 0x00014800
    Empty flash at 0x0001484c ends at 0x00015000
    Empty flash at 0x0001504c ends at 0x00015800
    Empty flash at 0x0001584c ends at 0x00016000
    Empty flash at 0x0001604c ends at 0x00016800
    Empty flash at 0x0001684c ends at 0x00017000
    Empty flash at 0x0001704c ends at 0x00017800
    Empty flash at 0x0001784c ends at 0x00018000
    Empty flash at 0x0001804c ends at 0x00018800
    Empty flash at 0x0001884c ends at 0x00019000
    Empty flash at 0x0001904c ends at 0x00019800
    Empty flash at 0x0001984c ends at 0x0001a000
    Empty flash at 0x0001a04c ends at 0x0001a800
    Empty flash at 0x0001a84c ends at 0x0001b000
    Empty flash at 0x0001b04c ends at 0x0001b800
    Empty flash at 0x0001b84c ends at 0x0001c000
    Empty flash at 0x0001c04c ends at 0x0001c800
    Empty flash at 0x0001c84c ends at 0x0001d000
    Empty flash at 0x0001d04c ends at 0x0001d800
    Empty flash at 0x0001d84c ends at 0x0001e000
    Empty flash at 0x0001e04c ends at 0x0001e800
    Empty flash at 0x0001e84c ends at 0x0001f000
    Empty flash at 0x0001f04c ends at 0x0001f800
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0002003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0004003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0006003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0008003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000c003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000e003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00100000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00100004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00100018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0010003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00120000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00120004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00120018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0012003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00140000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00140004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00140018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0014003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00160000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00160004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00160018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0016003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00180000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00180004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00180018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0018003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001a003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001c003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001e003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00200000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00200004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00200018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0020003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00220000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00220004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00220018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0022003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00240000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00240004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00240018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0024003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00260000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00260004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00260018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0026003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00280000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00280004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00280018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0028003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002a003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002c003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002e003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00300000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00300004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00300018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0030003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00320000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00320004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00320018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0032003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00340000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00340004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00340018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0034003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00360000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00360004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00360018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0036003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00380000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00380004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00380018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0038003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003a003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003c003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003e003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00400000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00400004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00400018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0040003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00420000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00420004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00420018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0042003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00440000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00440004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00440018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0044003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00460000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00460004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00460018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0046003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00480000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00480004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00480018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0048003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004a003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004c003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004e003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00500000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00500004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00500018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0050003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00520000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00520004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00520018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0052003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00540000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00540004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00540018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0054003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00560000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00560004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00560018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0056003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00580000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00580004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00580018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0058003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005a003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005c003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005e003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00600000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00600004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00600018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0060003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00620000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00620004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00620018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0062003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00640000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00640004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00640018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0064003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00660000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00660004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00660018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0066003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00680000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00680004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00680018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0068003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006a003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006c003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006e003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00700000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00700004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00700018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0070003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00720000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00720004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00720018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0072003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00740000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00740004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00740018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0074003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00760000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00760004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00760018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0076003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00780000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00780004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00780018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0078003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a003c: 0xd685 instead
    Empty flash at 0x007a0040 ends at 0x007a0800
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a0800: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a0804: 0x0101 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a083c: 0x4fcd instead
    Empty flash at 0x007a0a00 ends at 0x007a1000
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a1000: 0x1831 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a1004: 0x7922 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a1008: 0x00fb instead
    Further such events for this erase block will not be printed
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c003c: 0xd685 instead
    Empty flash at 0x007c0040 ends at 0x007c0800
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c0800: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c0804: 0x0101 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c083c: 0x122f instead
    Empty flash at 0x007c0a00 ends at 0x007c1000
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c1000: 0x1831 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c1004: 0xb271 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c1008: 0x00fc instead
    Further such events for this erase block will not be printed
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007e003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00800000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00800004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00800018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0080003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00820000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00820004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00820018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0082003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00840000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00840004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00840018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0084003c: 0xd685 instead
    Empty flash at 0x00840040 ends at 0x00840800
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00840800: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00840804: 0x0101 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0084083c: 0xf5f5 instead
    Empty flash at 0x00840a00 ends at 0x00841000
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00841000: 0xca13 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00841004: 0x7160 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00841008: 0xda7a instead
    Further such events for this erase block will not be printed
    Empty flash at 0x0084104c ends at 0x00841800
    Empty flash at 0x0084184c ends at 0x00842000
    Empty flash at 0x0084204c ends at 0x00842800
    Empty flash at 0x0084284c ends at 0x00843000
    Empty flash at 0x0084304c ends at 0x00843800
    Empty flash at 0x0084384c ends at 0x00844000
    Empty flash at 0x0084404c ends at 0x00844800
    Empty flash at 0x0084484c ends at 0x00845000
    Empty flash at 0x0084504c ends at 0x00845800
    Empty flash at 0x0084584c ends at 0x00846000
    Empty flash at 0x0084604c ends at 0x00846800
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00860000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00860004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00860018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0086003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00880000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00880004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00880018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0088003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008a003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008c003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008e003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00900000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00900004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00900018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0090003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00920000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00920004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00920018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0092003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00940000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00940004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00940018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0094003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00960000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00960004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00960018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0096003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00980000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00980004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00980018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0098003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a003c: 0xd685 instead
    Empty flash at 0x009a0040 ends at 0x009a0800
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a0800: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a0804: 0x0101 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a083c: 0x15e5 instead
    Empty flash at 0x009a0a00 ends at 0x009a1000
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a1000: 0x1831 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a1004: 0x1fc1 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a1008: 0x013f instead
    Further such events for this erase block will not be printed
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00aa0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00aa0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00aa0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00aa003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ac0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ac0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ac0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ac003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ae0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ae0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ae0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ae003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ba0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ba0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ba0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ba003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00bc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00bc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00bc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00bc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00be0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00be0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00be0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00be003c: 0xd685 instead
    Cowardly refusing to erase blocks on filesystem with no valid JFFS2 nodes
    empty_blocks 0, bad_blocks 0, c->nr_blocks 96
    mount: /dev/mtdblock5: can't read superblock
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00000018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0000003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00020018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0002003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00040018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0004003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00060018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0006003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00080018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0008003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x000e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00100000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00100004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00100018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0010003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00120000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00120004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00120018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0012003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00140000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00140004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00140018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0014003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00160000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00160004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00160018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0016003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00180000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00180004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00180018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0018003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x001e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00200000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00200004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00200018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0020003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00220000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00220004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00220018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0022003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00240000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00240004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00240018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0024003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00260000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00260004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00260018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0026003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00280000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00280004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00280018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0028003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x002e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00300000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00300004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00300018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0030003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00320000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00320004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00320018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0032003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00340000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00340004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00340018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0034003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00360000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00360004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00360018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0036003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00380000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00380004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00380018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0038003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x003e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00400000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00400004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00400018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0040003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00420000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00420004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00420018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0042003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00440000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00440004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00440018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0044003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00460000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00460004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00460018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0046003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00480000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00480004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00480018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0048003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x004e003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00500000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00500004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00500018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0050003c: 0x4026 instead
    Empty flash at 0x00500040 ends at 0x00500800
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00500800: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00500804: 0x0101 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00500808: 0xff7f instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0050083c: 0xef7b instead
    Empty flash at 0x00500a00 ends at 0x00501000
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0050100c: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00501010: 0x6275 instead
    Further such events for this erase block will not be printed
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00520000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00520004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00520018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0052003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00540000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00540004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00540018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0054003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00560000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00560004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00560018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0056003c: 0x4026 instead
    Empty flash at 0x00560040 ends at 0x00560800
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00560800: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00560804: 0x0101 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00560808: 0xff7f instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0056083c: 0xb365 instead
    Empty flash at 0x00560a00 ends at 0x00561000
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0056100c: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00561010: 0x6275 instead
    Further such events for this erase block will not be printed
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00580000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00580004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00580018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0058003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x005e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00600000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00600004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00600018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0060003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00620000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00620004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00620018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0062003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00640000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00640004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00640018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0064003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00660000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00660004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00660018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0066003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00680000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00680004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00680018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0068003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x006e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00700000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00700004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00700018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0070003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00720000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00720004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00720018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0072003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00740000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00740004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00740018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0074003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00760000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00760004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00760018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0076003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00780000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00780004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00780018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0078003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x007e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00800000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00800004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00800018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0080003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00820000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00820004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00820018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0082003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00840000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00840004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00840018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0084003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00860000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00860004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00860018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0086003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00880000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00880004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00880018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0088003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x008e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00900000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00900004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00900018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0090003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00920000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00920004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00920018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0092003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00940000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00940004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00940018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0094003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00960000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00960004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00960018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0096003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00980000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00980004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00980018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0098003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x009e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00a8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00aa0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00aa0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00aa0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00aa003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ac0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ac0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ac0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ac003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ae0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ae0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ae0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ae003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00b8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ba0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ba0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ba0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ba003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00bc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00bc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00bc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00bc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00be0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00be0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00be0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00be003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00c8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ca0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ca0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ca0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ca003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00cc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00cc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00cc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00cc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ce0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ce0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ce0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ce003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00d8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00da0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00da0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00da0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00da003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00dc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00dc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00dc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00dc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00de0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00de0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00de0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00de003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00e8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ea0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ea0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ea0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ea003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ec0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ec0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ec0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ec003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ee0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ee0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ee0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00ee003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00f8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00fa0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00fa0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00fa0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00fa003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00fc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00fc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00fc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00fc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00fe0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00fe0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00fe0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x00fe003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01000000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01000004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01000018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0100003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01020000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01020004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01020018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0102003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01040000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01040004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01040018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0104003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01060000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01060004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01060018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0106003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01080000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01080004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01080018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0108003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x010a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x010a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x010a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x010a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x010c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x010c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x010c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x010c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x010e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x010e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x010e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x010e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01100000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01100004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01100018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0110003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01120000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01120004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01120018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0112003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01140000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01140004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01140018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0114003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01160000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01160004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01160018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0116003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01180000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01180004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01180018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0118003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x011a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x011a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x011a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x011a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x011c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x011c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x011c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x011c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x011e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x011e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x011e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x011e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01200000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01200004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01200018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0120003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01220000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01220004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01220018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0122003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01240000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01240004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01240018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0124003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01260000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01260004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01260018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0126003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01280000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01280004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01280018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0128003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x012a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x012a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x012a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x012a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x012c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x012c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x012c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x012c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x012e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x012e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x012e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x012e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01300000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01300004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01300018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0130003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01320000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01320004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01320018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0132003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01340000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01340004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01340018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0134003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01360000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01360004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01360018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0136003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01380000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01380004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01380018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0138003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x013a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x013a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x013a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x013a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x013c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x013c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x013c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x013c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x013e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x013e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x013e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x013e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01400000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01400004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01400018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0140003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01420000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01420004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01420018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0142003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01440000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01440004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01440018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0144003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01460000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01460004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01460018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0146003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01480000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01480004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01480018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0148003c: 0xd685 instead
    Empty flash at 0x01480040 ends at 0x01480800
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01480800: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01480804: 0x0101 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0148083c: 0xb2b1 instead
    Empty flash at 0x01480a00 ends at 0x01481000
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01481000: 0x1831 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01481004: 0x56c0 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01481008: 0x0004 instead
    Further such events for this erase block will not be printed
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014a003c: 0xd685 instead
    Empty flash at 0x014a0040 ends at 0x014a0800
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014a0800: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014a0804: 0x0101 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014a083c: 0x09a9 instead
    Empty flash at 0x014a0a00 ends at 0x014a1000
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014a1000: 0x1831 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014a1004: 0x6d48 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014a1008: 0x0006 instead
    Further such events for this erase block will not be printed
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014c003c: 0x4026 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x014e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01500000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01500004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01500018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0150003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01520000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01520004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01520018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0152003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01540000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01540004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01540018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0154003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01560000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01560004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01560018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0156003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01580000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01580004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01580018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0158003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x015a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x015a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x015a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x015a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x015c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x015c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x015c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x015c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x015e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x015e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x015e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x015e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01600000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01600004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01600018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0160003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01620000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01620004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01620018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0162003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01640000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01640004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01640018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0164003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01660000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01660004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01660018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0166003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01680000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01680004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01680018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0168003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x016a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x016a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x016a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x016a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x016c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x016c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x016c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x016c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x016e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x016e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x016e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x016e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01700000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01700004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01700018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0170003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01720000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01720004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01720018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0172003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01740000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01740004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01740018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0174003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01760000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01760004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01760018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0176003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01780000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01780004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01780018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0178003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x017a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x017a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x017a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x017a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x017c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x017c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x017c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x017c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x017e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x017e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x017e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x017e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01800000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01800004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01800018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0180003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01820000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01820004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01820018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0182003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01840000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01840004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01840018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0184003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01860000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01860004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01860018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0186003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01880000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01880004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01880018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0188003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x018a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x018a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x018a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x018a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x018c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x018c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x018c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x018c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x018e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x018e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x018e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x018e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01900000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01900004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01900018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0190003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01920000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01920004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01920018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0192003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01940000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01940004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01940018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0194003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01960000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01960004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01960018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0196003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01980000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01980004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01980018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0198003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x019a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x019a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x019a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x019a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x019c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x019c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x019c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x019c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x019e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x019e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x019e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x019e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01a8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01aa0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01aa0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01aa0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01aa003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ac0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ac0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ac0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ac003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ae0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ae0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ae0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ae003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01b8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ba0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ba0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ba0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ba003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01bc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01bc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01bc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01bc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01be0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01be0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01be0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01be003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01c8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ca0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ca0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ca0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ca003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01cc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01cc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01cc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01cc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ce0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ce0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ce0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ce003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01d8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01da0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01da0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01da0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01da003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01dc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01dc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01dc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01dc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01de0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01de0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01de0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01de003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01e8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ea0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ea0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ea0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ea003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ec0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ec0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ec0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ec003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ee0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ee0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ee0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01ee003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01f8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01fa0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01fa0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01fa0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01fa003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01fc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01fc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01fc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01fc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01fe0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01fe0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01fe0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x01fe003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02000000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02000004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02000018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0200003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02020000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02020004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02020018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0202003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02040000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02040004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02040018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0204003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02060000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02060004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02060018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0206003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02080000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02080004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02080018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0208003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x020a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x020a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x020a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x020a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x020c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x020c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x020c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x020c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x020e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x020e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x020e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x020e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02100000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02100004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02100018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0210003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02120000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02120004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02120018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0212003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02140000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02140004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02140018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0214003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02160000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02160004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02160018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0216003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02180000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02180004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02180018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0218003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x021a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x021a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x021a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x021a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x021c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x021c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x021c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x021c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x021e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x021e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x021e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x021e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02200000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02200004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02200018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0220003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02220000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02220004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02220018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0222003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02240000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02240004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02240018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0224003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02260000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02260004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02260018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0226003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02280000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02280004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02280018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0228003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x022a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x022a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x022a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x022a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x022c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x022c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x022c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x022c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x022e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x022e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x022e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x022e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02300000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02300004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02300018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0230003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02320000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02320004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02320018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0232003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02340000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02340004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02340018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0234003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02360000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02360004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02360018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0236003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02380000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02380004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02380018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0238003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x023a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x023a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x023a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x023a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x023c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x023c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x023c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x023c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x023e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x023e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x023e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x023e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02400000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02400004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02400018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0240003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02420000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02420004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02420018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0242003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02440000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02440004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02440018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0244003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02460000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02460004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02460018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0246003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02480000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02480004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02480018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0248003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x024a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x024a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x024a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x024a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x024c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x024c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x024c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x024c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x024e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x024e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x024e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x024e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02500000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02500004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02500018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0250003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02520000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02520004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02520018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0252003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02540000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02540004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02540018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0254003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02560000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02560004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02560018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0256003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02580000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02580004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02580018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0258003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x025a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x025a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x025a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x025a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x025c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x025c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x025c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x025c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x025e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x025e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x025e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x025e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02600000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02600004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02600018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0260003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02620000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02620004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02620018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0262003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02640000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02640004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02640018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0264003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02660000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02660004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02660018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0266003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02680000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02680004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02680018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0268003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x026a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x026a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x026a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x026a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x026c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x026c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x026c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x026c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x026e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x026e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x026e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x026e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02700000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02700004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02700018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0270003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02720000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02720004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02720018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0272003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02740000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02740004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02740018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0274003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02760000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02760004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02760018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0276003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02780000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02780004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02780018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0278003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x027a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x027a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x027a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x027a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x027c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x027c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x027c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x027c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x027e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x027e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x027e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x027e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02800000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02800004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02800018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0280003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02820000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02820004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02820018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0282003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02840000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02840004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02840018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0284003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02860000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02860004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02860018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0286003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02880000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02880004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02880018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0288003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x028a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x028a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x028a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x028a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x028c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x028c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x028c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x028c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x028e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x028e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x028e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x028e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02900000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02900004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02900018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0290003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02920000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02920004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02920018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0292003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02940000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02940004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02940018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0294003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02960000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02960004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02960018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0296003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02980000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02980004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02980018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0298003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x029a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x029a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x029a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x029a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x029c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x029c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x029c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x029c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x029e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x029e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x029e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x029e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02a8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02aa0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02aa0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02aa0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02aa003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ac0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ac0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ac0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ac003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ae0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ae0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ae0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ae003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02b8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ba0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ba0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ba0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ba003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02bc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02bc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02bc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02bc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02be0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02be0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02be0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02be003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02c8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ca0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ca0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ca0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ca003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02cc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02cc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02cc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02cc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ce0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ce0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ce0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ce003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02d8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02da0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02da0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02da0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02da003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02dc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02dc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02dc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02dc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02de0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02de0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02de0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02de003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02e8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ea0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ea0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ea0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ea003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ec0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ec0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ec0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ec003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ee0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ee0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ee0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02ee003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f00000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f00004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f00018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f0003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f20000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f20004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f20018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f2003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f40000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f40004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f40018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f4003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f60000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f60004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f60018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f6003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f80000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f80004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f80018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02f8003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02fa0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02fa0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02fa0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02fa003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02fc0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02fc0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02fc0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02fc003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02fe0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02fe0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02fe0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x02fe003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03000000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03000004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03000018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0300003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03020000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03020004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03020018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0302003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03040000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03040004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03040018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0304003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03060000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03060004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03060018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0306003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03080000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03080004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03080018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0308003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x030a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x030a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x030a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x030a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x030c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x030c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x030c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x030c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x030e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x030e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x030e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x030e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03100000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03100004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03100018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0310003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03120000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03120004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03120018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0312003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03140000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03140004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03140018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0314003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03160000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03160004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03160018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0316003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03180000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03180004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03180018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0318003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x031a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x031a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x031a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x031a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x031c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x031c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x031c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x031c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x031e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x031e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x031e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x031e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03200000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03200004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03200018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0320003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03220000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03220004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03220018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0322003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03240000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03240004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03240018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0324003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03260000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03260004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03260018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0326003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03280000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03280004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03280018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0328003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x032a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x032a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x032a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x032a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x032c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x032c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x032c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x032c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x032e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x032e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x032e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x032e003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03300000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03300004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03300018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0330003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03320000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03320004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03320018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0332003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03340000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03340004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03340018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0334003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03360000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03360004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03360018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0336003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03380000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03380004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x03380018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x0338003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x033a0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x033a0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x033a0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x033a003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x033c0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x033c0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x033c0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x033c003c: 0xd685 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x033e0000: 0x4255 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x033e0004: 0x0001 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x033e0018: 0x7937 instead
    jffs2_scan_eraseblock(): Magic bitmask 0x1985 not found at 0x033e003c: 0xd685 instead
    Cowardly refusing to erase blocks on filesystem with no valid JFFS2 nodes
    empty_blocks 0, bad_blocks 0, c->nr_blocks 416
    mount: /dev/mtdblock6: can't read superblock
    numid=1,iface=MIXER,name='PCM Playback Volume'
      ; type=INTEGER,access=rw---R--,values=2,min=0,max=127,step=0
      : values=127,127
      | dBscale-min=-63.50dB,step=0.50dB,mute=0
    SysLink version : 2.10.06.28
    SysLink module created on Date:Jul  4 2013 Time:12:30:54
    Trace enabled
    Trace SetFailureReason enabled
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    /dev/mem opened.
    data 2
                 BW Phy Addr : 0x48180d00 Data : 0x00030000
                 AW Phy Addr : 0x48180d00 Data : 0x00030002
    data 3
                 BW Phy Addr : 0x48180d10 Data : 0x00000007
                 AW Phy Addr : 0x48180d10 Data : 0x00000003
    data 2
                 BW Phy Addr : 0x48180700 Data : 0x00000001
                 AW Phy Addr : 0x48180700 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180720 Data : 0x00070000
                 AW Phy Addr : 0x48180720 Data : 0x00070002
    data 2
                 BW Phy Addr : 0x48180724 Data : 0x00030000
                 AW Phy Addr : 0x48180724 Data : 0x00000002
    data 60020
                 BW Phy Addr : 0x48140924 Data : 0x000e0020
                 AW Phy Addr : 0x48140924 Data : 0x000e0020
    data 60020
                 BW Phy Addr : 0x48140928 Data : 0x000c0040
                 AW Phy Addr : 0x48140928 Data : 0x000c0040
    data 60001
                 BW Phy Addr : 0x48140c18 Data : 0x000e0001
                 AW Phy Addr : 0x48140c18 Data : 0x000e0001
    data 60001
                 BW Phy Addr : 0x48140c1c Data : 0x000e0001
                 AW Phy Addr : 0x48140c1c Data : 0x000e0001
    data 2
                 BW Phy Addr : 0x48181564 Data : 0x00000002
                 AW Phy Addr : 0x48181564 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48181568 Data : 0x00030000
                 AW Phy Addr : 0x48181568 Data : 0x00000002
                 Phy Addr : 0x48181560 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48181560 Data : 0x00000002
                 AW Phy Addr : 0x48181560 Data : 0x00000002
    data 60002
                 BW Phy Addr : 0x48140aac Data : 0x00040002
                 AW Phy Addr : 0x48140aac Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140ab0 Data : 0x00060002
                 AW Phy Addr : 0x48140ab0 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140ab8 Data : 0x00040002
                 AW Phy Addr : 0x48140ab8 Data : 0x00040002
    data 60020
                 BW Phy Addr : 0x48140a58 Data : 0x000c0080
                 AW Phy Addr : 0x48140a58 Data : 0x000c0080
    data 60080
                 BW Phy Addr : 0x48140a60 Data : 0x000c0080
                 AW Phy Addr : 0x48140a60 Data : 0x000c0080
    data 60020
                 BW Phy Addr : 0x48140a64 Data : 0x000c0080
                 AW Phy Addr : 0x48140a64 Data : 0x000c0080
    data 60020
                 BW Phy Addr : 0x48140a68 Data : 0x000c0080
                 AW Phy Addr : 0x48140a68 Data : 0x000c0080
    data 60002
                 BW Phy Addr : 0x48140aa8 Data : 0x00040002
                 AW Phy Addr : 0x48140aa8 Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140aa4 Data : 0x00040002
                 AW Phy Addr : 0x48140aa4 Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140aa0 Data : 0x00040002
                 AW Phy Addr : 0x48140aa0 Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140a9c Data : 0x00060002
                 AW Phy Addr : 0x48140a9c Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a98 Data : 0x00060002
                 AW Phy Addr : 0x48140a98 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a94 Data : 0x00060002
                 AW Phy Addr : 0x48140a94 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a90 Data : 0x00060002
                 AW Phy Addr : 0x48140a90 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a8c Data : 0x00060002
                 AW Phy Addr : 0x48140a8c Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a6c Data : 0x000e0002
                 AW Phy Addr : 0x48140a6c Data : 0x000e0002
    data 60002
                 BW Phy Addr : 0x48140a70 Data : 0x000c0002
                 AW Phy Addr : 0x48140a70 Data : 0x000c0002
    data 60002
                 BW Phy Addr : 0x48140a74 Data : 0x000e0002
                 AW Phy Addr : 0x48140a74 Data : 0x000e0002
    data 60002
                 BW Phy Addr : 0x48140a78 Data : 0x000e0002
                 AW Phy Addr : 0x48140a78 Data : 0x000e0002
    data 0
                 BW Phy Addr : 0x411f4004 Data : 0x0000000e
                 AW Phy Addr : 0x411f4004 Data : 0x00000000
    data 0
                 BW Phy Addr : 0x411f2004 Data : 0x00000001
                 AW Phy Addr : 0x411f2004 Data : 0x00000000
    data 1
                 BW Phy Addr : 0x41140084 Data : 0x00000001
                 AW Phy Addr : 0x41140084 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x411a0084 Data : 0x00000001
                 AW Phy Addr : 0x411a0084 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x41160034 Data : 0x00000001
                 AW Phy Addr : 0x41160034 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x41121ff0 Data : 0x00000001
                 AW Phy Addr : 0x41121ff0 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x41131fe4 Data : 0x00000000
                 AW Phy Addr : 0x41131fe4 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x411e002c Data : 0x00000000
                 AW Phy Addr : 0x411e002c Data : 0x00000001
    data 1
                 BW Phy Addr : 0x481c52ec Data : 0x00000001
                 AW Phy Addr : 0x481c52ec Data : 0x00000001
    secss put in low power state
    data 1
                 BW Phy Addr : 0x48180900 Data : 0x00000001
                 AW Phy Addr : 0x48180900 Data : 0x00000001
    data 0
                 BW Phy Addr : 0x48180f00 Data : 0x00030000
                 AW Phy Addr : 0x48180f00 Data : 0x00030000
                 Phy Addr : 0x48180f10 Data : 0x00000000
    data 2
                 BW Phy Addr : 0x4818052c Data : 0x00000002
                 AW Phy Addr : 0x4818052c Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180508 Data : 0x00000302
                 AW Phy Addr : 0x48180508 Data : 0x00000302
    data 2
                 BW Phy Addr : 0x48180520 Data : 0x00000002
                 AW Phy Addr : 0x48180520 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180524 Data : 0x00000002
                 AW Phy Addr : 0x48180524 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180528 Data : 0x00000002
                 AW Phy Addr : 0x48180528 Data : 0x00000002
                 Phy Addr : 0x48180508 Data : 0x00000302
                 Phy Addr : 0x48180520 Data : 0x00000002
                 Phy Addr : 0x48180524 Data : 0x00000002
                 Phy Addr : 0x48180528 Data : 0x00000002
                 Phy Addr : 0x4c0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 Phy Addr : 0x4d0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4d0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4d0000e4 Data : 0x00170208
                 Phy Addr : 0x4c0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 Phy Addr : 0x4d0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4d0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4d0000e4 Data : 0x00170208
    DDR IOs RX is shutdown
    Creat queue id:0
    queue id:0
    FileMngThread created
    Creat queue id:32769
    queue id:32769
    AlramThread created
    Share memory init success
    IPNC_3.00.00 (embdes@embdes) (gcc version 4.3.3 (Sourcery G++ Lite 2009

     [host]  Setting DMM priority for [HDVICP0 ] to [1] ( 0x4e000634 = 0x00000009 )

     [host]  Setting DMM priority for [ISS     ] to [0] ( 0x4e000634 = 0x00800000 )
    Creat queue id:65538
    queue id:65538
    Creat queue id:98307
    queue id:98307

     [host]  Setting L3 bandwidth regulator for [HDVICP0 ] to [press=[0,0] BW=900, WM Cycles=2500]
    queue id:32769
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040

     [host] Attached to slave procId 0.

     [host] Attached to slave procId 2.

     [host] Loaded file ./firmware/ipnc_rdk_fw_c6xdsp.xe674 on slave procId 0.

     [host] Started slave procId 0.

     [host] After Ipc_loadcallback status [0x00000000]
     [c6xdsp ] ***** SYSTEM  : Frequency <ORG> - 500000000, <NEW> - 500000000
     [c6xdsp ]  
     [c6xdsp ]  *** UTILS: CPU KHz = 500000 Khz ***
     [c6xdsp ]  
     [c6xdsp ]  1: SYSTEM  : System Common Init in progress !!!
     [c6xdsp ]  1: SYSTEM: IPC init in progress !!!
     [c6xdsp ]  1: SYSTEM: Attaching to [HOST] ...

     [host] Loaded file ./firmware/ipnc_rdk_fw_m3vpss.xem3 on slave procId 2.

     [host] Started slave procId 2.

     [host] Attached to slave procId 1.

     [host] After Ipc_loadcallback status [0x00000000]
     [m3vpss ] ***** SYSTEM  : Frequency <ORG> - 200000000, <NEW> - 200000000
     [m3vpss ] notify_attach  rtnVal  0
     [m3vpss ] initProxyServer  rtnVal  0
     [m3vpss ]  
     [m3vpss ]  *** UTILS: CPU KHz = 400000 Khz ***
     [m3vpss ]  
     [m3vpss ]  91: SYSTEM  : System Common Init in progress !!!
     [m3vpss ]  91: SYSTEM: IPC init in progress !!!
     [m3vpss ]  91: SYSTEM: Attaching to [HOST] ...

     [host] After Ipc_startcallback status [0x097d2000]
     [c6xdsp ]  1001: SYSTEM: Attaching to [HOST] ...
     [c6xdsp ]  1004: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
     [c6xdsp ]  1004: SYSTEM: Attaching to [VIDEO-M3] ...

     [host] Loaded file ./firmware/ipnc_rdk_fw_m3video.xem3 on slave procId 1.

     [host] Started slave procId 1.

     [host] After Ipc_loadcallback status [0x00000000]
     [m3video] ***** SYSTEM  : Frequency <ORG> - 200000000, <NEW> - 200000000
     [m3vpss ]  1091: SYSTEM: Attaching to [HOST] ...
     [m3video]  
     [m3video]  *** UTILS: CPU KHz = 400000 Khz ***
     [m3video]  
     [m3video]  1046: SYSTEM  : System Common Init in progress !!!
     [m3video]  1046: SYSTEM: IPC init in progress !!!
     [m3video]  1046: SYSTEM: Attaching to [HOST] ...

     [host] After Ipc_startcallback status [0x097d2000]
     [m3vpss ]  1096: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
     [m3vpss ]  1096: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  2004: SYSTEM: Attaching to [VIDEO-M3] ...
     [m3video]  2045: SYSTEM: Attaching to [HOST] ...
     [m3video]  2049: SYSTEM: Attaching to [HOST] ... SUCCESS !!!

     [host] After Ipc_startcallback status [0x097d2000]
     [m3video]  2049: SYSTEM: Attaching to [DSP] ...
     [m3vpss ]  2096: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  3004: SYSTEM: Attaching to [VIDEO-M3] ...
     [c6xdsp ]  3173: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
     [m3video]  3048: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  3173: SYSTEM: Attaching to [VPSS-M3] ...
     [m3video]  3049: SYSTEM: Attaching to [DSP] ... SUCCESS !!!
     [m3video]  3049: SYSTEM: Attaching to [VPSS-M3] ...
     [m3vpss ]  3096: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  4172: SYSTEM: Attaching to [VPSS-M3] ...
     [m3video]  4048: SYSTEM: Attaching to [VPSS-M3] ...
     [c6xdsp ]  4220: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
     [m3vpss ]  4096: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  4221: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3vpss ]  4097: SYSTEM: Attaching to [DSP] ... SUCCESS !!!
     [m3vpss ]  4097: SYSTEM: Attaching to [VIDEO-M3] ...
     [m3video]  5048: SYSTEM: Attaching to [VPSS-M3] ...
     [c6xdsp ]  5220: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3video]  5098: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
     [m3vpss ]  5097: SYSTEM: Attaching to [VIDEO-M3] ...
     [m3video]  5098: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3vpss ]  5098: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
     [m3video]  5099: SYSTEM: Creating MsgQ [VIDEO-M3_MSGQ] ...
     [m3vpss ]  5098: SYSTEM: Creating MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3video]  5099: SYSTEM: Creating MsgQ [VIDEO-M3_ACK_MSGQ] ...
     [m3vpss ]  5098: SYSTEM: Creating MsgQ [VPSS-M3_MSGQ] ...
     [m3video]  5101: SYSTEM: Notify register to [HOST] line 0, event 12 ...
     [m3vpss ]  5099: SYSTEM: Creating MsgQ [VPSS-M3_ACK_MSGQ] ...
     [m3video]  5101: SYSTEM: Notify register to [DSP] line 0, event 12 ...
     [m3vpss ]  5101: SYSTEM: Notify register to [HOST] line 0, event 12 ...
     [m3video]  5101: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
     [m3vpss ]  5101: SYSTEM: Notify register to [DSP] line 0, event 12 ...
     [m3video]  5102: SYSTEM: IPC init DONE !!!
     [m3vpss ]  5101: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
     [m3vpss ]  5102: SYSTEM: IPC init DONE !!!
     [m3video]  5111: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
     [m3vpss ]  5111: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
     [m3video]  5112: MEM: Shared Region 1: Base = 0x8a000000, Length = 0x01000000 (16 MB)
     [m3vpss ]  5111: MEM: Shared Region 1: Base = 0x8a000000, Length = 0x01000000 (16 MB)
     [m3video]  5114: SYSTEM  : System Common Init Done !!!
     [m3vpss ]  5113: SYSTEM  : System Common Init Done !!!
     [m3vpss ] Received character 's'
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3video] Received character 's'
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    INIT: Entering runlevel: 5
     inside autorun
     sbulla: unknown partition table
     sbulla: unknown partition table
    Starting system message bus:  [c6xdsp ]  6220: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [c6xdsp ] Received character 's'
     [c6xdsp ]  6220: SYSTEM: Creating MsgQ [DSP_MSGQ] ...
     [c6xdsp ]  6221: SYSTEM: Creating MsgQ [DSP_ACK_MSGQ] ...
     [c6xdsp ]  6221: SYSTEM: Notify register to [HOST] line 0, event 12 ...
     [c6xdsp ]  6221: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
     [c6xdsp ]  6221: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
     [c6xdsp ]  6221: SYSTEM: IPC init DONE !!!
     [c6xdsp ]  6224: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
     [c6xdsp ]  6225: MEM: Shared Region 1: Base = 0x8a000000, Length = 0x01000000 (16 MB)
     [c6xdsp ]  6225: SYSTEM  : System Common Init Done !!!
    queue id:65538

    CPU is TI812x
    Error: SemWait: Invalid Semaphore handler
    Error: SemRelease: Invalid Semaphore handler

    *****************************************************************

        IPNC BUILD VERSION: DM8127 IPNC RDK VERSION 03.00.00.05    

    *****************************************************************

    ./bin/ipnc_rdk_mcfw.out   TRISTREAM TRIPLE_H264 APPRO2A AEWB 1080P_D1 H264 HIGH_SPEED1 H264 HIGH_SPEED2 MJPEG 80 &
    Error: SemWait: Invalid Semaphore handler
    Error: SemRelease: Invalid Semaphore handler
    dbus.
    Starting telnet daemon.
    FAT: bogus number of reserved sectors
    VFS: Can't find a valid FAT filesystem on dev sbulla.
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    Starting syslogd/klogd: done
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3vpss ]  6513: SYSTEM  : System VPSS Init in progress !!!
     [m3vpss ] === I2C0/2 Clk is active ===
     [m3vpss ]  6532: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_0] in region 0 ...
     [m3vpss ]  6532: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_0] in region 0 ...
     [m3vpss ]  6532: SYSTEM: ListElem Shared Addr = 0xbe98b280
     [m3vpss ]  6535: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_1] in region 0 ...
     [m3vpss ]  6535: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_1] in region 0 ...
     [m3vpss ]  6536: SYSTEM: ListElem Shared Addr = 0xbe98e380
     [m3vpss ]  6550: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_23] in region 0 ...
     [m3vpss ]  6550: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_23] in region 0 ...
     [m3vpss ]  6551: SYSTEM: ListElem Shared Addr = 0xbe991480
     [m3vpss ]  6553: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_24] in region 0 ...
     [m3vpss ]  6554: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_24] in region 0 ...
     [m3vpss ]  6554: SYSTEM: ListElem Shared Addr = 0xbe9b0a80
     [m3vpss ]  6557: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_25] in region 0 ...
     [m3vpss ]  6557: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_25] in region 0 ...
     [m3vpss ]  6557: SYSTEM: ListElem Shared Addr = 0
     [m3video]  6632: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_29] in region 0 ...
     [m3vpss ]  6631: SYSTEM  : FVID2 Init in progress DONE !!!
     [m3video]  6633: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_29] in region 0 ...
     [m3vpss ]  6632: SYSTEM  : Device Init in progress !!!
     [m3video]  6633: SYSTEM: ListElem Shared Addr = 0xbead3500
     [m3vpss ]  Iss_init called !!!!!!
     [m3video]  6635: HDVICP: Doing PRCM for IVAHD[0] ...
     [m3vpss ]  CPIS_init DONE !!!!!!
     [m3video]  6635: HDVICP: PRCM for IVAHD[0] ... DONE.
     [m3video]  6636: SYSTEM  : Initializing Links !!!
     [m3vpss ] initPrms.isI2cInitReq = 1
     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            

    Arago Project http://arago-project.org dm814x-evm ttyO0

    Arago 2010.11 dm814x-evm ttyO0

    dm814x-evm login: root (automatic login)
     [m3video]  6636: SYSTEM  : FREE SPACE : System Heap      = 6282384 B, Mbx = 10240 msgs)
     [m3vpss ] initPrms.isI2cInitReq = 1
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3video]  6691: SYSTEM  : Initializing Links ... DONE !!!
     [m3vpss ]  Vps_deviceInit Daughter card not detected/connected!
     [m3vpss ]                     
     [m3vpss ]  6819: SYSTEM  : Device Init in progress DONE !!!
     [m3vpss ]  6848: SYSTEM  : System VPSS Init Done !!!
     [m3vpss ]  6848: UTILS: DMA: HWI Create for INT62 !!!
     [m3vpss ]  6848: SYSTEM  : Initializing Links !!!
     [m3vpss ]  6848: SYSTEM  : FREE SPACE : System Heap      = 1719392 B, Mbx = 10240 msgs)
     [m3vpss ]  6848: SYSTEM  : FREE SPACE : SR0 Heap         = 14759040 B (14 MB)
     [m3vpss ]  6849: SYSTEM  : FREE SPACE : Frame Buffer     = 105790336 B (100 MB)
     [m3vpss ]  6849: SYSTEM  : FREE SPACE : Bitstream Buffer = 16777088 B (15 MB)
     [m3vpss ]  6849: SYSTEM  : FREE SPACE : Tiler Buffer     = 127 B (0 MB)  - TILER OFF
    mkdosfs 2.11 (12 Mar 2005)
    unable to get drive geometry, using default 255/63/dev/sbulla has 255 heads and 63 sectors per track,
    logical sector size is 512,
    using 0xf8 media descriptor, with 1024 sectors;
    file system has 2 12-bit FATs and 4 sectors per cluster.
    FAT size is 1 sector, and provides 247 clusters.
    Root directory contains 512 slots.
    Volume ID is 51968652, no volume label.
     [m3vpss ]  6970: SYSTEM  : Initializing Links ... DONE !!!
     [m3vpss ] Received character 't'
    g_file_storage gadget: No serial-number string provided!
    g_file_storage gadget: File-backed Storage Gadget, version: 1 September 2010
    g_file_storage gadget: Number of LUNs=1
    g_file_storage gadget-lun0: ro=0, nofua=0, file: /dev/sbulla
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3video] Received character 't'
    root@dm814x-evm:~# Simple mixer control 'PGA',0
      Capabilities: cvolume cswitch penum
      Capture channels: Front Left - Front Right
      Limits: Capture 0 - 119
      Front Left: Capture 80 [67%] [40.00dB] [on]
      Front Right: Capture 80 [67%] [40.00dB] [on]
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [c6xdsp ] Received character 't'
    DMA: Module install successful, device major num = 250
    DRV: Module install successful
    DRV: Module built on Jul  4 2013 12:46:43
    HDMI W1 rev 4.0
    I2C No Ack

    queue id:0

     [host]  

     [host]  ORG 0x46c00524: 0

     [host]  NEW 0x46c00524: 2

     [host]  

     [host] Application Start Completed
    CMEMK Error: ioctl: failed to allocate heap buffer of size 0x3e00000
    CMEM Error: alloCMEMK Error: get_phys: Unable to find phys addr for 0x00000000
    cHeap: ioctl CMECMEMK Error: get_phys: get_user_pages() failed: -14
    M_IOCALLOCHEAP fCMEMK Error: GETPHYS: Failed to convert virtual 0x0 to physical.
    ailed: -1
    CMEM Error: getPhys: Failed to get physical address of 0

     [host] Vsys_allocBuf - addr = 0x0,size = 65011712

     [host] MCFW_IPCBITS:App_streamSysInit:virt addr of 0 cir buffer  is 0
    ##########pInfo->totalsize 30408704
    Encode Error: Memory manager init fail
    func:stream_init line:245

     [host] MCFW_IPCBITS:App_streamSysInit:stream_init failed

     [host] MCFW_IPCBITS:App_ipcBitsRecvStreamFxn:Entered...
     [host] MCFW_IPCFRAMES:App_ipcFramesSendRecvFxn:Entered...
     [host]  0: SYSTEM: System Common Init in progress !!!

     [host]  0: SYSTEM: IPC init in progress !!!

     [host]  6: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...

     [host]  8: SYSTEM: Creating MsgQ [HOST_MSGQ] ...

     [host]  9: SYSTEM: Creating MsgQ [HOST_ACK_MSGQ] ...

     [host]  11: SYSTEM: Opening MsgQ [DSP_MSGQ] ...

     [host]  11: SYSTEM: Opening MsgQ [VIDEO-M3_MSGQ] ...

     [host]  12: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...

     [host]  13: SYSTEM: Notify register to [DSP] line 0, event 12 ...

     [host]  13: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...

     [host]  14: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...

     [host]  14: SYSTEM: IPC init DONE !!!

     [host]  15: SYSTEM: Creating ListMP [HOST_IPC_OUT_28] in region 0 ...

     [host]  17: SYSTEM: Creating ListMP [HOST_IPC_IN_28] in region 0 ...

     [host]  19: SYSTEM: ListElem Shared Addr = 0x416e3d80

     [host]  20: SYSTEM: Creating ListMP [HOST_IPC_OUT_29] in region 0 ...

     [host]  22: SYSTEM: Creating ListMP [HOST_IPC_IN_29] in region 0 ...

     [host]  23: SYSTEM: ListElem Shared Addr = 0x416fd600

     [host]  25: SYSTEM: Creating ListMP [HOST_IPC_OUT_23] in region 0 ...

     [host]  27: SYSTEM: Creating ListMP [HOST_IPC_IN_23] in region 0 ...

     [host]  28: SYSTEM: ListElem Shared Addr = 0x41716e80

     [host]  29: SYSTEM: Creating ListMP [HOST_IPC_OUT_24] in region 0 ...

     [host]  31: SYSTEM: Creating ListMP [HOST_IPC_IN_24] in region 0 ...

     [host]  33: SYSTEM: ListElem Shared Addr = 0x41736480

     [host]  34: SYSTEM: Creating ListMP [HOST_IPC_OUT_25] in region 0 ...

     [host]  36: SYSTEM: Creating ListMP [HOST_IPC_IN_25] in region 0 ...

     [host]  37: SYSTEM: ListElem Shared Addr = 0x41755a80

     [host]  38: SYSTEM: System Common Init Done !!!

     [host]
    ********** FULL FEATURE USECASE ********

     [host] ********* Entered Tri Streaming usecase - H264 1080p @60fps + H264 D1 @30fps + MJPEG 1080p @5fps ********


     [host]  38: MCFW  : CPU Revision [ES2.1] !!!

     [host]  38: MCFW  : Detected [UNKNOWN] Board !!!

     [host]  38: MCFW  : Base Board Revision [REV A] !!!
     [m3vpss ]  8516: CAMERA: Create in progress !!!
     [m3vpss ]  8517: CAMERA: VIP0 PortA camera mode is [ 8-bit, Non-mux Embedded Sync] !!!
     [m3vpss ]  8527: CAMERA: VIP 0: VID DEC 268436736 (0x36): bebebebe:bebebebe:0002, AUD_STATUS -1925894856
     [m3vpss ] Stream ID 0: chId = 0 VpsUtils_queCreate.
     [m3vpss ] Stream ID 1: chId = 0 VpsUtils_queCreate.
     [m3vpss ]  8783: CAMERA: Create Done !!!
     [m3vpss ] DCC server task running
     [m3vpss ]  8897: CAMERA: Detect video in progress !!!
     [m3vpss ]  8897: CAMERA: Detect video Done !!!
     [m3vpss ]  8993: DUP   : Create Done !!!
     [m3vpss ]  8994: NSF: Create in progress !!!
     [m3vpss ] NSF::HEAPID:0    USED:128
     [m3vpss ] NSF::HEAPID:1    USED:4928
     [m3vpss ]  9098: NSF: Create Done !!!
     [m3vpss ]  9104: DUP   : Create Done !!!
     [m3vpss ]  9110: DUP   : Create Done !!!
     [m3vpss ]  9111: MERGE   : Create Done !!!
     [m3vpss ] {SWOSD} edma3Handle->tccVal = 34
     [m3vpss ] {SWOSD} edma3Handle->chId   = 34
     [m3vpss ] {SWOSD} edma3Handle->tccVal = 35
     [m3vpss ] {SWOSD} edma3Handle->chId   = 35
     [m3vpss ] {SWOSD} edma3Handle->tccVal = 36
     [m3vpss ] {SWOSD} edma3Handle->chId   = 36
     [m3vpss ]  9080: SWOSD   : Create Done !!!
     [m3vpss ]  9171: SCLR: Create in progress !!!
     [m3vpss ]  9176: SCLR    : Loading Up-scaling Co-effs ...
     [m3vpss ]  9176: SCLR    : Co-effs Loading ... DONE !!!
     [m3video]  9184: IPC_IN_M3   : Create in progress !!!
     [m3video]  9184: SYSTEM: Opening ListMP [VPSS-M3_IPC_OUT_0] ...
     [m3vpss ] SCLR:HEAPID:0    USED:64
     [m3video]  9184: SYSTEM: Opening ListMP [VPSS-M3_IPC_IN_0] ...
     [m3vpss ] SCLR:HEAPID:1    USED:5952
     [m3video]  9185: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...
     [m3vpss ]  9176: SCLR: Create Done !!!
     [m3vpss ]  9092: FD   : Alg Create Done !!!
     [m3vpss ]  9092: FD   : Create Done !!!
     [m3vpss ]  9182: IPC_OUT_M3   : Create in progress !!!
     [m3vpss ]  9183: IPC_OUT_M3   : Create Done !!!
     [m3video]  9188: IPC_IN_M3   : Create Done !!!
     [m3video]  9188: ENCODE: Create in progress ... !!!
     [m3video]  9190: Assertion @ Line: 662 in utils/src/utils_mem.c: status == 0 : failed !!!
    main 188
    ApproDrvInit: 3
    Creat queue id:131076
    queue id:131076
    main 192
    queue id:0
    ApproDrvInit: 7
    queue id:131076
    TimeOut occure in boot_proc.
    Program exit.
    TimeOut occure in boot_proc.
    Program exit.

    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~# ps
      PID USER       VSZ STAT COMMAND
        1 root      1708 S    init [5]   
        2 root         0 SW   [kthreadd]
        3 root         0 SW   [ksoftirqd/0]
        4 root         0 SW   [kworker/0:0]
        5 root         0 SW   [kworker/u:0]
        6 root         0 SW<  [khelper]
        7 root         0 SW   [irq/72-serial i]
        8 root         0 SW   [irq/73-serial i]
        9 root         0 SW   [irq/74-serial i]
       10 root         0 SW   [irq/44-serial i]
       11 root         0 SW   [irq/45-serial i]
       12 root         0 SW   [irq/46-serial i]
       13 root         0 SW<  [mboxd]
       14 root         0 SW   [sync_supers]
       15 root         0 SW   [bdi-default]
       16 root         0 SW<  [kblockd]
       17 root         0 SW<  [omap2_mcspi]
       18 root         0 SW   [kseriod]
       19 root         0 SW<  [kmmcd]
       20 root         0 SW<  [rpciod]
       21 root         0 SW   [kswapd0]
       22 root         0 SW   [kworker/0:1]
       23 root         0 SW<  [aio]
       24 root         0 SW<  [nfsiod]
       25 root         0 SW<  [crypto]
       32 root         0 SW   [mtdblock0]
       33 root         0 SW   [mtdblock1]
       34 root         0 SW   [mtdblock2]
       35 root         0 SW   [mtdblock3]
       36 root         0 SW   [mtdblock4]
       37 root         0 SW   [mtdblock5]
       38 root         0 SW   [mtdblock6]
       39 root         0 SW   [kworker/u:1]
       42 root         0 SW   [mmcqd/0]
       77 root      1956 S <  /sbin/udevd -d
      408 root         0 SW   [flush-0:14]
      872 root      1752 S    ./bin/remote_debug_client.out 0xbff00000
      901 root     59740 S    ./system_server
      983 root      157m S    ./bin/ipnc_rdk_mcfw.out TRISTREAM TRIPLE_H264 APPRO2A
      990 messageb  3324 S    /usr/bin/dbus-daemon --system
     1002 root      2936 S    /usr/sbin/telnetd
     1013 root      3000 S    /sbin/syslogd -n -C64 -m 20
     1019 root      2936 S    /sbin/klogd -n
     1031 root      2516 S    login -- root      
     1067 root      3128 S    -sh
     1076 root         0 SW   [file-storage-ga]
     1119 root         0 SW<  [HDMI WQ]
     1143 root      6076 S    ./boa -c /etc
     1147 root         0 SW   [flush-254:0]
     1156 root      3128 R    ps
    root@DM8127_IPNC:~#

    Regards

     RAJ M

  • Hello,

    As i mentioend please reduce SR1 by 16M, so please set this to 44M

    You have put very less SR1 size, reason for memory allocation failure

    Also, can you please tell us which version of RDK you are using? please use v3.5.0 as this is the latest

    Regards,

    Raghu

  • Hi Raghu,

    Thank u

    Now i set

    var SR1_SIZE                   = 44*MB;

    I'm using Appro_IPNC_RDK_DM812x_DM385_v3.0.0

    where i download v3.5.0?

    Regards,

     RAJ M

  • Please check with Appro for download link for v3.5.0

    Else check with local sales for TI's myregsw download link

    Regards,

    Raghu

  • Raghu,

    Thank u

    I searched in Appro but i didn't get any download link.

    when i change SR1_SIZE                   = 44*MB; then i compile

    $make -s sysall

    i'm getting error

    #
    # Archiving ti814x-evm:m3video:release:ipnc_rdk_bios6
    #
    # Invoking configuro...
    making package.mak (because of package.bld) ...
    js: "/home/embdes/Projects/embdes_ipnc/Source/ipnc_rdk/ipnc_mcfw/mcfw/src_bios6/cfg/ti814x/config_512M.bld", line 169: xdc.services.global.XDCException: MEMORY_MAP OVERFLOW ERROR :
    Region End: 0x90000000
    Actual End: 0x90400000
        "./config.bld", line 3
    making package.mak (because of package.bld) ...
    js: "/home/embdes/Projects/embdes_ipnc/Source/ipnc_rdk/ipnc_mcfw/mcfw/src_bios6/cfg/ti814x/config_512M.bld", line 169: xdc.services.global.XDCException: MEMORY_MAP OVERFLOW ERROR :
    Region End: 0x90000000
    Actual End: 0x90400000
        "./config.bld", line 3
    gmake: *** No rule to make target `linker.cmd'.  Stop.
    js: "/home/embdes/Projects/embdes_ipnc/Source/ti_tools/xdctools_3_23_03_53/packages/xdc/tools/Cmdr.xs", line 51: Error: xdc.tools.configuro: configuration failed due to earlier errors (status = 2); 'linker.cmd' deleted.
    make[3]: *** [xdc_configuro] Error 1
    make[2]: *** [apps] Error 2
    make[1]: *** [mcfw_bios6] Error 2
    make: *** [sys] Error 2
    embdes@embdes:~/Projects/embdes_ipnc/Source/ipnc_rdk$

    Regards

     RAJ M

  • Hello,

    can you check you have edited config_512M.bld properly.

    Looks like some characters or syntax issue there at line 3 that is causing this issue

    Regards,

    Raghu

  • Hello,

    Can you write a mail to Appro and get the download link for v3.5.0?

    Regards,

    Raghu

  • Raghu,

    Thank u

    This is my config_512.bld content

    /* first 256MB */
    var LINUX_SIZE                 = 128*MB;
    var CMEM_SIZE                  = 32*MB
    var SR1_SIZE                   = 44*MB;
    var VIDEO_M3_CODE_SIZE         = 2*MB;
    var VIDEO_M3_DATA_SIZE         = 20*MB;
    var DSS_M3_CODE_SIZE           = 2*MB;
    var DSS_M3_DATA_SIZE           = 20*MB;
    var DSP_CODE_SIZE              = 2*MB;
    var DSP_DATA_SIZE              = 10*MB;

    /* second 256MB */
    var TILER_SIZE                 = 128*MB; /* Reducing this to fix Vid Frame Alloc failures. Need to fix */ /* MUST be aligned on 128MB boundary */
    var SR2_FRAME_BUFFER_SIZE      = 105*MB;
    var SR0_SIZE                   = 16*MB;
    var HDVPSS_DESC_SIZE           = 2*MB;
    var HDVPSS_SHARED_SIZE         = 2*MB;
    var NOTIFY_SHARED_SIZE         = 2*MB;
    var REMOTE_DEBUG_SIZE          = 1*MB;

    but total is around 240M is it correct?

    Regards

      RAJ M

  • Hello,

    Please make SR1 to be 40MB and total in first section needs to be 256MB as mentioned in comments

    And please put a semicolon as mandated by C coding guideline after CMEM size 32*MB

    Hope it is clear now

    Regards,

    Raghu

  • Hello,

    Thank u,

    now its compiling but cmem still allocate 62M below i paste my minicom error

     [host] Application Start Completed
    CMEMK Error: ioctl: failed to allocate heap buffer of size 0x3e00000
    CMEM Error: alloCMEMK Error: get_phys: Unable to find phys addr for 0x00000000
    cHeap: ioctl CMECMEMK Error: get_phys: get_user_pages() failed: -14
    M_IOCALLOCHEAP fCMEMK Error: GETPHYS: Failed to convert virtual 0x0 to physical.
    ailed: -1
    CMEM Error: getPhys: Failed to get physical address of 0

     [host] Vsys_allocBuf - addr = 0x0,size = 65011712

     [host] MCFW_IPCBITS:App_streamSysInit:virt addr of 0 cir buffer  is 0
    ##########pInfo->totalsize 30408704
    Encode Error: Memory manager init fail
    func:stream_init line:245

    my bootarg is

    setenv bootargs 'root=/dev/nfs console=ttyO0,115200n8 mem=128M rw vram=50M notifyk.vpssm3_sva=0xBFD00000 nfsroot=192.168.1.103:/home/embdes/Projects/embdes_ipnc/Source/ipnc_rdk/target/filesys,nolock,tcp ip=192.168.1.168 eth=00:0C:0C:02:39:1B cmemk.phys_start=0x88000000 cmemk.phys_end=0x8A000000 cmemk.allowOverlap=1 earlyprintk';saveenv

    Regards

      RAJ M

  • Have you reduced the sreaming buffer to fit 32MB as i mentioned ealrier in mem_mng.c?

    Regards,

    Raghu

  • hello,

    Thank U

    my mem_mng.c

     [MEM_LAYOUT_512MB] = {
                          .profiles[VIDOE_INFO_MJPG] = {
                                                        .cache_size = 0x200000,
                                                        .cache_blk_size =
                                                        (100 * 1024),
                                                        .mem_size = 0x200000,
                                                        .mem_blk_size =
                                                        (100 * 1024),
                                                        .ext_size = 0,
                                                        },
                          .profiles[VIDOE_INFO_MP4] = {
                                                       .cache_size =
                                                       0xA00000 -
                                                       (MP4_1_EXTRA_SIZE / 2),
                                                       .cache_blk_size =
                                                       (50 * 1024),
                                                       .mem_size =
                                                       0xA00000 -
                                                       (MP4_1_EXTRA_SIZE / 2),
                                                       .mem_blk_size = (50 * 1024),
                                                       .ext_size = MP4_1_EXTRA_SIZE,
                                                       },
                          .profiles[VIDOE_INFO_MP4_EXT] = {
                                                           .cache_size =
                                                           0x200000 -
                                                           (MP4_2_EXTRA_SIZE / 2),
                                                           .cache_blk_size =
                                                           (30 * 1024),
                                                           .mem_size =
                                                           0x200000 -
                                                           (MP4_2_EXTRA_SIZE / 2),
                                                           .mem_blk_size =
                                                           (30 * 1024),
                                                           .ext_size =
                                                           MP4_2_EXTRA_SIZE,
                                                           },
                  .profiles[AUDIO_INFO_G711] = {
                                                        .cache_size =
                                                        AUDIO_CACHE_SIZE,
                                                        .cache_blk_size =
                                                        AUDIO_CACHE_BLK_SIZE,
                                                        .mem_size = AUDIO_MEM_SIZE,
                                                        .mem_blk_size =
                                                        AUDIO_BLK_SIZE,
                                                        .ext_size = 0,
                                                        },
                          .totalsizes = 0,
                          },

     is it correct for 32M cmem if its wrong please tell how to calculate mem_size...

    Regards

     RAJ M

  • Yes, the total memry from your setting is sum of all cache_size and mem_size

    Out of 32MB for CMEM, 2 MB is reserved for DCC and rest to streaming, so you should be less than 30MB


    So, it is 0x200000 + 0x200000 + 0xA00000 + 0xA00000 + 0x200000 + 0x200000 + AUDIO_CACHE_SIZE + AUDIO_MEM_SIZE < 30MB

    which is 2MB +2MB+ 10MB + 10MB + 2MB +2MB + audio < 30MB


    Can you check that your usecase is refering to MEM_LAYOUT_512MB index and picking other index?


    Regards,


    Raghu



  • Hello,

    Thank u

    i posed my minicom capture and i'm getting error like

    [host] Application Start Completed
    Simple mixer control 'PGA',0
      Capabilities: cvolume cswitch penum
      Capture channels: Front Left - Front RighCMEMK Error: ioctl: failed to allocate heap buffer of size 0x3e00000
    t
      Limits: CapCMEMK Error: get_phys: Unable to find phys addr for 0x00000000
    ture 0 - 119
    CMCMEMK Error: get_phys: get_user_pages() failed: -14
    EM Error: allocHCMEMK Error: GETPHYS: Failed to convert virtual 0x0 to physical.
    eap: ioctl CMEM_IOCALLOCHEAP failed: -1
    CMEM Error: getPhys: Failed to get physical address of 0

     [host] Vsys_allocBuf - addr = 0x0,size = 65011712

     [host] MCFW_IPCBITS:App_streamSysInit:virt addr of 0 cir buffer  is 0
    ##########pInfo->totalsize 30408704
    Encode Error: Memory manager init fail
    func:stream_init line:249

     [host] MCFW_IPCBITS:App_streamSysInit:stream_init failed

    my bootargs  is

    setenv bootargs 'root=/dev/nfs console=ttyO0,115200n8 mem=128M rw vram=50M notifyk.vpssm3_sva=0xBFD00000 nfsroot=192.168.1.109:/home/sesha/Projects/save_image/Source/ipnc_rdk/target/filesys,nolock,tcp ip=192.168.1.168 eth=00:0C:0C:02:39:1B cmemk.phys_start=0x88000000 cmemk.phys_end=0x8A000000 cmemk.allowOverlap=1 earlyprintk';saveenv

    my minicom capture

    1 0

    Loading from nand0, offset 0x280000
       Image Name:   Linux-2.6.37_DM8127_IPNC_3.00.00
       Created:      2013-07-08   6:12:05 UTC
       Image Type:   ARM Linux Kernel Image (uncompressed)
       Data Size:    2338828 Bytes = 2.2 MiB
       Load Address: 80008000
       Entry Point:  80008000
    ## Booting kernel from Legacy Image at 81000000 ...
       Image Name:   Linux-2.6.37_DM8127_IPNC_3.00.00
       Created:      2013-07-08   6:12:05 UTC
       Image Type:   ARM Linux Kernel Image (uncompressed)
       Data Size:    2338828 Bytes = 2.2 MiB
       Load Address: 80008000
       Entry Point:  80008000
       Verifying Checksum ... OK
       Loading Kernel Image ... OK
    OK

    Starting kernel ...

    Uncompressing Linux... done, booting the kernel.
    Linux version 2.6.37_DM8127_IPNC_3.00.00 (embdes@embdes) (gcc version 4.3.3 (Sourcery G++ Lite 2009q1-203) ) #1 Mon Jul 8 11:42:00 IST 2013
    CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c53c7f
    CPU: VIPT nonaliasing data cache, VIPT aliasing instruction cache
    Machine: ti8148ipnc
    vram size = 52428800 at 0x0
    bootconsole [earlycon0] enabled
    reserved size = 52428800 at 0x0
    FB: Reserving 52428800 bytes SDRAM for VRAM
    Memory policy: ECC disabled, Data cache writeback
    OMAP chip is TI8148 2.0
    SRAM: Mapped pa 0x402f1000 to va 0xfe400000 size: 0xf000
    Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 19712
    Kernel command line: root=/dev/nfs console=ttyO0,115200n8 mem=128M rw vram=50M notifyk.vpssm3_sva=0xBFD00000 nfsroot=192.168.1.109:/home/sesha/Projects/save_image/Source/ipnc_rdk/target/filesys,nolock,tcp ip=192.168.1.168 eth=00:0C:0C:02:39:1B cmemk.phys_start=0x88000000 cmemk.phys_end=0x8A000000 cmemk.allowOverlap=1 earlyprintk
    cpsw: kernel boot params Ethernet address: 00:0C:0C:02:39:1B
    PID hash table entries: 512 (order: -1, 2048 bytes)
    Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
    Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
    Memory: 78MB = 78MB total
    Memory: 73688k/73688k available, 57384k reserved, 0K highmem
    Virtual kernel memory layout:
        vector  : 0xffff0000 - 0xffff1000   (   4 kB)
        fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
        DMA     : 0xffc00000 - 0xffe00000   (   2 MB)
        vmalloc : 0xc8800000 - 0xf8000000   ( 760 MB)
        lowmem  : 0xc0000000 - 0xc8000000   ( 128 MB)
        pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
        modules : 0xbf000000 - 0xbfe00000   (  14 MB)
          .init : 0xc0008000 - 0xc0038000   ( 192 kB)
          .text : 0xc0038000 - 0xc046d000   (4308 kB)
          .data : 0xc046e000 - 0xc04ab400   ( 245 kB)
    SLUB: Genslabs=11, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    NR_IRQS:375
    IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
    Total of 128 interrupts on 1 active controller
    GPMC revision 6.0
    Trying to install interrupt handler for IRQ368
    Trying to install interrupt handler for IRQ369
    Trying to install interrupt handler for IRQ370
    Trying to install interrupt handler for IRQ371
    Trying to install interrupt handler for IRQ372
    Trying to install interrupt handler for IRQ373
    Trying to install interrupt handler for IRQ374
    Trying to install type control for IRQ375
    Trying to set irq flags for IRQ375
    OMAP clockevent source: GPTIMER1 at 20000000 Hz
    Console: colour dummy device 80x30
    Calibrating delay loop... 598.01 BogoMIPS (lpj=2990080)
    pid_max: default: 32768 minimum: 301
    Security Framework initialized
    Mount-cache hash table entries: 512
    CPU: Testing write buffer coherency: ok
    devtmpfs: initialized
    omap_voltage_early_init: voltage driver support not added
    regulator: core version 0.5
    regulator: dummy:
    NET: Registered protocol family 16
    omap_voltage_domain_lookup: Voltage driver init not yet happened.Faulting!
    omap_voltage_add_dev: VDD specified does not exist!
    OMAP GPIO hardware version 0.1
    OMAP GPIO hardware version 0.1
    OMAP GPIO hardware version 0.1
    OMAP GPIO hardware version 0.1
    omap_mux_init: Add partition: #1: core, flags: 4
    _omap_mux_init_gpio: Could not set gpio79
    _omap_mux_init_gpio: Could not set gpio80
    Debugfs: Only enabling/disabling deep sleep and wakeup timer is supported now
    registered ti81xx_vpss device
    registered ti81xx_vidout device
    registered ti81xx on-chip HDMI device
    registered ti81xx_fb device
    PWM0 init success.
    PWM1 init success.
    bio: create slab <bio-0> at 0
    SCSI subsystem initialized
    USBSS revision 4ea2080b
    registerd cppi-dma Intr @ IRQ 17
    Cppi41 Init Done
    omap_i2c omap_i2c.1: bus 1 rev4.0 at 100 kHz
    regulator: VRTC: 1800 mV
    regulator: VIO: 1500 mV
    regulator: VDD1: 600 <--> 1500 mV at 1100 mV
    regulator: VDD2: 600 <--> 1500 mV at 1350 mV
    regulator: VDDCTRL: 600 <--> 1400 mV at 1200 mV
    regulator: LDO1: 1100 <--> 3300 mV at 1800 mV
    regulator: LDO2: 1100 <--> 3300 mV at 1800 mV
    regulator: LDO3: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO4: 1100 <--> 3300 mV at 1800 mV
    regulator: LDO5: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO6: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO7: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO8: 1100 <--> 3300 mV at 1800 mV
    tps65911-rtc tps65911-rtc: rtc core: registered tps65911-rtc as rtc0
    tps65910 1-002d: No interrupt support, no core IRQ
    Advanced Linux Sound Architecture Driver Version 1.0.23.
    Switching to clocksource gp timer
    musb-hdrc: version 6.0, peripheral, debug=0
    musb-hdrc musb-hdrc.0: dma type: dma-cppi41
    MUSB controller-0 revision 4ea20800
    musb-hdrc musb-hdrc.0: USB Peripheral mode controller at c881e000 using DMA, IRQ 18
    NET: Registered protocol family 2
    IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
    TCP established hash table entries: 4096 (order: 3, 32768 bytes)
    TCP bind hash table entries: 4096 (order: 2, 16384 bytes)
    TCP: Hash tables configured (established 4096 bind 4096)
    TCP reno registered
    UDP hash table entries: 256 (order: 0, 4096 bytes)
    UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
    NET: Registered protocol family 1
    RPC: Registered udp transport module.
    RPC: Registered tcp transport module.
    RPC: Registered tcp NFSv4.1 backchannel transport module.
    NetWinder Floating Point Emulator V0.97 (double precision)
    PMU: registered new PMU device of type 0
    omap-iommu omap-iommu.0: ducati registered
    omap-iommu omap-iommu.1: sys registered
    JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
    msgmni has been set to 143
    io scheduler noop registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    CMEMK module: built on Jul  8 2013 at 11:35:04
      Reference Linux version 2.6.37
      File /home/embdes/Projects/embdes_ipnc/Source/ti_tools/linuxutils_3_22_00_02/packages/ti/sdo/linuxutils/cmem/src/module/cmemk.c
    allocated heap buffer 0xcd000000 of size 0x2000000
    cmemk initialized
    Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    omap_uart.0: ttyO0 at MMIO 0x48020000 (irq = 72) is a OMAP UART0
    console [ttyO0] enabled, bootconsole disabled
    console [ttyO0] enabled, bootconsole disabled
    omap_uart.1: ttyO1 at MMIO 0x48022000 (irq = 73) is a OMAP UART1
    omap_uart.2: ttyO2 at MMIO 0x48024000 (irq = 74) is a OMAP UART2
    omap_uart.3: ttyO3 at MMIO 0x481a6000 (irq = 44) is a OMAP UART3
    omap_uart.4: ttyO4 at MMIO 0x481a8000 (irq = 45) is a OMAP UART4
    omap_uart.5: ttyO5 at MMIO 0x481aa000 (irq = 46) is a OMAP UART5
    brd: module loaded
    loop: module loaded
    omap2-nand driver initializing
    NAND device: Manufacturer ID: 0x2c, Chip ID: 0xca (Micron )
    Creating 7 MTD partitions on "omap2-nand.0":
    0x000000000000-0x000000020000 : "U-Boot-min"
    0x000000020000-0x000000260000 : "U-Boot"
    0x000000260000-0x000000280000 : "U-Boot Env"
    0x000000280000-0x0000006c0000 : "Kernel"
    0x0000006c0000-0x00000c000000 : "File System"
    0x00000c000000-0x00000cc00000 : "Data"
    0x00000cc00000-0x000010000000 : "Reserved"
    davinci_mdio davinci_mdio.0: davinci mdio revision 1.6
    davinci_mdio davinci_mdio.0: detected phy mask fffffffe
    davinci_mdio.0: probed
    davinci_mdio davinci_mdio.0: phy[0]: device 0:00, driver unknown
    mice: PS/2 mouse device common for all mice
    i2c /dev entries driver
    Linux video capture interface: v2.00
    OMAP Watchdog Timer Rev 0x00: initial timeout 60 sec
    notify_init : notify drivercreated  for  remote proc id 2 at physical Address 0xbfd00000
    asoc: tlv320aic3x-hifi <-> davinci-mcasp.2 mapping ok
    asoc: HDMI-DAI-CODEC <-> hdmi-dai mapping ok
    ALSA device list:
      #0: TI8148 IPNC
    TCP cubic registered
    NET: Registered protocol family 17
    Registering the dns_resolver key type
    VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
    omap_voltage_late_init: Voltage driver support not added
    Power Management for TI81XX.
    Detected MACID=0:c:c:2:39:1b
    tps65911-rtc tps65911-rtc: setting system clock to 2013-05-18 14:00:05 UTC (1368885605)
    mmc0: new high speed SDHC card at address aaaa
    mmcblk0: mmc0:aaaa SU04G 3.69 GiB
     mmcblk0: p1

    CPSW phy found : id is : 0x4dd074
    PHY 0:01 not found
    IP-Config: Guessing netmask 255.255.255.0
    IP-Config: Complete:
         device=eth0, addr=192.168.1.168, mask=255.255.255.0, gw=255.255.255.255,
         host=192.168.1.168, domain=, nis-domain=(none),
         bootserver=255.255.255.255, rootserver=192.168.1.109, rootpath=
    PHY: 0:00 - Link is Up - 100/Full
    VFS: Mounted root (nfs filesystem) on device 0:14.
    devtmpfs: mounted
    Freeing init memory: 192K
    INIT: version 2.86 booting
    Error opening /dev/fb0: No such file or directory
    Please wait: booting...
    Starting udev
    udevd (75): /proc/75/oom_adj is deprecated, please use /proc/75/oom_score_adj instead.
    Root filesystem already rw, not remounting
    Caching udev devnodes
    Populating dev cache
    NOT configuring network interfaces: / is an NFS mount
    rm: cannot remove '/tmp': Device or resource busy
     inside finish.sh
    mount: wrong fs type, bad option, bad superblock on /dev/mtdblock5,
           missing codepage or helper program, or other error
           In some cases useful info is found in syslog - try
           dmesg | tail  or so

    mount: wrong fs type, bad option, bad superblock on /dev/mtdblock6,
           missing codepage or helper program, or other error
           In some cases useful info is found in syslog - try
           dmesg | tail  or so

    numid=1,iface=MIXER,name='PCM Playback Volume'
      ; type=INTEGER,access=rw---R--,values=2,min=0,max=127,step=0
      : values=127,127
      | dBscale-min=-63.50dB,step=0.50dB,mute=0
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    SysLink version : 2.10.06.28
    SysLink module created on Date:Jul  9 2013 Time:11:32:01
    Trace enabled
    Trace SetFailureReason enabled
    /dev/mem opened.
    data 2
                 BW Phy Addr : 0x48180d00 Data : 0x00030000
                 AW Phy Addr : 0x48180d00 Data : 0x00030002
    data 3
                 BW Phy Addr : 0x48180d10 Data : 0x00000007
                 AW Phy Addr : 0x48180d10 Data : 0x00000003
    data 2
                 BW Phy Addr : 0x48180700 Data : 0x00000001
                 AW Phy Addr : 0x48180700 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180720 Data : 0x00070000
                 AW Phy Addr : 0x48180720 Data : 0x00070002
    data 2
                 BW Phy Addr : 0x48180724 Data : 0x00030000
                 AW Phy Addr : 0x48180724 Data : 0x00000002
    data 60020
                 BW Phy Addr : 0x48140924 Data : 0x000e0020
                 AW Phy Addr : 0x48140924 Data : 0x000e0020
    data 60020
                 BW Phy Addr : 0x48140928 Data : 0x000c0040
                 AW Phy Addr : 0x48140928 Data : 0x000c0040
    data 60001
                 BW Phy Addr : 0x48140c18 Data : 0x000e0001
                 AW Phy Addr : 0x48140c18 Data : 0x000e0001
    data 60001
                 BW Phy Addr : 0x48140c1c Data : 0x000e0001
                 AW Phy Addr : 0x48140c1c Data : 0x000e0001
    data 2
                 BW Phy Addr : 0x48181564 Data : 0x00000002
                 AW Phy Addr : 0x48181564 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48181568 Data : 0x00030000
                 AW Phy Addr : 0x48181568 Data : 0x00000002
                 Phy Addr : 0x48181560 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48181560 Data : 0x00000002
                 AW Phy Addr : 0x48181560 Data : 0x00000002
    data 60002
                 BW Phy Addr : 0x48140aac Data : 0x00040002
                 AW Phy Addr : 0x48140aac Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140ab0 Data : 0x00060002
                 AW Phy Addr : 0x48140ab0 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140ab8 Data : 0x00040002
                 AW Phy Addr : 0x48140ab8 Data : 0x00040002
    data 60020
                 BW Phy Addr : 0x48140a58 Data : 0x000c0080
                 AW Phy Addr : 0x48140a58 Data : 0x000c0080
    data 60080
                 BW Phy Addr : 0x48140a60 Data : 0x000c0080
                 AW Phy Addr : 0x48140a60 Data : 0x000c0080
    data 60020
                 BW Phy Addr : 0x48140a64 Data : 0x000c0080
                 AW Phy Addr : 0x48140a64 Data : 0x000c0080
    data 60020
                 BW Phy Addr : 0x48140a68 Data : 0x000c0080
                 AW Phy Addr : 0x48140a68 Data : 0x000c0080
    data 60002
                 BW Phy Addr : 0x48140aa8 Data : 0x00040002
                 AW Phy Addr : 0x48140aa8 Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140aa4 Data : 0x00040002
                 AW Phy Addr : 0x48140aa4 Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140aa0 Data : 0x00040002
                 AW Phy Addr : 0x48140aa0 Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140a9c Data : 0x00060002
                 AW Phy Addr : 0x48140a9c Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a98 Data : 0x00060002
                 AW Phy Addr : 0x48140a98 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a94 Data : 0x00060002
                 AW Phy Addr : 0x48140a94 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a90 Data : 0x00060002
                 AW Phy Addr : 0x48140a90 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a8c Data : 0x00060002
                 AW Phy Addr : 0x48140a8c Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a6c Data : 0x000e0002
                 AW Phy Addr : 0x48140a6c Data : 0x000e0002
    data 60002
                 BW Phy Addr : 0x48140a70 Data : 0x000c0002
                 AW Phy Addr : 0x48140a70 Data : 0x000c0002
    data 60002
                 BW Phy Addr : 0x48140a74 Data : 0x000e0002
                 AW Phy Addr : 0x48140a74 Data : 0x000e0002
    data 60002
                 BW Phy Addr : 0x48140a78 Data : 0x000e0002
                 AW Phy Addr : 0x48140a78 Data : 0x000e0002
    data 0
                 BW Phy Addr : 0x411f4004 Data : 0x0000000e
                 AW Phy Addr : 0x411f4004 Data : 0x00000000
    data 0
                 BW Phy Addr : 0x411f2004 Data : 0x00000001
                 AW Phy Addr : 0x411f2004 Data : 0x00000000
    data 1
                 BW Phy Addr : 0x41140084 Data : 0x00000001
                 AW Phy Addr : 0x41140084 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x411a0084 Data : 0x00000001
                 AW Phy Addr : 0x411a0084 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x41160034 Data : 0x00000001
                 AW Phy Addr : 0x41160034 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x41121ff0 Data : 0x00000001
                 AW Phy Addr : 0x41121ff0 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x41131fe4 Data : 0x00000000
                 AW Phy Addr : 0x41131fe4 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x411e002c Data : 0x00000000
                 AW Phy Addr : 0x411e002c Data : 0x00000001
    data 1
                 BW Phy Addr : 0x481c52ec Data : 0x00000001
                 AW Phy Addr : 0x481c52ec Data : 0x00000001
    secss put in low power state
    data 1
                 BW Phy Addr : 0x48180900 Data : 0x00000001
                 AW Phy Addr : 0x48180900 Data : 0x00000001
    data 0
                 BW Phy Addr : 0x48180f00 Data : 0x00030000
                 AW Phy Addr : 0x48180f00 Data : 0x00030000
                 Phy Addr : 0x48180f10 Data : 0x00000000
    data 2
                 BW Phy Addr : 0x4818052c Data : 0x00000002
                 AW Phy Addr : 0x4818052c Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180508 Data : 0x00000302
                 AW Phy Addr : 0x48180508 Data : 0x00000302
    data 2
                 BW Phy Addr : 0x48180520 Data : 0x00000002
                 AW Phy Addr : 0x48180520 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180524 Data : 0x00000002
                 AW Phy Addr : 0x48180524 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180528 Data : 0x00000002
                 AW Phy Addr : 0x48180528 Data : 0x00000002
                 Phy Addr : 0x48180508 Data : 0x00000302
                 Phy Addr : 0x48180520 Data : 0x00000002
                 Phy Addr : 0x48180524 Data : 0x00000002
                 Phy Addr : 0x48180528 Data : 0x00000002
                 Phy Addr : 0x4c0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 Phy Addr : 0x4d0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4d0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4d0000e4 Data : 0x00170208
                 Phy Addr : 0x4c0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 Phy Addr : 0x4d0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4d0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4d0000e4 Data : 0x00170208
    DDR IOs RX is shutdown
    Creat queue id:0

     [host]  Setting L3 bandwidth regulator for [HDVICP0 ] to [press=[0,0] BW=900, WM Cycles=2500]
    queue id:0
    FileMngThread created
    Creat queue id:32769
    queue id:32769
    AlramThread created
    Share memory init success
    IPNC_3.00.00 (embdes@embdes) (gcc version 4.3.3 (Sourcery G++ Lite 2009

     [host]  Setting DMM priority for [ISS     ] to [0] ( 0x4e000634 = 0x00800000 )
    Creat queue id:65538
    queue id:65538
    Creat queue id:98307
    queue id:98307
    queue id:32769

     [host]  Setting DMM priority for [HDVICP0 ] to [1] ( 0x4e000634 = 0x00000009 )

     [host] Attached to slave procId 2.
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040


     [host] Attached to slave procId 1.
     [host] Attached to slave procId 0.

     [host] Loaded file ./firmware/ipnc_rdk_fw_m3vpss.xem3 on slave procId 2.

     [host] Loaded file ./firmware/ipnc_rdk_fw_c6xdsp.xe674 on slave procId 0.


     [host] Started slave procId 0.
     [host] Started slave procId 2.

     [host] After Ipc_loadcallback status [0x00000000]

     [c6xdsp ] ***** SYSTEM  : Frequency <ORG> - 500000000, <NEW> - 500000000
     [c6xdsp ]  
     [c6xdsp ]  *** UTILS: CPU KHz = 500000 Khz ***
     [c6xdsp ]  
     [c6xdsp ]  1: SYSTEM  : System Common Init in progress !!!
     [c6xdsp ]  1: SYSTEM: IPC init in progress !!!
     [host] After Ipc_loadcallback status [0x00000000]
     [c6xdsp ]  1: SYSTEM: Attaching to [HOST] ...
     [m3vpss ] ***** SYSTEM  : Frequency <ORG> - 200000000, <NEW> - 200000000
     [m3vpss ] notify_attach  rtnVal  0
     [m3vpss ] initProxyServer  rtnVal  0
     [m3vpss ]  
     [m3vpss ]  *** UTILS: CPU KHz = 400000 Khz ***
     [m3vpss ]  
     [m3vpss ]  90: SYSTEM  : System Common Init in progress !!!
     [m3vpss ]  91: SYSTEM: IPC init in progress !!!
     [m3vpss ]  91: SYSTEM: Attaching to [HOST] ...

     [host] Loaded file ./firmware/ipnc_rdk_fw_m3video.xem3 on slave procId 1.

     [host] Started slave procId 1.

     [host] After Ipc_loadcallback status [0x00000000]
     [c6xdsp ]  1001: SYSTEM: Attaching to [HOST] ...
     [m3video] ***** SYSTEM  : Frequency <ORG> - 200000000, <NEW> - 200000000
     [c6xdsp ]  1061: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
     [m3video]  
     [c6xdsp ]  1061: SYSTEM: Attaching to [VIDEO-M3] ...
     [m3video]  *** UTILS: CPU KHz = 400000 Khz ***
     [m3video]  
     [m3video]  678: SYSTEM  : System Common Init in progress !!!
     [m3video]  678: SYSTEM: IPC init in progress !!!
     [m3video]  678: SYSTEM: Attaching to [HOST] ...

     [host] After Ipc_startcallback status [0x097d2000]
     [m3vpss ]  1090: SYSTEM: Attaching to [HOST] ...

     [host] After Ipc_startcallback status [0x097d2000]
     [m3vpss ]  1120: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
     [m3vpss ]  1120: SYSTEM: Attaching to [DSP] ...
     [m3video]  1678: SYSTEM: Attaching to [HOST] ...

     [host] After Ipc_startcallback status [0x097d2000]
     [m3video]  1691: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
     [m3video]  1691: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  2060: SYSTEM: Attaching to [VIDEO-M3] ...
     [m3vpss ]  2119: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  2755: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
     [m3video]  2692: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  2755: SYSTEM: Attaching to [VPSS-M3] ...
     [m3video]  2692: SYSTEM: Attaching to [DSP] ... SUCCESS !!!
     [m3video]  2692: SYSTEM: Attaching to [VPSS-M3] ...
     [m3vpss ]  3119: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  3754: SYSTEM: Attaching to [VPSS-M3] ...
     [m3video]  3692: SYSTEM: Attaching to [VPSS-M3] ...
     [c6xdsp ]  4183: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
     [m3vpss ]  4119: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  4183: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3vpss ]  4120: SYSTEM: Attaching to [DSP] ... SUCCESS !!!
     [m3vpss ]  4120: SYSTEM: Attaching to [VIDEO-M3] ...
     [m3video]  4692: SYSTEM: Attaching to [VPSS-M3] ...
     [c6xdsp ]  5183: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3video]  5120: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
     [m3vpss ]  5119: SYSTEM: Attaching to [VIDEO-M3] ...
     [c6xdsp ]  5183: SYSTEM: Creating MsgQ [DSP_MSGQ] ...
     [m3video]  5120: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3vpss ]  5120: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
     [c6xdsp ]  5183: SYSTEM: Creating MsgQ [DSP_ACK_MSGQ] ...
     [m3video]  5121: SYSTEM: Creating MsgQ [VIDEO-M3_MSGQ] ...
     [m3vpss ]  5120: SYSTEM: Creating MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [c6xdsp ]  5184: SYSTEM: Notify register to [HOST] line 0, event 12 ...
     [m3video]  5121: SYSTEM: Creating MsgQ [VIDEO-M3_ACK_MSGQ] ...
     [m3vpss ]  5121: SYSTEM: Creating MsgQ [VPSS-M3_MSGQ] ...
     [c6xdsp ]  5184: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
     [m3vpss ]  5121: SYSTEM: Creating MsgQ [VPSS-M3_ACK_MSGQ] ...
     [c6xdsp ]  5184: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
     [c6xdsp ]  5184: SYSTEM: IPC init DONE !!!
     [m3vpss ]  5123: SYSTEM: Notify register to [HOST] line 0, event 12 ...
     [c6xdsp ]  5187: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
     [m3video]  5123: SYSTEM: Notify register to [HOST] line 0, event 12 ...
     [m3vpss ]  5123: SYSTEM: Notify register to [DSP] line 0, event 12 ...
     [c6xdsp ]  5188: MEM: Shared Region 1: Base = 0x8a000000, Length = 0x02800000 (40 MB)
     [m3video]  5123: SYSTEM: Notify register to [DSP] line 0, event 12 ...
     [m3vpss ]  5124: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
     [c6xdsp ]  5188: SYSTEM  : System Common Init Done !!!
     [m3video]  5124: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
     [m3vpss ]  5124: SYSTEM: IPC init DONE !!!
     [m3video]  5124: SYSTEM: IPC init DONE !!!
     [m3vpss ]  5133: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
     [m3vpss ]  5133: MEM: Shared Region 1: Base = 0x8a000000, Length = 0x02800000 (40 MB)
     [m3video]  5134: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
     [m3vpss ] Received character 's'
     [m3video]  5134: MEM: Shared Region 1: Base = 0x8a000000, Length = 0x02800000 (40 MB)
     [m3vpss ]  5136: SYSTEM  : System Common Init Done !!!
     [m3video]  5136: SYSTEM  : System Common Init Done !!!
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3video] Received character 's'
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [c6xdsp ] Received character 's'
    queue id:65538

    CPU is TI812x
    Error: SemWait: Invalid Semaphore handler
    Error: SemRelease: Invalid Semaphore handler

    *****************************************************************

        IPNC BUILD VERSION: DM8127 IPNC RDK VERSION 03.00.00.05    

    *****************************************************************

    ./bin/ipnc_rdk_mcfw.out   TRISTREAM TRIPLE_H264 TI2A AEWB 1080P_D1 H264 HIGH_SPEED1 H264 HIGH_SPEED2 MJPEG 80 &
    Error: SemWait: Invalid Semaphore handler
    Error: SemRelease: Invalid Semaphore handler
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3vpss ]  5335: SYSTEM  : System VPSS Init in progress !!!
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3vpss ] === I2C0/2 Clk is active ===
     [m3vpss ]  5354: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_0] in region 0 ...
     [m3vpss ]  5354: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_0] in region 0 ...
     [m3vpss ]  5355: SYSTEM: ListElem Shared Addr = 0xbe98b280
     [m3vpss ]  5357: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_1] in region 0 ...
     [m3vpss ]  5357: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_1] in region 0 ...
     [m3vpss ]  5358: SYSTEM: ListElem Shared Addr = 0xbe98e380
     [m3vpss ]  5372: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_23] in region 0 ...
     [m3vpss ]  5372: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_23] in region 0 ...
     [m3vpss ]  5373: SYSTEM: ListElem Shared Addr = 0xbe991480
     [m3vpss ]  5375: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_24] in region 0 ...
     [m3vpss ]  5376: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_24] in region 0 ...
     [m3vpss ]  5376: SYSTEM: ListElem Shared Addr = 0xbe9b0a80
     [c6xdsp ] Remote Debug Shared eab9c80
     [m3vpss ]  Iss_init called !!!!!!
     [m3video]  5454: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_29] in region 0 ...
     [m3vpss ]  CPIS_init DONE !!!!!!
     [m3video]  5455: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_29] in region 0 ...
     [m3video]  5455: SYSTEM: ListElem Shared Addr = 0xbead3500
     [m3vpss ] initPrms.isI2cInitReq = 1
     [m3video]  5457: HDVICP: Doing PRCM for IVAHD[0] ...
     [m3video]  5457: HDVICP: PRCM for IVAHD[ sbulla: unknown partition table
    0] ... DONE.
     [m3vpss ] initPrms.isI2cInitReq = 1
     [m3video]  5458: SYSTEM  : Initializing Links !!!
    INIT: Entering runlevel: 5
     [m3video]  5458: SYSTEM  : FREE SPACE : System Heap      = 6282384 B, Mbx = 10240 msgs)
     inside autorun
     [m3video]  5513: SYSTEM  : Initializing Links ... DONE !!!
     [m3vpss ]  Vps_deviceInit Daughter card not detected/connected!
     [m3vpss ]                     
     [m3vpss ]  5639: SYSTEM  : Devi sbulla: unknown partition table
    ce Init in progress DONE !!!
     [m3vpss ]  5667: SYSTEM  : System VPSS Init Done !!!
     [m3vpss ]  5667: UTILS: DMA: HWI Create for INT62 !!!
     [m3vpss ]  5667: SYSTEM  : Initializing Links !!!
     [m3vpss ]  5667: SYSTEM  : FREE SPACE : System Heap      = 1719392 B, Mbx = 10240 msgs)
     [m3vpss ]  5667: SYSTEM  : FREE SPACE : SR0 Heap         = 14759040 B (14 MB)
     [m3vpss ]  5667: SYSTEM  : FREE SPACE : Frame Buffer     = 105790336 B (100 MB)
     [m3vpss ]  5668: SYSTEM  : FREE SPACE : Bitstream Buffer = 41942912 B (39 MB)
     [m3vpss ]  5668: SYSTEM  : FREE SPACE : Tiler Buffer     = 127 B (0 MB)  - TILER OFF
    Starting system message bus:  [m3vpss ] Received character 't'
     [m3vpss ]  5788: SYSTEM  : Initializing Links ... DONE !!!
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3video] Received character 't'
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [c6xdsp ] Received character 't'
    dbus.
    Starting telnet daemon.
    FAT: bogus number of reserved sectors
    VFS: Can't find a valid FAT filesystem on dev sbulla.
    DMA: Module install successful, device major num = 250
    DRV: Module install successful
    DRV: Module built on Jul  9 2013 11:41:22
    Starting syslogd/klogd: done

     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            

    Arago Project http://arago-project.org dm814x-evm ttyO0

    Arago 2010.11 dm814x-evm ttyO0

    dm814x-evm login: root (automatic login)
    HDMI W1 rev 4.0
    I2C No Ack

    mkdosfs 2.11 (12 Mar 2005)
    FAT: bogus number of reserved sectors
    VFS: Can't find a valid FAT filesystem on dev sbulla.
    root@dm814x-evm:~# g_file_storage gadget: No serial-number string provided!

     [host]  

     [host]  ORG 0xg_file_storage gadget: File-backed Storage Gadget, version: 1 September 2010
    46c00524: 0

    g_file_storage gadget: Number of LUNs=1
     [host]  NEW 0x4g_file_storage gadget-lun0: ro=0, nofua=0, file: /dev/sbulla
    6c00524: 2

     [host]  

     [host] Application Start Completed
    Simple mixer control 'PGA',0
      Capabilities: cvolume cswitch penum
      Capture channels: Front Left - Front RighCMEMK Error: ioctl: failed to allocate heap buffer of size 0x3e00000
    t
      Limits: CapCMEMK Error: get_phys: Unable to find phys addr for 0x00000000
    ture 0 - 119
    CMCMEMK Error: get_phys: get_user_pages() failed: -14
    EM Error: allocHCMEMK Error: GETPHYS: Failed to convert virtual 0x0 to physical.
    eap: ioctl CMEM_IOCALLOCHEAP failed: -1
    CMEM Error: getPhys: Failed to get physical address of 0

     [host] Vsys_allocBuf - addr = 0x0,size = 65011712

     [host] MCFW_IPCBITS:App_streamSysInit:virt addr of 0 cir buffer  is 0
    ##########pInfo->totalsize 30408704
    Encode Error: Memory manager init fail
    func:stream_init line:249

     [host] MCFW_IPCBITS:App_streamSysInit:stream_init failed

     [host] MCFW_IPCBITS:App_ipcBitsRecvStreamFxn:Entered...
     [host] MCFW_IPCFRAMES:App_ipcFramesSendRecvFxn:Entered...
     [host]  0: SYSTEM: System Common Init in progress !!!

     [host]  0: SYSTEM: IPC init in progress !!!

     [host]  12: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
      Front Left: Capture 80 [67%] [40.00dB] [on]
      Front Right: Capture 80 [67%] [40.00dB] [on]

     [host]  13: SYSTEM: Creating MsgQ [HOST_MSGQ] ...

     [host]  15: SYSTEM: Creating MsgQ [HOST_ACK_MSGQ] ...

     [host]  16: SYSTEM: Opening MsgQ [DSP_MSGQ] ...

     [host]  17: SYSTEM: Opening MsgQ [VIDEO-M3_MSGQ] ...

     [host]  17: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...

     [host]  18: SYSTEM: Notify register to [DSP] line 0, event 12 ...

     [host]  19: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
    FAT: bogus number of reserved sectors

     [host]  19: VFS: Can't find a valid FAT filesystem on dev sbulla.
    SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...

     [host]  19: SYSTEM: IPC init DONE !!!

     [host]  21: SYSTEM: Creating ListMP [HOST_IPC_OUT_28] in region 0 ...

     [host]  23: SYSTEM: Creating ListMP [HOST_IPC_IN_28] in region 0 ...

     [host]  24: SYSTEM: ListElem Shared Addr = 0x416cbd80

     [host]  51: SYSTEM: Creating ListMP [HOST_IPC_OUT_29] in region 0 ...

     [host]  53: SYSTEM: Creating ListMP [HOST_IPC_IN_29] in region 0 ...

     [host]  55: SYSTEM: ListElem Shared Addr = 0x416e5600

     [host]  57: SYSTEM: Creating ListMP [HOST_IPC_OUT_23] in region 0 ...

     [host]  59: SYSTEM: Creating ListMP [HOST_IPC_IN_23] in region 0 ...

     [host]  60: SYSTEM: ListElem Shared Addr = 0x416fee80

     [host]  61: SYSTEM: Creating ListMP [HOST_IPC_OUT_24] in region 0 ...

     [host]  63: SYSTEM: Creating ListMP [HOST_IPC_IN_24] in region 0 ...

     [host]  65: SYSTEM: ListElem Shared Addr = 0x4171e480

     [host]  66: SYSTEM: Creating ListMP [HOST_IPC_OUT_25] in region 0 ...

     [host]  68: SYSTEM: Creating ListMP [HOST_IPC_IN_25] in region 0 ...

     [host]  70: SYSTEM: ListElem Shared Addr = 0x4173da80

     [host]  70: SYSTEM: System Common Init Done !!!

     [host]
    ********** FULL FEATURE USECASE ********

     [host] ********* Entered Tri Streaming usecase - H264 1080p @60fps + H264 D1 @30fps + MJPEG 1080p @5fps ********


     [host]  71: MCFW  : CPU Revision [ES2.1] !!!

     [host]  71: MCFW  : Detected [UNKNOWN] Board !!!

     [host]  71: MCFW  : Base Board Revision [REV A] !!!
     [m3vpss ]  7584: CAMERA: Create in progress !!!
     [m3vpss ]  7584: CAMERA: VIP0 PortA camera mode is [ 8-bit, Non-mux Embedded Sync] !!!
     [m3vpss ]  7594: CAMERA: VIP 0: VID DEC 268436736 (0x36): bebebebe:bebebebe:0002, AUD_STATUS -1900729032
     [m3vpss ] Stream ID 0: chId = 0 VpsUtils_queCreate.
     [m3vpss ] Stream ID 1: chId = 0 VpsUtils_queCreate.
     [m3vpss ]  7846: CAMERA: Create Done !!!
     [m3vpss ] DCC server task running
     [m3vpss ]  7958: CAMERA: Detect video in progress !!!
     [m3vpss ]  7958: CAMERA: Detect video Done !!!
     [m3vpss ]  8054: DUP   : Create Done !!!
     [m3vpss ]  8054: NSF: Create in progress !!!
     [m3vpss ] NSF::HEAPID:0    USED:128
     [m3vpss ] NSF::HEAPID:1    USED:4928
     [m3vpss ]  8156: NSF: Create Done !!!
     [m3vpss ]  8162: DUP   : Create Done !!!
     [m3vpss ]  8169: DUP   : Create Done !!!
     [m3vpss ]  8171: MERGE   : Create Done !!!
     [m3vpss ] {SWOSD} edma3Handle->tccVal = 34
     [m3vpss ] {SWOSD} edma3Handle->chId   = 34
     [m3vpss ] {SWOSD} edma3Handle->tccVal = 35
     [m3vpss ] {SWOSD} edma3Handle->chId   = 35
     [m3vpss ] {SWOSD} edma3Handle->tccVal = 36
     [m3vpss ] {SWOSD} edma3Handle->chId   = 36
     [m3vpss ]  8140: SWOSD   : Create Done !!!
     [m3vpss ]  8230: SCLR: Create in progress !!!
     [m3vpss ]  8235: SCLR    : Loading Up-scaling Co-effs ...
     [m3vpss ]  8235: SCLR    : Co-effs Loading ... DONE !!!
     [m3video]  8242: IPC_IN_M3   : Create in progress !!!
     [m3video]  8243: SYSTEM: Opening ListMP [VPSS-M3_IPC_OUT_0] ...
     [m3vpss ] SCLR:HEAPID:0    USED:64
     [m3video]  8243: SYSTEM: Opening ListMP [VPSS-M3_IPC_IN_0] ...
     [m3vpss ] SCLR:HEAPID:1    USED:5952
     [m3video]  8244: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...
     [m3vpss ]  8236: SCLR: Create Done !!!
     [m3vpss ]  8151: FD   : Alg Create Done !!!
     [m3vpss ]  8151: FD   : Create Done !!!
     [m3vpss ]  8241: IPC_OUT_M3   : Create in progress !!!
     [m3vpss ]  8242: IPC_OUT_M3   : Create Done !!!
     [m3video]  8247: IPC_IN_M3   : Create Done !!!
     [m3video]  8247: ENCODE: Create in progress ... !!!
     [m3video]  8374: ENCODE: Creating CH0 of 1920 x 1080, pitch = (2048, 2048) [PROGRESSIVE] [NON-TILED  ], bitrate = 2000 Kbps ...
     [m3video] ENCLINK_H264:HEAPID:0    USED:13808
     [m3video]  8480: ENCODE: Creating CH1 of 720 x 480, pitch = (720, 720) [PROGRESSIVE] [NON-TILED  ], bitrate = 2000 Kbps ...
    queue id:0

     [host] IpcBitsInLink_tskMain:Entered
     [host]  1060: IPC_BITS_IN   : Create in progress !!!

     [host]  1060: IPC_BITS_IN   : ListMPOpen start !!!

     [host]  1060: SYSTEM: Opening ListMP [VIDEO-M3_IPC_OUT_28] ...

     [host]  1063: SYSTEM: Opening ListMP [VIDEO-M3_IPC_IN_28] ...

     [host]  1064: IPC_BITS_IN   : ListMPOpen done !!!

     [host]  1067: IPC_BITS_IN   : System_linkGetInfo done !!!

     [host]  1067: IPC_BITS_IN   : Create Done !!!

     [host] USECASE SETUP DONE
     [m3video] ENCLINK_H264:HEAPID:0    USED:11912
     [m3vpss ]  8602: DISPLAY: Create in progress !!!
     [m3video]  8586: ENCODE: Creating CH2 of 1920 x 1080, pitch = (2048, 2048) [PROGRESSIVE] [NON-TILED  ], bitrate = 100 Kbps ...
     [m3vpss ]  8603: DISPLAY: Create Done !!!
     [m3vpss ]  8604: DISPLAY: Create in progress !!!
     [m3vpss ]  8605: DISPLAY: Create Done !!!
     [m3video] ENCLINK_JPEG:HEAPID:0    USED:2064
     [m3vpss ]  8606: DISPLAY: Start in progress !!!
     [m3video]  8587: ENCODE: All CH Create ... DONE !!!
     [m3video] ENCLINK:HEAPID:0    USED:27944
     [m3video]  8590: ENCODE: Create ... DONE !!!
     [m3video]  7914: VSTAB   : Alg Create Done !!!
     [m3video]  7914: VSTAB   : Create Done !!!
     [m3video]  8592: IPC_BITS_OUT   : Create in progress !!!
     [m3video]  8594: IPC_BITS_OUT   : Create Done !!!
     [m3vpss ]  8672: DISPLAY: Start Done !!!
     [m3vpss ]  8672: DISPLAY: HDDAC(BP0) : 30 fps, Latency (Min / Max) = ( 255 / 0 ), Callback Interval (Min / Max) = ( 255 / 0 ) !!!
     [m3vpss ]  8672: DISPLAY: UNDERFLOW COUNT: HDMI(BP0) 1, HDDAC(BP0) 0, DVO2(BP1) 1, SDDAC(SEC1) 1
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : System Heap      = 1208944 B, Mbx = 10237 msgs)
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : SR0 Heap         = 14164352 B (13 MB)
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : Frame Buffer     = 2441856 B (2 MB)
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : Bitstream Buffer = 21615744 B (20 MB)
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : Tiler Buffer     = 123 B (0 MB)  - TILER OFF
     [m3vpss ]  8674: DISPLAY: Start in progress !!!
     [m3vpss ]  8720: DISPLAY: Start Done !!!
     [m3vpss ]  8720: DISPLAY: SDDAC(SEC1): 21 fps, Latency (Min / Max) = ( 255 / 0 ), Callback Interval (Min / Max) = ( 255 / 0 ) !!!
     [m3vpss ]  8633: CAMERA: Start in progress !!!
     [m3vpss ]  8634: CAMERA: Start Done !!!

     [host]
    Application Run Completed
     [m3vpss ]  8759: CAMERA: Fields = 2 (fps = 0), Total Resets = 0 (Avg 0 ms per reset)

     [host] MCFW_IPCBITS: Callback function:App_ipcBitsInCbFxn [m3video]  Channel:1 inputframerate:30 targetfps:60
     [m3video]  Channel:0 inputframerate:60 targetfps:60
     [m3video]  Channel:2 inputframerate:60 targetfps:5
    main 188
    ApproDrvInit: 3
    Creat queue id:131076
    queue id:131076
    main 192
    queue id:0
    ApproDrvInit: 7
    queue id:131076
    TimeOut occure in boot_proc.
    Program exit.
    TimeOut occure in boot_proc.
    Program exit.

    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~# ps
      PID USER       VSZ STAT COMMAND
        1 root      1708 S    init [5]   
        2 root         0 SW   [kthreadd]
        3 root         0 SW   [ksoftirqd/0]
        4 root         0 SW   [kworker/0:0]
        5 root         0 SW   [kworker/u:0]
        6 root         0 SW<  [khelper]
        7 root         0 SW   [irq/72-serial i]
        8 root         0 SW   [irq/73-serial i]
        9 root         0 SW   [irq/74-serial i]
       10 root         0 SW   [irq/44-serial i]
       11 root         0 SW   [irq/45-serial i]
       12 root         0 SW   [irq/46-serial i]
       13 root         0 SW<  [mboxd]
       14 root         0 SW   [sync_supers]
       15 root         0 SW   [bdi-default]
       16 root         0 SW<  [kblockd]
       17 root         0 SW<  [omap2_mcspi]
       18 root         0 SW   [kseriod]
       19 root         0 SW<  [kmmcd]
       20 root         0 SW<  [rpciod]
       21 root         0 SW   [kswapd0]
       22 root         0 SW   [kworker/0:1]
       23 root         0 SW<  [aio]
       24 root         0 SW<  [nfsiod]
       25 root         0 SW<  [crypto]
       32 root         0 SW   [mtdblock0]
       33 root         0 SW   [mtdblock1]
       34 root         0 SW   [mtdblock2]
       35 root         0 SW   [mtdblock3]
       36 root         0 SW   [mtdblock4]
       37 root         0 SW   [mtdblock5]
       38 root         0 SW   [mtdblock6]
       39 root         0 SW   [kworker/u:1]
       42 root         0 SW   [mmcqd/0]
       75 root      1956 S <  /sbin/udevd -d
     1062 root         0 SW   [flush-0:14]
     1073 root      1752 S    ./bin/remote_debug_client.out 0xbff00000
     1100 root     59740 S    ./system_server
     1204 messageb  3324 S    /usr/bin/dbus-daemon --system
     1217 root      2936 S    /usr/sbin/telnetd
     1231 root      3000 S    /sbin/syslogd -n -C64 -m 20
     1233 root      2936 S    /sbin/klogd -n
     1242 root      2516 S    login -- root      
     1270 root         0 SW<  [HDMI WQ]
     1278 root      3128 S    -sh
     1298 root         0 SW   [file-storage-ga]
     1348 root      6076 S    ./boa -c /etc
     1360 root      3128 R    ps
    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~#

    once i revert back all changes and do #make -s sysall  

    i'm getting boot_proc timed out problem

    i tried #rm ipnc_mcfw/build/* -rf

    #make -s clean

    but its not work out for me how to solve this timed out problem?

    Regards

    RAJ M

  • Hello,

    Thank U

    cmem initialization id is failed on vram as 128M below i posed my minicom log


     [host] Application Start Completed
    Simple mixer control 'PGA',0
      Capabilities: cvolume cswitch penum
      Capture channels: Front Left - Front RighCMEMK Error: ioctl: failed to allocate heap buffer of size 0x3e00000
    t
      Limits: CapCMEMK Error: get_phys: Unable to find phys addr for 0x00000000
    ture 0 - 119
    CMCMEMK Error: get_phys: get_user_pages() failed: -14
    EM Error: allocHCMEMK Error: GETPHYS: Failed to convert virtual 0x0 to physical.
    eap: ioctl CMEM_IOCALLOCHEAP failed: -1
    CMEM Error: getPhys: Failed to get physical address of 0

     [host] Vsys_allocBuf - addr = 0x0,size = 65011712

     [host] MCFW_IPCBITS:App_streamSysInit:virt addr of 0 cir buffer  is 0
    ##########pInfo->totalsize 30408704
    Encode Error: Memory manager init fail
    func:stream_init line:249

     [host] MCFW_IPCBITS:App_streamSysInit:stream_init failed

    my bootargs is

    setenv bootargs 'root=/dev/nfs console=ttyO0,115200n8 mem=128M rw vram=50M notifyk.vpssm3_sva=0xBFD00000 nfsroot=192.168.1.109:/home/sesha/Projects/save_image/Source/ipnc_rdk/target/filesys,nolock,tcp ip=192.168.1.168 eth=00:0C:0C:02:39:1B cmemk.phys_start=0x88000000 cmemk.phys_end=0x8A000000 cmemk.allowOverlap=1 earlyprintk';saveenv

    my minicom capture is

    1 0

    Loading from nand0, offset 0x280000
       Image Name:   Linux-2.6.37_DM8127_IPNC_3.00.00
       Created:      2013-07-08   6:12:05 UTC
       Image Type:   ARM Linux Kernel Image (uncompressed)
       Data Size:    2338828 Bytes = 2.2 MiB
       Load Address: 80008000
       Entry Point:  80008000
    ## Booting kernel from Legacy Image at 81000000 ...
       Image Name:   Linux-2.6.37_DM8127_IPNC_3.00.00
       Created:      2013-07-08   6:12:05 UTC
       Image Type:   ARM Linux Kernel Image (uncompressed)
       Data Size:    2338828 Bytes = 2.2 MiB
       Load Address: 80008000
       Entry Point:  80008000
       Verifying Checksum ... OK
       Loading Kernel Image ... OK
    OK

    Starting kernel ...

    Uncompressing Linux... done, booting the kernel.
    Linux version 2.6.37_DM8127_IPNC_3.00.00 (embdes@embdes) (gcc version 4.3.3 (Sourcery G++ Lite 2009q1-203) ) #1 Mon Jul 8 11:42:00 IST 2013
    CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c53c7f
    CPU: VIPT nonaliasing data cache, VIPT aliasing instruction cache
    Machine: ti8148ipnc
    vram size = 52428800 at 0x0
    bootconsole [earlycon0] enabled
    reserved size = 52428800 at 0x0
    FB: Reserving 52428800 bytes SDRAM for VRAM
    Memory policy: ECC disabled, Data cache writeback
    OMAP chip is TI8148 2.0
    SRAM: Mapped pa 0x402f1000 to va 0xfe400000 size: 0xf000
    Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 19712
    Kernel command line: root=/dev/nfs console=ttyO0,115200n8 mem=128M rw vram=50M notifyk.vpssm3_sva=0xBFD00000 nfsroot=192.168.1.109:/home/sesha/Projects/save_image/Source/ipnc_rdk/target/filesys,nolock,tcp ip=192.168.1.168 eth=00:0C:0C:02:39:1B cmemk.phys_start=0x88000000 cmemk.phys_end=0x8A000000 cmemk.allowOverlap=1 earlyprintk
    cpsw: kernel boot params Ethernet address: 00:0C:0C:02:39:1B
    PID hash table entries: 512 (order: -1, 2048 bytes)
    Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
    Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
    Memory: 78MB = 78MB total
    Memory: 73688k/73688k available, 57384k reserved, 0K highmem
    Virtual kernel memory layout:
        vector  : 0xffff0000 - 0xffff1000   (   4 kB)
        fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
        DMA     : 0xffc00000 - 0xffe00000   (   2 MB)
        vmalloc : 0xc8800000 - 0xf8000000   ( 760 MB)
        lowmem  : 0xc0000000 - 0xc8000000   ( 128 MB)
        pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
        modules : 0xbf000000 - 0xbfe00000   (  14 MB)
          .init : 0xc0008000 - 0xc0038000   ( 192 kB)
          .text : 0xc0038000 - 0xc046d000   (4308 kB)
          .data : 0xc046e000 - 0xc04ab400   ( 245 kB)
    SLUB: Genslabs=11, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    NR_IRQS:375
    IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
    Total of 128 interrupts on 1 active controller
    GPMC revision 6.0
    Trying to install interrupt handler for IRQ368
    Trying to install interrupt handler for IRQ369
    Trying to install interrupt handler for IRQ370
    Trying to install interrupt handler for IRQ371
    Trying to install interrupt handler for IRQ372
    Trying to install interrupt handler for IRQ373
    Trying to install interrupt handler for IRQ374
    Trying to install type control for IRQ375
    Trying to set irq flags for IRQ375
    OMAP clockevent source: GPTIMER1 at 20000000 Hz
    Console: colour dummy device 80x30
    Calibrating delay loop... 598.01 BogoMIPS (lpj=2990080)
    pid_max: default: 32768 minimum: 301
    Security Framework initialized
    Mount-cache hash table entries: 512
    CPU: Testing write buffer coherency: ok
    devtmpfs: initialized
    omap_voltage_early_init: voltage driver support not added
    regulator: core version 0.5
    regulator: dummy:
    NET: Registered protocol family 16
    omap_voltage_domain_lookup: Voltage driver init not yet happened.Faulting!
    omap_voltage_add_dev: VDD specified does not exist!
    OMAP GPIO hardware version 0.1
    OMAP GPIO hardware version 0.1
    OMAP GPIO hardware version 0.1
    OMAP GPIO hardware version 0.1
    omap_mux_init: Add partition: #1: core, flags: 4
    _omap_mux_init_gpio: Could not set gpio79
    _omap_mux_init_gpio: Could not set gpio80
    Debugfs: Only enabling/disabling deep sleep and wakeup timer is supported now
    registered ti81xx_vpss device
    registered ti81xx_vidout device
    registered ti81xx on-chip HDMI device
    registered ti81xx_fb device
    PWM0 init success.
    PWM1 init success.
    bio: create slab <bio-0> at 0
    SCSI subsystem initialized
    USBSS revision 4ea2080b
    registerd cppi-dma Intr @ IRQ 17
    Cppi41 Init Done
    omap_i2c omap_i2c.1: bus 1 rev4.0 at 100 kHz
    regulator: VRTC: 1800 mV
    regulator: VIO: 1500 mV
    regulator: VDD1: 600 <--> 1500 mV at 1100 mV
    regulator: VDD2: 600 <--> 1500 mV at 1350 mV
    regulator: VDDCTRL: 600 <--> 1400 mV at 1200 mV
    regulator: LDO1: 1100 <--> 3300 mV at 1800 mV
    regulator: LDO2: 1100 <--> 3300 mV at 1800 mV
    regulator: LDO3: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO4: 1100 <--> 3300 mV at 1800 mV
    regulator: LDO5: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO6: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO7: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO8: 1100 <--> 3300 mV at 1800 mV
    tps65911-rtc tps65911-rtc: rtc core: registered tps65911-rtc as rtc0
    tps65910 1-002d: No interrupt support, no core IRQ
    Advanced Linux Sound Architecture Driver Version 1.0.23.
    Switching to clocksource gp timer
    musb-hdrc: version 6.0, peripheral, debug=0
    musb-hdrc musb-hdrc.0: dma type: dma-cppi41
    MUSB controller-0 revision 4ea20800
    musb-hdrc musb-hdrc.0: USB Peripheral mode controller at c881e000 using DMA, IRQ 18
    NET: Registered protocol family 2
    IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
    TCP established hash table entries: 4096 (order: 3, 32768 bytes)
    TCP bind hash table entries: 4096 (order: 2, 16384 bytes)
    TCP: Hash tables configured (established 4096 bind 4096)
    TCP reno registered
    UDP hash table entries: 256 (order: 0, 4096 bytes)
    UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
    NET: Registered protocol family 1
    RPC: Registered udp transport module.
    RPC: Registered tcp transport module.
    RPC: Registered tcp NFSv4.1 backchannel transport module.
    NetWinder Floating Point Emulator V0.97 (double precision)
    PMU: registered new PMU device of type 0
    omap-iommu omap-iommu.0: ducati registered
    omap-iommu omap-iommu.1: sys registered
    JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
    msgmni has been set to 143
    io scheduler noop registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    CMEMK module: built on Jul  8 2013 at 11:35:04
      Reference Linux version 2.6.37
      File /home/embdes/Projects/embdes_ipnc/Source/ti_tools/linuxutils_3_22_00_02/packages/ti/sdo/linuxutils/cmem/src/module/cmemk.c
    allocated heap buffer 0xcd000000 of size 0x2000000
    cmemk initialized
    Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    omap_uart.0: ttyO0 at MMIO 0x48020000 (irq = 72) is a OMAP UART0
    console [ttyO0] enabled, bootconsole disabled
    console [ttyO0] enabled, bootconsole disabled
    omap_uart.1: ttyO1 at MMIO 0x48022000 (irq = 73) is a OMAP UART1
    omap_uart.2: ttyO2 at MMIO 0x48024000 (irq = 74) is a OMAP UART2
    omap_uart.3: ttyO3 at MMIO 0x481a6000 (irq = 44) is a OMAP UART3
    omap_uart.4: ttyO4 at MMIO 0x481a8000 (irq = 45) is a OMAP UART4
    omap_uart.5: ttyO5 at MMIO 0x481aa000 (irq = 46) is a OMAP UART5
    brd: module loaded
    loop: module loaded
    omap2-nand driver initializing
    NAND device: Manufacturer ID: 0x2c, Chip ID: 0xca (Micron )
    Creating 7 MTD partitions on "omap2-nand.0":
    0x000000000000-0x000000020000 : "U-Boot-min"
    0x000000020000-0x000000260000 : "U-Boot"
    0x000000260000-0x000000280000 : "U-Boot Env"
    0x000000280000-0x0000006c0000 : "Kernel"
    0x0000006c0000-0x00000c000000 : "File System"
    0x00000c000000-0x00000cc00000 : "Data"
    0x00000cc00000-0x000010000000 : "Reserved"
    davinci_mdio davinci_mdio.0: davinci mdio revision 1.6
    davinci_mdio davinci_mdio.0: detected phy mask fffffffe
    davinci_mdio.0: probed
    davinci_mdio davinci_mdio.0: phy[0]: device 0:00, driver unknown
    mice: PS/2 mouse device common for all mice
    i2c /dev entries driver
    Linux video capture interface: v2.00
    OMAP Watchdog Timer Rev 0x00: initial timeout 60 sec
    notify_init : notify drivercreated  for  remote proc id 2 at physical Address 0xbfd00000
    asoc: tlv320aic3x-hifi <-> davinci-mcasp.2 mapping ok
    asoc: HDMI-DAI-CODEC <-> hdmi-dai mapping ok
    ALSA device list:
      #0: TI8148 IPNC
    TCP cubic registered
    NET: Registered protocol family 17
    Registering the dns_resolver key type
    VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
    omap_voltage_late_init: Voltage driver support not added
    Power Management for TI81XX.
    Detected MACID=0:c:c:2:39:1b
    tps65911-rtc tps65911-rtc: setting system clock to 2013-05-18 14:00:05 UTC (1368885605)
    mmc0: new high speed SDHC card at address aaaa
    mmcblk0: mmc0:aaaa SU04G 3.69 GiB
     mmcblk0: p1

    CPSW phy found : id is : 0x4dd074
    PHY 0:01 not found
    IP-Config: Guessing netmask 255.255.255.0
    IP-Config: Complete:
         device=eth0, addr=192.168.1.168, mask=255.255.255.0, gw=255.255.255.255,
         host=192.168.1.168, domain=, nis-domain=(none),
         bootserver=255.255.255.255, rootserver=192.168.1.109, rootpath=
    PHY: 0:00 - Link is Up - 100/Full
    VFS: Mounted root (nfs filesystem) on device 0:14.
    devtmpfs: mounted
    Freeing init memory: 192K
    INIT: version 2.86 booting
    Error opening /dev/fb0: No such file or directory
    Please wait: booting...
    Starting udev
    udevd (75): /proc/75/oom_adj is deprecated, please use /proc/75/oom_score_adj instead.
    Root filesystem already rw, not remounting
    Caching udev devnodes
    Populating dev cache
    NOT configuring network interfaces: / is an NFS mount
    rm: cannot remove '/tmp': Device or resource busy
     inside finish.sh
    mount: wrong fs type, bad option, bad superblock on /dev/mtdblock5,
           missing codepage or helper program, or other error
           In some cases useful info is found in syslog - try
           dmesg | tail  or so

    mount: wrong fs type, bad option, bad superblock on /dev/mtdblock6,
           missing codepage or helper program, or other error
           In some cases useful info is found in syslog - try
           dmesg | tail  or so

    numid=1,iface=MIXER,name='PCM Playback Volume'
      ; type=INTEGER,access=rw---R--,values=2,min=0,max=127,step=0
      : values=127,127
      | dBscale-min=-63.50dB,step=0.50dB,mute=0
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    SysLink version : 2.10.06.28
    SysLink module created on Date:Jul  9 2013 Time:11:32:01
    Trace enabled
    Trace SetFailureReason enabled
    /dev/mem opened.
    data 2
                 BW Phy Addr : 0x48180d00 Data : 0x00030000
                 AW Phy Addr : 0x48180d00 Data : 0x00030002
    data 3
                 BW Phy Addr : 0x48180d10 Data : 0x00000007
                 AW Phy Addr : 0x48180d10 Data : 0x00000003
    data 2
                 BW Phy Addr : 0x48180700 Data : 0x00000001
                 AW Phy Addr : 0x48180700 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180720 Data : 0x00070000
                 AW Phy Addr : 0x48180720 Data : 0x00070002
    data 2
                 BW Phy Addr : 0x48180724 Data : 0x00030000
                 AW Phy Addr : 0x48180724 Data : 0x00000002
    data 60020
                 BW Phy Addr : 0x48140924 Data : 0x000e0020
                 AW Phy Addr : 0x48140924 Data : 0x000e0020
    data 60020
                 BW Phy Addr : 0x48140928 Data : 0x000c0040
                 AW Phy Addr : 0x48140928 Data : 0x000c0040
    data 60001
                 BW Phy Addr : 0x48140c18 Data : 0x000e0001
                 AW Phy Addr : 0x48140c18 Data : 0x000e0001
    data 60001
                 BW Phy Addr : 0x48140c1c Data : 0x000e0001
                 AW Phy Addr : 0x48140c1c Data : 0x000e0001
    data 2
                 BW Phy Addr : 0x48181564 Data : 0x00000002
                 AW Phy Addr : 0x48181564 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48181568 Data : 0x00030000
                 AW Phy Addr : 0x48181568 Data : 0x00000002
                 Phy Addr : 0x48181560 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48181560 Data : 0x00000002
                 AW Phy Addr : 0x48181560 Data : 0x00000002
    data 60002
                 BW Phy Addr : 0x48140aac Data : 0x00040002
                 AW Phy Addr : 0x48140aac Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140ab0 Data : 0x00060002
                 AW Phy Addr : 0x48140ab0 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140ab8 Data : 0x00040002
                 AW Phy Addr : 0x48140ab8 Data : 0x00040002
    data 60020
                 BW Phy Addr : 0x48140a58 Data : 0x000c0080
                 AW Phy Addr : 0x48140a58 Data : 0x000c0080
    data 60080
                 BW Phy Addr : 0x48140a60 Data : 0x000c0080
                 AW Phy Addr : 0x48140a60 Data : 0x000c0080
    data 60020
                 BW Phy Addr : 0x48140a64 Data : 0x000c0080
                 AW Phy Addr : 0x48140a64 Data : 0x000c0080
    data 60020
                 BW Phy Addr : 0x48140a68 Data : 0x000c0080
                 AW Phy Addr : 0x48140a68 Data : 0x000c0080
    data 60002
                 BW Phy Addr : 0x48140aa8 Data : 0x00040002
                 AW Phy Addr : 0x48140aa8 Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140aa4 Data : 0x00040002
                 AW Phy Addr : 0x48140aa4 Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140aa0 Data : 0x00040002
                 AW Phy Addr : 0x48140aa0 Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140a9c Data : 0x00060002
                 AW Phy Addr : 0x48140a9c Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a98 Data : 0x00060002
                 AW Phy Addr : 0x48140a98 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a94 Data : 0x00060002
                 AW Phy Addr : 0x48140a94 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a90 Data : 0x00060002
                 AW Phy Addr : 0x48140a90 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a8c Data : 0x00060002
                 AW Phy Addr : 0x48140a8c Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a6c Data : 0x000e0002
                 AW Phy Addr : 0x48140a6c Data : 0x000e0002
    data 60002
                 BW Phy Addr : 0x48140a70 Data : 0x000c0002
                 AW Phy Addr : 0x48140a70 Data : 0x000c0002
    data 60002
                 BW Phy Addr : 0x48140a74 Data : 0x000e0002
                 AW Phy Addr : 0x48140a74 Data : 0x000e0002
    data 60002
                 BW Phy Addr : 0x48140a78 Data : 0x000e0002
                 AW Phy Addr : 0x48140a78 Data : 0x000e0002
    data 0
                 BW Phy Addr : 0x411f4004 Data : 0x0000000e
                 AW Phy Addr : 0x411f4004 Data : 0x00000000
    data 0
                 BW Phy Addr : 0x411f2004 Data : 0x00000001
                 AW Phy Addr : 0x411f2004 Data : 0x00000000
    data 1
                 BW Phy Addr : 0x41140084 Data : 0x00000001
                 AW Phy Addr : 0x41140084 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x411a0084 Data : 0x00000001
                 AW Phy Addr : 0x411a0084 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x41160034 Data : 0x00000001
                 AW Phy Addr : 0x41160034 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x41121ff0 Data : 0x00000001
                 AW Phy Addr : 0x41121ff0 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x41131fe4 Data : 0x00000000
                 AW Phy Addr : 0x41131fe4 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x411e002c Data : 0x00000000
                 AW Phy Addr : 0x411e002c Data : 0x00000001
    data 1
                 BW Phy Addr : 0x481c52ec Data : 0x00000001
                 AW Phy Addr : 0x481c52ec Data : 0x00000001
    secss put in low power state
    data 1
                 BW Phy Addr : 0x48180900 Data : 0x00000001
                 AW Phy Addr : 0x48180900 Data : 0x00000001
    data 0
                 BW Phy Addr : 0x48180f00 Data : 0x00030000
                 AW Phy Addr : 0x48180f00 Data : 0x00030000
                 Phy Addr : 0x48180f10 Data : 0x00000000
    data 2
                 BW Phy Addr : 0x4818052c Data : 0x00000002
                 AW Phy Addr : 0x4818052c Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180508 Data : 0x00000302
                 AW Phy Addr : 0x48180508 Data : 0x00000302
    data 2
                 BW Phy Addr : 0x48180520 Data : 0x00000002
                 AW Phy Addr : 0x48180520 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180524 Data : 0x00000002
                 AW Phy Addr : 0x48180524 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180528 Data : 0x00000002
                 AW Phy Addr : 0x48180528 Data : 0x00000002
                 Phy Addr : 0x48180508 Data : 0x00000302
                 Phy Addr : 0x48180520 Data : 0x00000002
                 Phy Addr : 0x48180524 Data : 0x00000002
                 Phy Addr : 0x48180528 Data : 0x00000002
                 Phy Addr : 0x4c0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 Phy Addr : 0x4d0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4d0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4d0000e4 Data : 0x00170208
                 Phy Addr : 0x4c0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 Phy Addr : 0x4d0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4d0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4d0000e4 Data : 0x00170208
    DDR IOs RX is shutdown
    Creat queue id:0

     [host]  Setting L3 bandwidth regulator for [HDVICP0 ] to [press=[0,0] BW=900, WM Cycles=2500]
    queue id:0
    FileMngThread created
    Creat queue id:32769
    queue id:32769
    AlramThread created
    Share memory init success
    IPNC_3.00.00 (embdes@embdes) (gcc version 4.3.3 (Sourcery G++ Lite 2009

     [host]  Setting DMM priority for [ISS     ] to [0] ( 0x4e000634 = 0x00800000 )
    Creat queue id:65538
    queue id:65538
    Creat queue id:98307
    queue id:98307
    queue id:32769

     [host]  Setting DMM priority for [HDVICP0 ] to [1] ( 0x4e000634 = 0x00000009 )

     [host] Attached to slave procId 2.
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040


     [host] Attached to slave procId 1.
     [host] Attached to slave procId 0.

     [host] Loaded file ./firmware/ipnc_rdk_fw_m3vpss.xem3 on slave procId 2.

     [host] Loaded file ./firmware/ipnc_rdk_fw_c6xdsp.xe674 on slave procId 0.


     [host] Started slave procId 0.
     [host] Started slave procId 2.

     [host] After Ipc_loadcallback status [0x00000000]

     [c6xdsp ] ***** SYSTEM  : Frequency <ORG> - 500000000, <NEW> - 500000000
     [c6xdsp ]  
     [c6xdsp ]  *** UTILS: CPU KHz = 500000 Khz ***
     [c6xdsp ]  
     [c6xdsp ]  1: SYSTEM  : System Common Init in progress !!!
     [c6xdsp ]  1: SYSTEM: IPC init in progress !!!
     [host] After Ipc_loadcallback status [0x00000000]
     [c6xdsp ]  1: SYSTEM: Attaching to [HOST] ...
     [m3vpss ] ***** SYSTEM  : Frequency <ORG> - 200000000, <NEW> - 200000000
     [m3vpss ] notify_attach  rtnVal  0
     [m3vpss ] initProxyServer  rtnVal  0
     [m3vpss ]  
     [m3vpss ]  *** UTILS: CPU KHz = 400000 Khz ***
     [m3vpss ]  
     [m3vpss ]  90: SYSTEM  : System Common Init in progress !!!
     [m3vpss ]  91: SYSTEM: IPC init in progress !!!
     [m3vpss ]  91: SYSTEM: Attaching to [HOST] ...

     [host] Loaded file ./firmware/ipnc_rdk_fw_m3video.xem3 on slave procId 1.

     [host] Started slave procId 1.

     [host] After Ipc_loadcallback status [0x00000000]
     [c6xdsp ]  1001: SYSTEM: Attaching to [HOST] ...
     [m3video] ***** SYSTEM  : Frequency <ORG> - 200000000, <NEW> - 200000000
     [c6xdsp ]  1061: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
     [m3video]  
     [c6xdsp ]  1061: SYSTEM: Attaching to [VIDEO-M3] ...
     [m3video]  *** UTILS: CPU KHz = 400000 Khz ***
     [m3video]  
     [m3video]  678: SYSTEM  : System Common Init in progress !!!
     [m3video]  678: SYSTEM: IPC init in progress !!!
     [m3video]  678: SYSTEM: Attaching to [HOST] ...

     [host] After Ipc_startcallback status [0x097d2000]
     [m3vpss ]  1090: SYSTEM: Attaching to [HOST] ...

     [host] After Ipc_startcallback status [0x097d2000]
     [m3vpss ]  1120: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
     [m3vpss ]  1120: SYSTEM: Attaching to [DSP] ...
     [m3video]  1678: SYSTEM: Attaching to [HOST] ...

     [host] After Ipc_startcallback status [0x097d2000]
     [m3video]  1691: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
     [m3video]  1691: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  2060: SYSTEM: Attaching to [VIDEO-M3] ...
     [m3vpss ]  2119: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  2755: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
     [m3video]  2692: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  2755: SYSTEM: Attaching to [VPSS-M3] ...
     [m3video]  2692: SYSTEM: Attaching to [DSP] ... SUCCESS !!!
     [m3video]  2692: SYSTEM: Attaching to [VPSS-M3] ...
     [m3vpss ]  3119: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  3754: SYSTEM: Attaching to [VPSS-M3] ...
     [m3video]  3692: SYSTEM: Attaching to [VPSS-M3] ...
     [c6xdsp ]  4183: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
     [m3vpss ]  4119: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  4183: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3vpss ]  4120: SYSTEM: Attaching to [DSP] ... SUCCESS !!!
     [m3vpss ]  4120: SYSTEM: Attaching to [VIDEO-M3] ...
     [m3video]  4692: SYSTEM: Attaching to [VPSS-M3] ...
     [c6xdsp ]  5183: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3video]  5120: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
     [m3vpss ]  5119: SYSTEM: Attaching to [VIDEO-M3] ...
     [c6xdsp ]  5183: SYSTEM: Creating MsgQ [DSP_MSGQ] ...
     [m3video]  5120: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3vpss ]  5120: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
     [c6xdsp ]  5183: SYSTEM: Creating MsgQ [DSP_ACK_MSGQ] ...
     [m3video]  5121: SYSTEM: Creating MsgQ [VIDEO-M3_MSGQ] ...
     [m3vpss ]  5120: SYSTEM: Creating MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [c6xdsp ]  5184: SYSTEM: Notify register to [HOST] line 0, event 12 ...
     [m3video]  5121: SYSTEM: Creating MsgQ [VIDEO-M3_ACK_MSGQ] ...
     [m3vpss ]  5121: SYSTEM: Creating MsgQ [VPSS-M3_MSGQ] ...
     [c6xdsp ]  5184: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
     [m3vpss ]  5121: SYSTEM: Creating MsgQ [VPSS-M3_ACK_MSGQ] ...
     [c6xdsp ]  5184: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
     [c6xdsp ]  5184: SYSTEM: IPC init DONE !!!
     [m3vpss ]  5123: SYSTEM: Notify register to [HOST] line 0, event 12 ...
     [c6xdsp ]  5187: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
     [m3video]  5123: SYSTEM: Notify register to [HOST] line 0, event 12 ...
     [m3vpss ]  5123: SYSTEM: Notify register to [DSP] line 0, event 12 ...
     [c6xdsp ]  5188: MEM: Shared Region 1: Base = 0x8a000000, Length = 0x02800000 (40 MB)
     [m3video]  5123: SYSTEM: Notify register to [DSP] line 0, event 12 ...
     [m3vpss ]  5124: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
     [c6xdsp ]  5188: SYSTEM  : System Common Init Done !!!
     [m3video]  5124: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
     [m3vpss ]  5124: SYSTEM: IPC init DONE !!!
     [m3video]  5124: SYSTEM: IPC init DONE !!!
     [m3vpss ]  5133: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
     [m3vpss ]  5133: MEM: Shared Region 1: Base = 0x8a000000, Length = 0x02800000 (40 MB)
     [m3video]  5134: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
     [m3vpss ] Received character 's'
     [m3video]  5134: MEM: Shared Region 1: Base = 0x8a000000, Length = 0x02800000 (40 MB)
     [m3vpss ]  5136: SYSTEM  : System Common Init Done !!!
     [m3video]  5136: SYSTEM  : System Common Init Done !!!
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3video] Received character 's'
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [c6xdsp ] Received character 's'
    queue id:65538

    CPU is TI812x
    Error: SemWait: Invalid Semaphore handler
    Error: SemRelease: Invalid Semaphore handler

    *****************************************************************

        IPNC BUILD VERSION: DM8127 IPNC RDK VERSION 03.00.00.05    

    *****************************************************************

    ./bin/ipnc_rdk_mcfw.out   TRISTREAM TRIPLE_H264 TI2A AEWB 1080P_D1 H264 HIGH_SPEED1 H264 HIGH_SPEED2 MJPEG 80 &
    Error: SemWait: Invalid Semaphore handler
    Error: SemRelease: Invalid Semaphore handler
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3vpss ]  5335: SYSTEM  : System VPSS Init in progress !!!
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3vpss ] === I2C0/2 Clk is active ===
     [m3vpss ]  5354: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_0] in region 0 ...
     [m3vpss ]  5354: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_0] in region 0 ...
     [m3vpss ]  5355: SYSTEM: ListElem Shared Addr = 0xbe98b280
     [m3vpss ]  5357: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_1] in region 0 ...
     [m3vpss ]  5357: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_1] in region 0 ...
     [m3vpss ]  5358: SYSTEM: ListElem Shared Addr = 0xbe98e380
     [m3vpss ]  5372: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_23] in region 0 ...
     [m3vpss ]  5372: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_23] in region 0 ...
     [m3vpss ]  5373: SYSTEM: ListElem Shared Addr = 0xbe991480
     [m3vpss ]  5375: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_24] in region 0 ...
     [m3vpss ]  5376: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_24] in region 0 ...
     [m3vpss ]  5376: SYSTEM: ListElem Shared Addr = 0xbe9b0a80
     [c6xdsp ] Remote Debug Shared eab9c80
     [m3vpss ]  Iss_init called !!!!!!
     [m3video]  5454: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_29] in region 0 ...
     [m3vpss ]  CPIS_init DONE !!!!!!
     [m3video]  5455: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_29] in region 0 ...
     [m3video]  5455: SYSTEM: ListElem Shared Addr = 0xbead3500
     [m3vpss ] initPrms.isI2cInitReq = 1
     [m3video]  5457: HDVICP: Doing PRCM for IVAHD[0] ...
     [m3video]  5457: HDVICP: PRCM for IVAHD[ sbulla: unknown partition table
    0] ... DONE.
     [m3vpss ] initPrms.isI2cInitReq = 1
     [m3video]  5458: SYSTEM  : Initializing Links !!!
    INIT: Entering runlevel: 5
     [m3video]  5458: SYSTEM  : FREE SPACE : System Heap      = 6282384 B, Mbx = 10240 msgs)
     inside autorun
     [m3video]  5513: SYSTEM  : Initializing Links ... DONE !!!
     [m3vpss ]  Vps_deviceInit Daughter card not detected/connected!
     [m3vpss ]                     
     [m3vpss ]  5639: SYSTEM  : Devi sbulla: unknown partition table
    ce Init in progress DONE !!!
     [m3vpss ]  5667: SYSTEM  : System VPSS Init Done !!!
     [m3vpss ]  5667: UTILS: DMA: HWI Create for INT62 !!!
     [m3vpss ]  5667: SYSTEM  : Initializing Links !!!
     [m3vpss ]  5667: SYSTEM  : FREE SPACE : System Heap      = 1719392 B, Mbx = 10240 msgs)
     [m3vpss ]  5667: SYSTEM  : FREE SPACE : SR0 Heap         = 14759040 B (14 MB)
     [m3vpss ]  5667: SYSTEM  : FREE SPACE : Frame Buffer     = 105790336 B (100 MB)
     [m3vpss ]  5668: SYSTEM  : FREE SPACE : Bitstream Buffer = 41942912 B (39 MB)
     [m3vpss ]  5668: SYSTEM  : FREE SPACE : Tiler Buffer     = 127 B (0 MB)  - TILER OFF
    Starting system message bus:  [m3vpss ] Received character 't'
     [m3vpss ]  5788: SYSTEM  : Initializing Links ... DONE !!!
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3video] Received character 't'
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [c6xdsp ] Received character 't'
    dbus.
    Starting telnet daemon.
    FAT: bogus number of reserved sectors
    VFS: Can't find a valid FAT filesystem on dev sbulla.
    DMA: Module install successful, device major num = 250
    DRV: Module install successful
    DRV: Module built on Jul  9 2013 11:41:22
    Starting syslogd/klogd: done

     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            

    Arago Project http://arago-project.org dm814x-evm ttyO0

    Arago 2010.11 dm814x-evm ttyO0

    dm814x-evm login: root (automatic login)
    HDMI W1 rev 4.0
    I2C No Ack

    mkdosfs 2.11 (12 Mar 2005)
    FAT: bogus number of reserved sectors
    VFS: Can't find a valid FAT filesystem on dev sbulla.
    root@dm814x-evm:~# g_file_storage gadget: No serial-number string provided!

     [host]  

     [host]  ORG 0xg_file_storage gadget: File-backed Storage Gadget, version: 1 September 2010
    46c00524: 0

    g_file_storage gadget: Number of LUNs=1
     [host]  NEW 0x4g_file_storage gadget-lun0: ro=0, nofua=0, file: /dev/sbulla
    6c00524: 2

     [host]  

     [host] Application Start Completed
    Simple mixer control 'PGA',0
      Capabilities: cvolume cswitch penum
      Capture channels: Front Left - Front RighCMEMK Error: ioctl: failed to allocate heap buffer of size 0x3e00000
    t
      Limits: CapCMEMK Error: get_phys: Unable to find phys addr for 0x00000000
    ture 0 - 119
    CMCMEMK Error: get_phys: get_user_pages() failed: -14
    EM Error: allocHCMEMK Error: GETPHYS: Failed to convert virtual 0x0 to physical.
    eap: ioctl CMEM_IOCALLOCHEAP failed: -1
    CMEM Error: getPhys: Failed to get physical address of 0

     [host] Vsys_allocBuf - addr = 0x0,size = 65011712

     [host] MCFW_IPCBITS:App_streamSysInit:virt addr of 0 cir buffer  is 0
    ##########pInfo->totalsize 30408704
    Encode Error: Memory manager init fail
    func:stream_init line:249

     [host] MCFW_IPCBITS:App_streamSysInit:stream_init failed

     [host] MCFW_IPCBITS:App_ipcBitsRecvStreamFxn:Entered...
     [host] MCFW_IPCFRAMES:App_ipcFramesSendRecvFxn:Entered...
     [host]  0: SYSTEM: System Common Init in progress !!!

     [host]  0: SYSTEM: IPC init in progress !!!

     [host]  12: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
      Front Left: Capture 80 [67%] [40.00dB] [on]
      Front Right: Capture 80 [67%] [40.00dB] [on]

     [host]  13: SYSTEM: Creating MsgQ [HOST_MSGQ] ...

     [host]  15: SYSTEM: Creating MsgQ [HOST_ACK_MSGQ] ...

     [host]  16: SYSTEM: Opening MsgQ [DSP_MSGQ] ...

     [host]  17: SYSTEM: Opening MsgQ [VIDEO-M3_MSGQ] ...

     [host]  17: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...

     [host]  18: SYSTEM: Notify register to [DSP] line 0, event 12 ...

     [host]  19: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
    FAT: bogus number of reserved sectors

     [host]  19: VFS: Can't find a valid FAT filesystem on dev sbulla.
    SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...

     [host]  19: SYSTEM: IPC init DONE !!!

     [host]  21: SYSTEM: Creating ListMP [HOST_IPC_OUT_28] in region 0 ...

     [host]  23: SYSTEM: Creating ListMP [HOST_IPC_IN_28] in region 0 ...

     [host]  24: SYSTEM: ListElem Shared Addr = 0x416cbd80

     [host]  51: SYSTEM: Creating ListMP [HOST_IPC_OUT_29] in region 0 ...

     [host]  53: SYSTEM: Creating ListMP [HOST_IPC_IN_29] in region 0 ...

     [host]  55: SYSTEM: ListElem Shared Addr = 0x416e5600

     [host]  57: SYSTEM: Creating ListMP [HOST_IPC_OUT_23] in region 0 ...

     [host]  59: SYSTEM: Creating ListMP [HOST_IPC_IN_23] in region 0 ...

     [host]  60: SYSTEM: ListElem Shared Addr = 0x416fee80

     [host]  61: SYSTEM: Creating ListMP [HOST_IPC_OUT_24] in region 0 ...

     [host]  63: SYSTEM: Creating ListMP [HOST_IPC_IN_24] in region 0 ...

     [host]  65: SYSTEM: ListElem Shared Addr = 0x4171e480

     [host]  66: SYSTEM: Creating ListMP [HOST_IPC_OUT_25] in region 0 ...

     [host]  68: SYSTEM: Creating ListMP [HOST_IPC_IN_25] in region 0 ...

     [host]  70: SYSTEM: ListElem Shared Addr = 0x4173da80

     [host]  70: SYSTEM: System Common Init Done !!!

     [host]
    ********** FULL FEATURE USECASE ********

     [host] ********* Entered Tri Streaming usecase - H264 1080p @60fps + H264 D1 @30fps + MJPEG 1080p @5fps ********


     [host]  71: MCFW  : CPU Revision [ES2.1] !!!

     [host]  71: MCFW  : Detected [UNKNOWN] Board !!!

     [host]  71: MCFW  : Base Board Revision [REV A] !!!
     [m3vpss ]  7584: CAMERA: Create in progress !!!
     [m3vpss ]  7584: CAMERA: VIP0 PortA camera mode is [ 8-bit, Non-mux Embedded Sync] !!!
     [m3vpss ]  7594: CAMERA: VIP 0: VID DEC 268436736 (0x36): bebebebe:bebebebe:0002, AUD_STATUS -1900729032
     [m3vpss ] Stream ID 0: chId = 0 VpsUtils_queCreate.
     [m3vpss ] Stream ID 1: chId = 0 VpsUtils_queCreate.
     [m3vpss ]  7846: CAMERA: Create Done !!!
     [m3vpss ] DCC server task running
     [m3vpss ]  7958: CAMERA: Detect video in progress !!!
     [m3vpss ]  7958: CAMERA: Detect video Done !!!
     [m3vpss ]  8054: DUP   : Create Done !!!
     [m3vpss ]  8054: NSF: Create in progress !!!
     [m3vpss ] NSF::HEAPID:0    USED:128
     [m3vpss ] NSF::HEAPID:1    USED:4928
     [m3vpss ]  8156: NSF: Create Done !!!
     [m3vpss ]  8162: DUP   : Create Done !!!
     [m3vpss ]  8169: DUP   : Create Done !!!
     [m3vpss ]  8171: MERGE   : Create Done !!!
     [m3vpss ] {SWOSD} edma3Handle->tccVal = 34
     [m3vpss ] {SWOSD} edma3Handle->chId   = 34
     [m3vpss ] {SWOSD} edma3Handle->tccVal = 35
     [m3vpss ] {SWOSD} edma3Handle->chId   = 35
     [m3vpss ] {SWOSD} edma3Handle->tccVal = 36
     [m3vpss ] {SWOSD} edma3Handle->chId   = 36
     [m3vpss ]  8140: SWOSD   : Create Done !!!
     [m3vpss ]  8230: SCLR: Create in progress !!!
     [m3vpss ]  8235: SCLR    : Loading Up-scaling Co-effs ...
     [m3vpss ]  8235: SCLR    : Co-effs Loading ... DONE !!!
     [m3video]  8242: IPC_IN_M3   : Create in progress !!!
     [m3video]  8243: SYSTEM: Opening ListMP [VPSS-M3_IPC_OUT_0] ...
     [m3vpss ] SCLR:HEAPID:0    USED:64
     [m3video]  8243: SYSTEM: Opening ListMP [VPSS-M3_IPC_IN_0] ...
     [m3vpss ] SCLR:HEAPID:1    USED:5952
     [m3video]  8244: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...
     [m3vpss ]  8236: SCLR: Create Done !!!
     [m3vpss ]  8151: FD   : Alg Create Done !!!
     [m3vpss ]  8151: FD   : Create Done !!!
     [m3vpss ]  8241: IPC_OUT_M3   : Create in progress !!!
     [m3vpss ]  8242: IPC_OUT_M3   : Create Done !!!
     [m3video]  8247: IPC_IN_M3   : Create Done !!!
     [m3video]  8247: ENCODE: Create in progress ... !!!
     [m3video]  8374: ENCODE: Creating CH0 of 1920 x 1080, pitch = (2048, 2048) [PROGRESSIVE] [NON-TILED  ], bitrate = 2000 Kbps ...
     [m3video] ENCLINK_H264:HEAPID:0    USED:13808
     [m3video]  8480: ENCODE: Creating CH1 of 720 x 480, pitch = (720, 720) [PROGRESSIVE] [NON-TILED  ], bitrate = 2000 Kbps ...
    queue id:0

     [host] IpcBitsInLink_tskMain:Entered
     [host]  1060: IPC_BITS_IN   : Create in progress !!!

     [host]  1060: IPC_BITS_IN   : ListMPOpen start !!!

     [host]  1060: SYSTEM: Opening ListMP [VIDEO-M3_IPC_OUT_28] ...

     [host]  1063: SYSTEM: Opening ListMP [VIDEO-M3_IPC_IN_28] ...

     [host]  1064: IPC_BITS_IN   : ListMPOpen done !!!

     [host]  1067: IPC_BITS_IN   : System_linkGetInfo done !!!

     [host]  1067: IPC_BITS_IN   : Create Done !!!

     [host] USECASE SETUP DONE
     [m3video] ENCLINK_H264:HEAPID:0    USED:11912
     [m3vpss ]  8602: DISPLAY: Create in progress !!!
     [m3video]  8586: ENCODE: Creating CH2 of 1920 x 1080, pitch = (2048, 2048) [PROGRESSIVE] [NON-TILED  ], bitrate = 100 Kbps ...
     [m3vpss ]  8603: DISPLAY: Create Done !!!
     [m3vpss ]  8604: DISPLAY: Create in progress !!!
     [m3vpss ]  8605: DISPLAY: Create Done !!!
     [m3video] ENCLINK_JPEG:HEAPID:0    USED:2064
     [m3vpss ]  8606: DISPLAY: Start in progress !!!
     [m3video]  8587: ENCODE: All CH Create ... DONE !!!
     [m3video] ENCLINK:HEAPID:0    USED:27944
     [m3video]  8590: ENCODE: Create ... DONE !!!
     [m3video]  7914: VSTAB   : Alg Create Done !!!
     [m3video]  7914: VSTAB   : Create Done !!!
     [m3video]  8592: IPC_BITS_OUT   : Create in progress !!!
     [m3video]  8594: IPC_BITS_OUT   : Create Done !!!
     [m3vpss ]  8672: DISPLAY: Start Done !!!
     [m3vpss ]  8672: DISPLAY: HDDAC(BP0) : 30 fps, Latency (Min / Max) = ( 255 / 0 ), Callback Interval (Min / Max) = ( 255 / 0 ) !!!
     [m3vpss ]  8672: DISPLAY: UNDERFLOW COUNT: HDMI(BP0) 1, HDDAC(BP0) 0, DVO2(BP1) 1, SDDAC(SEC1) 1
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : System Heap      = 1208944 B, Mbx = 10237 msgs)
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : SR0 Heap         = 14164352 B (13 MB)
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : Frame Buffer     = 2441856 B (2 MB)
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : Bitstream Buffer = 21615744 B (20 MB)
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : Tiler Buffer     = 123 B (0 MB)  - TILER OFF
     [m3vpss ]  8674: DISPLAY: Start in progress !!!
     [m3vpss ]  8720: DISPLAY: Start Done !!!
     [m3vpss ]  8720: DISPLAY: SDDAC(SEC1): 21 fps, Latency (Min / Max) = ( 255 / 0 ), Callback Interval (Min / Max) = ( 255 / 0 ) !!!
     [m3vpss ]  8633: CAMERA: Start in progress !!!
     [m3vpss ]  8634: CAMERA: Start Done !!!

     [host]
    Application Run Completed
     [m3vpss ]  8759: CAMERA: Fields = 2 (fps = 0), Total Resets = 0 (Avg 0 ms per reset)

     [host] MCFW_IPCBITS: Callback function:App_ipcBitsInCbFxn [m3video]  Channel:1 inputframerate:30 targetfps:60
     [m3video]  Channel:0 inputframerate:60 targetfps:60
     [m3video]  Channel:2 inputframerate:60 targetfps:5
    main 188
    ApproDrvInit: 3
    Creat queue id:131076
    queue id:131076
    main 192
    queue id:0
    ApproDrvInit: 7
    queue id:131076
    TimeOut occure in boot_proc.
    Program exit.
    TimeOut occure in boot_proc.
    Program exit.

    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~# ps
      PID USER       VSZ STAT COMMAND
        1 root      1708 S    init [5]   
        2 root         0 SW   [kthreadd]
        3 root         0 SW   [ksoftirqd/0]
        4 root         0 SW   [kworker/0:0]
        5 root         0 SW   [kworker/u:0]
        6 root         0 SW<  [khelper]
        7 root         0 SW   [irq/72-serial i]
        8 root         0 SW   [irq/73-serial i]
        9 root         0 SW   [irq/74-serial i]
       10 root         0 SW   [irq/44-serial i]
       11 root         0 SW   [irq/45-serial i]
       12 root         0 SW   [irq/46-serial i]
       13 root         0 SW<  [mboxd]
       14 root         0 SW   [sync_supers]
       15 root         0 SW   [bdi-default]
       16 root         0 SW<  [kblockd]
       17 root         0 SW<  [omap2_mcspi]
       18 root         0 SW   [kseriod]
       19 root         0 SW<  [kmmcd]
       20 root         0 SW<  [rpciod]
       21 root         0 SW   [kswapd0]
       22 root         0 SW   [kworker/0:1]
       23 root         0 SW<  [aio]
       24 root         0 SW<  [nfsiod]
       25 root         0 SW<  [crypto]
       32 root         0 SW   [mtdblock0]
       33 root         0 SW   [mtdblock1]
       34 root         0 SW   [mtdblock2]
       35 root         0 SW   [mtdblock3]
       36 root         0 SW   [mtdblock4]
       37 root         0 SW   [mtdblock5]
       38 root         0 SW   [mtdblock6]
       39 root         0 SW   [kworker/u:1]
       42 root         0 SW   [mmcqd/0]
       75 root      1956 S <  /sbin/udevd -d
     1062 root         0 SW   [flush-0:14]
     1073 root      1752 S    ./bin/remote_debug_client.out 0xbff00000
     1100 root     59740 S    ./system_server
     1204 messageb  3324 S    /usr/bin/dbus-daemon --system
     1217 root      2936 S    /usr/sbin/telnetd
     1231 root      3000 S    /sbin/syslogd -n -C64 -m 20
     1233 root      2936 S    /sbin/klogd -n
     1242 root      2516 S    login -- root      
     1270 root         0 SW<  [HDMI WQ]
     1278 root      3128 S    -sh
     1298 root         0 SW   [file-storage-ga]
     1348 root      6076 S    ./boa -c /etc
     1360 root      3128 R    ps
    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~#

    once i revert back all changes to vram as 4MB, and do #make -s sysall but i'm getting boot_proc timed out problem

    vram 50M also boot_proc timed out occur.

    i tried #rm -rf ipnc_mcfw/build/*

    #make -s clean

    #make

    its not workout for me how to solve this problem?

    Regards

     RAJ M

  • hello,

    Thank U

    my minicom log i posted blow

    bootargs

    setenv bootargs 'root=/dev/nfs console=ttyO0,115200n8 mem=128M rw vram=50M notifyk.vpssm3_sva=0xBFD00000 nfsroot=192.168.1.109:/home/sesha/Projects/save_image/Source/ipnc_rdk/target/filesys,nolock,tcp ip=192.168.1.168 eth=00:0C:0C:02:39:1B cmemk.phys_start=0x88000000 cmemk.phys_end=0x8A000000 cmemk.allowOverlap=1 earlyprintk';saveenv



    Loading from nand0, offset 0x280000
       Image Name:   Linux-2.6.37_DM8127_IPNC_3.00.00
       Created:      2013-07-08   6:12:05 UTC
       Image Type:   ARM Linux Kernel Image (uncompressed)
       Data Size:    2338828 Bytes = 2.2 MiB
       Load Address: 80008000
       Entry Point:  80008000
    ## Booting kernel from Legacy Image at 81000000 ...
       Image Name:   Linux-2.6.37_DM8127_IPNC_3.00.00
       Created:      2013-07-08   6:12:05 UTC
       Image Type:   ARM Linux Kernel Image (uncompressed)
       Data Size:    2338828 Bytes = 2.2 MiB
       Load Address: 80008000
       Entry Point:  80008000
       Verifying Checksum ... OK
       Loading Kernel Image ... OK
    OK

    Starting kernel ...

    Uncompressing Linux... done, booting the kernel.
    Linux version 2.6.37_DM8127_IPNC_3.00.00 (embdes@embdes) (gcc version 4.3.3 (Sourcery G++ Lite 2009q1-203) ) #1 Mon Jul 8 11:42:00 IST 2013
    CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c53c7f
    CPU: VIPT nonaliasing data cache, VIPT aliasing instruction cache
    Machine: ti8148ipnc
    vram size = 52428800 at 0x0
    bootconsole [earlycon0] enabled
    reserved size = 52428800 at 0x0
    FB: Reserving 52428800 bytes SDRAM for VRAM
    Memory policy: ECC disabled, Data cache writeback
    OMAP chip is TI8148 2.0
    SRAM: Mapped pa 0x402f1000 to va 0xfe400000 size: 0xf000
    Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 19712
    Kernel command line: root=/dev/nfs console=ttyO0,115200n8 mem=128M rw vram=50M notifyk.vpssm3_sva=0xBFD00000 nfsroot=192.168.1.109:/home/sesha/Projects/save_image/Source/ipnc_rdk/target/filesys,nolock,tcp ip=192.168.1.168 eth=00:0C:0C:02:39:1B cmemk.phys_start=0x88000000 cmemk.phys_end=0x8A000000 cmemk.allowOverlap=1 earlyprintk
    cpsw: kernel boot params Ethernet address: 00:0C:0C:02:39:1B
    PID hash table entries: 512 (order: -1, 2048 bytes)
    Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
    Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
    Memory: 78MB = 78MB total
    Memory: 73688k/73688k available, 57384k reserved, 0K highmem
    Virtual kernel memory layout:
        vector  : 0xffff0000 - 0xffff1000   (   4 kB)
        fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
        DMA     : 0xffc00000 - 0xffe00000   (   2 MB)
        vmalloc : 0xc8800000 - 0xf8000000   ( 760 MB)
        lowmem  : 0xc0000000 - 0xc8000000   ( 128 MB)
        pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
        modules : 0xbf000000 - 0xbfe00000   (  14 MB)
          .init : 0xc0008000 - 0xc0038000   ( 192 kB)
          .text : 0xc0038000 - 0xc046d000   (4308 kB)
          .data : 0xc046e000 - 0xc04ab400   ( 245 kB)
    SLUB: Genslabs=11, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    NR_IRQS:375
    IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
    Total of 128 interrupts on 1 active controller
    GPMC revision 6.0
    Trying to install interrupt handler for IRQ368
    Trying to install interrupt handler for IRQ369
    Trying to install interrupt handler for IRQ370
    Trying to install interrupt handler for IRQ371
    Trying to install interrupt handler for IRQ372
    Trying to install interrupt handler for IRQ373
    Trying to install interrupt handler for IRQ374
    Trying to install type control for IRQ375
    Trying to set irq flags for IRQ375
    OMAP clockevent source: GPTIMER1 at 20000000 Hz
    Console: colour dummy device 80x30
    Calibrating delay loop... 598.01 BogoMIPS (lpj=2990080)
    pid_max: default: 32768 minimum: 301
    Security Framework initialized
    Mount-cache hash table entries: 512
    CPU: Testing write buffer coherency: ok
    devtmpfs: initialized
    omap_voltage_early_init: voltage driver support not added
    regulator: core version 0.5
    regulator: dummy:
    NET: Registered protocol family 16
    omap_voltage_domain_lookup: Voltage driver init not yet happened.Faulting!
    omap_voltage_add_dev: VDD specified does not exist!
    OMAP GPIO hardware version 0.1
    OMAP GPIO hardware version 0.1
    OMAP GPIO hardware version 0.1
    OMAP GPIO hardware version 0.1
    omap_mux_init: Add partition: #1: core, flags: 4
    _omap_mux_init_gpio: Could not set gpio79
    _omap_mux_init_gpio: Could not set gpio80
    Debugfs: Only enabling/disabling deep sleep and wakeup timer is supported now
    registered ti81xx_vpss device
    registered ti81xx_vidout device
    registered ti81xx on-chip HDMI device
    registered ti81xx_fb device
    PWM0 init success.
    PWM1 init success.
    bio: create slab <bio-0> at 0
    SCSI subsystem initialized
    USBSS revision 4ea2080b
    registerd cppi-dma Intr @ IRQ 17
    Cppi41 Init Done
    omap_i2c omap_i2c.1: bus 1 rev4.0 at 100 kHz
    regulator: VRTC: 1800 mV
    regulator: VIO: 1500 mV
    regulator: VDD1: 600 <--> 1500 mV at 1100 mV
    regulator: VDD2: 600 <--> 1500 mV at 1350 mV
    regulator: VDDCTRL: 600 <--> 1400 mV at 1200 mV
    regulator: LDO1: 1100 <--> 3300 mV at 1800 mV
    regulator: LDO2: 1100 <--> 3300 mV at 1800 mV
    regulator: LDO3: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO4: 1100 <--> 3300 mV at 1800 mV
    regulator: LDO5: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO6: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO7: 1100 <--> 3300 mV at 3300 mV
    regulator: LDO8: 1100 <--> 3300 mV at 1800 mV
    tps65911-rtc tps65911-rtc: rtc core: registered tps65911-rtc as rtc0
    tps65910 1-002d: No interrupt support, no core IRQ
    Advanced Linux Sound Architecture Driver Version 1.0.23.
    Switching to clocksource gp timer
    musb-hdrc: version 6.0, peripheral, debug=0
    musb-hdrc musb-hdrc.0: dma type: dma-cppi41
    MUSB controller-0 revision 4ea20800
    musb-hdrc musb-hdrc.0: USB Peripheral mode controller at c881e000 using DMA, IRQ 18
    NET: Registered protocol family 2
    IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
    TCP established hash table entries: 4096 (order: 3, 32768 bytes)
    TCP bind hash table entries: 4096 (order: 2, 16384 bytes)
    TCP: Hash tables configured (established 4096 bind 4096)
    TCP reno registered
    UDP hash table entries: 256 (order: 0, 4096 bytes)
    UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
    NET: Registered protocol family 1
    RPC: Registered udp transport module.
    RPC: Registered tcp transport module.
    RPC: Registered tcp NFSv4.1 backchannel transport module.
    NetWinder Floating Point Emulator V0.97 (double precision)
    PMU: registered new PMU device of type 0
    omap-iommu omap-iommu.0: ducati registered
    omap-iommu omap-iommu.1: sys registered
    JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
    msgmni has been set to 143
    io scheduler noop registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    CMEMK module: built on Jul  8 2013 at 11:35:04
      Reference Linux version 2.6.37
      File /home/embdes/Projects/embdes_ipnc/Source/ti_tools/linuxutils_3_22_00_02/packages/ti/sdo/linuxutils/cmem/src/module/cmemk.c
    allocated heap buffer 0xcd000000 of size 0x2000000
    cmemk initialized
    Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    omap_uart.0: ttyO0 at MMIO 0x48020000 (irq = 72) is a OMAP UART0
    console [ttyO0] enabled, bootconsole disabled
    console [ttyO0] enabled, bootconsole disabled
    omap_uart.1: ttyO1 at MMIO 0x48022000 (irq = 73) is a OMAP UART1
    omap_uart.2: ttyO2 at MMIO 0x48024000 (irq = 74) is a OMAP UART2
    omap_uart.3: ttyO3 at MMIO 0x481a6000 (irq = 44) is a OMAP UART3
    omap_uart.4: ttyO4 at MMIO 0x481a8000 (irq = 45) is a OMAP UART4
    omap_uart.5: ttyO5 at MMIO 0x481aa000 (irq = 46) is a OMAP UART5
    brd: module loaded
    loop: module loaded
    omap2-nand driver initializing
    NAND device: Manufacturer ID: 0x2c, Chip ID: 0xca (Micron )
    Creating 7 MTD partitions on "omap2-nand.0":
    0x000000000000-0x000000020000 : "U-Boot-min"
    0x000000020000-0x000000260000 : "U-Boot"
    0x000000260000-0x000000280000 : "U-Boot Env"
    0x000000280000-0x0000006c0000 : "Kernel"
    0x0000006c0000-0x00000c000000 : "File System"
    0x00000c000000-0x00000cc00000 : "Data"
    0x00000cc00000-0x000010000000 : "Reserved"
    davinci_mdio davinci_mdio.0: davinci mdio revision 1.6
    davinci_mdio davinci_mdio.0: detected phy mask fffffffe
    davinci_mdio.0: probed
    davinci_mdio davinci_mdio.0: phy[0]: device 0:00, driver unknown
    mice: PS/2 mouse device common for all mice
    i2c /dev entries driver
    Linux video capture interface: v2.00
    OMAP Watchdog Timer Rev 0x00: initial timeout 60 sec
    notify_init : notify drivercreated  for  remote proc id 2 at physical Address 0xbfd00000
    asoc: tlv320aic3x-hifi <-> davinci-mcasp.2 mapping ok
    asoc: HDMI-DAI-CODEC <-> hdmi-dai mapping ok
    ALSA device list:
      #0: TI8148 IPNC
    TCP cubic registered
    NET: Registered protocol family 17
    Registering the dns_resolver key type
    VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
    omap_voltage_late_init: Voltage driver support not added
    Power Management for TI81XX.
    Detected MACID=0:c:c:2:39:1b
    tps65911-rtc tps65911-rtc: setting system clock to 2013-05-18 14:00:05 UTC (1368885605)
    mmc0: new high speed SDHC card at address aaaa
    mmcblk0: mmc0:aaaa SU04G 3.69 GiB
     mmcblk0: p1

    CPSW phy found : id is : 0x4dd074
    PHY 0:01 not found
    IP-Config: Guessing netmask 255.255.255.0
    IP-Config: Complete:
         device=eth0, addr=192.168.1.168, mask=255.255.255.0, gw=255.255.255.255,
         host=192.168.1.168, domain=, nis-domain=(none),
         bootserver=255.255.255.255, rootserver=192.168.1.109, rootpath=
    PHY: 0:00 - Link is Up - 100/Full
    VFS: Mounted root (nfs filesystem) on device 0:14.
    devtmpfs: mounted
    Freeing init memory: 192K
    INIT: version 2.86 booting
    Error opening /dev/fb0: No such file or directory
    Please wait: booting...
    Starting udev
    udevd (75): /proc/75/oom_adj is deprecated, please use /proc/75/oom_score_adj instead.
    Root filesystem already rw, not remounting
    Caching udev devnodes
    Populating dev cache
    NOT configuring network interfaces: / is an NFS mount
    rm: cannot remove '/tmp': Device or resource busy
     inside finish.sh
    mount: wrong fs type, bad option, bad superblock on /dev/mtdblock5,
           missing codepage or helper program, or other error
           In some cases useful info is found in syslog - try
           dmesg | tail  or so

    mount: wrong fs type, bad option, bad superblock on /dev/mtdblock6,
           missing codepage or helper program, or other error
           In some cases useful info is found in syslog - try
           dmesg | tail  or so

    numid=1,iface=MIXER,name='PCM Playback Volume'
      ; type=INTEGER,access=rw---R--,values=2,min=0,max=127,step=0
      : values=127,127
      | dBscale-min=-63.50dB,step=0.50dB,mute=0
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    SysLink version : 2.10.06.28
    SysLink module created on Date:Jul  9 2013 Time:11:32:01
    Trace enabled
    Trace SetFailureReason enabled
    /dev/mem opened.
    data 2
                 BW Phy Addr : 0x48180d00 Data : 0x00030000
                 AW Phy Addr : 0x48180d00 Data : 0x00030002
    data 3
                 BW Phy Addr : 0x48180d10 Data : 0x00000007
                 AW Phy Addr : 0x48180d10 Data : 0x00000003
    data 2
                 BW Phy Addr : 0x48180700 Data : 0x00000001
                 AW Phy Addr : 0x48180700 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180720 Data : 0x00070000
                 AW Phy Addr : 0x48180720 Data : 0x00070002
    data 2
                 BW Phy Addr : 0x48180724 Data : 0x00030000
                 AW Phy Addr : 0x48180724 Data : 0x00000002
    data 60020
                 BW Phy Addr : 0x48140924 Data : 0x000e0020
                 AW Phy Addr : 0x48140924 Data : 0x000e0020
    data 60020
                 BW Phy Addr : 0x48140928 Data : 0x000c0040
                 AW Phy Addr : 0x48140928 Data : 0x000c0040
    data 60001
                 BW Phy Addr : 0x48140c18 Data : 0x000e0001
                 AW Phy Addr : 0x48140c18 Data : 0x000e0001
    data 60001
                 BW Phy Addr : 0x48140c1c Data : 0x000e0001
                 AW Phy Addr : 0x48140c1c Data : 0x000e0001
    data 2
                 BW Phy Addr : 0x48181564 Data : 0x00000002
                 AW Phy Addr : 0x48181564 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48181568 Data : 0x00030000
                 AW Phy Addr : 0x48181568 Data : 0x00000002
                 Phy Addr : 0x48181560 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48181560 Data : 0x00000002
                 AW Phy Addr : 0x48181560 Data : 0x00000002
    data 60002
                 BW Phy Addr : 0x48140aac Data : 0x00040002
                 AW Phy Addr : 0x48140aac Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140ab0 Data : 0x00060002
                 AW Phy Addr : 0x48140ab0 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140ab8 Data : 0x00040002
                 AW Phy Addr : 0x48140ab8 Data : 0x00040002
    data 60020
                 BW Phy Addr : 0x48140a58 Data : 0x000c0080
                 AW Phy Addr : 0x48140a58 Data : 0x000c0080
    data 60080
                 BW Phy Addr : 0x48140a60 Data : 0x000c0080
                 AW Phy Addr : 0x48140a60 Data : 0x000c0080
    data 60020
                 BW Phy Addr : 0x48140a64 Data : 0x000c0080
                 AW Phy Addr : 0x48140a64 Data : 0x000c0080
    data 60020
                 BW Phy Addr : 0x48140a68 Data : 0x000c0080
                 AW Phy Addr : 0x48140a68 Data : 0x000c0080
    data 60002
                 BW Phy Addr : 0x48140aa8 Data : 0x00040002
                 AW Phy Addr : 0x48140aa8 Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140aa4 Data : 0x00040002
                 AW Phy Addr : 0x48140aa4 Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140aa0 Data : 0x00040002
                 AW Phy Addr : 0x48140aa0 Data : 0x00040002
    data 60002
                 BW Phy Addr : 0x48140a9c Data : 0x00060002
                 AW Phy Addr : 0x48140a9c Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a98 Data : 0x00060002
                 AW Phy Addr : 0x48140a98 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a94 Data : 0x00060002
                 AW Phy Addr : 0x48140a94 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a90 Data : 0x00060002
                 AW Phy Addr : 0x48140a90 Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a8c Data : 0x00060002
                 AW Phy Addr : 0x48140a8c Data : 0x00060002
    data 60002
                 BW Phy Addr : 0x48140a6c Data : 0x000e0002
                 AW Phy Addr : 0x48140a6c Data : 0x000e0002
    data 60002
                 BW Phy Addr : 0x48140a70 Data : 0x000c0002
                 AW Phy Addr : 0x48140a70 Data : 0x000c0002
    data 60002
                 BW Phy Addr : 0x48140a74 Data : 0x000e0002
                 AW Phy Addr : 0x48140a74 Data : 0x000e0002
    data 60002
                 BW Phy Addr : 0x48140a78 Data : 0x000e0002
                 AW Phy Addr : 0x48140a78 Data : 0x000e0002
    data 0
                 BW Phy Addr : 0x411f4004 Data : 0x0000000e
                 AW Phy Addr : 0x411f4004 Data : 0x00000000
    data 0
                 BW Phy Addr : 0x411f2004 Data : 0x00000001
                 AW Phy Addr : 0x411f2004 Data : 0x00000000
    data 1
                 BW Phy Addr : 0x41140084 Data : 0x00000001
                 AW Phy Addr : 0x41140084 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x411a0084 Data : 0x00000001
                 AW Phy Addr : 0x411a0084 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x41160034 Data : 0x00000001
                 AW Phy Addr : 0x41160034 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x41121ff0 Data : 0x00000001
                 AW Phy Addr : 0x41121ff0 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x41131fe4 Data : 0x00000000
                 AW Phy Addr : 0x41131fe4 Data : 0x00000001
    data 1
                 BW Phy Addr : 0x411e002c Data : 0x00000000
                 AW Phy Addr : 0x411e002c Data : 0x00000001
    data 1
                 BW Phy Addr : 0x481c52ec Data : 0x00000001
                 AW Phy Addr : 0x481c52ec Data : 0x00000001
    secss put in low power state
    data 1
                 BW Phy Addr : 0x48180900 Data : 0x00000001
                 AW Phy Addr : 0x48180900 Data : 0x00000001
    data 0
                 BW Phy Addr : 0x48180f00 Data : 0x00030000
                 AW Phy Addr : 0x48180f00 Data : 0x00030000
                 Phy Addr : 0x48180f10 Data : 0x00000000
    data 2
                 BW Phy Addr : 0x4818052c Data : 0x00000002
                 AW Phy Addr : 0x4818052c Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180508 Data : 0x00000302
                 AW Phy Addr : 0x48180508 Data : 0x00000302
    data 2
                 BW Phy Addr : 0x48180520 Data : 0x00000002
                 AW Phy Addr : 0x48180520 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180524 Data : 0x00000002
                 AW Phy Addr : 0x48180524 Data : 0x00000002
    data 2
                 BW Phy Addr : 0x48180528 Data : 0x00000002
                 AW Phy Addr : 0x48180528 Data : 0x00000002
                 Phy Addr : 0x48180508 Data : 0x00000302
                 Phy Addr : 0x48180520 Data : 0x00000002
                 Phy Addr : 0x48180524 Data : 0x00000002
                 Phy Addr : 0x48180528 Data : 0x00000002
                 Phy Addr : 0x4c0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 Phy Addr : 0x4d0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4d0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4d0000e4 Data : 0x00170208
                 Phy Addr : 0x4c0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4c0000e4 Data : 0x00170208
                 Phy Addr : 0x4d0000e4 Data : 0x00170208
    data 170208
                 BW Phy Addr : 0x4d0000e4 Data : 0x00170208
                 AW Phy Addr : 0x4d0000e4 Data : 0x00170208
    DDR IOs RX is shutdown
    Creat queue id:0

     [host]  Setting L3 bandwidth regulator for [HDVICP0 ] to [press=[0,0] BW=900, WM Cycles=2500]
    queue id:0
    FileMngThread created
    Creat queue id:32769
    queue id:32769
    AlramThread created
    Share memory init success
    IPNC_3.00.00 (embdes@embdes) (gcc version 4.3.3 (Sourcery G++ Lite 2009

     [host]  Setting DMM priority for [ISS     ] to [0] ( 0x4e000634 = 0x00800000 )
    Creat queue id:65538
    queue id:65538
    Creat queue id:98307
    queue id:98307
    queue id:32769

     [host]  Setting DMM priority for [HDVICP0 ] to [1] ( 0x4e000634 = 0x00000009 )

     [host] Attached to slave procId 2.
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040


     [host] Attached to slave procId 1.
     [host] Attached to slave procId 0.

     [host] Loaded file ./firmware/ipnc_rdk_fw_m3vpss.xem3 on slave procId 2.

     [host] Loaded file ./firmware/ipnc_rdk_fw_c6xdsp.xe674 on slave procId 0.


     [host] Started slave procId 0.
     [host] Started slave procId 2.

     [host] After Ipc_loadcallback status [0x00000000]

     [c6xdsp ] ***** SYSTEM  : Frequency <ORG> - 500000000, <NEW> - 500000000
     [c6xdsp ]  
     [c6xdsp ]  *** UTILS: CPU KHz = 500000 Khz ***
     [c6xdsp ]  
     [c6xdsp ]  1: SYSTEM  : System Common Init in progress !!!
     [c6xdsp ]  1: SYSTEM: IPC init in progress !!!
     [host] After Ipc_loadcallback status [0x00000000]
     [c6xdsp ]  1: SYSTEM: Attaching to [HOST] ...
     [m3vpss ] ***** SYSTEM  : Frequency <ORG> - 200000000, <NEW> - 200000000
     [m3vpss ] notify_attach  rtnVal  0
     [m3vpss ] initProxyServer  rtnVal  0
     [m3vpss ]  
     [m3vpss ]  *** UTILS: CPU KHz = 400000 Khz ***
     [m3vpss ]  
     [m3vpss ]  90: SYSTEM  : System Common Init in progress !!!
     [m3vpss ]  91: SYSTEM: IPC init in progress !!!
     [m3vpss ]  91: SYSTEM: Attaching to [HOST] ...

     [host] Loaded file ./firmware/ipnc_rdk_fw_m3video.xem3 on slave procId 1.

     [host] Started slave procId 1.

     [host] After Ipc_loadcallback status [0x00000000]
     [c6xdsp ]  1001: SYSTEM: Attaching to [HOST] ...
     [m3video] ***** SYSTEM  : Frequency <ORG> - 200000000, <NEW> - 200000000
     [c6xdsp ]  1061: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
     [m3video]  
     [c6xdsp ]  1061: SYSTEM: Attaching to [VIDEO-M3] ...
     [m3video]  *** UTILS: CPU KHz = 400000 Khz ***
     [m3video]  
     [m3video]  678: SYSTEM  : System Common Init in progress !!!
     [m3video]  678: SYSTEM: IPC init in progress !!!
     [m3video]  678: SYSTEM: Attaching to [HOST] ...

     [host] After Ipc_startcallback status [0x097d2000]
     [m3vpss ]  1090: SYSTEM: Attaching to [HOST] ...

     [host] After Ipc_startcallback status [0x097d2000]
     [m3vpss ]  1120: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
     [m3vpss ]  1120: SYSTEM: Attaching to [DSP] ...
     [m3video]  1678: SYSTEM: Attaching to [HOST] ...

     [host] After Ipc_startcallback status [0x097d2000]
     [m3video]  1691: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
     [m3video]  1691: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  2060: SYSTEM: Attaching to [VIDEO-M3] ...
     [m3vpss ]  2119: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  2755: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
     [m3video]  2692: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  2755: SYSTEM: Attaching to [VPSS-M3] ...
     [m3video]  2692: SYSTEM: Attaching to [DSP] ... SUCCESS !!!
     [m3video]  2692: SYSTEM: Attaching to [VPSS-M3] ...
     [m3vpss ]  3119: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  3754: SYSTEM: Attaching to [VPSS-M3] ...
     [m3video]  3692: SYSTEM: Attaching to [VPSS-M3] ...
     [c6xdsp ]  4183: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
     [m3vpss ]  4119: SYSTEM: Attaching to [DSP] ...
     [c6xdsp ]  4183: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3vpss ]  4120: SYSTEM: Attaching to [DSP] ... SUCCESS !!!
     [m3vpss ]  4120: SYSTEM: Attaching to [VIDEO-M3] ...
     [m3video]  4692: SYSTEM: Attaching to [VPSS-M3] ...
     [c6xdsp ]  5183: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3video]  5120: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
     [m3vpss ]  5119: SYSTEM: Attaching to [VIDEO-M3] ...
     [c6xdsp ]  5183: SYSTEM: Creating MsgQ [DSP_MSGQ] ...
     [m3video]  5120: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [m3vpss ]  5120: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
     [c6xdsp ]  5183: SYSTEM: Creating MsgQ [DSP_ACK_MSGQ] ...
     [m3video]  5121: SYSTEM: Creating MsgQ [VIDEO-M3_MSGQ] ...
     [m3vpss ]  5120: SYSTEM: Creating MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
     [c6xdsp ]  5184: SYSTEM: Notify register to [HOST] line 0, event 12 ...
     [m3video]  5121: SYSTEM: Creating MsgQ [VIDEO-M3_ACK_MSGQ] ...
     [m3vpss ]  5121: SYSTEM: Creating MsgQ [VPSS-M3_MSGQ] ...
     [c6xdsp ]  5184: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
     [m3vpss ]  5121: SYSTEM: Creating MsgQ [VPSS-M3_ACK_MSGQ] ...
     [c6xdsp ]  5184: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
     [c6xdsp ]  5184: SYSTEM: IPC init DONE !!!
     [m3vpss ]  5123: SYSTEM: Notify register to [HOST] line 0, event 12 ...
     [c6xdsp ]  5187: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
     [m3video]  5123: SYSTEM: Notify register to [HOST] line 0, event 12 ...
     [m3vpss ]  5123: SYSTEM: Notify register to [DSP] line 0, event 12 ...
     [c6xdsp ]  5188: MEM: Shared Region 1: Base = 0x8a000000, Length = 0x02800000 (40 MB)
     [m3video]  5123: SYSTEM: Notify register to [DSP] line 0, event 12 ...
     [m3vpss ]  5124: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
     [c6xdsp ]  5188: SYSTEM  : System Common Init Done !!!
     [m3video]  5124: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
     [m3vpss ]  5124: SYSTEM: IPC init DONE !!!
     [m3video]  5124: SYSTEM: IPC init DONE !!!
     [m3vpss ]  5133: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
     [m3vpss ]  5133: MEM: Shared Region 1: Base = 0x8a000000, Length = 0x02800000 (40 MB)
     [m3video]  5134: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
     [m3vpss ] Received character 's'
     [m3video]  5134: MEM: Shared Region 1: Base = 0x8a000000, Length = 0x02800000 (40 MB)
     [m3vpss ]  5136: SYSTEM  : System Common Init Done !!!
     [m3video]  5136: SYSTEM  : System Common Init Done !!!
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3video] Received character 's'
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [c6xdsp ] Received character 's'
    queue id:65538

    CPU is TI812x
    Error: SemWait: Invalid Semaphore handler
    Error: SemRelease: Invalid Semaphore handler

    *****************************************************************

        IPNC BUILD VERSION: DM8127 IPNC RDK VERSION 03.00.00.05    

    *****************************************************************

    ./bin/ipnc_rdk_mcfw.out   TRISTREAM TRIPLE_H264 TI2A AEWB 1080P_D1 H264 HIGH_SPEED1 H264 HIGH_SPEED2 MJPEG 80 &
    Error: SemWait: Invalid Semaphore handler
    Error: SemRelease: Invalid Semaphore handler
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3vpss ]  5335: SYSTEM  : System VPSS Init in progress !!!
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3vpss ] === I2C0/2 Clk is active ===
     [m3vpss ]  5354: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_0] in region 0 ...
     [m3vpss ]  5354: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_0] in region 0 ...
     [m3vpss ]  5355: SYSTEM: ListElem Shared Addr = 0xbe98b280
     [m3vpss ]  5357: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_1] in region 0 ...
     [m3vpss ]  5357: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_1] in region 0 ...
     [m3vpss ]  5358: SYSTEM: ListElem Shared Addr = 0xbe98e380
     [m3vpss ]  5372: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_23] in region 0 ...
     [m3vpss ]  5372: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_23] in region 0 ...
     [m3vpss ]  5373: SYSTEM: ListElem Shared Addr = 0xbe991480
     [m3vpss ]  5375: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_24] in region 0 ...
     [m3vpss ]  5376: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_24] in region 0 ...
     [m3vpss ]  5376: SYSTEM: ListElem Shared Addr = 0xbe9b0a80
     [c6xdsp ] Remote Debug Shared eab9c80
     [m3vpss ]  Iss_init called !!!!!!
     [m3video]  5454: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_29] in region 0 ...
     [m3vpss ]  CPIS_init DONE !!!!!!
     [m3video]  5455: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_29] in region 0 ...
     [m3video]  5455: SYSTEM: ListElem Shared Addr = 0xbead3500
     [m3vpss ] initPrms.isI2cInitReq = 1
     [m3video]  5457: HDVICP: Doing PRCM for IVAHD[0] ...
     [m3video]  5457: HDVICP: PRCM for IVAHD[ sbulla: unknown partition table
    0] ... DONE.
     [m3vpss ] initPrms.isI2cInitReq = 1
     [m3video]  5458: SYSTEM  : Initializing Links !!!
    INIT: Entering runlevel: 5
     [m3video]  5458: SYSTEM  : FREE SPACE : System Heap      = 6282384 B, Mbx = 10240 msgs)
     inside autorun
     [m3video]  5513: SYSTEM  : Initializing Links ... DONE !!!
     [m3vpss ]  Vps_deviceInit Daughter card not detected/connected!
     [m3vpss ]                     
     [m3vpss ]  5639: SYSTEM  : Devi sbulla: unknown partition table
    ce Init in progress DONE !!!
     [m3vpss ]  5667: SYSTEM  : System VPSS Init Done !!!
     [m3vpss ]  5667: UTILS: DMA: HWI Create for INT62 !!!
     [m3vpss ]  5667: SYSTEM  : Initializing Links !!!
     [m3vpss ]  5667: SYSTEM  : FREE SPACE : System Heap      = 1719392 B, Mbx = 10240 msgs)
     [m3vpss ]  5667: SYSTEM  : FREE SPACE : SR0 Heap         = 14759040 B (14 MB)
     [m3vpss ]  5667: SYSTEM  : FREE SPACE : Frame Buffer     = 105790336 B (100 MB)
     [m3vpss ]  5668: SYSTEM  : FREE SPACE : Bitstream Buffer = 41942912 B (39 MB)
     [m3vpss ]  5668: SYSTEM  : FREE SPACE : Tiler Buffer     = 127 B (0 MB)  - TILER OFF
    Starting system message bus:  [m3vpss ] Received character 't'
     [m3vpss ]  5788: SYSTEM  : Initializing Links ... DONE !!!
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [m3video] Received character 't'
     [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
     [m3video] Remote Debug Shared Memory @ 0xbff05020
     [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
     [c6xdsp ] Received character 't'
    dbus.
    Starting telnet daemon.
    FAT: bogus number of reserved sectors
    VFS: Can't find a valid FAT filesystem on dev sbulla.
    DMA: Module install successful, device major num = 250
    DRV: Module install successful
    DRV: Module built on Jul  9 2013 11:41:22
    Starting syslogd/klogd: done

     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            

    Arago Project http://arago-project.org dm814x-evm ttyO0

    Arago 2010.11 dm814x-evm ttyO0

    dm814x-evm login: root (automatic login)
    HDMI W1 rev 4.0
    I2C No Ack

    mkdosfs 2.11 (12 Mar 2005)
    FAT: bogus number of reserved sectors
    VFS: Can't find a valid FAT filesystem on dev sbulla.
    root@dm814x-evm:~# g_file_storage gadget: No serial-number string provided!

     [host]  

     [host]  ORG 0xg_file_storage gadget: File-backed Storage Gadget, version: 1 September 2010
    46c00524: 0

    g_file_storage gadget: Number of LUNs=1
     [host]  NEW 0x4g_file_storage gadget-lun0: ro=0, nofua=0, file: /dev/sbulla
    6c00524: 2

     [host]  

     [host] Application Start Completed
    Simple mixer control 'PGA',0
      Capabilities: cvolume cswitch penum
      Capture channels: Front Left - Front RighCMEMK Error: ioctl: failed to allocate heap buffer of size 0x3e00000
    t
      Limits: CapCMEMK Error: get_phys: Unable to find phys addr for 0x00000000
    ture 0 - 119
    CMCMEMK Error: get_phys: get_user_pages() failed: -14
    EM Error: allocHCMEMK Error: GETPHYS: Failed to convert virtual 0x0 to physical.
    eap: ioctl CMEM_IOCALLOCHEAP failed: -1
    CMEM Error: getPhys: Failed to get physical address of 0

     [host] Vsys_allocBuf - addr = 0x0,size = 65011712

     [host] MCFW_IPCBITS:App_streamSysInit:virt addr of 0 cir buffer  is 0
    ##########pInfo->totalsize 30408704
    Encode Error: Memory manager init fail
    func:stream_init line:249

     [host] MCFW_IPCBITS:App_streamSysInit:stream_init failed

     [host] MCFW_IPCBITS:App_ipcBitsRecvStreamFxn:Entered...
     [host] MCFW_IPCFRAMES:App_ipcFramesSendRecvFxn:Entered...
     [host]  0: SYSTEM: System Common Init in progress !!!

     [host]  0: SYSTEM: IPC init in progress !!!

     [host]  12: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
      Front Left: Capture 80 [67%] [40.00dB] [on]
      Front Right: Capture 80 [67%] [40.00dB] [on]

     [host]  13: SYSTEM: Creating MsgQ [HOST_MSGQ] ...

     [host]  15: SYSTEM: Creating MsgQ [HOST_ACK_MSGQ] ...

     [host]  16: SYSTEM: Opening MsgQ [DSP_MSGQ] ...

     [host]  17: SYSTEM: Opening MsgQ [VIDEO-M3_MSGQ] ...

     [host]  17: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...

     [host]  18: SYSTEM: Notify register to [DSP] line 0, event 12 ...

     [host]  19: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
    FAT: bogus number of reserved sectors

     [host]  19: VFS: Can't find a valid FAT filesystem on dev sbulla.
    SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...

     [host]  19: SYSTEM: IPC init DONE !!!

     [host]  21: SYSTEM: Creating ListMP [HOST_IPC_OUT_28] in region 0 ...

     [host]  23: SYSTEM: Creating ListMP [HOST_IPC_IN_28] in region 0 ...

     [host]  24: SYSTEM: ListElem Shared Addr = 0x416cbd80

     [host]  51: SYSTEM: Creating ListMP [HOST_IPC_OUT_29] in region 0 ...

     [host]  53: SYSTEM: Creating ListMP [HOST_IPC_IN_29] in region 0 ...

     [host]  55: SYSTEM: ListElem Shared Addr = 0x416e5600

     [host]  57: SYSTEM: Creating ListMP [HOST_IPC_OUT_23] in region 0 ...

     [host]  59: SYSTEM: Creating ListMP [HOST_IPC_IN_23] in region 0 ...

     [host]  60: SYSTEM: ListElem Shared Addr = 0x416fee80

     [host]  61: SYSTEM: Creating ListMP [HOST_IPC_OUT_24] in region 0 ...

     [host]  63: SYSTEM: Creating ListMP [HOST_IPC_IN_24] in region 0 ...

     [host]  65: SYSTEM: ListElem Shared Addr = 0x4171e480

     [host]  66: SYSTEM: Creating ListMP [HOST_IPC_OUT_25] in region 0 ...

     [host]  68: SYSTEM: Creating ListMP [HOST_IPC_IN_25] in region 0 ...

     [host]  70: SYSTEM: ListElem Shared Addr = 0x4173da80

     [host]  70: SYSTEM: System Common Init Done !!!

     [host]
    ********** FULL FEATURE USECASE ********

     [host] ********* Entered Tri Streaming usecase - H264 1080p @60fps + H264 D1 @30fps + MJPEG 1080p @5fps ********


     [host]  71: MCFW  : CPU Revision [ES2.1] !!!

     [host]  71: MCFW  : Detected [UNKNOWN] Board !!!

     [host]  71: MCFW  : Base Board Revision [REV A] !!!
     [m3vpss ]  7584: CAMERA: Create in progress !!!
     [m3vpss ]  7584: CAMERA: VIP0 PortA camera mode is [ 8-bit, Non-mux Embedded Sync] !!!
     [m3vpss ]  7594: CAMERA: VIP 0: VID DEC 268436736 (0x36): bebebebe:bebebebe:0002, AUD_STATUS -1900729032
     [m3vpss ] Stream ID 0: chId = 0 VpsUtils_queCreate.
     [m3vpss ] Stream ID 1: chId = 0 VpsUtils_queCreate.
     [m3vpss ]  7846: CAMERA: Create Done !!!
     [m3vpss ] DCC server task running
     [m3vpss ]  7958: CAMERA: Detect video in progress !!!
     [m3vpss ]  7958: CAMERA: Detect video Done !!!
     [m3vpss ]  8054: DUP   : Create Done !!!
     [m3vpss ]  8054: NSF: Create in progress !!!
     [m3vpss ] NSF::HEAPID:0    USED:128
     [m3vpss ] NSF::HEAPID:1    USED:4928
     [m3vpss ]  8156: NSF: Create Done !!!
     [m3vpss ]  8162: DUP   : Create Done !!!
     [m3vpss ]  8169: DUP   : Create Done !!!
     [m3vpss ]  8171: MERGE   : Create Done !!!
     [m3vpss ] {SWOSD} edma3Handle->tccVal = 34
     [m3vpss ] {SWOSD} edma3Handle->chId   = 34
     [m3vpss ] {SWOSD} edma3Handle->tccVal = 35
     [m3vpss ] {SWOSD} edma3Handle->chId   = 35
     [m3vpss ] {SWOSD} edma3Handle->tccVal = 36
     [m3vpss ] {SWOSD} edma3Handle->chId   = 36
     [m3vpss ]  8140: SWOSD   : Create Done !!!
     [m3vpss ]  8230: SCLR: Create in progress !!!
     [m3vpss ]  8235: SCLR    : Loading Up-scaling Co-effs ...
     [m3vpss ]  8235: SCLR    : Co-effs Loading ... DONE !!!
     [m3video]  8242: IPC_IN_M3   : Create in progress !!!
     [m3video]  8243: SYSTEM: Opening ListMP [VPSS-M3_IPC_OUT_0] ...
     [m3vpss ] SCLR:HEAPID:0    USED:64
     [m3video]  8243: SYSTEM: Opening ListMP [VPSS-M3_IPC_IN_0] ...
     [m3vpss ] SCLR:HEAPID:1    USED:5952
     [m3video]  8244: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...
     [m3vpss ]  8236: SCLR: Create Done !!!
     [m3vpss ]  8151: FD   : Alg Create Done !!!
     [m3vpss ]  8151: FD   : Create Done !!!
     [m3vpss ]  8241: IPC_OUT_M3   : Create in progress !!!
     [m3vpss ]  8242: IPC_OUT_M3   : Create Done !!!
     [m3video]  8247: IPC_IN_M3   : Create Done !!!
     [m3video]  8247: ENCODE: Create in progress ... !!!
     [m3video]  8374: ENCODE: Creating CH0 of 1920 x 1080, pitch = (2048, 2048) [PROGRESSIVE] [NON-TILED  ], bitrate = 2000 Kbps ...
     [m3video] ENCLINK_H264:HEAPID:0    USED:13808
     [m3video]  8480: ENCODE: Creating CH1 of 720 x 480, pitch = (720, 720) [PROGRESSIVE] [NON-TILED  ], bitrate = 2000 Kbps ...
    queue id:0

     [host] IpcBitsInLink_tskMain:Entered
     [host]  1060: IPC_BITS_IN   : Create in progress !!!

     [host]  1060: IPC_BITS_IN   : ListMPOpen start !!!

     [host]  1060: SYSTEM: Opening ListMP [VIDEO-M3_IPC_OUT_28] ...

     [host]  1063: SYSTEM: Opening ListMP [VIDEO-M3_IPC_IN_28] ...

     [host]  1064: IPC_BITS_IN   : ListMPOpen done !!!

     [host]  1067: IPC_BITS_IN   : System_linkGetInfo done !!!

     [host]  1067: IPC_BITS_IN   : Create Done !!!

     [host] USECASE SETUP DONE
     [m3video] ENCLINK_H264:HEAPID:0    USED:11912
     [m3vpss ]  8602: DISPLAY: Create in progress !!!
     [m3video]  8586: ENCODE: Creating CH2 of 1920 x 1080, pitch = (2048, 2048) [PROGRESSIVE] [NON-TILED  ], bitrate = 100 Kbps ...
     [m3vpss ]  8603: DISPLAY: Create Done !!!
     [m3vpss ]  8604: DISPLAY: Create in progress !!!
     [m3vpss ]  8605: DISPLAY: Create Done !!!
     [m3video] ENCLINK_JPEG:HEAPID:0    USED:2064
     [m3vpss ]  8606: DISPLAY: Start in progress !!!
     [m3video]  8587: ENCODE: All CH Create ... DONE !!!
     [m3video] ENCLINK:HEAPID:0    USED:27944
     [m3video]  8590: ENCODE: Create ... DONE !!!
     [m3video]  7914: VSTAB   : Alg Create Done !!!
     [m3video]  7914: VSTAB   : Create Done !!!
     [m3video]  8592: IPC_BITS_OUT   : Create in progress !!!
     [m3video]  8594: IPC_BITS_OUT   : Create Done !!!
     [m3vpss ]  8672: DISPLAY: Start Done !!!
     [m3vpss ]  8672: DISPLAY: HDDAC(BP0) : 30 fps, Latency (Min / Max) = ( 255 / 0 ), Callback Interval (Min / Max) = ( 255 / 0 ) !!!
     [m3vpss ]  8672: DISPLAY: UNDERFLOW COUNT: HDMI(BP0) 1, HDDAC(BP0) 0, DVO2(BP1) 1, SDDAC(SEC1) 1
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : System Heap      = 1208944 B, Mbx = 10237 msgs)
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : SR0 Heap         = 14164352 B (13 MB)
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : Frame Buffer     = 2441856 B (2 MB)
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : Bitstream Buffer = 21615744 B (20 MB)
     [m3vpss ]  8673: SYSTEM  : FREE SPACE : Tiler Buffer     = 123 B (0 MB)  - TILER OFF
     [m3vpss ]  8674: DISPLAY: Start in progress !!!
     [m3vpss ]  8720: DISPLAY: Start Done !!!
     [m3vpss ]  8720: DISPLAY: SDDAC(SEC1): 21 fps, Latency (Min / Max) = ( 255 / 0 ), Callback Interval (Min / Max) = ( 255 / 0 ) !!!
     [m3vpss ]  8633: CAMERA: Start in progress !!!
     [m3vpss ]  8634: CAMERA: Start Done !!!

     [host]
    Application Run Completed
     [m3vpss ]  8759: CAMERA: Fields = 2 (fps = 0), Total Resets = 0 (Avg 0 ms per reset)

     [host] MCFW_IPCBITS: Callback function:App_ipcBitsInCbFxn [m3video]  Channel:1 inputframerate:30 targetfps:60
     [m3video]  Channel:0 inputframerate:60 targetfps:60
     [m3video]  Channel:2 inputframerate:60 targetfps:5
    main 188
    ApproDrvInit: 3
    Creat queue id:131076
    queue id:131076
    main 192
    queue id:0
    ApproDrvInit: 7
    queue id:131076
    TimeOut occure in boot_proc.
    Program exit.
    TimeOut occure in boot_proc.
    Program exit.

    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~# ps
      PID USER       VSZ STAT COMMAND
        1 root      1708 S    init [5]   
        2 root         0 SW   [kthreadd]
        3 root         0 SW   [ksoftirqd/0]
        4 root         0 SW   [kworker/0:0]
        5 root         0 SW   [kworker/u:0]
        6 root         0 SW<  [khelper]
        7 root         0 SW   [irq/72-serial i]
        8 root         0 SW   [irq/73-serial i]
        9 root         0 SW   [irq/74-serial i]
       10 root         0 SW   [irq/44-serial i]
       11 root         0 SW   [irq/45-serial i]
       12 root         0 SW   [irq/46-serial i]
       13 root         0 SW<  [mboxd]
       14 root         0 SW   [sync_supers]
       15 root         0 SW   [bdi-default]
       16 root         0 SW<  [kblockd]
       17 root         0 SW<  [omap2_mcspi]
       18 root         0 SW   [kseriod]
       19 root         0 SW<  [kmmcd]
       20 root         0 SW<  [rpciod]
       21 root         0 SW   [kswapd0]
       22 root         0 SW   [kworker/0:1]
       23 root         0 SW<  [aio]
       24 root         0 SW<  [nfsiod]
       25 root         0 SW<  [crypto]
       32 root         0 SW   [mtdblock0]
       33 root         0 SW   [mtdblock1]
       34 root         0 SW   [mtdblock2]
       35 root         0 SW   [mtdblock3]
       36 root         0 SW   [mtdblock4]
       37 root         0 SW   [mtdblock5]
       38 root         0 SW   [mtdblock6]
       39 root         0 SW   [kworker/u:1]
       42 root         0 SW   [mmcqd/0]
       75 root      1956 S <  /sbin/udevd -d
     1062 root         0 SW   [flush-0:14]
     1073 root      1752 S    ./bin/remote_debug_client.out 0xbff00000
     1100 root     59740 S    ./system_server
     1204 messageb  3324 S    /usr/bin/dbus-daemon --system
     1217 root      2936 S    /usr/sbin/telnetd
     1231 root      3000 S    /sbin/syslogd -n -C64 -m 20
     1233 root      2936 S    /sbin/klogd -n
     1242 root      2516 S    login -- root      
     1270 root         0 SW<  [HDMI WQ]
     1278 root      3128 S    -sh
     1298 root         0 SW   [file-storage-ga]
     1348 root      6076 S    ./boa -c /etc
     1360 root      3128 R    ps
    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~#
    root@DM8127_IPNC:~#

    Regards

     RAJ M

  • From the log it looks like you cmem is still not fine, and this allocation of streaming buffer is failing.

    Please put prints on where you you are calling for cmem alocation and check the size

    You need to review the memory allocation done and check if some cmem allocation is failing this

    Regards,

    Raghu

  • Hello,

    Thank U

    In the file system folder i see one file env.sh

    #!/bin/sh                                                                    
    #RDK_LINUX_MEM:                                                              
    #The amount of memory allocated to linux.                                    
    #The kernel bootargs mem= parameter should match this value.                 
    export RDK_LINUX_MEM="80M"
    #The start address of kernel NOTIFY_MEM                                      

    #The kernel bootargs notifyk.vpssm3_sva= parameter should match this value.  
    export NOTIFYK_VPSSM3_SVA_ADDR="0xbfd00000"

    #The start address of REMOTE_DEBUG_ADDR section                              
    #The address of REMOTE_DEBUG_MEM in the slave executables should match this  
    export REMOTE_DEBUG_ADDR="0xbff00000"

    #The start address of HDVPSS_SHARED_MEM section                              
    #The address of HDVPSS_SHARED_MEM in the slave executables should match this
    export HDVPSS_SHARED_MEM="0xbfb00000"

    #The size of HDVPSS_SHARED_MEM section                              
    export HDVPSS_SHARED_SIZE="0x200000"

    please correct it if its wrong i think i need to change mem value on here also?

    Regards

      RAJ M

  • Hello Raghu,

    I'm waiting for your replay

    Regards

      RAJ M

  • Hello Raj,

    As i mentioned, please review your memory allocation details and do a stage by stage debug,

    Firstly check if the frames are captured from sensor driver on M3 and then check the frame are going to encoder link.

    Then check if frames are coming to streaming buffer on A8

    One way is to put print of encoded bytes at the output of encoder to check if frames are getting encoded


    Regards,


    Raghu