i.MX6 boot issue : Waiting for root device /dev/mmcblk0p1...

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

i.MX6 boot issue : Waiting for root device /dev/mmcblk0p1...

5,153 Views
haibohe
Contributor II

Reference Freescale_Yocto_Project_User's_Guide.pdf documents download codes

MFG Tools-->ucl2.xml:

<CMD state="BootStrap" type="boot" body="BootStrap" file ="uboot-mfg.bin" >Loading U-boot</CMD>

    <CMD state="BootStrap" type="load" file="uImage-mfg" address="0x10800000"

        loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE" >Loading Kernel.</CMD>

    <CMD state="BootStrap" type="load" file="initramfs.cpio.gz.uboot" address="0x10C00000"

        loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE" >Loading Initramfs.</CMD>

    <CMD state="BootStrap" type="jump" > Jumping to OS image. </CMD>

  <!--burn the uboot to SPI-NOR: -->

  <CMD state="Updater" type="push" body="$ flash_erase /dev/mtd0 0 0">Erasing Boot partition</CMD>

  <CMD state="Updater" type="push" body="send" file="image_31017/uboot-6q.imx">Sending U-Boot</CMD>

  <CMD state="Updater" type="push" body="$ dd if=$FILE of=/dev/mtd0 bs=512 seek=2">write U-Boot to SPI-NOR</CMD>

  <!-- partitioning the eMMC: -->

  <CMD state="Updater" type="push" body="$ echo 8 > /sys/devices/platform/sdhci-esdhc-imx.3/mmc_host/mmc0/mmc0:0001/boot_config">access user partition and enable boot partion 1 to boot</CMD>

  <CMD state="Updater" type="push" body="send" file="mksdcard-yocto.sh.tar">Sending partition shell</CMD>

  <CMD state="Updater" type="push" body="$ tar xf $FILE "> Partitioning...</CMD>

  <CMD state="Updater" type="push" body="$ sh mksdcard.sh /dev/mmcblk0"> Partitioning SD card now...</CMD>

  <!-- burn the uImage: -->

  <CMD state="Updater" type="push" body="send" file="image_31017/uImage">Sending kernel uImage</CMD>

  <CMD state="Updater" type="push" body="$ dd if=$FILE of=/dev/mmcblk0 bs=1M seek=1 conv=fsync">write kernel image to emmc</CMD>

  <CMD state="Updater" type="push" body="send" file="image_31017/imx6q-ldo.dtb">Sending devicetree file</CMD>

  <CMD state="Updater" type="push" body="$ dd if=$FILE of=/dev/mmcblk0 bs=1M seek=10 conv=fsync">write devicetree file to emmc</CMD>

  <!-- burn the rootfs: -->

  <CMD state="Updater" type="push" body="$ mkfs.ext3 -j /dev/mmcblk0p1">Formatting rootfs partition</CMD>

  <CMD state="Updater" type="push" body="$ mkdir -p /mnt/mmcblk0p1"/>

  <CMD state="Updater" type="push" body="$ mount -t ext3 /dev/mmcblk0p1 /mnt/mmcblk0p1"/>

  <CMD state="Updater" type="push" body="pipe tar -jxv -C /mnt/mmcblk0p1" file="image_31017/rtfs_qt.tar.bz2">Sending and writting rootfs</CMD>

  <CMD state="Updater" type="push" body="frf">Finishing rootfs write</CMD>

  <CMD state="Updater" type="push" body="$ umount /mnt/mmcblk0p1">Unmounting rootfs partition</CMD>

arm-linux-gcc -> 4.9.1 version

build kernel cmd

make distclean

make imx_v7_defconfig

make

make uImage LOADADDR=0x10008000

make imx6q-sabresd-ldo.dtb

boot log:

U-Boot 2014.04 (Jul 10 2015 - 10:53:31)

CPU:   Freescale i.MX6Q rev1.2 at 792 MHz

CPU:   Temperature 27 C, calibration data: 0x5804ee69

Reset cause: POR

Board: MX6-SabreSD

I2C:   ready

DRAM:  1 GiB

MMC:   FSL_SDHC: 0, FSL_SDHC: 1, FSL_SDHC: 2

Detected SPI NorFlash Total: 2 MiB

No panel detected: default to Hannstar-XGA

Display: Hannstar-XGA (1024x768)

In:    serial

Out:   serial

Err:   serial

Net:   FEC [PRIME]

Normal Boot

Hit any key to stop autoboot:  0

