[SOLVED] iMX6ull is unable to boot from NAND UBIFS

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

[SOLVED] iMX6ull is unable to boot from NAND UBIFS

1,250 Views
jfernandz
Contributor I

Hi everybody:

 

I'm building wic and ubifs images for a custom MACHINE, this is my machine conf file:

 

 

 

#@TYPE: Machine
#@NAME: Engicam Microgea
#@SOC: i.MX6ULL
#@DESCRIPTION: Custom Joifi machine configuration for Microgea i.MX6ULL
#@MAINTAINER: Joifi <tools@joifilabs.com>

MACHINEOVERRIDES =. "mx6:mx6ull:"

include conf/machine/include/imx-base.inc
include conf/machine/include/tune-cortexa7.inc

KERNEL_DEVICETREE = " imx6ull-microgea-joifi.dtb imx6ull-microgea-microdev.dtb "

IMAGE_FSTYPES += "tar.xz ubifs wic"

MKUBIFS_ARGS = "-m 4096 -e 253952 -c 1992"
UBINIZE_ARGS = "-m 4096 -p 256KiB -s 4096"
UBI_VOLNAME = "rootfs"


UBOOT_CONFIG ??= "nand"
UBOOT_CONFIG[sd] = "microgea_mx6ull_sd_defconfig,sdcard"
UBOOT_CONFIG[nand] = "microgea_mx6ull_nand_defconfig"

PREFERRED_PROVIDER_u-boot = "u-boot-engicam"
PREFERRED_PROVIDER_virtual/bootloader = "u-boot-engicam"
PREFERRED_PROVIDER_virtual/kernel = "linux-engicam"

SERIAL_CONSOLES = "115200;ttymxc0"

MACHINE_FEATURES += "wifi bluetooth"

IMX_DEFAULT_BSP ="nxp"
MACHINE_FIRMWARE_append = " linux-firmware-bcm43430"

 

 

 

 

I've also created an `u-boot-engicam.bbappend` recipe to patch also the u-boot default config:

 

 

diff --git a/configs/microgea_mx6ull_nand_defconfig b/configs/microgea_mx6ull_nand_defconfig
index ee32bd3873..c38e91c977 100644
--- a/configs/microgea_mx6ull_nand_defconfig
+++ b/configs/microgea_mx6ull_nand_defconfig
@@ -19,7 +19,7 @@ CONFIG_BOOTDELAY=3
 CONFIG_BOARD_EARLY_INIT_F=y
 CONFIG_HUSH_PARSER=y
 CONFIG_CMD_BOOTZ=y
-CONFIG_DEFAULT_FDT_FILE="imx6ull-microgea-microdev.dtb"
+CONFIG_DEFAULT_FDT_FILE="imx6ull-microgea-joifi.dtb"
 CONFIG_CMD_MEMTEST=y
 CONFIG_CMD_GPIO=y
 CONFIG_CMD_I2C=y
diff --git a/configs/microgea_mx6ull_sd_defconfig b/configs/microgea_mx6ull_sd_defconfig
index 91c221dd01..98c048f077 100644
--- a/configs/microgea_mx6ull_sd_defconfig
+++ b/configs/microgea_mx6ull_sd_defconfig
@@ -19,7 +19,7 @@ CONFIG_BOOTDELAY=3
 CONFIG_BOARD_EARLY_INIT_F=y
 CONFIG_HUSH_PARSER=y
 CONFIG_CMD_BOOTZ=y
-CONFIG_DEFAULT_FDT_FILE="imx6ull-microgea-microdev.dtb"
+CONFIG_DEFAULT_FDT_FILE="imx6ull-microgea-joifi.dtb"
 CONFIG_CMD_MEMTEST=y
 CONFIG_CMD_GPIO=y
 CONFIG_CMD_I2C=y

 

 

 

Just to set my custom DT from default. Also This one is my custom DT:

https://jfernandz.me/~wyre/imx6ull-microgea-joifi.dts.txt

But you can compare it with the one this vendor ships by default for their evaluation carrier board:

https://jfernandz.me/~wyre/imx6ull-microgea-microdev.dts.txt

As you can see in the MACHINE config file I'm deploying both dtb. The problem is the SoM is able to boot the .wic image from mmc. However, when I flash the NAND with the script I'm using:

 

 

