This thread has been locked.

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

Linux/TDA2EVM5777: mksdboot.sh format 8gb / 4gbSD card and create two partitions error?

Part Number: TDA2EVM5777
Other Parts Discussed in Thread: DRA742, PMP, DRA752

Tool/software: Linux

TDA2EVM5777

software: PROCESSOR_SDK_VISION_03_00_00_00_setuplinux.bin

host hardware: Linux Ubuntu 14.04 64 bit (Ubuntu on a virtual machine)

target hardware: VAYU ES2.0 GP EVM VISION - EVM5777G-03-40-00 703760-1031 REV C

refer VisionSDK_Linux_UserGuide.pdf -> 4.2 Preparing SD card & Boot -> 4. Format SD card and create two partitions (boot (FAT32) and rootfs(ext4)) using mksdboot.sh.

SD card: micro sd 8GB

There is a question about  format SD card and create two partitions. I need help.

I also try to use 4 GB sd card, with the same error.   

Thank you very much.

strong@ubuntu:~$ bash
strong@ubuntu:~$ export INSTALL_DIR=/home/strong/PROCESSOR_SDK_VISION_03_00_00_00
strong@ubuntu:~$ echo $INSTALL_DIR
/home/strong/PROCESSOR_SDK_VISION_03_00_00_00
strong@ubuntu:~$ export BOOT_DIR=/home/strong/PROCESSOR_SDK_VISION_03_00_00_00/vision_sdk/binaries/apps/tda2xx_evm_linux_all
strong@ubuntu:~$ cd $BOOT_DIR
strong@ubuntu:~/PROCESSOR_SDK_VISION_03_00_00_00/vision_sdk/binaries/apps/tda2xx_evm_linux_all$ sudo ./mksdboot.sh --device /dev/sdb1 --sdk $BOOT_DIR
[sudo] password for strong:
-- Main device is: /dev/sda1
************************************************************
* THIS WILL DELETE ALL THE DATA ON /dev/sdb1 *
* *
* WARNING! Make sure your computer does not go *
* in to idle mode while this script is *
* running. The script will complete, *
* but your SD card may be corrupted. *
* *
* Press <ENTER> to confirm.... *
************************************************************

unmounting device '/dev/sdb1'
2048+0 records in
2048+0 records out
1048576 bytes (1.0 MB) copied, 0.984664 s, 1.1 MB/s
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel with disk identifier 0xb8520dfa.
Changes will remain in memory only, until you decide to write them.
After that, of course, the previous content won't be recoverable.

Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)

Command (m for help): Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p): Partition number (1-4, default 1): First sector (2048-15124479, default 2048): Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-15124479, default 15124479):
Command (m for help): Partition type:
p primary (1 primary, 0 extended, 3 free)
e extended
Select (default p): Partition number (1-4, default 2): First sector (264192-15124479, default 264192): Using default value 264192
Last sector, +sectors or +size{K,M,G} (264192-15124479, default 15124479): Using default value 15124479

Command (m for help): Partition number (1-4): Hex code (type L to list codes): Changed system type of partition 1 to c (W95 FAT32 (LBA))

Command (m for help): Partition number (1-4):
Command (m for help): The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 22: Invalid argument.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)

WARNING: If you have created or modified any DOS 6.x
partitions, please see the fdisk manual page for additional
information.
Syncing disks.
Formating /dev/sdb1p1...
Cant find boot partition in /dev
Formating /dev/sdb1p2...
Cant find rootfs partition in /dev
Copying filesystem on /dev/sdb1p1, /dev/sdb1p2
mount: special device /dev/sdb1p1 does not exist
mount: special device /dev/sdb1p2 does not exist
Extracting filesystem on /dev/sdb1p2 ...
unmounting /dev/sdb1p1, /dev/sdb1p2
umount: /tmp/sdk/4035/boot: not mounted
umount: /tmp/sdk/4035/rootfs: not mounted
completed!

mksdboot.sh portion

......

echo "************************************************************"
echo "* THIS WILL DELETE ALL THE DATA ON $device *"
echo "* *"
echo "* WARNING! Make sure your computer does not go *"
echo "* in to idle mode while this script is *"
echo "* running. The script will complete, *"
echo "* but your SD card may be corrupted. *"
echo "* *"
echo "* Press <ENTER> to confirm.... *"
echo "************************************************************"
read junk

for i in `ls -1 $device`; do
echo "unmounting device '$i'"
umount $i 2>/dev/null
done

dd if=/dev/zero of=$device bs=512 count=2048

sync

cat << END | fdisk $device
n
p
1

+128M
n
p
2


t
1
c
a
1
w
END

# handle various device names.
PARTITION1=${device}p1
if [ ! -b ${PARTITION1} ]; then
PARTITION1=${device}p1
fi

PARTITION2=${device}p2
if [ ! -b ${PARTITION2} ]; then
PARTITION2=${device}p2
fi

# make partitions.
echo "Formating ${PARTITION1}..."
if [ -b ${PARTITION1} ]; then
mkfs.vfat -F 32 -n "boot" ${PARTITION1}
else
echo "Cant find boot partition in /dev"
fi

echo "Formating ${PARTITION2}..."
if [ -b ${PARTITION2} ]; then
mkfs.ext4 -L "rootfs" ${PARTITION2}
else
echo "Cant find rootfs partition in /dev"
fi