U-Boot > pri

baudrate=115200

bootargs_base=setenv bootargs console=ttymxc0,115200

bootargs_mmc=setenv bootargs ${bootargs} root=/dev/mmcblk0p1 rootwait rw

bootargs_nfs=setenv bootargs ${bootargs} root=/dev/nfs ip=${ipaddr} nfsroot=${serverip}:${nfsroot},v3,tcp

bootcmd=run bootcmd_mmc

bootcmd_mfg=run mfgtool_args;bootz ${loadaddr} ${initrd_addr} ${fdt_addr};

bootcmd_mmc=run bootargs_base bootargs_mmc;mmc dev 2;mmc read ${loadaddr} 0x800 0x4000;mmc read ${fdt_addr} 0x5000 0x800;bootm ${loadaddr} - ${fdt_addr}

bootcmd_net=run bootargs_base bootargs_nfs;tftpboot ${loadaddr} ${kernel};tftpboot ${fdt_addr} ${fdt_file};bootm ${loadaddr} - ${fdt_addr}

bootdelay=1

console=ttymxc0

ethact=FEC

ethaddr=00:6A:08:B0:AB:03

ethprime=FEC

fdt_addr=0x18000000

fdt_file=imx6q-sabresd-ldo.dtb

fdt_high=0xffffffff

initrd_addr=0x12C00000

initrd_high=0xffffffff

ipaddr=192.168.3.104

kernel=uImage

loadaddr=0x12000000

mfgtool_args=setenv bootargs console=ttymxc0,115200 rdinit=/linuxrc g_mass_storage.stall=0 g_mass_storage.removable=1 g_mass_storage.idVendor=0x066F g_mass_storage.idProduct=0x37FF

g_mass_storage.iSerialNumber="" enable_wait_mode=off

nfsroot=/home/meihuan/nfsroot

serverip=192.168.3.109

update_dtb=tftpboot ${fdt_addr} ${fdt_file}; mmc dev 2; mmc write ${fdt_addr} 0x5000 0x800

update_uImage=tftpboot ${loadaddr} ${kernel}; mmc dev 2; mmc write ${loadaddr} 0x800 0x4000

update_uboot=tftpboot ${loadaddr} u-boot.imx; sf probe; sf erase 0 0x80000; sf write ${loadaddr} 0x400 0x80000

Environment size: 1527/8188 bytes

U-Boot > run bootcmd_mmc

mmc2(part 0) is current device

MMC read: dev # 2, block # 2048, count 16384 ... 16384 blocks read: OK

MMC read: dev # 2, block # 20480, count 2048 ... 2048 blocks read: OK

## Booting kernel from Legacy Image at 12000000 ...

   Image Name:   Linux-3.14.28+g91cf351

   Image Type:   ARM Linux Kernel Image (uncompressed)

   Data Size:    5965920 Bytes = 5.7 MiB

   Load Address: 10008000

   Entry Point:  10008000

   Verifying Checksum ... OK

## Flattened Device Tree blob at 18000000

   Booting using the fdt blob at 0x18000000

   Loading Kernel Image ... OK

   Using Device Tree in place at 18000000, end 1800d4fa

Starting kernel ...

Booting Linux on physical CPU 0x0

Linux version 3.14.28+g91cf351 (harry@mh) (gcc version 4.9.1 (GCC) ) #1 SMP PREEMPT Fri Jul 10 14:47:44 CST 2015

CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d

CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache

Machine model: Freescale i.MX6 Quad SABRE Smart Device Board

cma: CMA: reserved 320 MiB at 3c000000

Memory policy: Data cache writealloc

PERCPU: Embedded 8 pages/cpu @ab723000 s8896 r8192 d15680 u32768

Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 260096

Kernel command line: console=ttymxc0,115200 root=/dev/mmcblk0p1 rootwait rw

PID hash table entries: 4096 (order: 2, 16384 bytes)

Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)

Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)

Memory: 696424K/1048576K available (7225K kernel code, 394K rwdata, 6168K rodata, 332K init, 429K bss, 352152K reserved, 0K highmem)