setenv mtdids 'nand0=gpmi-nand'
setenv mtdparts 'mtdparts=gpmi-nand:4m(boot),8m(kernel),1m(dtb),-(rootfs)'

#zImage
tftp ${loadaddr} zImage
nand erase 0x00400000 0x00800000
nand write ${loadaddr} 0x00400000 0x00800000

#DTB:
tftp ${loadaddr} imx6ull-microgea-joifi.dtb
nand erase 0x00c00000 0x00100000
nand write ${loadaddr} 0x00c00000 0x00100000

#FS:
nand erase.part rootfs
tftp ${loadaddr} rootfs.ubifs       
ubi part rootfs
ubi create rootfs
ubi write ${loadaddr} rootfs ${filesize}
ubifsmount ubi0:rootfs
ubifsls

 

 

 

It's apparently properly flashed as you can see:

 

 

Welcome to minicom 2.8

OPTIONS: I18n 
Compiled on Jan  9 2021, 12:42:45.
Port /dev/ttyUSB0, 11:49:04

Press CTRL-A Z for help on special keys



U-Boot 2016.07-gfab75f3-dirty (May 16 2019 - 12:08:22 +0200)

CPU:   Freescale i.MX6ULL rev1.1 at 396 MHz
Reset cause: POR
Engicam GEAL-MX6ULL based
I2C:   ready
DRAM:  512 MiB
NAND:  512 MiB
MMC:   FSL_SDHC: 0
In:    serial
Out:   serial
Err:   serial
FOR MICRODEV TOUCH: setenv microdev touch
Net:   FEC0 [PRIME]

Version: Engicam Yocto U-Boot 3.00
Note:    MicroGEAmx6ull default U-Boot

Hit any key to stop autoboot:  0 
=> printenv
GEA_SN=P46865
baudrate=115200
bootargs=console=ttymxc0,115200 cma=16M video=mxcfb0:dev=lcd,Amp-WD mtdparts=gpmi-nand:4m(boot),8m(kernel),1m(dtb),-(rootfs) ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs
bootargs_base=setenv bootargs_tmp console=ttymxc0,115200 cma=16M video=${video_type},${lcd_panel}
bootargs_mmc=run bootargs_base; setenv bootargs ${bootargs_tmp} ${mtdparts} root=/dev/mmcblk${mmcdev}p2 rootwait rw
bootargs_net=run bootargs_base; setenv bootargs ${bootargs_tmp} root=/dev/nfs ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp
bootargs_tmp=console=ttymxc0,115200 cma=16M video=mxcfb0:dev=lcd,Amp-WD
bootargs_ubi=run bootargs_base; setenv bootargs ${bootargs_tmp} ${mtdparts} ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs
bootcmd=run bootcmd_ubi
bootcmd_mmc=setenv mmcdev 0; run bootargs_mmc; run loadfdt; run loaduImage; bootm ${loadaddr} - ${fdt_addr}
bootcmd_net=run bootargs_net; tftp uImage; tftp ${fdt_addr} uImage.dtb; bootm ${loadaddr} - ${fdt_addr} 
bootcmd_ubi=run bootargs_ubi;nand read ${loadaddr} 0x400000 0x800000;nand read ${fdt_addr} 0xc00000 0x100000;bootz ${loadaddr} - ${fdt_addr}
bootdelay=3
ethact=FEC0
ethaddr=9C:53:CD:08:6C:EA
ethprime=FEC0
fdt_addr=0x83000000
fdt_file=imx6ull-microgea-joifi.dtb
fdt_high=0xffffffff
gatewayip=172.20.1.1
ipaddr=172.20.1.40
lcd_panel=Amp-WD
loadaddr=0x80800000
loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}
loaduImage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} uImage;
loadzImage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} zImage;
mmcpart=1
mtdparts=mtdparts=gpmi-nand:4m(boot),8m(kernel),1m(dtb),-(rootfs)
netdev=eth0
netmask=255.255.255.0
nfsroot=/nfs_icore
serverip=172.20.1.2
stderr=serial
stdin=serial
stdout=serial
video_type=mxcfb0:dev=lcd

Environment size: 1806/131068 bytes
=> tftp ker_cdtb_fs.scr
Using FEC0 device
TFTP from server 172.20.1.2; our IP address is 172.20.1.40
Filename 'ker_cdtb_fs.scr'.
Load address: 0x80800000
Loading: #
         289.1 KiB/s