......

 

 

  • Hi,

    I have forwarded your question to VisionSDK Experts.

    Regards,
    Yordan
  • Hi ,

    Can you please provide me the mksdboot.sh file

    Regards
    Chetan.M
  • PROCESSOR_SDK_VISION_03_00_00_00/vision_sdk/build/hlos/scripts/linux/mksdboot.sh

    mksdboot.rar

  • mksdboot.zipHi ,

    Can you try with the following script .

    replace the older script and let us know the result

    Regards

    Chetan.M

  • It works. Thank you very much.

    But sd card boot fails...

    I also follow the steps with 4g sd card and 8g sd card.

    print the same error.

    I need your help. Thanks in advance.

    U-Boot SPL 2016.05-00002-g1439a4f (Sep 14 2017 - 20:44:19)
    DRA752-GP ES2.0
    i2c_write: error waiting for addr ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    MMC Device 1 not found
    *** Warning - No MMC card found, using default environment

    Trying to boot from MMC1
    MMC Device 1 not found
    *** Warning - No MMC card found, using default environment

    reading u-boot.img
    reading u-boot.img
    reading u-boot.img
    reading u-boot.img


    U-Boot 2016.05-00002-g1439a4f (Sep 14 2017 - 20:44:19 -0700)

    CPU : DRA752-GP ES2.0
    Model: TI DRA742
    Board: DRA74x EVM REV H.0
    DRAM: 4 GiB
    MMC: OMAP SD/MMC: 0, OMAP SD/MMC: 1
    ** First descriptor is NOT a primary desc on 1:1 **
    GUID Partition Table Header signature is wrong: 0x0 != 0x5452415020494645
    part_get_info_efi: *** ERROR: Invalid GPT ***
    GUID Partition Table Header signature is wrong: 0x0 != 0x5452415020494645
    part_get_info_efi: *** ERROR: Invalid Backup GPT ***
    ERROR: cannot find partition: 'userdata'

    at arch/arm/cpu/armv7/omap-common/utils.c:195/mmc_get_part_size()
    Warning: fastboot.userdata_size: unable to calc
    SCSI: SATA link 0 timeout.
    AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
    flags: 64bit ncq stag pm led clo only pmp pio slum part ccc apst
    scanning bus for devices...
    Found 0 device(s).
    Net:
    Warning: ethernet@48484000 using MAC address from ROM
    eth0: ethernet@48484000
    Hit any key to stop autoboot: 0
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    switch to partitions #0, OK
    mmc0 is current device
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    SD/MMC found on device 0
    reading boot.scr
    ** Unable to read file boot.scr **
    reading uEnv.txt
    165 bytes read in 2 ms (80.1 KiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc0 ...
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    switch to partitions #0, OK
    mmc0 is current device
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    SD/MMC found on device 0
    3634000 bytes read in 197 ms (17.6 MiB/s)
    109715 bytes read in 24 ms (4.4 MiB/s)
    Booting from mmc0 ...
    Kernel image @ 0x82000000 [ 0x000000 - 0x377350 ]
    ## Flattened Device Tree blob at 88000000
    Booting using the fdt blob at 0x88000000
    Loading Device Tree to 8ffe2000, end 8ffffc92 ... OK

    Starting kernel ...

    [ 0.000000] Booting Linux on physical CPU 0x0
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 4.4.45-00014-gc08192c-dirty (strong@ubuntu) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #3 SMP PREEMPT Thu Sep 14 20:45:43 PDT 2017
    [ 0.000000] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), cr=30c5387d
    [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
    [ 0.000000] Machine model: TI DRA742
    [ 0.000000] Reserved memory: created DMA memory pool at 0x0000000040300000, size 3 MiB
    [ 0.000000] Reserved memory: initialized node cmem@40300000, compatible id shared-dma-pool
    [ 0.000000] Reserved memory: regions without no-map are not yet supported
    [ 0.000000] Reserved memory: created CMA memory pool at 0x0000000099000000, size 80 MiB
    [ 0.000000] Reserved memory: initialized node ipu2_cma@95800000, compatible id shared-dma-pool
    [ 0.000000] Reserved memory: created CMA memory pool at 0x000000009e000000, size 32 MiB
    [ 0.000000] Reserved memory: initialized node ipu1_cma@9d000000, compatible id shared-dma-pool
    [ 0.000000] Reserved memory: regions without no-map are not yet supported
    [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000a1000000, size 32 MiB
    [ 0.000000] Reserved memory: initialized node dsp1_cma@99000000, compatible id shared-dma-pool
    [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000a3000000, size 32 MiB
    [ 0.000000] Reserved memory: initialized node dsp2_cma@9f000000, compatible id shared-dma-pool
    [ 0.000000] Reserved memory: regions without no-map are not yet supported
    [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a9000000, size 64 MiB
    [ 0.000000] Reserved memory: initialized node cmem@A9000000, compatible id shared-dma-pool
    [ 0.000000] cma: Reserved 24 MiB at 0x00000000be400000
    [ 0.000000] Forcing write-allocate cache policy for SMP
    [ 0.000000] Memory policy: Data cache writealloc
    [ 0.000000] OMAP4: Map 0x00000000bfd00000 to fe600000 for dram barrier
    [ 0.000000] DRA752 ES2.0
    [ 0.000000] PERCPU: Embedded 11 pages/cpu @ef627000 s14848 r8192 d22016 u45056
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 243264
    [ 0.000000] Kernel command line: console=ttyO0,115200n8 vram=16M root=PARTUUID=dd5190b8-02 rw rootwait ip=none mem=1024M
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Memory: 328752K/979968K available (6627K kernel code, 371K rwdata, 2492K rodata, 332K init, 290K bss, 446416K reserved, 204800K cma-reserved, 234496K highmem)
    [ 0.000000] Virtual kernel memory layout:
    [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
    [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB)
    [ 0.000000] vmalloc : 0xf0800000 - 0xff800000 ( 240 MB)
    [ 0.000000] lowmem : 0xc0000000 - 0xf0000000 ( 768 MB)
    [ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
    [ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB)
    [ 0.000000] .text : 0xc0008000 - 0xc08f0044 (9121 kB)
    [ 0.000000] .init : 0xc08f1000 - 0xc0944000 ( 332 kB)
    [ 0.000000] .data : 0xc0944000 - 0xc09a0fd0 ( 372 kB)
    [ 0.000000] .bss : 0xc09a2000 - 0xc09ea880 ( 291 kB)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] Build-time adjustment of leaf fanout to 32.
    [ 0.000000] NR_IRQS:16 nr_irqs:16 16
    [ 0.000000] ti_dt_clocks_register: failed to lookup clock node gmac_gmii_ref_clk_div
    [ 0.000000] OMAP clockevent source: timer1 at 32786 Hz
    [ 0.000000] Architected cp15 timer(s) running at 6.14MHz (phys).
    [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x16af5adb9, max_idle_ns: 440795202250 ns
    [ 0.000004] sched_clock: 56 bits at 6MHz, resolution 162ns, wraps every 4398046511023ns
    [ 0.000014] Switching to timer-based delay loop, resolution 162ns
    [ 0.000337] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns
    [ 0.000344] OMAP clocksource: 32k_counter at 32768 Hz
    [ 0.000816] Console: colour dummy device 80x30
    [ 0.000832] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
    [ 0.000838] This ensures that you still see kernel messages. Please
    [ 0.000844] update your kernel commandline.
    [ 0.000856] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.29 BogoMIPS (lpj=61475)
    [ 0.000869] pid_max: default: 32768 minimum: 301
    [ 0.000962] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.000973] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.001501] Initializing cgroup subsys io
    [ 0.001518] Initializing cgroup subsys memory
    [ 0.001542] Initializing cgroup subsys devices
    [ 0.001555] Initializing cgroup subsys freezer
    [ 0.001566] Initializing cgroup subsys perf_event
    [ 0.001579] Initializing cgroup subsys pids
    [ 0.001605] CPU: Testing write buffer coherency: ok
    [ 0.001806] /cpus/cpu@0 missing clock-frequency property
    [ 0.001822] /cpus/cpu@1 missing clock-frequency property
    [ 0.001832] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
    [ 0.001868] Setting up static identity map for 0x80008380 - 0x800083e0
    [ 0.080162] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
    [ 0.080223] Brought up 2 CPUs
    [ 0.080237] SMP: Total of 2 processors activated (24.59 BogoMIPS).

    [ 0.080243] CPU: All CPU(s) started in HYP mode.
    [ 0.080249] CPU: Virtualization extensions available.
    [ 0.080615] devtmpfs: initialized
    [ 0.109840] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
    [ 0.110815] omap_hwmod: l3_main_2 using broken dt data from ocp
    [ 0.206927] omap_hwmod: vpe: no dt node
    [ 0.206935] ------------[ cut here ]------------
    [ 0.206949] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2523 _init.constprop.23+0x200/0x428()
    [ 0.206957] omap_hwmod: vpe: doesn't have mpu register target base
    [ 0.206963] Modules linked in:
    [ 0.206977] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.4.45-00014-gc08192c-dirty #3
    [ 0.206985] Hardware name: Generic DRA74X (Flattened Device Tree)
    [ 0.206991] Backtrace:
    [ 0.207012] [<c00131b8>] (dump_backtrace) from [<c00133b4>] (show_stack+0x18/0x1c)
    [ 0.207019] r7:c08fe01c r6:60000013 r5:00000000 r4:c0970e0c
    [ 0.207047] [<c001339c>] (show_stack) from [<c02b4e0c>] (dump_stack+0x8c/0xa0)
    [ 0.207061] [<c02b4d80>] (dump_stack) from [<c0034f6c>] (warn_slowpath_common+0x88/0xb8)
    [ 0.207067] r7:c08fe01c r6:000009db r5:00000009 r4:ef073e58
    [ 0.207090] [<c0034ee4>] (warn_slowpath_common) from [<c0034fd4>] (warn_slowpath_fmt+0x38/0x40)
    [ 0.207097] r8:000000ab r7:ef1e86c0 r6:00000000 r5:00000000 r4:c08257b0
    [ 0.207122] [<c0034fa0>] (warn_slowpath_fmt) from [<c08fe01c>] (_init.constprop.23+0x200/0x428)
    [ 0.207128] r3:c0827a90 r2:c08257b0
    [ 0.207139] r4:c0954e98
    [ 0.207152] [<c08fde1c>] (_init.constprop.23) from [<c08fe374>] (__omap_hwmod_setup_all+0x48/0x98)
    [ 0.207158] r10:00000000 r9:c08f1600 r8:000000ab r7:ef1e86c0 r6:c09496b0 r5:c094bb38
    [ 0.207180] r4:c0954e98
    [ 0.207193] [<c08fe32c>] (__omap_hwmod_setup_all) from [<c000982c>] (do_one_initcall+0x98/0x1e4)
    [ 0.207199] r5:c08fe32c r4:c09496b0
    [ 0.207216] [<c0009794>] (do_one_initcall) from [<c08f1f68>] (kernel_init_freeable+0x1d4/0x268)
    [ 0.207222] r10:00000002 r9:c08f1600 r8:000000ab r7:c0931820 r6:c093eff4 r5:c09a2000
    [ 0.207244] r4:c09a2000
    [ 0.207260] [<c08f1d94>] (kernel_init_freeable) from [<c0679ce4>] (kernel_init+0x18/0xf4)
    [ 0.207266] r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0679ccc
    [ 0.207287] r4:c09a2000
    [ 0.207300] [<c0679ccc>] (kernel_init) from [<c000fb88>] (ret_from_fork+0x14/0x2c)
    [ 0.207307] r5:c0679ccc r4:00000000
    [ 0.207330] ---[ end trace 8d5d5cbb076d5d27 ]---
    [ 0.209451] omap_hwmod: wd_timer2: no dt node
    [ 0.209458] ------------[ cut here ]------------
    [ 0.209469] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2523 _init.constprop.23+0x200/0x428()
    [ 0.209475] omap_hwmod: wd_timer2: doesn't have mpu register target base
    [ 0.209480] Modules linked in:
    [ 0.209492] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G W 4.4.45-00014-gc08192c-dirty #3
    [ 0.209499] Hardware name: Generic DRA74X (Flattened Device Tree)
    [ 0.209504] Backtrace:
    [ 0.209519] [<c00131b8>] (dump_backtrace) from [<c00133b4>] (show_stack+0x18/0x1c)
    [ 0.209526] r7:c08fe01c r6:60000013 r5:00000000 r4:c0970e0c
    [ 0.209551] [<c001339c>] (show_stack) from [<c02b4e0c>] (dump_stack+0x8c/0xa0)
    [ 0.209561] [<c02b4d80>] (dump_stack) from [<c0034f6c>] (warn_slowpath_common+0x88/0xb8)
    [ 0.209567] r7:c08fe01c r6:000009db r5:00000009 r4:ef073e58
    [ 0.209588] [<c0034ee4>] (warn_slowpath_common) from [<c0034fd4>] (warn_slowpath_fmt+0x38/0x40)
    [ 0.209594] r8:000000ab r7:ef1e86c0 r6:00000000 r5:00000000 r4:c08257b0
    [ 0.209619] [<c0034fa0>] (warn_slowpath_fmt) from [<c08fe01c>] (_init.constprop.23+0x200/0x428)
    [ 0.209625] r3:c0824ad0 r2:c08257b0
    [ 0.209635] r4:c0950018
    [ 0.209647] [<c08fde1c>] (_init.constprop.23) from [<c08fe374>] (__omap_hwmod_setup_all+0x48/0x98)
    [ 0.209653] r10:00000000 r9:c08f1600 r8:000000ab r7:ef1e86c0 r6:c09496b0 r5:c094bb38
    [ 0.209674] r4:c0950018
    [ 0.209686] [<c08fe32c>] (__omap_hwmod_setup_all) from [<c000982c>] (do_one_initcall+0x98/0x1e4)
    [ 0.209692] r5:c08fe32c r4:c09496b0
    [ 0.209708] [<c0009794>] (do_one_initcall) from [<c08f1f68>] (kernel_init_freeable+0x1d4/0x268)
    [ 0.209713] r10:00000002 r9:c08f1600 r8:000000ab r7:c0931820 r6:c093eff4 r5:c09a2000
    [ 0.209734] r4:c09a2000
    [ 0.209747] [<c08f1d94>] (kernel_init_freeable) from [<c0679ce4>] (kernel_init+0x18/0xf4)
    [ 0.209753] r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0679ccc
    [ 0.209773] r4:c09a2000
    [ 0.209787] [<c0679ccc>] (kernel_init) from [<c000fb88>] (ret_from_fork+0x14/0x2c)
    [ 0.209792] r5:c0679ccc r4:00000000
    [ 0.209804] ---[ end trace 8d5d5cbb076d5d28 ]---
    [ 0.320506] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [ 0.324698] pinctrl core: initialized pinctrl subsystem
    [ 0.325559] NET: Registered protocol family 16
    [ 0.326486] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [ 0.350316] cpuidle: using governor ladder
    [ 0.380345] cpuidle: using governor menu
    [ 0.388871] OMAP GPIO hardware version 0.1
    [ 0.395385] irq: no irq domain found for /ocp/l4@4a000000/scm@2000/pinmux@1400 !
    [ 0.412194] omap-gpmc 50000000.gpmc: GPMC revision 6.0
    [ 0.412207] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [ 0.421899] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
    [ 0.421909] hw-breakpoint: maximum watchpoint size is 8 bytes.
    [ 0.422375] omap4_sram_init:Unable to allocate sram needed to handle errata I688
    [ 0.422384] omap4_sram_init:Unable to get sram pool needed to handle errata I688
    [ 0.422960] OMAP DMA hardware revision 0.0
    [ 0.461471] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver (LinkedList1/2/3 supported)
    [ 0.462637] edma 43300000.edma: memcpy is disabled
    [ 0.467247] edma 43300000.edma: TI EDMA DMA engine driver
    [ 0.471538] omap-iommu 40d01000.mmu: 40d01000.mmu registered
    [ 0.471726] omap-iommu 40d02000.mmu: 40d02000.mmu registered
    [ 0.471891] omap-iommu 58882000.mmu: 58882000.mmu registered
    [ 0.472057] omap-iommu 55082000.mmu: 55082000.mmu registered
    [ 0.472340] omap-iommu 41501000.mmu: 41501000.mmu registered
    [ 0.472542] omap-iommu 41502000.mmu: 41502000.mmu registered
    [ 0.475711] palmas 0-0058: IRQ missing: skipping irq request
    [ 0.490924] palmas: probe of 0-0058 failed with error -121
    [ 0.491560] pcf857x 0-0020: probed
    [ 0.492134] pcf857x 0-0021: probed
    [ 0.492282] omap_i2c 48070000.i2c: bus 0 rev0.12 at 400 kHz
    [ 0.510822] pcf857x 1-0026: probed
    [ 0.511342] mcp230xx: probe of 1-0027 failed with error -121
    [ 0.511567] mcp230xx: probe of 1-0021 failed with error -121
    [ 0.511796] mcp230xx: probe of 1-0025 failed with error -121
    [ 0.512508] omap_i2c 48072000.i2c: bus 1 rev0.12 at 400 kHz
    [ 0.512887] omap_i2c 48060000.i2c: bus 2 rev0.12 at 400 kHz
    [ 0.513084] media: Linux media interface: v0.10
    [ 0.513133] Linux video capture interface: v2.00
    [ 0.513170] pps_core: LinuxPPS API ver. 1 registered
    [ 0.513177] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [ 0.513200] PTP clock support registered
    [ 0.513246] EDAC MC: Ver: 3.0.0
    [ 0.513984] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
    [ 0.514276] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
    [ 0.514622] Advanced Linux Sound Architecture Driver Initialized.
    [ 0.515472] clocksource: Switched to clocksource arch_sys_counter
    [ 0.526128] NET: Registered protocol family 2
    [ 0.526626] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [ 0.526689] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.526814] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.526861] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.526891] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.527094] NET: Registered protocol family 1
    [ 0.527332] RPC: Registered named UNIX socket transport module.
    [ 0.527341] RPC: Registered udp transport module.
    [ 0.527348] RPC: Registered tcp transport module.
    [ 0.527355] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 0.528343] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
    [ 0.530763] futex hash table entries: 512 (order: 3, 32768 bytes)
    [ 0.538352] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [ 0.539003] NFS: Registering the id_resolver key type
    [ 0.539032] Key type id_resolver registered
    [ 0.539039] Key type id_legacy registered
    [ 0.539105] ntfs: driver 2.1.32 [Flags: R/O].
    [ 0.541102] bounce: pool size: 64 pages
    [ 0.541259] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [ 0.541276] io scheduler noop registered
    [ 0.541290] io scheduler deadline registered
    [ 0.541325] io scheduler cfq registered (default)
    [ 0.545875] pinctrl-single 4a003400.pinmux: 282 pins at pa fc003400 size 1128
    [ 0.549020] PCI host bridge /ocp/axi@0/pcie_rc@51000000 ranges:
    [ 0.549033] No bus range found for /ocp/axi@0/pcie_rc@51000000, using [bus 00-ff]
    [ 0.549066] IO 0x20003000..0x20012fff -> 0x00000000
    [ 0.549088] MEM 0x20013000..0x2fffffff -> 0x20013000
    [ 0.578859] dra7-pcie 51000000.pcie_rc: link is not up
    [ 0.579034] dra7-pcie 51000000.pcie_rc: PCI host bridge to bus 0000:00
    [ 0.579047] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.579057] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.579067] pci_bus 0000:00: root bus resource [mem 0x20013000-0x2fffffff]
    [ 0.579468] PCI: bus0: Fast back to back transfers disabled
    [ 0.579593] PCI: bus1: Fast back to back transfers enabled
    [ 0.579677] pci 0000:00:00.0: BAR 0: assigned [mem 0x20100000-0x201fffff]
    [ 0.579693] pci 0000:00:00.0: BAR 1: assigned [mem 0x20020000-0x2002ffff]
    [ 0.579705] pci 0000:00:00.0: PCI bridge to [bus 01]
    [ 0.579933] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt
    [ 0.603376] fpd3_serdes: probe of 7-002c failed with error -5
    [ 0.603533] fpd3_serdes 1-001b: Serializer fpd3_24b_ser ready
    [ 0.605454] fpd3_serdes 7-002c: Deserializer fpd3_24b_des ready
    [ 0.665259] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [ 0.668651] 4806a000.serial: ttyS0 at MMIO 0x4806a000 (irq = 301, base_baud = 3000000) is a 8250
    [ 2.112117] console [ttyS0] enabled
    [ 2.116532] 4806c000.serial: ttyS1 at MMIO 0x4806c000 (irq = 302, base_baud = 3000000) is a 8250
    [ 2.126241] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 303, base_baud = 3000000) is a 8250
    [ 2.136291] [drm] Initialized drm 1.1.0 20060810
    [ 2.142475] omapdss_dss 58000000.dss: master bind failed: -517
    [ 2.149636] connector-hdmi connector@1: failed to find video source
    [ 2.182180] loop: module loaded
    [ 2.185835] vmemexp device MAJOR num = 246
    [ 2.189962] vmemexp class registered
    [ 2.193676] /dev/vmemexp device registered
    [ 2.197810] ioctl DBUFIOC_EXPORT_VIRTMEM = -1072899120
    [ 2.203504] nand: No NAND device found
    [ 2.207294] omap2-nand 8000000.nand: scan failed, may be bus-width mismatch
    [ 2.217148] m25p80 spi32766.0: s25fl256s1 (32768 Kbytes)
    [ 2.222545] 7 ofpart partitions found on MTD device spi32766.0
    [ 2.228426] Creating 7 MTD partitions on "spi32766.0":
    [ 2.233589] 0x000000000000-0x000000040000 : "QSPI.SPL"
    [ 2.239708] 0x000000040000-0x000000140000 : "QSPI.u-boot"
    [ 2.246066] 0x000000140000-0x0000001c0000 : "QSPI.u-boot-spl-os"
    [ 2.252977] 0x0000001c0000-0x0000001d0000 : "QSPI.u-boot-env"
    [ 2.259651] 0x0000001d0000-0x0000001e0000 : "QSPI.u-boot-env.backup1"
    [ 2.267052] 0x0000001e0000-0x0000009e0000 : "QSPI.kernel"
    [ 2.273379] 0x0000009e0000-0x000002000000 : "QSPI.file-system"
    [ 2.281220] libphy: Fixed MDIO Bus: probed
    [ 2.335505] davinci_mdio 48485000.mdio: davinci mdio revision 1.6
    [ 2.341627] davinci_mdio 48485000.mdio: detected phy mask fffffff3
    [ 2.351846] libphy: 48485000.mdio: probed
    [ 2.355919] davinci_mdio 48485000.mdio: phy[2]: device 48485000.mdio:02, driver unknown
    [ 2.363960] davinci_mdio 48485000.mdio: phy[3]: device 48485000.mdio:03, driver unknown
    [ 2.372689] cpsw 48484000.ethernet: Detected MACID = fc:0f:4b:c2:c7:d8
    [ 2.379386] cpsw 48484000.ethernet: cpts: overflow check period 800
    [ 2.386383] cpsw 48484000.ethernet: cpsw: Detected MACID = fc:0f:4b:c2:c7:d9
    [ 2.394978] mousedev: PS/2 mouse device common for all mice
    [ 2.401366] i2c /dev entries driver
    [ 2.405867] ov1063x 1-0037: Failed writing register 0x0103!
    [ 2.411478] ov1063x: probe of 1-0037 failed with error -121
    [ 2.417456] ov1063x 1-0030: Failed writing register 0x0103!
    [ 2.423064] ov1063x: probe of 1-0030 failed with error -121
    [ 2.433644] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [ 2.466103] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [ 2.472490] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [ 2.925114] ledtrig-cpu: registered to indicate activity on CPUs
    [ 2.935234] tlv320aic3x-codec 0-0019: Failed to get supply 'IOVDD': -517
    [ 2.942013] tlv320aic3x-codec 0-0019: Failed to request supplies: -517
    [ 2.950128] davinci-mcasp 4847c000.mcasp: invalid tdm slots: 0
    [ 2.957590] NET: Registered protocol family 10
    [ 2.962893] sit: IPv6 over IPv4 tunneling driver
    [ 2.968125] NET: Registered protocol family 17
    [ 2.972808] Key type dns_resolver registered
    [ 2.977274] omap_voltage_late_init: Voltage driver support not added
    [ 2.984165] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [ 2.990392] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [ 2.996646] ti_oppdm 4a003b20.oppdm: Unable to get vdd regulator:-517
    [ 3.003246] Power Management for TI OMAP4+ devices.
    [ 3.008423] Registering SWP/SWPB emulation handler
    [ 3.015991] dmm 4e000000.dmm: initialized all PAT entries
    [ 3.024105] omapdss_dss 58000000.dss: master bind failed: -517
    [ 3.030313] connector-hdmi connector@1: failed to find video source
    [ 3.037321] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [ 3.076330] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [ 3.082717] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [ 3.115877] tlv320aic3x-codec 0-0019: Failed to get supply 'IOVDD': -517
    [ 3.122610] tlv320aic3x-codec 0-0019: Failed to request supplies: -517
    [ 3.129858] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [ 3.136092] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [ 3.142329] ti_oppdm 4a003b20.oppdm: Unable to get vdd regulator:-517
    [ 3.149928] input: gpio_keys as /devices/platform/gpio_keys/input/input0
    [ 3.156901] hctosys: unable to open rtc device (rtc0)
    [ 3.167452] omapdss_dss 58000000.dss: master bind failed: -517
    [ 3.173675] connector-hdmi connector@1: failed to find video source
    [ 3.176081] evm_3v3_sw: disabling
    [ 3.176087] aic_dvdd: disabling
    [ 3.176091] vmmcwl_fixed: disabling
    [ 3.176100] pbias_mmc_omap5: disabling
    [ 3.176113] evm_3v3_sd: disabling
    [ 3.176347] ALSA device list:
    [ 3.176350] No soundcards found.
    [ 3.204276] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [ 3.235731] Waiting for root device PARTUUID=dd5190b8-02...
    [ 3.236494] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [ 3.236500] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [ 3.265927] tlv320aic3x-codec 0-0019: Failed to get supply 'IOVDD': -517
    [ 3.272661] tlv320aic3x-codec 0-0019: Failed to request supplies: -517
    [ 3.279951] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [ 3.286202] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [ 3.292440] ti_oppdm 4a003b20.oppdm: Unable to get vdd regulator:-517

  • Which evm are you using ,
    Does it have any modification

    Regards
    Chetan.M
  • software: PROCESSOR_SDK_VISION_03_00_00_00_setuplinux.bin

    host hardware: Linux Ubuntu 14.04 64 bit (Ubuntu on a virtual machine)

    target hardware: VAYU ES2.0 GP EVM VISION - EVM5777G-03-40-00 703760-1031 REV C

  • refer VisionSDK_Linux_UserGuide.pdf -> 3.1 Build Linux Vision SDK for Video Capture and Display use-cases -> 4 Run -> SD boot.

    and MAKECONFIG=tda2xx_evm_linux_all.

    without any modification
  • Can you try on a different hardware
  • We just have one evm board. please give us another advice. thank you.
  • Can you try to build bios binaries and try .

    we need to ensure if its a board fault or some error in building .

    We have not faced issue when we build and test



    Regards

    Chetan.M
  • 1. VISION_SDK_02_12_02_00_A15Linux_Binaries\vision_sdk\Prebuilt\tda2xx-evm\(MLO u-boot.img uenv.txt tisdk-rootfs-image-dra7xx-evm.tar.xz)

    It prints the same error.

    2. PROCESSOR_SDK_VISION_03_00_00_00_Binaries\vision_sdk\prebuilt\tda2xx-evm\(AppImage MLO)

    BIOS image SD Boot completed successfully.

  • 1. VISION_SDK_02_12_02_00_A15Linux_Binaries\vision_sdk\Prebuilt\tda2xx-evm\(MLO u-boot.img uenv.txt tisdk-rootfs-image-dra7xx-evm.tar.xz)

    It prints the same error.

    2. PROCESSOR_SDK_VISION_03_00_00_00_Binaries\vision_sdk\prebuilt\tda2xx-evm\(AppImage MLO)

    BIOS image SD Boot completed successfully.
  • 1. VISION_SDK_02_12_02_00_A15Linux_Binaries\vision_sdk\Prebuilt\tda2xx-evm\(MLO u-boot.img uenv.txt tisdk-rootfs-image-dra7xx-evm.tar.xz)

    It prints the same error.

    2. PROCESSOR_SDK_VISION_03_00_00_00_Binaries\vision_sdk\prebuilt\tda2xx-evm\(AppImage MLO)

    BIOS image SD Boot completed successfully. 

    0081.VISION_SDK_02_12_02_00_A15Linux_Binaries_Prebuilt_print_log.txt
    U-Boot SPL 2016.05-00002-g75fc763 (Apr 15 2017 - 22:15:28)
    DRA752-GP ES2.0
    i2c_write: error waiting for addr ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    MMC Device 1 not found
    *** Warning - No MMC card found, using default environment
    
    Trying to boot from MMC1
    MMC Device 1 not found
    *** Warning - No MMC card found, using default environment
    
    reading u-boot.img
    reading u-boot.img
    reading u-boot.img
    reading u-boot.img
    
    
    U-Boot 2016.05-00002-g75fc763 (Apr 15 2017 - 22:15:28 +0530)
    
    CPU  : DRA752-GP ES2.0
    Model: TI DRA742
    Board: DRA74x EVM REV H.0
    DRAM:  4 GiB
    MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1
    ** First descriptor is NOT a primary desc on 1:1 **
    GUID Partition Table Header signature is wrong: 0x0 != 0x5452415020494645
    part_get_info_efi: *** ERROR: Invalid GPT ***
    GUID Partition Table Header signature is wrong: 0x0 != 0x5452415020494645
    part_get_info_efi: *** ERROR: Invalid Backup GPT ***
    ERROR: cannot find partition: 'userdata'
    
    at arch/arm/cpu/armv7/omap-common/utils.c:195/mmc_get_part_size()
    Warning: fastboot.userdata_size: unable to calc
    SCSI:  SATA link 0 timeout.
    AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
    flags: 64bit ncq stag pm led clo only pmp pio slum part ccc apst 
    scanning bus for devices...
    Found 0 device(s).
    Net:   
    Warning: ethernet@48484000 using MAC address from ROM
    eth0: ethernet@48484000
    Hit any key to stop autoboot:  0 
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    switch to partitions #0, OK
    mmc0 is current device
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    SD/MMC found on device 0
    reading boot.scr
    ** Unable to read file boot.scr **
    reading uEnv.txt
    165 bytes read in 2 ms (80.1 KiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc0 ...
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    switch to partitions #0, OK
    mmc0 is current device
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    SD/MMC found on device 0
    3633976 bytes read in 166 ms (20.9 MiB/s)
    109627 bytes read in 17 ms (6.1 MiB/s)
    Booting from mmc0 ...
    Kernel image @ 0x82000000 [ 0x000000 - 0x377338 ]
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       Loading Device Tree to 8ffe2000, end 8ffffc3a ... OK
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Initializing cgroup subsys cpuset
    [    0.000000] Initializing cgroup subsys cpu
    [    0.000000] Initializing cgroup subsys cpuacct
    [    0.000000] Linux version 4.4.45-00013-g7d606b8 (x0246581@bangvideoapps01) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #1 SMP PREEMPT Sat Apr 15 22:28:14 IST 2017
    [    0.000000] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), cr=30c5387d
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
    [    0.000000] Machine model: TI DRA742
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000040300000, size 3 MiB
    [    0.000000] Reserved memory: initialized node cmem@40300000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000099000000, size 80 MiB
    [    0.000000] Reserved memory: initialized node ipu2_cma@95800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x000000009e000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node ipu1_cma@9d000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000000a1000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node dsp1_cma@99000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000000a3000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node dsp2_cma@9f000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a9000000, size 64 MiB
    [    0.000000] Reserved memory: initialized node cmem@A9000000, compatible id shared-dma-pool
    [    0.000000] cma: Reserved 24 MiB at 0x00000000be400000
    [    0.000000] Forcing write-allocate cache policy for SMP
    [    0.000000] Memory policy: Data cache writealloc
    [    0.000000] OMAP4: Map 0x00000000bfd00000 to fe600000 for dram barrier
    [    0.000000] DRA752 ES2.0
    [    0.000000] PERCPU: Embedded 11 pages/cpu @ef628000 s14848 r8192 d22016 u45056
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 243264
    [    0.000000] Kernel command line: console=ttyO0,115200n8 vram=16M root=PARTUUID=e1e4d72a-02 rw rootwait ip=none mem=1024M
    [    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.000000] Memory: 328756K/979968K available (6627K kernel code, 371K rwdata, 2492K rodata, 332K init, 290K bss, 446412K reserved, 204800K cma-reserved, 234496K highmem)
    [    0.000000] Virtual kernel memory layout:
    [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    [    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
    [    0.000000]     vmalloc : 0xf0800000 - 0xff800000   ( 240 MB)
    [    0.000000]     lowmem  : 0xc0000000 - 0xf0000000   ( 768 MB)
    [    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
    [    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
    [    0.000000]       .text : 0xc0008000 - 0xc08f0044   (9121 kB)
    [    0.000000]       .init : 0xc08f1000 - 0xc0944000   ( 332 kB)
    [    0.000000]       .data : 0xc0944000 - 0xc09a0fd0   ( 372 kB)
    [    0.000000]        .bss : 0xc09a2000 - 0xc09ea880   ( 291 kB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] Preemptible hierarchical RCU implementation.
    [    0.000000]  Build-time adjustment of leaf fanout to 32.
    [    0.000000] NR_IRQS:16 nr_irqs:16 16
    [    0.000000] ti_dt_clocks_register: failed to lookup clock node gmac_gmii_ref_clk_div
    [    0.000000] OMAP clockevent source: timer1 at 32786 Hz
    [    0.000000] Architected cp15 timer(s) running at 6.14MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x16af5adb9, max_idle_ns: 440795202250 ns
    [    0.000005] sched_clock: 56 bits at 6MHz, resolution 162ns, wraps every 4398046511023ns
    [    0.000015] Switching to timer-based delay loop, resolution 162ns
    [    0.000332] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns
    [    0.000340] OMAP clocksource: 32k_counter at 32768 Hz
    [    0.000812] Console: colour dummy device 80x30
    [    0.000827] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
    [    0.000834] This ensures that you still see kernel messages. Please
    [    0.000839] update your kernel commandline.
    [    0.000852] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.29 BogoMIPS (lpj=61475)
    [    0.000865] pid_max: default: 32768 minimum: 301
    [    0.000957] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.000967] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.001495] Initializing cgroup subsys io
    [    0.001511] Initializing cgroup subsys memory
    [    0.001535] Initializing cgroup subsys devices
    [    0.001548] Initializing cgroup subsys freezer
    [    0.001560] Initializing cgroup subsys perf_event
    [    0.001572] Initializing cgroup subsys pids
    [    0.001599] CPU: Testing write buffer coherency: ok
    [    0.001797] /cpus/cpu@0 missing clock-frequency property
    [    0.001813] /cpus/cpu@1 missing clock-frequency property
    [    0.001823] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
    [    0.001859] Setting up static identity map for 0x80008380 - 0x800083e0
    [    0.080167] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
    [    0.080228] Brought up 2 CPUs
    [    0.080241] SMP: Total of 2 processors activated (24.59 BogoMIPS).
    [    0.080248] CPU: All CPU(s) started in HYP mode.
    [    0.080253] CPU: Virtualization extensions available.
    [    0.080617] devtmpfs: initialized
    [    0.109868] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
    [    0.110857] omap_hwmod: l3_main_2 using broken dt data from ocp
    [    0.206950] omap_hwmod: vpe: no dt node
    [    0.206959] ------------[ cut here ]------------
    [    0.206973] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2523 _init.constprop.23+0x200/0x428()
    [    0.206979] omap_hwmod: vpe: doesn't have mpu register target base
    [    0.206985] Modules linked in:
    [    0.206999] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.4.45-00013-g7d606b8 #1
    [    0.207007] Hardware name: Generic DRA74X (Flattened Device Tree)
    [    0.207014] Backtrace: 
    [    0.207034] [<c00131b8>] (dump_backtrace) from [<c00133b4>] (show_stack+0x18/0x1c)
    [    0.207041]  r7:c08fe01c r6:60000013 r5:00000000 r4:c0970e0c
    [    0.207069] [<c001339c>] (show_stack) from [<c02b4e0c>] (dump_stack+0x8c/0xa0)
    [    0.207081] [<c02b4d80>] (dump_stack) from [<c0034f6c>] (warn_slowpath_common+0x88/0xb8)
    [    0.207088]  r7:c08fe01c r6:000009db r5:00000009 r4:ef073e58
    [    0.207110] [<c0034ee4>] (warn_slowpath_common) from [<c0034fd4>] (warn_slowpath_fmt+0x38/0x40)
    [    0.207116]  r8:000000ab r7:ef1e8480 r6:00000000 r5:00000000 r4:c08257b0
    [    0.207142] [<c0034fa0>] (warn_slowpath_fmt) from [<c08fe01c>] (_init.constprop.23+0x200/0x428)
    [    0.207148]  r3:c0827a90 r2:c08257b0
    [    0.207159]  r4:c0954e98
    [    0.207172] [<c08fde1c>] (_init.constprop.23) from [<c08fe374>] (__omap_hwmod_setup_all+0x48/0x98)
    [    0.207178]  r10:00000000 r9:c08f1600 r8:000000ab r7:ef1e8480 r6:c09496b0 r5:c094bb38
    [    0.207199]  r4:c0954e98
    [    0.207212] [<c08fe32c>] (__omap_hwmod_setup_all) from [<c000982c>] (do_one_initcall+0x98/0x1e4)
    [    0.207218]  r5:c08fe32c r4:c09496b0
    [    0.207234] [<c0009794>] (do_one_initcall) from [<c08f1f68>] (kernel_init_freeable+0x1d4/0x268)
    [    0.207240]  r10:00000002 r9:c08f1600 r8:000000ab r7:c0931820 r6:c093eff4 r5:c09a2000
    [    0.207261]  r4:c09a2000
    [    0.207277] [<c08f1d94>] (kernel_init_freeable) from [<c0679ce4>] (kernel_init+0x18/0xf4)
    [    0.207283]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0679ccc
    [    0.207304]  r4:c09a2000
    [    0.207317] [<c0679ccc>] (kernel_init) from [<c000fb88>] (ret_from_fork+0x14/0x2c)
    [    0.207323]  r5:c0679ccc r4:00000000
    [    0.207346] ---[ end trace 005daaf0bdfd3b24 ]---
    [    0.209458] omap_hwmod: wd_timer2: no dt node
    [    0.209465] ------------[ cut here ]------------
    [    0.209476] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2523 _init.constprop.23+0x200/0x428()
    [    0.209482] omap_hwmod: wd_timer2: doesn't have mpu register target base
    [    0.209488] Modules linked in:
    [    0.209499] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W       4.4.45-00013-g7d606b8 #1
    [    0.209506] Hardware name: Generic DRA74X (Flattened Device Tree)
    [    0.209511] Backtrace: 
    [    0.209527] [<c00131b8>] (dump_backtrace) from [<c00133b4>] (show_stack+0x18/0x1c)
    [    0.209534]  r7:c08fe01c r6:60000013 r5:00000000 r4:c0970e0c
    [    0.209559] [<c001339c>] (show_stack) from [<c02b4e0c>] (dump_stack+0x8c/0xa0)
    [    0.209569] [<c02b4d80>] (dump_stack) from [<c0034f6c>] (warn_slowpath_common+0x88/0xb8)
    [    0.209575]  r7:c08fe01c r6:000009db r5:00000009 r4:ef073e58
    [    0.209596] [<c0034ee4>] (warn_slowpath_common) from [<c0034fd4>] (warn_slowpath_fmt+0x38/0x40)
    [    0.209602]  r8:000000ab r7:ef1e8480 r6:00000000 r5:00000000 r4:c08257b0
    [    0.209627] [<c0034fa0>] (warn_slowpath_fmt) from [<c08fe01c>] (_init.constprop.23+0x200/0x428)
    [    0.209633]  r3:c0824ad0 r2:c08257b0
    [    0.209643]  r4:c0950018
    [    0.209655] [<c08fde1c>] (_init.constprop.23) from [<c08fe374>] (__omap_hwmod_setup_all+0x48/0x98)
    [    0.209662]  r10:00000000 r9:c08f1600 r8:000000ab r7:ef1e8480 r6:c09496b0 r5:c094bb38
    [    0.209683]  r4:c0950018
    [    0.209695] [<c08fe32c>] (__omap_hwmod_setup_all) from [<c000982c>] (do_one_initcall+0x98/0x1e4)
    [    0.209701]  r5:c08fe32c r4:c09496b0
    [    0.209716] [<c0009794>] (do_one_initcall) from [<c08f1f68>] (kernel_init_freeable+0x1d4/0x268)
    [    0.209722]  r10:00000002 r9:c08f1600 r8:000000ab r7:c0931820 r6:c093eff4 r5:c09a2000
    [    0.209743]  r4:c09a2000
    [    0.209756] [<c08f1d94>] (kernel_init_freeable) from [<c0679ce4>] (kernel_init+0x18/0xf4)
    [    0.209761]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0679ccc
    [    0.209781]  r4:c09a2000
    [    0.209794] [<c0679ccc>] (kernel_init) from [<c000fb88>] (ret_from_fork+0x14/0x2c)
    [    0.209800]  r5:c0679ccc r4:00000000
    [    0.209811] ---[ end trace 005daaf0bdfd3b25 ]---
    [    0.320421] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [    0.324621] pinctrl core: initialized pinctrl subsystem
    [    0.325479] NET: Registered protocol family 16
    [    0.326412] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.350239] cpuidle: using governor ladder
    [    0.380268] cpuidle: using governor menu
    [    0.388827] OMAP GPIO hardware version 0.1
    [    0.395340] irq: no irq domain found for /ocp/l4@4a000000/scm@2000/pinmux@1400 !
    [    0.412194] omap-gpmc 50000000.gpmc: GPMC revision 6.0
    [    0.412208] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    0.421767] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
    [    0.421777] hw-breakpoint: maximum watchpoint size is 8 bytes.
    [    0.422237] omap4_sram_init:Unable to allocate sram needed to handle errata I688
    [    0.422246] omap4_sram_init:Unable to get sram pool needed to handle errata I688
    [    0.422827] OMAP DMA hardware revision 0.0
    [    0.461352] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver (LinkedList1/2/3 supported)
    [    0.462508] edma 43300000.edma: memcpy is disabled
    [    0.467118] edma 43300000.edma: TI EDMA DMA engine driver
    [    0.471389] omap-iommu 40d01000.mmu: 40d01000.mmu registered
    [    0.471577] omap-iommu 40d02000.mmu: 40d02000.mmu registered
    [    0.471743] omap-iommu 58882000.mmu: 58882000.mmu registered
    [    0.471902] omap-iommu 55082000.mmu: 55082000.mmu registered
    [    0.472188] omap-iommu 41501000.mmu: 41501000.mmu registered
    [    0.472385] omap-iommu 41502000.mmu: 41502000.mmu registered
    [    0.475578] palmas 0-0058: IRQ missing: skipping irq request
    [    0.490791] palmas: probe of 0-0058 failed with error -121
    [    0.491443] pcf857x 0-0020: probed
    [    0.492006] pcf857x 0-0021: probed
    [    0.492157] omap_i2c 48070000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.510697] pcf857x 1-0026: probed
    [    0.511217] mcp230xx: probe of 1-0027 failed with error -121
    [    0.511441] mcp230xx: probe of 1-0021 failed with error -121
    [    0.511664] mcp230xx: probe of 1-0025 failed with error -121
    [    0.512378] omap_i2c 48072000.i2c: bus 1 rev0.12 at 400 kHz
    [    0.512749] omap_i2c 48060000.i2c: bus 2 rev0.12 at 400 kHz
    [    0.512943] media: Linux media interface: v0.10
    [    0.512992] Linux video capture interface: v2.00
    [    0.513030] pps_core: LinuxPPS API ver. 1 registered
    [    0.513037] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.513061] PTP clock support registered
    [    0.513106] EDAC MC: Ver: 3.0.0
    [    0.513848] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
    [    0.514141] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
    [    0.514475] Advanced Linux Sound Architecture Driver Initialized.
    [    0.515315] clocksource: Switched to clocksource arch_sys_counter
    [    0.525910] NET: Registered protocol family 2
    [    0.526406] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [    0.526470] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [    0.526595] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.526641] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [    0.526672] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [    0.526877] NET: Registered protocol family 1
    [    0.527138] RPC: Registered named UNIX socket transport module.
    [    0.527147] RPC: Registered udp transport module.
    [    0.527153] RPC: Registered tcp transport module.
    [    0.527160] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.528147] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
    [    0.530559] futex hash table entries: 512 (order: 3, 32768 bytes)
    [    0.538202] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.538854] NFS: Registering the id_resolver key type
    [    0.538880] Key type id_resolver registered
    [    0.538887] Key type id_legacy registered
    [    0.538955] ntfs: driver 2.1.32 [Flags: R/O].
    [    0.540943] bounce: pool size: 64 pages
    [    0.541099] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.541117] io scheduler noop registered
    [    0.541131] io scheduler deadline registered
    [    0.541167] io scheduler cfq registered (default)
    [    0.545693] pinctrl-single 4a003400.pinmux: 282 pins at pa fc003400 size 1128
    [    0.548812] PCI host bridge /ocp/axi@0/pcie_rc@51000000 ranges:
    [    0.548825]   No bus range found for /ocp/axi@0/pcie_rc@51000000, using [bus 00-ff]
    [    0.548858]    IO 0x20003000..0x20012fff -> 0x00000000
    [    0.548879]   MEM 0x20013000..0x2fffffff -> 0x20013000
    [    0.578752] dra7-pcie 51000000.pcie_rc: link is not up
    [    0.578921] dra7-pcie 51000000.pcie_rc: PCI host bridge to bus 0000:00
    [    0.578934] pci_bus 0000:00: root bus resource [bus 00-ff]
    [    0.578945] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
    [    0.578954] pci_bus 0000:00: root bus resource [mem 0x20013000-0x2fffffff]
    [    0.579366] PCI: bus0: Fast back to back transfers disabled
    [    0.579487] PCI: bus1: Fast back to back transfers enabled
    [    0.579570] pci 0000:00:00.0: BAR 0: assigned [mem 0x20100000-0x201fffff]
    [    0.579585] pci 0000:00:00.0: BAR 1: assigned [mem 0x20020000-0x2002ffff]
    [    0.579598] pci 0000:00:00.0: PCI bridge to [bus 01]
    [    0.579821] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt
    [    0.603056] fpd3_serdes: probe of 7-002c failed with error -5
    [    0.603213] fpd3_serdes 1-001b: Serializer fpd3_24b_ser ready
    [    0.605132] fpd3_serdes 7-002c: Deserializer fpd3_24b_des ready
    [    0.664693] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [    0.668087] 4806a000.serial: ttyS0 at MMIO 0x4806a000 (irq = 301, base_baud = 3000000) is a 8250
    [    2.110928] console [ttyS0] enabled
    [    2.115368] 4806c000.serial: ttyS1 at MMIO 0x4806c000 (irq = 302, base_baud = 3000000) is a 8250
    [    2.125029] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 303, base_baud = 3000000) is a 8250
    [    2.135069] [drm] Initialized drm 1.1.0 20060810
    [    2.141291] omapdss_dss 58000000.dss: master bind failed: -517
    [    2.148397] connector-hdmi connector@1: failed to find video source
    [    2.170948] loop: module loaded
    [    2.174574] vmemexp device MAJOR num = 246
    [    2.178728] vmemexp class registered
    [    2.182442] /dev/vmemexp device registered
    [    2.186574] ioctl DBUFIOC_EXPORT_VIRTMEM = -1072899120
    [    2.192273] nand: No NAND device found
    [    2.196063] omap2-nand 8000000.nand: scan failed, may be bus-width mismatch
    [    2.205924] m25p80 spi32766.0: s25fl256s1 (32768 Kbytes)
    [    2.211318] 7 ofpart partitions found on MTD device spi32766.0
    [    2.217196] Creating 7 MTD partitions on "spi32766.0":
    [    2.222360] 0x000000000000-0x000000040000 : "QSPI.SPL"
    [    2.228467] 0x000000040000-0x000000140000 : "QSPI.u-boot"
    [    2.234789] 0x000000140000-0x0000001c0000 : "QSPI.u-boot-spl-os"
    [    2.241726] 0x0000001c0000-0x0000001d0000 : "QSPI.u-boot-env"
    [    2.248397] 0x0000001d0000-0x0000001e0000 : "QSPI.u-boot-env.backup1"
    [    2.255787] 0x0000001e0000-0x0000009e0000 : "QSPI.kernel"
    [    2.262115] 0x0000009e0000-0x000002000000 : "QSPI.file-system"
    [    2.269922] libphy: Fixed MDIO Bus: probed
    [    2.325351] davinci_mdio 48485000.mdio: davinci mdio revision 1.6
    [    2.331473] davinci_mdio 48485000.mdio: detected phy mask fffffff3
    [    2.341947] libphy: 48485000.mdio: probed
    [    2.346021] davinci_mdio 48485000.mdio: phy[2]: device 48485000.mdio:02, driver unknown
    [    2.354062] davinci_mdio 48485000.mdio: phy[3]: device 48485000.mdio:03, driver unknown
    [    2.362800] cpsw 48484000.ethernet: Detected MACID = fc:0f:4b:c2:c7:d8
    [    2.369500] cpsw 48484000.ethernet: cpts: overflow check period 800
    [    2.376502] cpsw 48484000.ethernet: cpsw: Detected MACID = fc:0f:4b:c2:c7:d9
    [    2.385063] mousedev: PS/2 mouse device common for all mice
    [    2.391435] i2c /dev entries driver
    [    2.395949] ov1063x 1-0037: Failed writing register 0x0103!
    [    2.401557] ov1063x: probe of 1-0037 failed with error -121
    [    2.407534] ov1063x 1-0030: Failed writing register 0x0103!
    [    2.413142] ov1063x: probe of 1-0030 failed with error -121
    [    2.423685] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    2.455942] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [    2.462328] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [    2.914266] ledtrig-cpu: registered to indicate activity on CPUs
    [    2.924366] tlv320aic3x-codec 0-0019: Failed to get supply 'IOVDD': -517
    [    2.931144] tlv320aic3x-codec 0-0019: Failed to request supplies: -517
    [    2.939259] davinci-mcasp 4847c000.mcasp: invalid tdm slots: 0
    [    2.946701] NET: Registered protocol family 10
    [    2.952015] sit: IPv6 over IPv4 tunneling driver
    [    2.957255] NET: Registered protocol family 17
    [    2.961937] Key type dns_resolver registered
    [    2.966401] omap_voltage_late_init: Voltage driver support not added
    [    2.973286] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    2.979515] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    2.985766] ti_oppdm 4a003b20.oppdm: Unable to get vdd regulator:-517
    [    2.992371] Power Management for TI OMAP4+ devices.
    [    2.997548] Registering SWP/SWPB emulation handler
    [    3.005059] dmm 4e000000.dmm: initialized all PAT entries
    [    3.013225] omapdss_dss 58000000.dss: master bind failed: -517
    [    3.019438] connector-hdmi connector@1: failed to find video source
    [    3.026409] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    3.066183] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [    3.072569] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [    3.105721] tlv320aic3x-codec 0-0019: Failed to get supply 'IOVDD': -517
    [    3.112454] tlv320aic3x-codec 0-0019: Failed to request supplies: -517
    [    3.119704] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    3.125938] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    3.132176] ti_oppdm 4a003b20.oppdm: Unable to get vdd regulator:-517
    [    3.139776] input: gpio_keys as /devices/platform/gpio_keys/input/input0
    [    3.146741] hctosys: unable to open rtc device (rtc0)
    [    3.157298] omapdss_dss 58000000.dss: master bind failed: -517
    [    3.163514] connector-hdmi connector@1: failed to find video source
    [    3.165869] evm_3v3_sw: disabling
    [    3.165874] aic_dvdd: disabling
    [    3.165878] vmmcwl_fixed: disabling
    [    3.165888] pbias_mmc_omap5: disabling
    [    3.165900] evm_3v3_sd: disabling
    [    3.166141] ALSA device list:
    [    3.166144]   No soundcards found.
    [    3.194106] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    3.225572] Waiting for root device PARTUUID=e1e4d72a-02...
    [    3.226330] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [    3.226335] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [    3.255766] tlv320aic3x-codec 0-0019: Failed to get supply 'IOVDD': -517
    [    3.262500] tlv320aic3x-codec 0-0019: Failed to request supplies: -517
    [    3.269788] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    3.276038] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    3.282276] ti_oppdm 4a003b20.oppdm: Unable to get vdd regulator:-517
    

  • 1. VISION_SDK_02_12_02_00_A15Linux_Binaries\vision_sdk\Prebuilt\tda2xx-evm\(MLO u-boot.img uenv.txt tisdk-rootfs-image-dra7xx-evm.tar.xz)

    It prints the same error.

    2. PROCESSOR_SDK_VISION_03_00_00_00_Binaries\vision_sdk\prebuilt\tda2xx-evm\(AppImage MLO)

    BIOS image SD Boot completed successfully. 

    2744.VISION_SDK_02_12_02_00_A15Linux_Binaries_Prebuilt_print_log.txt
    U-Boot SPL 2016.05-00002-g75fc763 (Apr 15 2017 - 22:15:28)
    DRA752-GP ES2.0
    i2c_write: error waiting for addr ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    MMC Device 1 not found
    *** Warning - No MMC card found, using default environment
    
    Trying to boot from MMC1
    MMC Device 1 not found
    *** Warning - No MMC card found, using default environment
    
    reading u-boot.img
    reading u-boot.img
    reading u-boot.img
    reading u-boot.img
    
    
    U-Boot 2016.05-00002-g75fc763 (Apr 15 2017 - 22:15:28 +0530)
    
    CPU  : DRA752-GP ES2.0
    Model: TI DRA742
    Board: DRA74x EVM REV H.0
    DRAM:  4 GiB
    MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1
    ** First descriptor is NOT a primary desc on 1:1 **
    GUID Partition Table Header signature is wrong: 0x0 != 0x5452415020494645
    part_get_info_efi: *** ERROR: Invalid GPT ***
    GUID Partition Table Header signature is wrong: 0x0 != 0x5452415020494645
    part_get_info_efi: *** ERROR: Invalid Backup GPT ***
    ERROR: cannot find partition: 'userdata'
    
    at arch/arm/cpu/armv7/omap-common/utils.c:195/mmc_get_part_size()
    Warning: fastboot.userdata_size: unable to calc
    SCSI:  SATA link 0 timeout.
    AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
    flags: 64bit ncq stag pm led clo only pmp pio slum part ccc apst 
    scanning bus for devices...
    Found 0 device(s).
    Net:   
    Warning: ethernet@48484000 using MAC address from ROM
    eth0: ethernet@48484000
    Hit any key to stop autoboot:  0 
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    switch to partitions #0, OK
    mmc0 is current device
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    SD/MMC found on device 0
    reading boot.scr
    ** Unable to read file boot.scr **
    reading uEnv.txt
    165 bytes read in 2 ms (80.1 KiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc0 ...
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    switch to partitions #0, OK
    mmc0 is current device
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    SD/MMC found on device 0
    3633976 bytes read in 166 ms (20.9 MiB/s)
    109627 bytes read in 17 ms (6.1 MiB/s)
    Booting from mmc0 ...
    Kernel image @ 0x82000000 [ 0x000000 - 0x377338 ]
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       Loading Device Tree to 8ffe2000, end 8ffffc3a ... OK
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Initializing cgroup subsys cpuset
    [    0.000000] Initializing cgroup subsys cpu
    [    0.000000] Initializing cgroup subsys cpuacct
    [    0.000000] Linux version 4.4.45-00013-g7d606b8 (x0246581@bangvideoapps01) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #1 SMP PREEMPT Sat Apr 15 22:28:14 IST 2017
    [    0.000000] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), cr=30c5387d
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
    [    0.000000] Machine model: TI DRA742
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000040300000, size 3 MiB
    [    0.000000] Reserved memory: initialized node cmem@40300000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000099000000, size 80 MiB
    [    0.000000] Reserved memory: initialized node ipu2_cma@95800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x000000009e000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node ipu1_cma@9d000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000000a1000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node dsp1_cma@99000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000000a3000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node dsp2_cma@9f000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a9000000, size 64 MiB
    [    0.000000] Reserved memory: initialized node cmem@A9000000, compatible id shared-dma-pool
    [    0.000000] cma: Reserved 24 MiB at 0x00000000be400000
    [    0.000000] Forcing write-allocate cache policy for SMP
    [    0.000000] Memory policy: Data cache writealloc
    [    0.000000] OMAP4: Map 0x00000000bfd00000 to fe600000 for dram barrier
    [    0.000000] DRA752 ES2.0
    [    0.000000] PERCPU: Embedded 11 pages/cpu @ef628000 s14848 r8192 d22016 u45056
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 243264
    [    0.000000] Kernel command line: console=ttyO0,115200n8 vram=16M root=PARTUUID=e1e4d72a-02 rw rootwait ip=none mem=1024M
    [    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.000000] Memory: 328756K/979968K available (6627K kernel code, 371K rwdata, 2492K rodata, 332K init, 290K bss, 446412K reserved, 204800K cma-reserved, 234496K highmem)
    [    0.000000] Virtual kernel memory layout:
    [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    [    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
    [    0.000000]     vmalloc : 0xf0800000 - 0xff800000   ( 240 MB)
    [    0.000000]     lowmem  : 0xc0000000 - 0xf0000000   ( 768 MB)
    [    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
    [    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
    [    0.000000]       .text : 0xc0008000 - 0xc08f0044   (9121 kB)
    [    0.000000]       .init : 0xc08f1000 - 0xc0944000   ( 332 kB)
    [    0.000000]       .data : 0xc0944000 - 0xc09a0fd0   ( 372 kB)
    [    0.000000]        .bss : 0xc09a2000 - 0xc09ea880   ( 291 kB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] Preemptible hierarchical RCU implementation.
    [    0.000000]  Build-time adjustment of leaf fanout to 32.
    [    0.000000] NR_IRQS:16 nr_irqs:16 16
    [    0.000000] ti_dt_clocks_register: failed to lookup clock node gmac_gmii_ref_clk_div
    [    0.000000] OMAP clockevent source: timer1 at 32786 Hz
    [    0.000000] Architected cp15 timer(s) running at 6.14MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x16af5adb9, max_idle_ns: 440795202250 ns
    [    0.000005] sched_clock: 56 bits at 6MHz, resolution 162ns, wraps every 4398046511023ns
    [    0.000015] Switching to timer-based delay loop, resolution 162ns
    [    0.000332] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns
    [    0.000340] OMAP clocksource: 32k_counter at 32768 Hz
    [    0.000812] Console: colour dummy device 80x30
    [    0.000827] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
    [    0.000834] This ensures that you still see kernel messages. Please
    [    0.000839] update your kernel commandline.
    [    0.000852] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.29 BogoMIPS (lpj=61475)
    [    0.000865] pid_max: default: 32768 minimum: 301
    [    0.000957] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.000967] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.001495] Initializing cgroup subsys io
    [    0.001511] Initializing cgroup subsys memory
    [    0.001535] Initializing cgroup subsys devices
    [    0.001548] Initializing cgroup subsys freezer
    [    0.001560] Initializing cgroup subsys perf_event
    [    0.001572] Initializing cgroup subsys pids
    [    0.001599] CPU: Testing write buffer coherency: ok
    [    0.001797] /cpus/cpu@0 missing clock-frequency property
    [    0.001813] /cpus/cpu@1 missing clock-frequency property
    [    0.001823] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
    [    0.001859] Setting up static identity map for 0x80008380 - 0x800083e0
    [    0.080167] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
    [    0.080228] Brought up 2 CPUs
    [    0.080241] SMP: Total of 2 processors activated (24.59 BogoMIPS).
    [    0.080248] CPU: All CPU(s) started in HYP mode.
    [    0.080253] CPU: Virtualization extensions available.
    [    0.080617] devtmpfs: initialized
    [    0.109868] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
    [    0.110857] omap_hwmod: l3_main_2 using broken dt data from ocp
    [    0.206950] omap_hwmod: vpe: no dt node
    [    0.206959] ------------[ cut here ]------------
    [    0.206973] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2523 _init.constprop.23+0x200/0x428()
    [    0.206979] omap_hwmod: vpe: doesn't have mpu register target base
    [    0.206985] Modules linked in:
    [    0.206999] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.4.45-00013-g7d606b8 #1
    [    0.207007] Hardware name: Generic DRA74X (Flattened Device Tree)
    [    0.207014] Backtrace: 
    [    0.207034] [<c00131b8>] (dump_backtrace) from [<c00133b4>] (show_stack+0x18/0x1c)
    [    0.207041]  r7:c08fe01c r6:60000013 r5:00000000 r4:c0970e0c
    [    0.207069] [<c001339c>] (show_stack) from [<c02b4e0c>] (dump_stack+0x8c/0xa0)
    [    0.207081] [<c02b4d80>] (dump_stack) from [<c0034f6c>] (warn_slowpath_common+0x88/0xb8)
    [    0.207088]  r7:c08fe01c r6:000009db r5:00000009 r4:ef073e58
    [    0.207110] [<c0034ee4>] (warn_slowpath_common) from [<c0034fd4>] (warn_slowpath_fmt+0x38/0x40)
    [    0.207116]  r8:000000ab r7:ef1e8480 r6:00000000 r5:00000000 r4:c08257b0
    [    0.207142] [<c0034fa0>] (warn_slowpath_fmt) from [<c08fe01c>] (_init.constprop.23+0x200/0x428)
    [    0.207148]  r3:c0827a90 r2:c08257b0
    [    0.207159]  r4:c0954e98
    [    0.207172] [<c08fde1c>] (_init.constprop.23) from [<c08fe374>] (__omap_hwmod_setup_all+0x48/0x98)
    [    0.207178]  r10:00000000 r9:c08f1600 r8:000000ab r7:ef1e8480 r6:c09496b0 r5:c094bb38
    [    0.207199]  r4:c0954e98
    [    0.207212] [<c08fe32c>] (__omap_hwmod_setup_all) from [<c000982c>] (do_one_initcall+0x98/0x1e4)
    [    0.207218]  r5:c08fe32c r4:c09496b0
    [    0.207234] [<c0009794>] (do_one_initcall) from [<c08f1f68>] (kernel_init_freeable+0x1d4/0x268)
    [    0.207240]  r10:00000002 r9:c08f1600 r8:000000ab r7:c0931820 r6:c093eff4 r5:c09a2000
    [    0.207261]  r4:c09a2000
    [    0.207277] [<c08f1d94>] (kernel_init_freeable) from [<c0679ce4>] (kernel_init+0x18/0xf4)
    [    0.207283]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0679ccc
    [    0.207304]  r4:c09a2000
    [    0.207317] [<c0679ccc>] (kernel_init) from [<c000fb88>] (ret_from_fork+0x14/0x2c)
    [    0.207323]  r5:c0679ccc r4:00000000
    [    0.207346] ---[ end trace 005daaf0bdfd3b24 ]---
    [    0.209458] omap_hwmod: wd_timer2: no dt node
    [    0.209465] ------------[ cut here ]------------
    [    0.209476] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2523 _init.constprop.23+0x200/0x428()
    [    0.209482] omap_hwmod: wd_timer2: doesn't have mpu register target base
    [    0.209488] Modules linked in:
    [    0.209499] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W       4.4.45-00013-g7d606b8 #1
    [    0.209506] Hardware name: Generic DRA74X (Flattened Device Tree)
    [    0.209511] Backtrace: 
    [    0.209527] [<c00131b8>] (dump_backtrace) from [<c00133b4>] (show_stack+0x18/0x1c)
    [    0.209534]  r7:c08fe01c r6:60000013 r5:00000000 r4:c0970e0c
    [    0.209559] [<c001339c>] (show_stack) from [<c02b4e0c>] (dump_stack+0x8c/0xa0)
    [    0.209569] [<c02b4d80>] (dump_stack) from [<c0034f6c>] (warn_slowpath_common+0x88/0xb8)
    [    0.209575]  r7:c08fe01c r6:000009db r5:00000009 r4:ef073e58
    [    0.209596] [<c0034ee4>] (warn_slowpath_common) from [<c0034fd4>] (warn_slowpath_fmt+0x38/0x40)
    [    0.209602]  r8:000000ab r7:ef1e8480 r6:00000000 r5:00000000 r4:c08257b0
    [    0.209627] [<c0034fa0>] (warn_slowpath_fmt) from [<c08fe01c>] (_init.constprop.23+0x200/0x428)
    [    0.209633]  r3:c0824ad0 r2:c08257b0
    [    0.209643]  r4:c0950018
    [    0.209655] [<c08fde1c>] (_init.constprop.23) from [<c08fe374>] (__omap_hwmod_setup_all+0x48/0x98)
    [    0.209662]  r10:00000000 r9:c08f1600 r8:000000ab r7:ef1e8480 r6:c09496b0 r5:c094bb38
    [    0.209683]  r4:c0950018
    [    0.209695] [<c08fe32c>] (__omap_hwmod_setup_all) from [<c000982c>] (do_one_initcall+0x98/0x1e4)
    [    0.209701]  r5:c08fe32c r4:c09496b0
    [    0.209716] [<c0009794>] (do_one_initcall) from [<c08f1f68>] (kernel_init_freeable+0x1d4/0x268)
    [    0.209722]  r10:00000002 r9:c08f1600 r8:000000ab r7:c0931820 r6:c093eff4 r5:c09a2000
    [    0.209743]  r4:c09a2000
    [    0.209756] [<c08f1d94>] (kernel_init_freeable) from [<c0679ce4>] (kernel_init+0x18/0xf4)
    [    0.209761]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0679ccc
    [    0.209781]  r4:c09a2000
    [    0.209794] [<c0679ccc>] (kernel_init) from [<c000fb88>] (ret_from_fork+0x14/0x2c)
    [    0.209800]  r5:c0679ccc r4:00000000
    [    0.209811] ---[ end trace 005daaf0bdfd3b25 ]---
    [    0.320421] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [    0.324621] pinctrl core: initialized pinctrl subsystem
    [    0.325479] NET: Registered protocol family 16
    [    0.326412] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.350239] cpuidle: using governor ladder
    [    0.380268] cpuidle: using governor menu
    [    0.388827] OMAP GPIO hardware version 0.1
    [    0.395340] irq: no irq domain found for /ocp/l4@4a000000/scm@2000/pinmux@1400 !
    [    0.412194] omap-gpmc 50000000.gpmc: GPMC revision 6.0
    [    0.412208] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    0.421767] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
    [    0.421777] hw-breakpoint: maximum watchpoint size is 8 bytes.
    [    0.422237] omap4_sram_init:Unable to allocate sram needed to handle errata I688
    [    0.422246] omap4_sram_init:Unable to get sram pool needed to handle errata I688
    [    0.422827] OMAP DMA hardware revision 0.0
    [    0.461352] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver (LinkedList1/2/3 supported)
    [    0.462508] edma 43300000.edma: memcpy is disabled
    [    0.467118] edma 43300000.edma: TI EDMA DMA engine driver
    [    0.471389] omap-iommu 40d01000.mmu: 40d01000.mmu registered
    [    0.471577] omap-iommu 40d02000.mmu: 40d02000.mmu registered
    [    0.471743] omap-iommu 58882000.mmu: 58882000.mmu registered
    [    0.471902] omap-iommu 55082000.mmu: 55082000.mmu registered
    [    0.472188] omap-iommu 41501000.mmu: 41501000.mmu registered
    [    0.472385] omap-iommu 41502000.mmu: 41502000.mmu registered
    [    0.475578] palmas 0-0058: IRQ missing: skipping irq request
    [    0.490791] palmas: probe of 0-0058 failed with error -121
    [    0.491443] pcf857x 0-0020: probed
    [    0.492006] pcf857x 0-0021: probed
    [    0.492157] omap_i2c 48070000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.510697] pcf857x 1-0026: probed
    [    0.511217] mcp230xx: probe of 1-0027 failed with error -121
    [    0.511441] mcp230xx: probe of 1-0021 failed with error -121
    [    0.511664] mcp230xx: probe of 1-0025 failed with error -121
    [    0.512378] omap_i2c 48072000.i2c: bus 1 rev0.12 at 400 kHz
    [    0.512749] omap_i2c 48060000.i2c: bus 2 rev0.12 at 400 kHz
    [    0.512943] media: Linux media interface: v0.10
    [    0.512992] Linux video capture interface: v2.00
    [    0.513030] pps_core: LinuxPPS API ver. 1 registered
    [    0.513037] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.513061] PTP clock support registered
    [    0.513106] EDAC MC: Ver: 3.0.0
    [    0.513848] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
    [    0.514141] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
    [    0.514475] Advanced Linux Sound Architecture Driver Initialized.
    [    0.515315] clocksource: Switched to clocksource arch_sys_counter
    [    0.525910] NET: Registered protocol family 2
    [    0.526406] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [    0.526470] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [    0.526595] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.526641] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [    0.526672] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [    0.526877] NET: Registered protocol family 1
    [    0.527138] RPC: Registered named UNIX socket transport module.
    [    0.527147] RPC: Registered udp transport module.
    [    0.527153] RPC: Registered tcp transport module.
    [    0.527160] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.528147] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
    [    0.530559] futex hash table entries: 512 (order: 3, 32768 bytes)
    [    0.538202] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.538854] NFS: Registering the id_resolver key type
    [    0.538880] Key type id_resolver registered
    [    0.538887] Key type id_legacy registered
    [    0.538955] ntfs: driver 2.1.32 [Flags: R/O].
    [    0.540943] bounce: pool size: 64 pages
    [    0.541099] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.541117] io scheduler noop registered
    [    0.541131] io scheduler deadline registered
    [    0.541167] io scheduler cfq registered (default)
    [    0.545693] pinctrl-single 4a003400.pinmux: 282 pins at pa fc003400 size 1128
    [    0.548812] PCI host bridge /ocp/axi@0/pcie_rc@51000000 ranges:
    [    0.548825]   No bus range found for /ocp/axi@0/pcie_rc@51000000, using [bus 00-ff]
    [    0.548858]    IO 0x20003000..0x20012fff -> 0x00000000
    [    0.548879]   MEM 0x20013000..0x2fffffff -> 0x20013000
    [    0.578752] dra7-pcie 51000000.pcie_rc: link is not up
    [    0.578921] dra7-pcie 51000000.pcie_rc: PCI host bridge to bus 0000:00
    [    0.578934] pci_bus 0000:00: root bus resource [bus 00-ff]
    [    0.578945] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
    [    0.578954] pci_bus 0000:00: root bus resource [mem 0x20013000-0x2fffffff]
    [    0.579366] PCI: bus0: Fast back to back transfers disabled
    [    0.579487] PCI: bus1: Fast back to back transfers enabled
    [    0.579570] pci 0000:00:00.0: BAR 0: assigned [mem 0x20100000-0x201fffff]
    [    0.579585] pci 0000:00:00.0: BAR 1: assigned [mem 0x20020000-0x2002ffff]
    [    0.579598] pci 0000:00:00.0: PCI bridge to [bus 01]
    [    0.579821] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt
    [    0.603056] fpd3_serdes: probe of 7-002c failed with error -5
    [    0.603213] fpd3_serdes 1-001b: Serializer fpd3_24b_ser ready
    [    0.605132] fpd3_serdes 7-002c: Deserializer fpd3_24b_des ready
    [    0.664693] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [    0.668087] 4806a000.serial: ttyS0 at MMIO 0x4806a000 (irq = 301, base_baud = 3000000) is a 8250
    [    2.110928] console [ttyS0] enabled
    [    2.115368] 4806c000.serial: ttyS1 at MMIO 0x4806c000 (irq = 302, base_baud = 3000000) is a 8250
    [    2.125029] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 303, base_baud = 3000000) is a 8250
    [    2.135069] [drm] Initialized drm 1.1.0 20060810
    [    2.141291] omapdss_dss 58000000.dss: master bind failed: -517
    [    2.148397] connector-hdmi connector@1: failed to find video source
    [    2.170948] loop: module loaded
    [    2.174574] vmemexp device MAJOR num = 246
    [    2.178728] vmemexp class registered
    [    2.182442] /dev/vmemexp device registered
    [    2.186574] ioctl DBUFIOC_EXPORT_VIRTMEM = -1072899120
    [    2.192273] nand: No NAND device found
    [    2.196063] omap2-nand 8000000.nand: scan failed, may be bus-width mismatch
    [    2.205924] m25p80 spi32766.0: s25fl256s1 (32768 Kbytes)
    [    2.211318] 7 ofpart partitions found on MTD device spi32766.0
    [    2.217196] Creating 7 MTD partitions on "spi32766.0":
    [    2.222360] 0x000000000000-0x000000040000 : "QSPI.SPL"
    [    2.228467] 0x000000040000-0x000000140000 : "QSPI.u-boot"
    [    2.234789] 0x000000140000-0x0000001c0000 : "QSPI.u-boot-spl-os"
    [    2.241726] 0x0000001c0000-0x0000001d0000 : "QSPI.u-boot-env"
    [    2.248397] 0x0000001d0000-0x0000001e0000 : "QSPI.u-boot-env.backup1"
    [    2.255787] 0x0000001e0000-0x0000009e0000 : "QSPI.kernel"
    [    2.262115] 0x0000009e0000-0x000002000000 : "QSPI.file-system"
    [    2.269922] libphy: Fixed MDIO Bus: probed
    [    2.325351] davinci_mdio 48485000.mdio: davinci mdio revision 1.6
    [    2.331473] davinci_mdio 48485000.mdio: detected phy mask fffffff3
    [    2.341947] libphy: 48485000.mdio: probed
    [    2.346021] davinci_mdio 48485000.mdio: phy[2]: device 48485000.mdio:02, driver unknown
    [    2.354062] davinci_mdio 48485000.mdio: phy[3]: device 48485000.mdio:03, driver unknown
    [    2.362800] cpsw 48484000.ethernet: Detected MACID = fc:0f:4b:c2:c7:d8
    [    2.369500] cpsw 48484000.ethernet: cpts: overflow check period 800
    [    2.376502] cpsw 48484000.ethernet: cpsw: Detected MACID = fc:0f:4b:c2:c7:d9
    [    2.385063] mousedev: PS/2 mouse device common for all mice
    [    2.391435] i2c /dev entries driver
    [    2.395949] ov1063x 1-0037: Failed writing register 0x0103!
    [    2.401557] ov1063x: probe of 1-0037 failed with error -121
    [    2.407534] ov1063x 1-0030: Failed writing register 0x0103!
    [    2.413142] ov1063x: probe of 1-0030 failed with error -121
    [    2.423685] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    2.455942] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [    2.462328] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [    2.914266] ledtrig-cpu: registered to indicate activity on CPUs
    [    2.924366] tlv320aic3x-codec 0-0019: Failed to get supply 'IOVDD': -517
    [    2.931144] tlv320aic3x-codec 0-0019: Failed to request supplies: -517
    [    2.939259] davinci-mcasp 4847c000.mcasp: invalid tdm slots: 0
    [    2.946701] NET: Registered protocol family 10
    [    2.952015] sit: IPv6 over IPv4 tunneling driver
    [    2.957255] NET: Registered protocol family 17
    [    2.961937] Key type dns_resolver registered
    [    2.966401] omap_voltage_late_init: Voltage driver support not added
    [    2.973286] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    2.979515] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    2.985766] ti_oppdm 4a003b20.oppdm: Unable to get vdd regulator:-517
    [    2.992371] Power Management for TI OMAP4+ devices.
    [    2.997548] Registering SWP/SWPB emulation handler
    [    3.005059] dmm 4e000000.dmm: initialized all PAT entries
    [    3.013225] omapdss_dss 58000000.dss: master bind failed: -517
    [    3.019438] connector-hdmi connector@1: failed to find video source
    [    3.026409] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    3.066183] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [    3.072569] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [    3.105721] tlv320aic3x-codec 0-0019: Failed to get supply 'IOVDD': -517
    [    3.112454] tlv320aic3x-codec 0-0019: Failed to request supplies: -517
    [    3.119704] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    3.125938] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    3.132176] ti_oppdm 4a003b20.oppdm: Unable to get vdd regulator:-517
    [    3.139776] input: gpio_keys as /devices/platform/gpio_keys/input/input0
    [    3.146741] hctosys: unable to open rtc device (rtc0)
    [    3.157298] omapdss_dss 58000000.dss: master bind failed: -517
    [    3.163514] connector-hdmi connector@1: failed to find video source
    [    3.165869] evm_3v3_sw: disabling
    [    3.165874] aic_dvdd: disabling
    [    3.165878] vmmcwl_fixed: disabling
    [    3.165888] pbias_mmc_omap5: disabling
    [    3.165900] evm_3v3_sd: disabling
    [    3.166141] ALSA device list:
    [    3.166144]   No soundcards found.
    [    3.194106] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    3.225572] Waiting for root device PARTUUID=e1e4d72a-02...
    [    3.226330] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [    3.226335] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [    3.255766] tlv320aic3x-codec 0-0019: Failed to get supply 'IOVDD': -517
    [    3.262500] tlv320aic3x-codec 0-0019: Failed to request supplies: -517
    [    3.269788] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    3.276038] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    3.282276] ti_oppdm 4a003b20.oppdm: Unable to get vdd regulator:-517
    

  • Hi,

      I have tried to reproduce this on Rev H EVM but I couldnt reproduce it even after multiple attempts. Can you add following changes, build u-boot and flash?

    diff --git a/drivers/i2c/omap24xx_i2c.c b/drivers/i2c/omap24xx_i2c.c
    index 0006343..27ad7af 100644
    --- a/drivers/i2c/omap24xx_i2c.c
    +++ b/drivers/i2c/omap24xx_i2c.c
    @@ -49,11 +49,11 @@
    
     DECLARE_GLOBAL_DATA_PTR;
    
    -#define I2C_TIMEOUT    1000
    +#define I2C_TIMEOUT    (1000*2) //debug
    
     /* Absolutely safe for status update at 100 kHz I2C: */
     #define I2C_WAIT       200
    -
    +#define DEBUG
     struct omap_i2c {
            struct udevice *clk;
            struct i2c *regs;
    @@ -644,6 +645,7 @@ static int __omap24_i2c_write(struct i2c *i2c_base, int waitdelay, uchar chip,
            /* Address phase is over, now write data */
            for (i = 0; i < len; i++) {
                    status = wait_for_event(i2c_base, waitdelay);
    +               printf(" debug: i2c status %x\n", sttaus);
                    if (status == 0 || (status & I2C_STAT_NACK)) {
                            i2c_error = 1;
                            printf("i2c_write: error waiting for data ACK (status=0x%x)\n",

    Regards,
    RK

  • Hello,

    Thank you for your reply.

    I modified the program follow you code. It prints i2c_write error below.

    Please give me more debug advice. Thank you very much.

    log file:

    i2c_write error waiting for addr ACK (status=0x116).txt
    U-Boot SPL 2016.05-00002-g1439a4f-dirty (Sep 26 2017 - 01:32:24)
    DRA752-GP ES2.0
    i2c_write: error waiting for addr ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    MMC Device 1 not found
    *** Warning - No MMC card found, using default environment
    
    Trying to boot from MMC1
    MMC Device 1 not found
    *** Warning - No MMC card found, using default environment
    
    reading u-boot.img
    reading u-boot.img
    reading u-boot.img
    reading u-boot.img
    
    
    U-Boot 2016.05-00002-g1439a4f-dirty (Sep 26 2017 - 01:32:24 -0700)
    
    CPU  : DRA752-GP ES2.0
    Model: TI DRA742
    Board: DRA74x EVM REV H.0
    DRAM:  4 GiB
    MMC:   debug: i2c status 1410
    debug: i2c status 1410
    OMAP SD/MMC: 0, OMAP SD/MMC: 1
    ** First descriptor is NOT a primary desc on 1:1 **
    GUID Partition Table Header signature is wrong: 0x0 != 0x5452415020494645
    part_get_info_efi: *** ERROR: Invalid GPT ***
    GUID Partition Table Header signature is wrong: 0x0 != 0x5452415020494645
    part_get_info_efi: *** ERROR: Invalid Backup GPT ***
    ERROR: cannot find partition: 'userdata'
    
    at arch/arm/cpu/armv7/omap-common/utils.c:195/mmc_get_part_size()
    Warning: fastboot.userdata_size: unable to calc
    SCSI:  SATA link 0 timeout.
    AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
    flags: 64bit ncq stag pm led clo only pmp pio slum part ccc apst 
    scanning bus for devices...
    Found 0 device(s).
    Net:   
    Warning: ethernet@48484000 using MAC address from ROM
    eth0: ethernet@48484000
    Hit any key to stop autoboot:  0 
    debug: i2c status 116
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    debug: i2c status 1410
    debug: i2c status 1410
    debug: i2c status 1410
    debug: i2c status 1410
    switch to partitions #0, OK
    mmc0 is current device
    debug: i2c status 116
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    debug: i2c status 1410
    debug: i2c status 1410
    debug: i2c status 1410
    debug: i2c status 1410
    SD/MMC found on device 0
    reading boot.scr
    ** Unable to read file boot.scr **
    reading uEnv.txt
    165 bytes read in 2 ms (80.1 KiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc0 ...
    debug: i2c status 116
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    debug: i2c status 1410
    debug: i2c status 1410
    debug: i2c status 1410
    debug: i2c status 1410
    switch to partitions #0, OK
    mmc0 is current device
    debug: i2c status 116
    i2c_write: error waiting for data ACK (status=0x116)
    tps65903x: could not set LDO1 voltage.
    debug: i2c status 1410
    debug: i2c status 1410
    debug: i2c status 1410
    debug: i2c status 1410
    SD/MMC found on device 0
    3633840 bytes read in 203 ms (17.1 MiB/s)
    109715 bytes read in 25 ms (4.2 MiB/s)
    Booting from mmc0 ...
    Kernel image @ 0x82000000 [ 0x000000 - 0x3772b0 ]
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       Loading Device Tree to 8ffe2000, end 8ffffc92 ... OK
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Initializing cgroup subsys cpuset
    [    0.000000] Initializing cgroup subsys cpu
    [    0.000000] Initializing cgroup subsys cpuacct
    [    0.000000] Linux version 4.4.45-00014-gc08192c-dirty (strong@ubuntu) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #5 SMP PREEMPT Tue Sep 26 01:33:32 PDT 2017
    [    0.000000] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), cr=30c5387d
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
    [    0.000000] Machine model: TI DRA742
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000040300000, size 3 MiB
    [    0.000000] Reserved memory: initialized node cmem@40300000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000099000000, size 80 MiB
    [    0.000000] Reserved memory: initialized node ipu2_cma@95800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x000000009e000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node ipu1_cma@9d000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000000a1000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node dsp1_cma@99000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000000a3000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node dsp2_cma@9f000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a9000000, size 64 MiB
    [    0.000000] Reserved memory: initialized node cmem@A9000000, compatible id shared-dma-pool
    [    0.000000] cma: Reserved 24 MiB at 0x00000000be400000
    [    0.000000] Forcing write-allocate cache policy for SMP
    [    0.000000] Memory policy: Data cache writealloc
    [    0.000000] OMAP4: Map 0x00000000bfd00000 to fe600000 for dram barrier
    [    0.000000] DRA752 ES2.0
    [    0.000000] PERCPU: Embedded 11 pages/cpu @ef627000 s14848 r8192 d22016 u45056
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 243264
    [    0.000000] Kernel command line: console=ttyO0,115200n8 vram=16M root=PARTUUID=72e263a6-02 rw rootwait ip=none mem=1024M
    [    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.000000] Memory: 328752K/979968K available (6627K kernel code, 371K rwdata, 2492K rodata, 332K init, 290K bss, 446416K reserved, 204800K cma-reserved, 234496K highmem)
    [    0.000000] Virtual kernel memory layout:
    [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    [    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
    [    0.000000]     vmalloc : 0xf0800000 - 0xff800000   ( 240 MB)
    [    0.000000]     lowmem  : 0xc0000000 - 0xf0000000   ( 768 MB)
    [    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
    [    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
    [    0.000000]       .text : 0xc0008000 - 0xc08f0044   (9121 kB)
    [    0.000000]       .init : 0xc08f1000 - 0xc0944000   ( 332 kB)
    [    0.000000]       .data : 0xc0944000 - 0xc09a0fd0   ( 372 kB)
    [    0.000000]        .bss : 0xc09a2000 - 0xc09ea880   ( 291 kB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] Preemptible hierarchical RCU implementation.
    [    0.000000]  Build-time adjustment of leaf fanout to 32.
    [    0.000000] NR_IRQS:16 nr_irqs:16 16
    [    0.000000] ti_dt_clocks_register: failed to lookup clock node gmac_gmii_ref_clk_div
    [    0.000000] OMAP clockevent source: timer1 at 32786 Hz
    [    0.000000] Architected cp15 timer(s) running at 6.14MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x16af5adb9, max_idle_ns: 440795202250 ns
    [    0.000005] sched_clock: 56 bits at 6MHz, resolution 162ns, wraps every 4398046511023ns
    [    0.000016] Switching to timer-based delay loop, resolution 162ns
    [    0.000333] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns
    [    0.000341] OMAP clocksource: 32k_counter at 32768 Hz
    [    0.000808] Console: colour dummy device 80x30
    [    0.000824] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
    [    0.000830] This ensures that you still see kernel messages. Please
    [    0.000835] update your kernel commandline.
    [    0.000848] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.29 BogoMIPS (lpj=61475)
    [    0.000861] pid_max: default: 32768 minimum: 301
    [    0.000953] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.000964] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.001492] Initializing cgroup subsys io
    [    0.001508] Initializing cgroup subsys memory
    [    0.001532] Initializing cgroup subsys devices
    [    0.001544] Initializing cgroup subsys freezer
    [    0.001557] Initializing cgroup subsys perf_event
    [    0.001568] Initializing cgroup subsys pids
    [    0.001596] CPU: Testing write buffer coherency: ok
    [    0.001798] /cpus/cpu@0 missing clock-frequency property
    [    0.001813] /cpus/cpu@1 missing clock-frequency property
    [    0.001824] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
    [    0.001860] Setting up static identity map for 0x80008380 - 0x800083e0
    [    0.080163] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
    [    0.080223] Brought up 2 CPUs
    [    0.080236] SMP: Total of 2 processors activated (24.59 BogoMIPS).
    [    0.080242] CPU: All CPU(s) started in HYP mode.
    [    0.080248] CPU: Virtualization extensions available.
    [    0.080614] devtmpfs: initialized
    [    0.109764] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
    [    0.110751] omap_hwmod: l3_main_2 using broken dt data from ocp
    [    0.207099] omap_hwmod: vpe: no dt node
    [    0.207108] ------------[ cut here ]------------
    [    0.207122] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2523 _init.constprop.23+0x200/0x428()
    [    0.207129] omap_hwmod: vpe: doesn't have mpu register target base
    [    0.207135] Modules linked in:
    [    0.207148] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.4.45-00014-gc08192c-dirty #5
    [    0.207155] Hardware name: Generic DRA74X (Flattened Device Tree)
    [    0.207162] Backtrace: 
    [    0.207183] [<c00131b8>] (dump_backtrace) from [<c00133b4>] (show_stack+0x18/0x1c)
    [    0.207190]  r7:c08fe01c r6:60000013 r5:00000000 r4:c0970e0c
    [    0.207219] [<c001339c>] (show_stack) from [<c02b4e0c>] (dump_stack+0x8c/0xa0)
    [    0.207231] [<c02b4d80>] (dump_stack) from [<c0034f6c>] (warn_slowpath_common+0x88/0xb8)
    [    0.207237]  r7:c08fe01c r6:000009db r5:00000009 r4:ef073e58
    [    0.207259] [<c0034ee4>] (warn_slowpath_common) from [<c0034fd4>] (warn_slowpath_fmt+0x38/0x40)
    [    0.207266]  r8:000000ab r7:ef1e86c0 r6:00000000 r5:00000000 r4:c08257b0
    [    0.207291] [<c0034fa0>] (warn_slowpath_fmt) from [<c08fe01c>] (_init.constprop.23+0x200/0x428)
    [    0.207298]  r3:c0827a90 r2:c08257b0
    [    0.207308]  r4:c0954e98
    [    0.207320] [<c08fde1c>] (_init.constprop.23) from [<c08fe374>] (__omap_hwmod_setup_all+0x48/0x98)
    [    0.207327]  r10:00000000 r9:c08f1600 r8:000000ab r7:ef1e86c0 r6:c09496b0 r5:c094bb38
    [    0.207350]  r4:c0954e98
    [    0.207362] [<c08fe32c>] (__omap_hwmod_setup_all) from [<c000982c>] (do_one_initcall+0x98/0x1e4)
    [    0.207369]  r5:c08fe32c r4:c09496b0
    [    0.207385] [<c0009794>] (do_one_initcall) from [<c08f1f68>] (kernel_init_freeable+0x1d4/0x268)
    [    0.207391]  r10:00000002 r9:c08f1600 r8:000000ab r7:c0931820 r6:c093eff4 r5:c09a2000
    [    0.207412]  r4:c09a2000
    [    0.207428] [<c08f1d94>] (kernel_init_freeable) from [<c0679ce4>] (kernel_init+0x18/0xf4)
    [    0.207434]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0679ccc
    [    0.207454]  r4:c09a2000
    [    0.207467] [<c0679ccc>] (kernel_init) from [<c000fb88>] (ret_from_fork+0x14/0x2c)
    [    0.207474]  r5:c0679ccc r4:00000000
    [    0.207496] ---[ end trace 667a52c561d8e7ad ]---
    [    0.209623] omap_hwmod: wd_timer2: no dt node
    [    0.209629] ------------[ cut here ]------------
    [    0.209640] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2523 _init.constprop.23+0x200/0x428()
    [    0.209646] omap_hwmod: wd_timer2: doesn't have mpu register target base
    [    0.209651] Modules linked in:
    [    0.209662] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W       4.4.45-00014-gc08192c-dirty #5
    [    0.209669] Hardware name: Generic DRA74X (Flattened Device Tree)
    [    0.209674] Backtrace: 
    [    0.209690] [<c00131b8>] (dump_backtrace) from [<c00133b4>] (show_stack+0x18/0x1c)
    [    0.209695]  r7:c08fe01c r6:60000013 r5:00000000 r4:c0970e0c
    [    0.209719] [<c001339c>] (show_stack) from [<c02b4e0c>] (dump_stack+0x8c/0xa0)
    [    0.209729] [<c02b4d80>] (dump_stack) from [<c0034f6c>] (warn_slowpath_common+0x88/0xb8)
    [    0.209735]  r7:c08fe01c r6:000009db r5:00000009 r4:ef073e58
    [    0.209756] [<c0034ee4>] (warn_slowpath_common) from [<c0034fd4>] (warn_slowpath_fmt+0x38/0x40)
    [    0.209761]  r8:000000ab r7:ef1e86c0 r6:00000000 r5:00000000 r4:c08257b0
    [    0.209785] [<c0034fa0>] (warn_slowpath_fmt) from [<c08fe01c>] (_init.constprop.23+0x200/0x428)
    [    0.209791]  r3:c0824ad0 r2:c08257b0
    [    0.209802]  r4:c0950018
    [    0.209813] [<c08fde1c>] (_init.constprop.23) from [<c08fe374>] (__omap_hwmod_setup_all+0x48/0x98)
    [    0.209819]  r10:00000000 r9:c08f1600 r8:000000ab r7:ef1e86c0 r6:c09496b0 r5:c094bb38
    [    0.209840]  r4:c0950018
    [    0.209852] [<c08fe32c>] (__omap_hwmod_setup_all) from [<c000982c>] (do_one_initcall+0x98/0x1e4)
    [    0.209858]  r5:c08fe32c r4:c09496b0
    [    0.209873] [<c0009794>] (do_one_initcall) from [<c08f1f68>] (kernel_init_freeable+0x1d4/0x268)
    [    0.209880]  r10:00000002 r9:c08f1600 r8:000000ab r7:c0931820 r6:c093eff4 r5:c09a2000
    [    0.209900]  r4:c09a2000
    [    0.209914] [<c08f1d94>] (kernel_init_freeable) from [<c0679ce4>] (kernel_init+0x18/0xf4)
    [    0.209920]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0679ccc
    [    0.209940]  r4:c09a2000
    [    0.209953] [<c0679ccc>] (kernel_init) from [<c000fb88>] (ret_from_fork+0x14/0x2c)
    [    0.209959]  r5:c0679ccc r4:00000000
    [    0.209970] ---[ end trace 667a52c561d8e7ae ]---
    [    0.320428] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [    0.324627] pinctrl core: initialized pinctrl subsystem
    [    0.325480] NET: Registered protocol family 16
    [    0.326407] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.350242] cpuidle: using governor ladder
    [    0.380270] cpuidle: using governor menu
    [    0.388828] OMAP GPIO hardware version 0.1
    [    0.395348] irq: no irq domain found for /ocp/l4@4a000000/scm@2000/pinmux@1400 !
    [    0.412190] omap-gpmc 50000000.gpmc: GPMC revision 6.0
    [    0.412204] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    0.421923] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
    [    0.421933] hw-breakpoint: maximum watchpoint size is 8 bytes.
    [    0.422404] omap4_sram_init:Unable to allocate sram needed to handle errata I688
    [    0.422414] omap4_sram_init:Unable to get sram pool needed to handle errata I688
    [    0.422993] OMAP DMA hardware revision 0.0
    [    0.461561] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver (LinkedList1/2/3 supported)
    [    0.462728] edma 43300000.edma: memcpy is disabled
    [    0.467315] edma 43300000.edma: TI EDMA DMA engine driver
    [    0.471598] omap-iommu 40d01000.mmu: 40d01000.mmu registered
    [    0.471785] omap-iommu 40d02000.mmu: 40d02000.mmu registered
    [    0.471950] omap-iommu 58882000.mmu: 58882000.mmu registered
    [    0.472116] omap-iommu 55082000.mmu: 55082000.mmu registered
    [    0.472399] omap-iommu 41501000.mmu: 41501000.mmu registered
    [    0.472601] omap-iommu 41502000.mmu: 41502000.mmu registered
    [    0.475798] palmas 0-0058: IRQ missing: skipping irq request
    [    0.490956] palmas: probe of 0-0058 failed with error -121
    [    0.491595] pcf857x 0-0020: probed
    [    0.492168] pcf857x 0-0021: probed
    [    0.492314] omap_i2c 48070000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.510855] pcf857x 1-0026: probed
    [    0.511378] mcp230xx: probe of 1-0027 failed with error -121
    [    0.511602] mcp230xx: probe of 1-0021 failed with error -121
    [    0.511830] mcp230xx: probe of 1-0025 failed with error -121
    [    0.512539] omap_i2c 48072000.i2c: bus 1 rev0.12 at 400 kHz
    [    0.512916] omap_i2c 48060000.i2c: bus 2 rev0.12 at 400 kHz
    [    0.513109] media: Linux media interface: v0.10
    [    0.513158] Linux video capture interface: v2.00
    [    0.513196] pps_core: LinuxPPS API ver. 1 registered
    [    0.513204] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.513227] PTP clock support registered
    [    0.513274] EDAC MC: Ver: 3.0.0
    [    0.514019] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
    [    0.514310] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
    [    0.514653] Advanced Linux Sound Architecture Driver Initialized.
    [    0.515510] clocksource: Switched to clocksource arch_sys_counter
    [    0.526231] NET: Registered protocol family 2
    [    0.526721] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [    0.526785] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [    0.526910] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.526957] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [    0.526988] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [    0.527193] NET: Registered protocol family 1
    [    0.527453] RPC: Registered named UNIX socket transport module.
    [    0.527463] RPC: Registered udp transport module.
    [    0.527469] RPC: Registered tcp transport module.
    [    0.527475] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.528470] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
    [    0.530874] futex hash table entries: 512 (order: 3, 32768 bytes)
    [    0.538458] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.539116] NFS: Registering the id_resolver key type
    [    0.539142] Key type id_resolver registered
    [    0.539149] Key type id_legacy registered
    [    0.539215] ntfs: driver 2.1.32 [Flags: R/O].
    [    0.541193] bounce: pool size: 64 pages
    [    0.541353] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.541370] io scheduler noop registered
    [    0.541385] io scheduler deadline registered
    [    0.541420] io scheduler cfq registered (default)
    [    0.545965] pinctrl-single 4a003400.pinmux: 282 pins at pa fc003400 size 1128
    [    0.549093] PCI host bridge /ocp/axi@0/pcie_rc@51000000 ranges:
    [    0.549106]   No bus range found for /ocp/axi@0/pcie_rc@51000000, using [bus 00-ff]
    [    0.549141]    IO 0x20003000..0x20012fff -> 0x00000000
    [    0.549162]   MEM 0x20013000..0x2fffffff -> 0x20013000
    [    0.578957] dra7-pcie 51000000.pcie_rc: link is not up
    [    0.579130] dra7-pcie 51000000.pcie_rc: PCI host bridge to bus 0000:00
    [    0.579143] pci_bus 0000:00: root bus resource [bus 00-ff]
    [    0.579154] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
    [    0.579163] pci_bus 0000:00: root bus resource [mem 0x20013000-0x2fffffff]
    [    0.579567] PCI: bus0: Fast back to back transfers disabled
    [    0.579690] PCI: bus1: Fast back to back transfers enabled
    [    0.579775] pci 0000:00:00.0: BAR 0: assigned [mem 0x20100000-0x201fffff]
    [    0.579790] pci 0000:00:00.0: BAR 1: assigned [mem 0x20020000-0x2002ffff]
    [    0.579803] pci 0000:00:00.0: PCI bridge to [bus 01]
    [    0.580034] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt
    [    0.603135] fpd3_serdes: probe of 7-002c failed with error -5
    [    0.603294] fpd3_serdes 1-001b: Serializer fpd3_24b_ser ready
    [    0.605208] fpd3_serdes 7-002c: Deserializer fpd3_24b_des ready
    [    0.665049] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [    0.668451] 4806a000.serial: ttyS0 at MMIO 0x4806a000 (irq = 301, base_baud = 3000000) is a 8250
    [    2.111828] console [ttyS0] enabled
    [    2.116230] 4806c000.serial: ttyS1 at MMIO 0x4806c000 (irq = 302, base_baud = 3000000) is a 8250
    [    2.125940] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 303, base_baud = 3000000) is a 8250
    [    2.135982] [drm] Initialized drm 1.1.0 20060810
    [    2.142164] omapdss_dss 58000000.dss: master bind failed: -517
    [    2.149324] connector-hdmi connector@1: failed to find video source
    [    2.171889] loop: module loaded
    [    2.175540] vmemexp device MAJOR num = 246
    [    2.179668] vmemexp class registered
    [    2.183385] /dev/vmemexp device registered
    [    2.187516] ioctl DBUFIOC_EXPORT_VIRTMEM = -1072899120
    [    2.193210] nand: No NAND device found
    [    2.197000] omap2-nand 8000000.nand: scan failed, may be bus-width mismatch
    [    2.206873] m25p80 spi32766.0: s25fl256s1 (32768 Kbytes)
    [    2.212268] 7 ofpart partitions found on MTD device spi32766.0
    [    2.218144] Creating 7 MTD partitions on "spi32766.0":
    [    2.223307] 0x000000000000-0x000000040000 : "QSPI.SPL"
    [    2.229427] 0x000000040000-0x000000140000 : "QSPI.u-boot"
    [    2.235784] 0x000000140000-0x0000001c0000 : "QSPI.u-boot-spl-os"
    [    2.242692] 0x0000001c0000-0x0000001d0000 : "QSPI.u-boot-env"
    [    2.249346] 0x0000001d0000-0x0000001e0000 : "QSPI.u-boot-env.backup1"
    [    2.256728] 0x0000001e0000-0x0000009e0000 : "QSPI.kernel"
    [    2.263060] 0x0000009e0000-0x000002000000 : "QSPI.file-system"
    [    2.270906] libphy: Fixed MDIO Bus: probed
    [    2.325546] davinci_mdio 48485000.mdio: davinci mdio revision 1.6
    [    2.331669] davinci_mdio 48485000.mdio: detected phy mask fffffff3
    [    2.341882] libphy: 48485000.mdio: probed
    [    2.345955] davinci_mdio 48485000.mdio: phy[2]: device 48485000.mdio:02, driver unknown
    [    2.353996] davinci_mdio 48485000.mdio: phy[3]: device 48485000.mdio:03, driver unknown
    [    2.362726] cpsw 48484000.ethernet: Detected MACID = fc:0f:4b:c2:c7:d8
    [    2.369424] cpsw 48484000.ethernet: cpts: overflow check period 800
    [    2.376421] cpsw 48484000.ethernet: cpsw: Detected MACID = fc:0f:4b:c2:c7:d9
    [    2.385013] mousedev: PS/2 mouse device common for all mice
    [    2.391401] i2c /dev entries driver
    [    2.395903] ov1063x 1-0037: Failed writing register 0x0103!
    [    2.401514] ov1063x: probe of 1-0037 failed with error -121
    [    2.407491] ov1063x 1-0030: Failed writing register 0x0103!
    [    2.413100] ov1063x: probe of 1-0030 failed with error -121
    [    2.423674] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    2.456142] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [    2.462529] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [    2.914402] ledtrig-cpu: registered to indicate activity on CPUs
    [    2.924524] tlv320aic3x-codec 0-0019: Failed to get supply 'IOVDD': -517
    [    2.931300] tlv320aic3x-codec 0-0019: Failed to request supplies: -517
    [    2.939424] davinci-mcasp 4847c000.mcasp: invalid tdm slots: 0
    [    2.946830] NET: Registered protocol family 10
    [    2.952116] sit: IPv6 over IPv4 tunneling driver
    [    2.957342] NET: Registered protocol family 17
    [    2.962025] Key type dns_resolver registered
    [    2.966474] omap_voltage_late_init: Voltage driver support not added
    [    2.973363] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    2.979637] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    2.985894] ti_oppdm 4a003b20.oppdm: Unable to get vdd regulator:-517
    [    2.992495] Power Management for TI OMAP4+ devices.
    [    2.997677] Registering SWP/SWPB emulation handler
    [    3.005203] dmm 4e000000.dmm: initialized all PAT entries
    [    3.013368] omapdss_dss 58000000.dss: master bind failed: -517
    [    3.019578] connector-hdmi connector@1: failed to find video source
    [    3.026553] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    3.066372] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [    3.072757] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [    3.105919] tlv320aic3x-codec 0-0019: Failed to get supply 'IOVDD': -517
    [    3.112653] tlv320aic3x-codec 0-0019: Failed to request supplies: -517
    [    3.119903] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    3.126137] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    3.132374] ti_oppdm 4a003b20.oppdm: Unable to get vdd regulator:-517
    [    3.139985] input: gpio_keys as /devices/platform/gpio_keys/input/input0
    [    3.146957] hctosys: unable to open rtc device (rtc0)
    [    3.157503] omapdss_dss 58000000.dss: master bind failed: -517
    [    3.163723] connector-hdmi connector@1: failed to find video source
    [    3.166057] evm_3v3_sw: disabling
    [    3.166061] aic_dvdd: disabling
    [    3.166065] vmmcwl_fixed: disabling
    [    3.166075] pbias_mmc_omap5: disabling
    [    3.166088] evm_3v3_sd: disabling
    [    3.166322] ALSA device list:
    [    3.166325]   No soundcards found.
    [    3.194327] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    3.225768] Waiting for root device PARTUUID=72e263a6-02...
    [    3.226523] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [    3.226528] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [    3.255959] tlv320aic3x-codec 0-0019: Failed to get supply 'IOVDD': -517
    [    3.262694] tlv320aic3x-codec 0-0019: Failed to request supplies: -517
    [    3.269984] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    3.276236] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    3.282472] ti_oppdm 4a003b20.oppdm: Unable to get vdd regulator:-517
    

  • Hello, Mr. RK
    Could you please give us more debug advice?