Virtual kernel memory layout:

    vector  : 0xffff0000 - 0xffff1000   (   4 kB)

    fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)

    vmalloc : 0xc0800000 - 0xff000000   (1000 MB)

    lowmem  : 0x80000000 - 0xc0000000   (1024 MB)

    pkmap   : 0x7fe00000 - 0x80000000   (   2 MB)

    modules : 0x7f000000 - 0x7fe00000   (  14 MB)

      .text : 0x80008000 - 0x80d1c7e0   (13394 kB)

      .init : 0x80d1d000 - 0x80d702c0   ( 333 kB)

      .data : 0x80d72000 - 0x80dd4a00   ( 395 kB)

       .bss : 0x80dd4a0c - 0x80e3fe2c   ( 430 kB)

SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1

Preemptible hierarchical RCU implementation.

NR_IRQS:16 nr_irqs:16 16

L310 cache controller enabled

l2x0: 16 ways, CACHE_ID 0x410000c7, AUX_CTRL 0x32070000, Cache size: 1024 kB

Switching to timer-based delay loop

sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 1431655765682ns

Console: colour dummy device 80x30

Calibrating delay loop (skipped), value calculated using timer frequency.. 6.00 BogoMIPS (lpj=30000)

pid_max: default: 32768 minimum: 301

Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)

Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)

CPU: Testing write buffer coherency: ok

CPU0: thread -1, cpu 0, socket 0, mpidr 80000000

Setting up static identity map for 0x106e0d50 - 0x106e0da8

CPU1: Booted secondary processor

CPU1: thread -1, cpu 1, socket 0, mpidr 80000001

CPU2: Booted secondary processor

CPU2: thread -1, cpu 2, socket 0, mpidr 80000002

CPU3: Booted secondary processor

CPU3: thread -1, cpu 3, socket 0, mpidr 80000003

Brought up 4 CPUs

SMP: Total of 4 processors activated.

CPU: All CPU(s) started in SVC mode.

devtmpfs: initialized

VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4

pinctrl core: initialized pinctrl subsystem

regulator-dummy: no parameters

NET: Registered protocol family 16

DMA: preallocated 256 KiB pool for atomic coherent allocations

cpuidle: using governor ladder

cpuidle: using governor menu

CPU identified as i.MX6Q, silicon rev 1.2

Use WDOG1 as reset source

syscon 20c8000.anatop: regmap [mem 0x020c8000-0x020c8fff] registered

vdd1p1: 800 <--> 1375 mV at 1100 mV

vdd3p0: 2800 <--> 3150 mV at 3000 mV

vdd2p5: 2000 <--> 2750 mV at 2400 mV

vddarm: 725 <--> 1450 mV at 1150 mV

vddpu: 725 <--> 1450 mV

vddsoc: 725 <--> 1450 mV at 1175 mV

syscon 20e0000.iomuxc-gpr: regmap [mem 0x020e0000-0x020e0037] registered

syscon 21bc000.ocotp-ctrl: regmap [mem 0x021bc000-0x021bffff] registered

hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers.

hw-breakpoint: maximum watchpoint size is 4 bytes.

imx6q-pinctrl 20e0000.iomuxc: initialized IMX pinctrl driver

bio: create slab <bio-0> at 0

mxs-dma 110000.dma-apbh: initialized

usb_otg_vbus: 5000 mV

usb_h1_vbus: 5000 mV

wm8962-supply: no parameters

mipi_dsi_pwr_on: no parameters

sensor-supply: 3300 mV

i2c-core: driver [max17135] using legacy suspend method

i2c-core: driver [max17135] using legacy resume method

SCSI subsystem initialized

usbcore: registered new interface driver usbfs

usbcore: registered new interface driver hub

usbcore: registered new device driver usb

usbphy_nop1.12 supply vcc not found, using dummy regulator

usbphy_nop2.13 supply vcc not found, using dummy regulator

i2c i2c-0: IMX I2C adapter registered

i2c i2c-1: IMX I2C adapter registered

i2c i2c-2: IMX I2C adapter registered

Linux video capture interface: v2.00

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

imx-ipuv3 2400000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)

imx-ipuv3 2800000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)

mxc_mipi_csi2 21dc000.mipi_csi: i.MX MIPI CSI2 driver probed

mxc_mipi_csi2 21dc000.mipi_csi: i.MX MIPI CSI2 dphy version is 0x3130302a

MIPI CSI2 driver module loaded

Advanced Linux Sound Architecture Driver Initialized.

Bluetooth: Core ver 2.18

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

cfg80211: Calling CRDA to update world regulatory domain

Switched to clocksource mxc_timer1

NET: Registered protocol family 2

TCP established hash table entries: 8192 (order: 3, 32768 bytes)

TCP bind hash table entries: 8192 (order: 4, 65536 bytes)