done
Bytes transferred = 592 (250 hex)
=> so
## Executing script at 80800000
Using FEC0 device
TFTP from server 172.20.1.2; our IP address is 172.20.1.40
Filename 'zImage'.
Load address: 0x80800000
Loading: #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         ###############
         5 MiB/s
done
Bytes transferred = 7847128 (77bcd8 hex)

NAND erase: device 0 offset 0x400000, size 0x800000
Erasing at 0xbc0000 -- 100% complete.
OK

NAND write: device 0 offset 0x400000, size 0x800000
 8388608 bytes written: OK
Using FEC0 device
TFTP from server 172.20.1.2; our IP address is 172.20.1.40
Filename 'imx6ull-microgea-joifi.dtb'.
Load address: 0x80800000
Loading: ##
         3.7 MiB/s
done
Bytes transferred = 27516 (6b7c hex)

NAND erase: device 0 offset 0xc00000, size 0x100000
Erasing at 0xcc0000 -- 100% complete.
OK

NAND write: device 0 offset 0xc00000, size 0x100000
 1048576 bytes written: OK

NAND erase.part: device 0 offset 0xd00000, size 0x1f300000
Erasing at 0x1ffc0000 -- 100% complete.
OK
Using FEC0 device
TFTP from server 172.20.1.2; our IP address is 172.20.1.40
Filename 'rootfs.ubifs'.
Load address: 0x80800000
Loading: #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #######################################################################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         ######
         5 MiB/s
done
Bytes transferred = 175480832 (a75a000 hex)
ubi0: attaching mtd1
ubi0: scanning is finished
ubi0: empty MTD device detected
ubi0: attached mtd1 (name "mtd=3", size 499 MiB)
ubi0: PEB size: 262144 bytes (256 KiB), LEB size: 253952 bytes
ubi0: min./max. I/O unit sizes: 4096/4096, sub-page size 4096
ubi0: VID header offset: 4096 (aligned 4096), data offset: 8192
ubi0: good PEBs: 1996, bad PEBs: 0, corrupted PEBs: 0
ubi0: user volume: 0, internal volumes: 1, max. volumes count: 128
ubi0: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 0
ubi0: available PEBs: 1952, total reserved PEBs: 44, PEBs reserved for bad PEB handling: 40
No size specified -> Using max size (495714304)
Creating dynamic volume rootfs of size 495714304
175480832 bytes written to volume rootfs
<DIR>        6496  Fri Mar 09 12:34:56 2018  bin
<DIR>         160  Fri Mar 09 12:34:56 2018  dev
<DIR>        5496  Fri Mar 09 12:34:56 2018  etc
<DIR>        5952  Fri Mar 09 12:34:56 2018  lib
<DIR>         160  Fri Mar 09 12:34:56 2018  mnt
<DIR>         160  Fri Mar 09 12:34:56 2018  run
<DIR>         160  Fri Mar 09 12:34:56 2018  tmp
<DIR>         160  Fri Mar 09 12:34:56 2018  sys
<DIR>         808  Fri Mar 09 12:34:56 2018  var
<DIR>         672  Fri Mar 09 12:34:56 2018  usr
<DIR>         312  Fri Mar 09 12:34:56 2018  boot
<DIR>         224  Fri Mar 09 12:34:56 2018  home
<DIR>         160  Fri Mar 09 12:34:56 2018  proc
<DIR>        5440  Fri Mar 09 12:34:56 2018  sbin
<DIR>         160  Fri Mar 09 12:34:56 2018  media
=>

 

 

 

You can see even the output of `ubifsls` output. The problem is when I run the `bootcmd` command:

 

 

 

<DIR>         808  Fri Mar 09 12:34:56 2018  var
<DIR>         672  Fri Mar 09 12:34:56 2018  usr
<DIR>         312  Fri Mar 09 12:34:56 2018  boot
<DIR>         224  Fri Mar 09 12:34:56 2018  home
<DIR>         160  Fri Mar 09 12:34:56 2018  proc
<DIR>        5440  Fri Mar 09 12:34:56 2018  sbin
<DIR>         160  Fri Mar 09 12:34:56 2018  media
=> run bootcmd

NAND read: device 0 offset 0x400000, size 0x800000
 8388608 bytes read: OK

NAND read: device 0 offset 0xc00000, size 0x100000
 1048576 bytes read: OK