TCP: Hash tables configured (established 8192 bind 8192)

TCP: reno registered

UDP hash table entries: 512 (order: 2, 16384 bytes)

UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)

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-A9 PMU driver, 7 counters available

imx6_busfreq busfreq.16: DDR medium rate not supported.

Bus freq driver module loaded

futex hash table entries: 1024 (order: 4, 65536 bytes)

VFS: Disk quotas dquot_6.5.2

Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)

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.22)

msgmni has been set to 2000

io scheduler noop registered

io scheduler deadline registered

io scheduler cfq registered (default)

imx-weim 21b8000.weim: Driver registered.

backlight.29 supply power not found, using dummy regulator

mxc_mipi_dsi 21e0000.mipi: i.MX MIPI DSI driver probed

MIPI DSI driver module loaded

mxc_sdc_fb fb.24: registered mxc display driver ldb

imx-ipuv3 2800000.ipu: IPU DMFC DP HIGH RESOLUTION: 1(0,1), 5B(2~5), 5F(6,7)

Console: switching to colour frame buffer device 128x48

mxc_hdmi 20e0000.hdmi_video: Detected HDMI controller 0x13:0xa:0xa0:0xc1

fbcvt: 1920x1080@60: CVT Name - 2.073M9

mxc_sdc_fb fb.25: registered mxc display driver hdmi

mxc_sdc_fb fb.26: registered mxc display driver lcd

mxc_sdc_fb fb.26: ipu0-di0 already in use

mxc_sdc_fb: probe of fb.26 failed with error -16

mxc_sdc_fb fb.27: registered mxc display driver ldb

imx-sdma 20ec000.sdma: no iram assigned, using external mem

imx-sdma 20ec000.sdma: no event needs to be remapped

imx-sdma 20ec000.sdma: loaded firmware 3.1

imx-sdma 20ec000.sdma: initialized

pfuze100-regulator 1-0008: unrecognized pfuze chip ID!

pfuze100-regulator: probe of 1-0008 failed with error -5

Serial: IMX driver

2020000.serial: ttymxc0 at MMIO 0x2020000 (irq = 58, base_baud = 5000000) is a IMX

console [ttymxc0] enabled

serial: Freescale lpuart driver

imx sema4 driver is registered.

[drm] Initialized drm 1.1.0 20060810

[drm] Initialized vivante 1.0.0 20120216 on minor 0

brd: module loaded

loop: module loaded

ahci-imx 2200000.sata: fsl,transmit-level-mV not specified, using 00000024

ahci-imx 2200000.sata: fsl,transmit-boost-mdB not specified, using 00000480

ahci-imx 2200000.sata: fsl,transmit-atten-16ths not specified, using 00002000

ahci-imx 2200000.sata: fsl,receive-eq-mdB not specified, using 05000000

ahci-imx 2200000.sata: SSS flag set, parallel bus scan disabled

ahci-imx 2200000.sata: AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl platform mode

ahci-imx 2200000.sata: flags: ncq sntf stag pm led clo only pmp pio slum part ccc apst

scsi0 : ahci_platform

ata1: SATA max UDMA/133 mmio [mem 0x02200000-0x02203fff] port 0x100 irq 71

m25p80 spi0.0: unrecognized JEDEC id ffffff

spi_imx 2008000.ecspi: probed

CAN device driver interface

2188000.ethernet supply phy not found, using dummy regulator

pps pps0: new PPS source ptp0

libphy: fec_enet_mii_bus: probed

fec 2188000.ethernet eth0: registered PHC device 0

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

2184800.usbmisc supply vbus-wakeup 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

ci_hdrc ci_hdrc.1: doesn't support gadget

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

mousedev: PS/2 mouse device common for all mice

egalax_ts 1-0004: Failed to read firmware version

egalax_ts: probe of 1-0004 failed with error -5

egalax_ts 2-0004: Failed to read firmware version

egalax_ts: probe of 2-0004 failed with error -5

i2c-core: driver [isl29023] using legacy suspend method

i2c-core: driver [isl29023] using legacy resume method

snvs_rtc 20cc034.snvs-rtc-lp: rtc core: registered 20cc034.snvs-rtc-lp as rtc0

i2c /dev entries driver

IR NEC protocol handler initialized

IR RC5(x) protocol handler initialized

IR RC6 protocol handler initialized

IR JVC protocol handler initialized

IR Sony protocol handler initialized

IR RC5 (streamzap) protocol handler initialized

IR SANYO protocol handler initialized

IR MCE Keyboard/mouse protocol handler initialized

mxc_v4l2_output v4l2_out.32: V4L2 device registered as video16

mxc_v4l2_output v4l2_out.32: V4L2 device registered as video17

mxc_v4l2_output v4l2_out.32: V4L2 device registered as video18

mxc_v4l2_output v4l2_out.32: V4L2 device registered as video19

mxc_v4l2_output v4l2_out.32: V4L2 device registered as video20

mag3110 2-000e: check mag3110 chip ID

mag3110 2-000e: read chip ID 0xfffffffb is not equal to 0xc4!

mag3110: probe of 2-000e failed with error -22

i2c-core: driver [mag3110] using legacy suspend method

i2c-core: driver [mag3110] using legacy resume method

mma8451 0-001c: read chip ID 0x1 is not equal to 0x1a or 0x2a!

mma8451: probe of 0-001c failed with error -22

imx2-wdt 20bc000.wdog: IMX2+ Watchdog Timer enabled. timeout=60s (nowayout=0)

Bluetooth: HCI UART driver ver 2.2

Bluetooth: HCI H4 protocol initialized

Bluetooth: HCI BCSP protocol initialized

Bluetooth: HCIATH3K protocol initialized

usbcore: registered new interface driver bcm203x

usbcore: registered new interface driver btusb

Bluetooth: Generic Bluetooth SDIO driver ver 0.1

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

ata1: SATA link down (SStatus 0 SControl 300)

ahci-imx 2200000.sata: no device found, disabling link.

ahci-imx 2200000.sata: pass ahci_imx..hotplug=1 to enable hotplug

mmc1: no vqmmc regulator found

mmc1: no vmmc regulator found

mmc1: SDHCI controller on 2194000.usdhc [2194000.usdhc] using ADMA

mmc2: no vqmmc regulator found

mmc2: no vmmc regulator found

mmc2: SDHCI controller on 2198000.usdhc [2198000.usdhc] using ADMA

mmc3: no vqmmc regulator found

mmc3: no vmmc regulator found

usb 2-1: new high-speed USB device number 2 using ci_hdrc

mmc3: SDHCI controller on 219c000.usdhc [219c000.usdhc] using ADMA

Galcore version 5.0.11.25762

mmc3: BKOPS_EN bit is not set

mmc3: new high speed DDR MMC card at address 0001

mmcblk3: mmc3:0001 SEM04G 3.68 GiB

mmcblk3boot0: mmc3:0001 SEM04G partition 1 2.00 MiB

mmcblk3boot1: mmc3:0001 SEM04G partition 2 2.00 MiB

mmcblk3rpmb: mmc3:0001 SEM04G partition 3 2.00 MiB

mmcblk3: p1

hub 2-1:1.0: USB hub found

hub 2-1:1.0: 5 ports detected

mmcblk3boot1: unknown partition table

mmcblk3boot0: unknown partition table

mxc_vdoa 21e4000.vdoa: i.MX Video Data Order Adapter(VDOA) driver probed

mxc_vpu 2040000.vpu: VPU initialized

usb 2-1.1: new high-speed USB device number 3 using ci_hdrc

caam 2100000.caam: Instantiated RNG4 SH0

usb 2-1.4: new high-speed USB device number 4 using ci_hdrc

caam 2100000.caam: Instantiated RNG4 SH1

caam 2100000.caam: device ID = 0x0a160100 (Era 4)

caam 2100000.caam: job rings = 2, qi = 0

caam algorithms registered in /proc/crypto

caam_jr 2101000.jr0: registering rng-caam

platform caam_sm: blkkey_ex: 4 keystore units available

platform caam_sm: 64-bit clear key:

platform caam_sm: [0000] 00 01 02 03 04 0f 06 07

platform caam_sm: 64-bit black key:

platform caam_sm: [0000] b2 fa d4 54 3d 3e 18 e6

platform caam_sm: [0008] 79 9f 14 84 e7 da fd a0

platform caam_sm: 128-bit clear key:

platform caam_sm: [0000] 00 01 02 03 04 0f 06 07

platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f

platform caam_sm: 128-bit black key:

platform caam_sm: [0000] 41 04 0c eb ba 68 fd fe

platform caam_sm: [0008] c3 f6 f6 33 a1 82 ce 74

platform caam_sm: 192-bit clear key:

platform caam_sm: [0000] 00 01 02 03 04 0f 06 07

platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f