Kernel image @ 0x80800000 [ 0x000000 - 0x77bcd8 ]
## Flattened Device Tree blob at 83000000
   Booting using the fdt blob at 0x83000000
   Using Device Tree in place at 83000000, end 83009b7b

Starting kernel ...

Booting Linux on physical CPU 0x0
Linux version 5.4.70+g126efea9feb0 (oe-user@oe-host) (gcc version 9.3.0 (GCC)) #1 SMP PREEMPT Fri Mar 11 14:48:54 UTC 2022
CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
CPU: div instructions available: patching division code
CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
OF: fdt: Machine model: Engicam MicroGEA MX6ULL SOM Starterkit
Memory policy: Data cache writealloc
Reserved memory: created CMA memory pool at 0x9c000000, size 64 MiB
OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
Hit pending asynchronous external abort (FSR=0x00001c06) during first unmask, this is most likely caused by a firmware/bootloader bug.
percpu: Embedded 15 pages/cpu s32012 r8192 d21236 u61440
Built 1 zonelists, mobility grouping on.  Total pages: 130048
Kernel command line: console=ttymxc0,115200 cma=16M video=mxcfb0:dev=lcd,Amp-WD mtdparts=gpmi-nand:4m(boot),8m(kernel),1m(dtb),-(rootfs) ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes, linear)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes, linear)
mem auto-init: stack:off, heap alloc:off, heap free:off
Memory: 437668K/524288K available (10240K kernel code, 485K rwdata, 3488K rodata, 1024K init, 430K bss, 21084K reserved, 65536K cma-reserved, 0K highmem)
SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
rcu: Preemptible hierarchical RCU implementation.
rcu:    RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
        Tasks RCU enabled.
rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
random: get_random_bytes called from start_kernel+0x2b8/0x45c with crng_init=0
Switching to timer-based delay loop, resolution 41ns
sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns
clocksource: mxc_timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns
Console: colour dummy device 80x30
Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)
pid_max: default: 32768 minimum: 301
Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
CPU: Testing write buffer coherency: ok
CPU0: update cpu_capacity 1024
CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
Setting up static identity map for 0x80100000 - 0x80100060
rcu: Hierarchical SRCU implementation.
smp: Bringing up secondary CPUs ...
smp: Brought up 1 node, 1 CPU
SMP: Total of 1 processors activated (48.00 BogoMIPS).
CPU: All CPU(s) started in SVC mode.
devtmpfs: initialized
VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
futex hash table entries: 256 (order: 2, 16384 bytes, linear)
pinctrl core: initialized pinctrl subsystem
NET: Registered protocol family 16
DMA: preallocated 256 KiB pool for atomic coherent allocations
cpuidle: using governor menu
vdd3p0: supplied by regulator-dummy
cpu: supplied by regulator-dummy
vddsoc: supplied by regulator-dummy
failed to find ocotp node
hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
hw-breakpoint: maximum watchpoint size is 8 bytes.
imx6ul-pinctrl 20e0000.iomuxc: initialized IMX pinctrl driver
imx6ul-pinctrl 2290000.iomuxc-snvs: no groups defined in /soc/aips-bus@2200000/iomuxc-snvs@2290000
imx6ul-pinctrl 2290000.iomuxc-snvs: initialized IMX pinctrl driver
SCSI subsystem initialized
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
i2c i2c-1: IMX I2C adapter registered
pps_core: LinuxPPS API ver. 1 registered
pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
PTP clock support registered
MIPI CSI2 driver module loaded
Advanced Linux Sound Architecture Driver Initialized.
Bluetooth: Core ver 2.22
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
Bluetooth: L2CAP socket layer initialized
Bluetooth: SCO socket layer initialized
clocksource: Switched to clocksource mxc_timer1
VFS: Disk quotas dquot_6.6.0
VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
thermal_sys: Registered thermal governor 'step_wise'
NET: Registered protocol family 2
tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear)
TCP established hash table entries: 4096 (order: 2, 16384 bytes, linear)
TCP bind hash table entries: 4096 (order: 3, 32768 bytes, linear)
TCP: Hash tables configured (established 4096 bind 4096)
UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
NET: Registered protocol family 1
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
hw perfevents: enabled with armv7_cortex_a7 PMU driver, 5 counters available
Bus freq driver module loaded
Initialise system trusted keyrings
workingset: timestamp_bits=30 max_order=17 bucket_order=0
NFS: Registering the id_resolver key type
Key type id_resolver registered
Key type id_legacy registered
jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
fuse: init (API version 7.31)
Key type asymmetric registered
Asymmetric key parser 'x509' registered
io scheduler mq-deadline registered
io scheduler kyber registered
imx-sdma 20ec000.sdma: Direct firmware load for imx/sdma/sdma-imx6q.bin failed with error -2
imx-sdma 20ec000.sdma: Falling back to sysfs fallback for: imx/sdma/sdma-imx6q.bin
mxs-dma 1804000.dma-apbh: initialized
2020000.serial: ttymxc0 at MMIO 0x2020000 (irq = 22, base_baud = 5000000) is a IMX
printk: console [ttymxc0] enabled
21e8000.serial: ttymxc1 at MMIO 0x21e8000 (irq = 53, base_baud = 5000000) is a IMX
imx_rngc 2284000.rng: Freescale RNGC registered.
imx sema4 driver is registered.
Error: Driver 'mxsfb' is already registered, aborting...
brd: module loaded
loop: module loaded
imx ahci driver is registered.
nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xdc
nand: Micron MT29F4G08ABAFAH4
nand: 512 MiB, SLC, erase size: 256 KiB, page size: 4096, OOB size: 256
Bad block table not found for chip 0
Bad block table not found for chip 0
Scanning device for bad blocks
random: fast init done
Bad block table written to 0x00001ffc0000, version 0x01
Bad block table written to 0x00001ff80000, version 0x01
4 cmdlinepart partitions found on MTD device gpmi-nand
Creating 4 MTD partitions on "gpmi-nand":
0x000000000000-0x000000400000 : "boot"
0x000000400000-0x000000c00000 : "kernel"
0x000000c00000-0x000000d00000 : "dtb"
0x000000d00000-0x000020000000 : "rootfs"
gpmi-nand 1806000.gpmi-nand: driver registered.
libphy: Fixed MDIO Bus: probed
CAN device driver interface
pps pps0: new PPS source ptp0
libphy: fec_enet_mii_bus: probed
fec 2188000.ethernet eth0: registered PHC device 0
usbcore: registered new interface driver kaweth
pegasus: v0.9.3 (2013/04/25), Pegasus/Pegasus II USB Ethernet driver
usbcore: registered new interface driver pegasus
usbcore: registered new interface driver rtl8150
usbcore: registered new interface driver r8152
usbcore: registered new interface driver asix
usbcore: registered new interface driver ax88179_178a
usbcore: registered new interface driver cdc_ether
usbcore: registered new interface driver net1080
usbcore: registered new interface driver cdc_subset
usbcore: registered new interface driver zaurus
usbcore: registered new interface driver cdc_ncm
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci-mxc: Freescale On-Chip EHCI Host driver
usbcore: registered new interface driver usb-storage
usbcore: registered new interface driver usbserial_generic
usbserial: USB Serial support registered for generic
usbcore: registered new interface driver cp210x
usbserial: USB Serial support registered for cp210x
usbcore: registered new interface driver usb_ehset_test
imx_usb 2184000.usb: 2184000.usb supply vbus not found, using dummy regulator
ci_hdrc ci_hdrc.0: EHCI Host Controller
ci_hdrc ci_hdrc.0: new USB bus registered, assigned bus number 1
ci_hdrc ci_hdrc.0: USB 2.0 started, EHCI 1.00
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 1 port detected
imx_usb 2184200.usb: 2184200.usb supply vbus not found, using dummy regulator
ci_hdrc ci_hdrc.1: EHCI Host Controller
ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 2
ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 1 port detected
snvs_rtc 20cc000.snvs:snvs-rtc-lp: registered as rtc0
i2c /dev entries driver
imx2-wdt 20bc000.wdog: timeout 60 sec (nowayout=0)
Bluetooth: HCI UART driver ver 2.3
Bluetooth: HCI UART protocol H4 registered
Bluetooth: HCI UART protocol BCSP registered
Bluetooth: HCI UART protocol ATH3K registered
usbcore: registered new interface driver bcm203x
usbcore: registered new interface driver btusb
usbcore: registered new interface driver ath3k
sdhci: Secure Digital Host Controller Interface driver
sdhci: Copyright(c) Pierre Ossman
sdhci-pltfm: SDHCI platform and OF driver helper
sdhci-esdhc-imx 2190000.usdhc: Got CD GPIO
mmc0: SDHCI controller on 2190000.usdhc [2190000.usdhc] using ADMA
caam-snvs 20cc000.caam-snvs: violation handlers armed - init state
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
NET: Registered protocol family 26
NET: Registered protocol family 10
Segment Routing with IPv6
sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
NET: Registered protocol family 17
can: controller area network core (rev 20170425 abi 9)
NET: Registered protocol family 29
can: raw protocol (rev 20170425)
can: broadcast manager protocol (rev 20170425 t)
can: netlink gateway (rev 20190810) max_hops=1
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM ver 1.11
Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Bluetooth: BNEP filters: protocol multicast
Bluetooth: BNEP socket layer initialized
Bluetooth: HIDP (Human Interface Emulation) ver 1.2
Bluetooth: HIDP socket layer initialized
8021q: 802.1Q VLAN Support v1.8
lib80211: common routines for IEEE802.11 drivers
Key type dns_resolver registered
cpu cpu0: failed to disable 900MHz OPP
Registering SWP/SWPB emulation handler
Loading compiled-in X.509 certificates
imx_thermal tempmon: Industrial CPU temperature grade - max:105C critical:100C passive:95C
ubi0: attaching mtd3
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 542:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 542:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 542:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 542:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 553:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 553:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 553:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 553:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 590:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 590:8192, read only 253952 bytes, retry
random: crng init done
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 590:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 590:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 620:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 620:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 620:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 620:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 656:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 656:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 656:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 656:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 671:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 671:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 671:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 671:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 696:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 696:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 696:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 696:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 714:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 714:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 714:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 714:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 732:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 732:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 732:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 732:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 807:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 807:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 807:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 807:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 822:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 822:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 822:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 822:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 835:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 835:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 835:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 835:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 836:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 836:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 836:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 836:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 849:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 849:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 849:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 849:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 884:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 884:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 884:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 884:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 897:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 897:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 897:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 897:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 939:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 939:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 939:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 939:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 990:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 990:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 990:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 990:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1084:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1084:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1084:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1084:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1116:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1116:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1116:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1116:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1146:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1146:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1146:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1146:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1164:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1164:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1164:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1164:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1172:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1172:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1172:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1172:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1200:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1200:8192, read only 253952 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1200:8192, read only 253952 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 253952 bytes from PEB 1200:8192, read 253952 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<80623ac0>] (ubi_attach+0xb44/0x13d8)
[<80623ac0>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0: scanning is finished
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 24576 bytes from PEB 1202:8192, read only 24576 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 24576 bytes from PEB 1202:8192, read only 24576 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 24576 bytes from PEB 1202:8192, read only 24576 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 24576 bytes from PEB 1202:8192, read 24576 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<806147c8>] (ubi_read_volume_table+0x178/0xa00)
[<806147c8>] (ubi_read_volume_table) from [<806234ac>] (ubi_attach+0x530/0x13d8)
[<806234ac>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 24576 bytes from PEB 1203:8192, read only 24576 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 24576 bytes from PEB 1203:8192, read only 24576 bytes, retry
ubi0 warning: ubi_io_read: error -74 (ECC error) while reading 24576 bytes from PEB 1203:8192, read only 24576 bytes, retry
ubi0 error: ubi_io_read: error -74 (ECC error) while reading 24576 bytes from PEB 1203:8192, read 24576 bytes
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.70+g126efea9feb0 #1
Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[<8010f668>] (unwind_backtrace) from [<8010b674>] (show_stack+0x10/0x14)
[<8010b674>] (show_stack) from [<80a7657c>] (dump_stack+0x84/0x98)
[<80a7657c>] (dump_stack) from [<8061de78>] (ubi_io_read+0x148/0x338)
[<8061de78>] (ubi_io_read) from [<806147c8>] (ubi_read_volume_table+0x178/0xa00)
[<806147c8>] (ubi_read_volume_table) from [<806234ac>] (ubi_attach+0x530/0x13d8)
[<806234ac>] (ubi_attach) from [<80618094>] (ubi_attach_mtd_dev+0x470/0xb1c)
[<80618094>] (ubi_attach_mtd_dev) from [<80f46204>] (ubi_init+0x1ac/0x238)
[<80f46204>] (ubi_init) from [<80102730>] (do_one_initcall+0x58/0x1c4)
[<80102730>] (do_one_initcall) from [<80f00ee4>] (kernel_init_freeable+0x138/0x1d4)
[<80f00ee4>] (kernel_init_freeable) from [<80a8c900>] (kernel_init+0x8/0x110)
[<80a8c900>] (kernel_init) from [<801010e8>] (ret_from_fork+0x14/0x2c)
Exception stack(0x9804ffb0 to 0x9804fff8)
ffa0:                                     00000000 00000000 00000000 00000000
ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
ffe0: 00000000 00000000 00000000 00000000 00000013 00000000
ubi0 error: vtbl_check: bad CRC at record 2: 0xf116c36b, not 0x3ae173db
Volume table record 2 dump:
        reserved_pebs   0
        alignment       0
        data_pad        0
        vol_type        0
        upd_marker      0
        name_len        0
        name            NULL
ubi0 error: vtbl_check: bad CRC at record 2: 0xf116c36b, not 0x3ae173db
Volume table record 2 dump:
        reserved_pebs   0
        alignment       0
        data_pad        0
        vol_type        0
        upd_marker      0
        name_len        0
        name            NULL
ubi0 error: ubi_read_volume_table: both volume tables are corrupted
ubi0 error: ubi_attach_mtd_dev: failed to attach mtd3, error -22
UBI error: cannot attach mtd3
snvs_rtc 20cc000.snvs:snvs-rtc-lp: setting system clock to 1970-01-01T00:00:10 UTC (10)
cfg80211: Loading compiled-in X.509 certificates for regulatory database
cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
platform regulatory.0: Falling back to sysfs fallback for: regulatory.db
ALSA device list:
  No soundcards found.
VFS: Cannot open root device "ubi0:rootfs" or unknown-block(0,0): error -19
Please append a correct "root=" boot option; here are the available partitions:
0100           65536 ram0 
 (driver?)
0101           65536 ram1 
 (driver?)
0102           65536 ram2 
 (driver?)
0103           65536 ram3 
 (driver?)
0104           65536 ram4 
 (driver?)
0105           65536 ram5 
 (driver?)
0106           65536 ram6 
 (driver?)
0107           65536 ram7 
 (driver?)
0108           65536 ram8 
 (driver?)
0109           65536 ram9 
 (driver?)
010a           65536 ram10 
 (driver?)
010b           65536 ram11 
 (driver?)
010c           65536 ram12 
 (driver?)
010d           65536 ram13 
 (driver?)
010e           65536 ram14 
 (driver?)
010f           65536 ram15 
 (driver?)
1f00            4096 mtdblock0 
 (driver?)
1f01            8192 mtdblock1 
 (driver?)
1f02            1024 mtdblock2 
 (driver?)
1f03          510976 mtdblock3 
 (driver?)
Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) ]---

 

 

 