platform caam_sm: [0016] 10 11 12 13 14 15 16 17

platform caam_sm: 192-bit black key:

platform caam_sm: [0000] f5 fe ee 26 e6 33 d3 14

platform caam_sm: [0008] e8 32 4c 26 31 24 dc f5

platform caam_sm: [0016] 12 6e 40 be 9a f7 cd e2

platform caam_sm: [0024] 11 f1 0d 93 a2 fc de 1d

platform caam_sm: 256-bit clear key:

platform caam_sm: [0000] 00 01 02 03 04 0f 06 07

platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f

platform caam_sm: [0016] 10 11 12 13 14 15 16 17

platform caam_sm: [0024] 18 19 1a 1b 1c 1d 1e 1f

platform caam_sm: 256-bit black key:

platform caam_sm: [0000] b0 c5 a1 3b 7e 8f a0 79

platform caam_sm: [0008] ad bc 7b 7f 81 6f 82 72

platform caam_sm: [0016] 84 16 9f 57 9b 58 65 7d

platform caam_sm: [0024] 5b 60 f3 71 4b e0 d9 56

platform caam_sm: 64-bit unwritten blob:

platform caam_sm: [0000] 00 00 00 00 00 00 00 00

platform caam_sm: [0008] 00 00 00 00 00 00 00 00

platform caam_sm: [0016] 00 00 00 00 00 00 00 00

platform caam_sm: [0024] 00 00 00 00 00 00 00 00

platform caam_sm: [0032] 00 00 00 00 00 00 00 00

platform caam_sm: [0040] 00 00 00 00 00 00 00 00

platform caam_sm: [0048] 00 00 00 00 00 00 00 00

platform caam_sm: [0056] 00 00 00 00 00 00 00 00

platform caam_sm: [0064] 00 00 00 00 00 00 00 00

platform caam_sm: [0072] 00 00 00 00 00 00 00 00

platform caam_sm: [0080] 00 00 00 00 00 00 00 00

platform caam_sm: [0088] 00 00 00 00 00 00 00 00

platform caam_sm: 128-bit unwritten blob:

platform caam_sm: [0000] 00 00 00 00 00 00 00 00

platform caam_sm: [0008] 00 00 00 00 00 00 00 00

platform caam_sm: [0016] 00 00 00 00 00 00 00 00

platform caam_sm: [0024] 00 00 00 00 00 00 00 00

platform caam_sm: [0032] 00 00 00 00 00 00 00 00

platform caam_sm: [0040] 00 00 00 00 00 00 00 00

platform caam_sm: [0048] 00 00 00 00 00 00 00 00

platform caam_sm: [0056] 00 00 00 00 00 00 00 00

platform caam_sm: [0064] 00 00 00 00 00 00 00 00

platform caam_sm: [0072] 00 00 00 00 00 00 00 00

platform caam_sm: [0080] 00 00 00 00 00 00 00 00

platform caam_sm: [0088] 00 00 00 00 00 00 00 00

platform caam_sm: 196-bit unwritten blob:

platform caam_sm: [0000] 00 00 00 00 00 00 00 00

platform caam_sm: [0008] 00 00 00 00 00 00 00 00

platform caam_sm: [0016] 00 00 00 00 00 00 00 00

platform caam_sm: [0024] 00 00 00 00 00 00 00 00

platform caam_sm: [0032] 00 00 00 00 00 00 00 00

platform caam_sm: [0040] 00 00 00 00 00 00 00 00

platform caam_sm: [0048] 00 00 00 00 00 00 00 00

platform caam_sm: [0056] 00 00 00 00 00 00 00 00

platform caam_sm: [0064] 00 00 00 00 00 00 00 00

platform caam_sm: [0072] 00 00 00 00 00 00 00 00

platform caam_sm: [0080] 00 00 00 00 00 00 00 00

platform caam_sm: [0088] 00 00 00 00 00 00 00 00

platform caam_sm: 256-bit unwritten blob:

platform caam_sm: [0000] 00 00 00 00 00 00 00 00

platform caam_sm: [0008] 00 00 00 00 00 00 00 00

platform caam_sm: [0016] 00 00 00 00 00 00 00 00

platform caam_sm: [0024] 00 00 00 00 00 00 00 00

platform caam_sm: [0032] 00 00 00 00 00 00 00 00

platform caam_sm: [0040] 00 00 00 00 00 00 00 00

platform caam_sm: [0048] 00 00 00 00 00 00 00 00

platform caam_sm: [0056] 00 00 00 00 00 00 00 00

platform caam_sm: [0064] 00 00 00 00 00 00 00 00

platform caam_sm: [0072] 00 00 00 00 00 00 00 00

platform caam_sm: [0080] 00 00 00 00 00 00 00 00

platform caam_sm: [0088] 00 00 00 00 00 00 00 00

platform caam_sm: 64-bit black key in blob:

platform caam_sm: [0000] 36 b9 0d 6c 66 3f 3e f2

platform caam_sm: [0008] f0 bc 5a a5 cb 06 35 7b

platform caam_sm: [0016] 8f d7 42 a8 c3 35 66 28

platform caam_sm: [0024] a8 6a 90 c5 c9 9a 58 19

platform caam_sm: [0032] be f0 7a 1a ae 43 6f b7

platform caam_sm: [0040] 9a 24 64 ef 79 e4 66 e2

platform caam_sm: [0048] 25 aa 0b fb 73 5b cc e3

platform caam_sm: [0056] 00 00 00 00 00 00 00 00

platform caam_sm: [0064] 00 00 00 00 00 00 00 00

platform caam_sm: [0072] 00 00 00 00 00 00 00 00

platform caam_sm: [0080] 00 00 00 00 00 00 00 00

platform caam_sm: [0088] 00 00 00 00 00 00 00 00

platform caam_sm: 128-bit black key in blob:

platform caam_sm: [0000] 8d a6 c5 95 0c dc c1 14

platform caam_sm: [0008] ca de a2 b5 43 b5 9f 9d

platform caam_sm: [0016] 69 61 31 33 d5 f9 bf 96

platform caam_sm: [0024] d8 0a 20 fe bb 2c db 7f

platform caam_sm: [0032] 76 18 3f 84 89 78 0b b3

platform caam_sm: [0040] 58 f1 26 10 7f 99 00 82

platform caam_sm: [0048] 8d 51 ec 1a 30 75 b2 ff

platform caam_sm: [0056] 10 8d df 9f 6a 7c 59 e5

platform caam_sm: [0064] 00 00 00 00 00 00 00 00

platform caam_sm: [0072] 00 00 00 00 00 00 00 00

platform caam_sm: [0080] 00 00 00 00 00 00 00 00

platform caam_sm: [0088] 00 00 00 00 00 00 00 00

platform caam_sm: 192-bit black key in blob:

platform caam_sm: [0000] c1 f4 65 21 78 98 9f 79

platform caam_sm: [0008] 3e e4 7f b2 c6 46 a6 d0

platform caam_sm: [0016] a3 25 88 8c 0c 0d 1a 95

platform caam_sm: [0024] 13 c2 a2 11 51 cb 23 c8

platform caam_sm: [0032] 2a 27 ce f1 2d d4 8d d4

platform caam_sm: [0040] a2 75 67 b6 bb a4 1c 86

platform caam_sm: [0048] bc 76 66 f9 01 cc f9 34

platform caam_sm: [0056] 49 d7 9b dc 49 04 24 bf

platform caam_sm: [0064] 75 30 6d 8a 15 fa f0 55

platform caam_sm: [0072] 00 00 00 00 00 00 00 00

platform caam_sm: [0080] 00 00 00 00 00 00 00 00

platform caam_sm: [0088] 00 00 00 00 00 00 00 00

platform caam_sm: 256-bit black key in blob:

platform caam_sm: [0000] 11 c7 72 f4 56 0c 9c b5

platform caam_sm: [0008] 01 e3 2b bb ed 59 77 7c

platform caam_sm: [0016] 0f 9d 4f 67 c5 5f b2 3c

platform caam_sm: [0024] 6a 9e 74 b1 f6 3b da 75

platform caam_sm: [0032] a0 a6 06 c1 ab ff c9 5f

platform caam_sm: [0040] 15 5a e5 d1 a7 4d 5b cf

platform caam_sm: [0048] 2b 86 43 d7 c8 fe 98 d9

platform caam_sm: [0056] d6 cc 9f f3 16 58 96 0a

platform caam_sm: [0064] 93 09 ee 96 f8 dc e5 c2

platform caam_sm: [0072] 8f 6b 32 fa 7d 71 35 56

platform caam_sm: [0080] 00 00 00 00 00 00 00 00

platform caam_sm: [0088] 00 00 00 00 00 00 00 00

platform caam_sm: restored 64-bit black key:

platform caam_sm: [0000] 7f 84 e4 e5 db f3 b5 ee

platform caam_sm: [0008] 2d d6 93 d1 5a 84 f6 5a

platform caam_sm: restored 128-bit black key:

platform caam_sm: [0000] 41 04 0c eb ba 68 fd fe

platform caam_sm: [0008] c3 f6 f6 33 a1 82 ce 74

platform caam_sm: restored 192-bit black key:

platform caam_sm: [0000] f5 fe ee 26 e6 33 d3 14

platform caam_sm: [0008] e8 32 4c 26 31 24 dc f5

platform caam_sm: [0016] 00 3f d9 ea f0 fc 20 2b

platform caam_sm: [0024] 52 b6 ae d0 bd 08 28 e0

platform caam_sm: restored 256-bit black key:

platform caam_sm: [0000] b0 c5 a1 3b 7e 8f a0 79

platform caam_sm: [0008] ad bc 7b 7f 81 6f 82 72

platform caam_sm: [0016] 84 16 9f 57 9b 58 65 7d

platform caam_sm: [0024] 5b 60 f3 71 4b e0 d9 56

snvs-secvio 20cc000.caam-snvs: violation handlers armed - non-secure state

usbcore: registered new interface driver usbhid

usbhid: USB HID core driver

wm8962 0-001a: customer id 0 revision D

fsl-asrc 2034000.asrc: driver registered

input: WM8962 Beep Generator as /devices/soc0/soc.0/2100000.aips-bus/21a0000.i2c/i2c-0/0-001a/input/input2

imx-wm8962 sound.22: wm8962 <-> 202c000.ssi mapping ok

imx-audio-hdmi sound-hdmi.23: hdmi-hifi <-> hdmi_audio.3 mapping ok

NET: Registered protocol family 26

TCP: cubic registered

NET: Registered protocol family 10

sit: IPv6 over IPv4 tunneling driver

NET: Registered protocol family 17

can: controller area network core (rev 20120528 abi 9)

NET: Registered protocol family 29

can: raw protocol (rev 20120528)

can: broadcast manager protocol (rev 20120528 t)

can: netlink gateway (rev 20130117) 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

Key type dns_resolver registered

wm8962-supply: disabling

regulator-dummy: disabling

imx mcc test is registered.

input: gpio-keys.21 as /devices/soc0/gpio-keys.21/input/input5

snvs_rtc 20cc034.snvs-rtc-lp: setting system clock to 1970-01-01 00:00:02 UTC (2)

ALSA device list:

  #0: wm8962-audio

  #1: imx-hdmi-soc

Waiting for root device /dev/mmcblk0p1...

u-boot-2014.04 and kernel-3.14.28-> Waiting for root device /dev/mmcblk0p1...

u-boot-2013.04 and kernel-3.10.17->Normal boot

u-boot-2014.04 and kernel-3.10.17->Normal boot

Start is start of the eMMC, do not know why, please Freescale Semiconductor engineers to analyze, thank you!

Labels (3)
0 Kudos
5 Replies

1,910 Views
haibohe
Contributor II

mmc3: BKOPS_EN bit is not set

mmc3: new high speed DDR MMC card at address 0001

mmcblk3: mmc3:0001 SEM04G 3.68 GiB

mmcblk3boot0: mmc3:0001 SEM04G partition 1 2.00 MiB

mmcblk3boot1: mmc3:0001 SEM04G partition 2 2.00 MiB

mmcblk3rpmb: mmc3:0001 SEM04G partition 3 2.00 MiB

mmcblk3: p1

According to log info is MMC3, somewhat less understood is that MFG mmcblk0p1 tools are issued by the district and the boot becomes MMC3

root=/dev/mmcblk3p1 rootwait rw->Normal boot

0 Kudos

1,910 Views
igorpadykov
NXP Employee
NXP Employee

Hi haibo

numbering is explained in i.MX_Linux_User's_Guide p.24

from L3.14.28_1.0.0_iMX6QDLS_BUNDLE

i.MX_Linux_User's_Guide p.24.jpg

Best regards

igor

0 Kudos

1,910 Views
haibohe
Contributor II

Thank you for your solution checked

0 Kudos

1,910 Views
angelo_d
Senior Contributor I

You need to pass bootparams from u-boot with inside:

root=/dev/mmcblk2p1 rootwait rw

note the 2 in place of 0.

0 Kudos

1,910 Views
haibohe
Contributor II

Thank you for your solution checked

0 Kudos