So the kernel isn't apparently able to locate/mount properly the rootfs partition. The vendor factory new DT produces the same output, So I'd say it's not a DT thing. Also ... as I've said ... the SoM is perfectly able to boot from mmc if I flash there the .wic image variant (produced in the very same execution of bitbake)

 

I think I must be missing something, so ... I'd appreciate your help and any clue on why is happening this.

 

Thank you very much.

 

Labels (3)
0 Kudos
2 Replies

1,239 Views
jfernandz
Contributor I
0 Kudos

1,243 Views
jfernandz
Contributor I

Well, I think I found the problem, actually the U-Boot version (maybe this specific build)

 

U-Boot 2016.07-gfab75f3-dirty (May 16 2019 - 12:08:22 +0200)

 

That one is the brand new U-Boot build it comes flashed in NAND from the provider. The U-Boot version this recipe delivers (u-boot.imx) boots perfectly the som from NAND. However ... I'd like to understand why this was happening, apparently the roofs.ubifs wasn't being flashed in the proper gpmi partition? 

 

ubi0: attached mtd1 (name "mtd=3", size 499 MiB)

 

The new u-boot build (I mean the mine one) apparently uses mtd4 ... but I'm not sure if this is because of some environment misconfig or because of the build itself. 

Also ... this is a problem for me... because this will mean I will have to look for a method to flash u-boot from itself because I find unconvenient to have to boot a mmc (SDCard) to flash u-boot and then boot the new flashed u-boot to flash the whole NAND and being able to boot the som.

0 Kudos