Jetson TX2 is not reboot after flash

Hi All

I downloaded jet pack 3.0 and ran, After the flash, it stopped everything leave a message.
“Determining the IP address of target”,

After that device is not rebooted, Please give me a solution to correct it, Or do I want to run Jetpack again.

*Note
Then I checked DHCP server, jetson does not resolve Ip.

I followed this link:

  1. http://docs.nvidia.com/jetpack-l4t/index.html#developertools/mobile/jetpack/l4t/3.0/jetpack_l4t_install.htm

    JetPack 3.0 - NVIDIA Jetson TX2 - YouTube

This is result

Often the board has booted, but video auto configuration has failed and it only appears as not having booted. The lack of IP does add to the likelihood that the system did not actually boot, but this is still not necessarily the case since determining the IP depends on host and router issues as well. What is the exact topology of how the host and router and Jetson are related? Is the host acting as a router, or is there a separate router involved?

FYI, networking is only used to add additional packages after a flash.

Just to be sure your host didn’t run out of disk space during the flash (flash uses a lot of disk), go to your Linux_for_Tegra directory (or probably any of the JetPack directories…Linux_for_Tegra should be one of them) and check the output of:

df -H -T .

Thank you for replay,

I checked disk space is seems to be OK, I ran again same result, I think flash was success,
But video is not displaying,

Here is the result after i ran df -H -T

Filesystem Type Size Used Avail Use% Mounted on
udev devtmpfs 8.4G 4.1k 8.4G 1% /dev
tmpfs tmpfs 1.7G 1.5M 1.7G 1% /run
/dev/sda5 ext4 405G 117G 268G 31% /
none tmpfs 4.1k 0 4.1k 0% /sys/fs/cgroup
none tmpfs 5.3M 0 5.3M 0% /run/lock
none tmpfs 8.4G 32M 8.4G 1% /run/shm
none tmpfs 105M 46k 105M 1% /run/user

That’s plenty of disk space. I’d concentrate more on why DHCP request is blocking. The system has to be running if there is an attempt to get a DHCP response, but sometimes silly things become an issue, e.g., the router needing reboot, or for other lack of access sometimes just missing permissions (on ssh flashing the host can change is keys/fingerprint…a host which talked to this on ssh before will get upset and think it is a man-in-the-middle attack).

When you say the router does not resolve the IP, are you looking at DHCP request logs on the router and finding there was no request? Or that the router refused?

A serial console cable would be nice in this situation (the TX1 serial console is the same as TX2, but you have to use software flow control instead of RTS/CTS). The RTS/CTS could be skipped. See:
[url]http://elinux.org/Jetson/TX1_Serial_Console[/url]
[url]http://www.jetsonhacks.com/2015/12/01/serial-console-nvidia-jetson-tx1/[/url]

I am having quite the same issue here: The TX2 board NEVER boots up unless HDMI is disconnected before pressing the PWR button. After a few seconds into the boot process one can re-attach the HDMI cable and everything works fine.
Wondering how often if there is a fix before the HDMI socket becomes loose…

So the procedure is:

  • Disconnect power cord
  • Disconnect HDMI cable
  • Connect power cord
  • Press PWR button
  • Wait 5 secs
  • Connect HDMI cable
  • Wait boot process to finish…

Delayed HDMI plug-in is a workaround for some known cases of the auto-configuration of video failing. I couldn’t tell you about patches or releases when that will be addressed. Just make sure your cable type does not have any 15-pin D-sub VGA connector anywhere in it…those older cables guarantee failure. Other failures seem to be somewhat random.

Hi poosh,

Could you share the kernel log you see when you plugged HDMI cable and boot up?

Hey I Tried everything, That you guys mention, but no luck

Once booted and the monitor is connected you could verify that the monitor is sending valid auto configuration data (the EDID). Post the result of this:

sudo -s
cat `find /sys -name 'edid'`
exit

Hi linuxdev

Please can you send me a flashing guide for TX2 now I am tired of trying everything, still no sign of booting

If video just isn’t configuring, then flash might or might not help. However, if you want to do the minimum to flash (JetPack can be used later to add packages) and verify based on the most simplified flash, I’d suggest flashing on command line. Download driver package and sample rootfs for R27.1 here:
https://developer.nvidia.com/embedded/linux-tegra

Unpack the driver package. This produces subdirectory “Linux_for_Tegra/”. Within that is subdirectory “rootfs”. cd to rootfs, then:

sudo tar xjf /where/ever/it/is/Tegra_Linux_Sample-Root-Filesystem_R27.1.0_aarch64.tbz2
cd ..
sudo ./apply_binaries.sh
# Make sure the Jetson is in recovery mode,
# host should see the Jetson with "lsusb -d 0955:7c18".
# Make sure you have enough disk space, run "df -H",
# this should show about 35GB free before starting.
sudo ./flash.sh -S 28GiB jetson-tx2 mmcblk0p1

This takes quite some time to finish, but when done, unless the flash aborted with failure, you can expect this to be a valid flash. If you have a router you can check for DHCP requests, then you should see the Jetson requesting an IP address and be able to ping the address. Debugging graphical login problems would be a separate step and is still possibly going to be an issue if in your previous case the Jetson was actually running ok and only video was failing.

Hi linuxdev,

Thank you quick replay, I followed the instruction that you were given, flash was success but, IP address is not resolved, I check DHCP no luck, I can not ssh or ping to device there is no IP address

You should be able to reboot and login to the device. Otherwise serial console could be used.

I agree with what @Andrey1984 said, serial console is the best way to see what’s going on. See:
[url]http://www.jetsonhacks.com/2017/03/24/serial-console-nvidia-jetson-tx2/[/url]

The flash itself worked, so I suspect the Jetson is running find and other issues are getting in the way.

When you went to ping or ssh, did you use a named address (such as tegra-ubuntu), or did you use a dotted decimal address (such as 10.0.0.5 format)? If you used a named address it might just be a configuration issue having not set up the name-to-numbered address mapping (DNS setup).

Hey,

I pretty much have the same problem. We bought a Jetson TX2 this week. The preinstalled OS was able to boot and everything seemed to work. However we used the JetPack 3.0 Tool on my Ubuntu 16.04 Host to flash the newest L4T version. After flashing there is no sign of the TX2 booting up. Pinging sometimes work. SSH does not. No screen. I tried flashing it multiple times and also the manual way:

# Download below two packages:
#   - http://developer.nvidia.com/embedded/dlc/l4t-jetson-tx2-driver-package-27-1
#   - http://developer.nvidia.com/embedded/dlc/l4t-sample-root-filesystem-27-1
 
sudo tar xpf Tegra186_Linux_R27.1.0_aarch64.tbz2
cd Linux_for_Tegra/rootfs/
sudo tar xpf ../../Tegra_Linux_Sample-Root-Filesystem_R27.1.0_aarch64.tbz2
cd ..
sudo ./apply_binaries.sh
 
# make sure to put Jetson in USB Recovery mode (visible in lsusb)
sudo ./flash.sh -S 28GiB jetson-tx2 mmcblk0p1

Here is the serial output after flashing it manually with the above commands (I disconnected all cables except for the power, serial and microUSB):

[0000.183] I> Welcome to MB2(TBoot-BPMP)(version: 0)
[0000.191] I> Default Heap @ [0xd486400 - 0xd488400]
[0000.196] I> DMA Heap @ [0x84900000 - 0x85300000]
[0000.200] I> bit @ 0xd480000
[0000.203] I> BR-BCT relocated to 0xf7f20000
[0000.208] I> Boot-device: eMMC
[0000.212] I> pmic: reset reason (nverc)        : 0x80
[0000.216] I> Reading GPT from 512 for device 00000003
[0000.222] I> Reading GPT from 8388096 for device 00000003
[0000.229] I> Found 6 partitions in 00000003 device
[0000.234] I> Reading GPT from 512 for device 00010003
[0000.240] I> Found 17 partitions in 00010003 device
[0000.245] W> No valid slot number is found in scratch register
[0000.251] W> Return default slot: _a
[0000.254] I> A/B: bin_type (16) slot 0
[0000.258] I> Select partition: bpmp-fw
[0000.262] I> Loading partition bpmp-fw at 0xf7600000
[0000.266] I> Reading two headers - addr:0xf7600000 blocks:1
[0000.272] I> Addr: 0xf7600000, start-block: 58739717, num_blocks: 1
[0000.287] I> Binary(16) of size 524480 is loaded @ 0xf7600000
[0000.292] W> No valid slot number is found in scratch register
[0000.298] W> Return default slot: _a
[0000.302] I> A/B: bin_type (17) slot 0
[0000.305] I> Select partition: bpmp-fw-dtb
[0000.309] I> Loading partition bpmp-fw-dtb at 0xf77f0000
[0000.314] I> Reading two headers - addr:0xf77f0000 blocks:1
[0000.320] I> Addr: 0xf77f0000, start-block: 58740925, num_blocks: 1
[0000.332] I> Binary(17) of size 326672 is loaded @ 0xf77b0200
[0000.458] I> BPMP-FW load address = 0xf7600000
[0000.463] I> BPMP-FW DTB load address = 0x501b0200
[0000.468] I> Loading SCE-FW ...
[0000.471] W> No valid slot number is found in scratch register
[0000.476] W> Return default slot: _a
[0000.480] I> A/B: bin_type (12) slot 0
[0000.483] I> Select partition: sce-fw
[0000.487] I> Loading partition sce-fw at 0xf7800000
[0000.492] I> Reading two headers - addr:0xf7800000 blocks:1
[0000.497] I> Addr: 0xf7800000, start-block: 58741925, num_blocks: 1
[0000.506] I> Binary(12) of size 65088 is loaded @ 0xf7800000
[0000.511] I> Init SCE
[0000.513] I> Copy BTCM section
[0000.516] W> No valid slot number is found in scratch register
[0000.522] W> Return default slot: _a
[0000.525] I> A/B: bin_type (13) slot 0
[0000.529] I> Select partition: cpu-bootloader
[0000.533] I> Loading partition cpu-bootloader at 0x96000000
[0000.539] I> Reading two headers - addr:0x96000000 blocks:1
[0000.544] I> Addr: 0x96000000, start-block: 58732545, num_blocks: 1
[0000.554] I> Binary(13) of size 195776 is loaded @ 0x96000000
[0000.560] W> No valid slot number is found in scratch register
[0000.566] W> Return default slot: _a
[0000.569] I> A/B: bin_type (20) slot 0
[0000.573] I> Select partition: bootloader-dtb
[0000.577] I> Loading partition bootloader-dtb at 0x85300000
[0000.582] I> Reading two headers - addr:0x85300000 blocks:1
[0000.588] I> Addr: 0x85300000, start-block: 58733057, num_blocks: 1
[0000.599] I> Binary(20) of size 248032 is loaded @ 0x85300000
[0000.604] I> MB2-params @ 0xf7f00000
[0000.608] I> CPUBL-params @ 0xf7f00000
[0000.612] I> CPU-BL loaded at : 0x96000000
[0000.616] I> Loading TOS ...
[0000.618] W> No valid slot number is found in scratch register
[0000.624] W> Return default slot: _a
[0000.627] I> A/B: bin_type (14) slot 0
[0000.631] I> Select partition: secure-os
[0000.635] I> Loading partition secure-os at 0x8490f400
[0000.640] I> Reading two headers - addr:0x8490f400 blocks:1
[0000.645] I> Addr: 0x8490f400, start-block: 58733569, num_blocks: 1
[0000.654] I> Binary(14) of size 54384 is loaded @ 0x8490f400
[0000.659] I> Copying Monitor (length: 0xd270) from 0x8490f600 to 0x40000000
[0000.666] I> Erasing Monitor @ 0x8490f600
[0000.671] I> Unhalting SCE
[0000.674] I> Waypoint2-ACK: 0x5200b8d0
[0000.678] I> MB2(TBoot-BPMP) done

NOTICE:  BL31: v1.2(release):ff7a644
NOTICE:  BL31: Built : 21:06:35, Mar  1 2017
NOTICE:  Trusty image missing.
ERROR:   Error initializing runtime service trusty_fast
[0001.040] I> Welcome to Cboot
[0001.043] I> Cboot Version: 00.00.2014.50-t186-fabbc56c
[0001.048] I> CPU-BL Params @ 0xf7f00000
[0001.051] I>  0) Base:0x00000000 Size:0x00000000
[0001.056] I>  1) Base:0xf7e00000 Size:0x00100000
[0001.060] I>  2) Base:0xf7d00000 Size:0x00100000
[0001.065] I>  3) Base:0xf7c00000 Size:0x00100000
[0001.069] I>  4) Base:0xf7b00000 Size:0x00100000
[0001.074] I>  5) Base:0xf7a00000 Size:0x00100000
[0001.078] I>  6) Base:0xf7600000 Size:0x00200000
[0001.082] I>  7) Base:0xf7000000 Size:0x00400000
[0001.087] I>  8) Base:0xf7900000 Size:0x00100000
[0001.091] I>  9) Base:0xf7800000 Size:0x00100000
[0001.096] I> 10) Base:0xf6800000 Size:0x00800000
[0001.100] I> 11) Base:0x30000000 Size:0x00040000
[0001.105] I> 12) Base:0xf7500000 Size:0x00100000
[0001.109] I> 13) Base:0x30040000 Size:0x00001000
[0001.113] I> 14) Base:0x30048000 Size:0x00001000
[0001.118] I> 15) Base:0x30049000 Size:0x00001000
[0001.122] I> 16) Base:0x3004a000 Size:0x00001000
[0001.127] I> 17) Base:0x3004b000 Size:0x00001000
[0001.131] I> 18) Base:0x3004c000 Size:0x00001000
[0001.136] I> 19) Base:0x3004d000 Size:0x00001000
[0001.140] I> 20) Base:0x3004e000 Size:0x00001000
[0001.144] I> 21) Base:0x3004f000 Size:0x00001000
[0001.149] I> 22) Base:0x00000000 Size:0x00000000
[0001.153] I> 23) Base:0xf7ff0000 Size:0x00010000
[0001.158] I> 24) Base:0x00000000 Size:0x00000000
[0001.162] I> 25) Base:0x00000000 Size:0x00000000
[0001.167] I> 26) Base:0x00000000 Size:0x00000000
[0001.171] I> 27) Base:0x00000000 Size:0x00000000
[0001.175] I> 28) Base:0x84400000 Size:0x00400000
[0001.180] I> 29) Base:0x30000000 Size:0x00010000
[0001.184] I> 30) Base:0xf8000000 Size:0x08000000
[0001.189] I> 31) Base:0x00000000 Size:0x00000000
[0001.193] I> 32) Base:0xf6000000 Size:0x00600000
[0001.198] I> 33) Base:0x80000000 Size:0x76000000
[0001.202] I> 34) Base:0x100000000 Size:0x180000000
[0001.207] I> 35) Base:0x00000000 Size:0x00000000
[0001.211] I> 36) Base:0x00000000 Size:0x00000000
[0001.216] I> 37) Base:0xf7fc0000 Size:0x00020000
[0001.220] I> 38) Base:0x84000000 Size:0x00400000
[0001.224] I> 39) Base:0x96000000 Size:0x02000000
[0001.229] I> 40) Base:0x84800000 Size:0x00b00000
[0001.233] I> 41) Base:0xf7f00000 Size:0x00080000
[0001.238] I> 42) Base:0x00000000 Size:0x00000000
[0001.242] I> 43) Base:0x00000000 Size:0x00000000
[0001.247] platform_init_interrupts-121, 1*
[0001.251] Interrupts Init done
[0001.254] calling constructors
[0001.257] initializing heap
[0001.260] initializing threads
[0001.263] initializing timers
[0001.266] creating bootstrap completion thread
[0001.271] top of bootstrap2()
[0001.274] CPU: ARM Cortex A57
[0001.277] CPU: MIDR: 0x411FD073, MPIDR: 0x80000100
[0001.282] initializing platform
[0001.285] I> Boot-device: eMMC
[0001.289] I> odm data is 1090000
[0001.292] I> Reading GPT from 512 for device 00000003
[0001.297] I> Reading GPT from 8388096 for device 00000003
[0001.304] I> Found 6 partitions in 00000003 device
[0001.308] I> Reading GPT from 512 for device 00010003
[0001.314] I> Found 17 partitions in 00010003 device
[0001.319] W> No valid slot number is found in scratch register
[0001.325] W> Return default slot: _a
[0001.328] I> A/B: bin_type (1) slot 0
[0001.332] I> Select partition: kernel-dtb
[0001.335] I> Loading partition kernel-dtb at 0x92000000
[0001.344] I> Kernel_dtb @0x92000000
[0001.348] I> Bl_dtb @0x85300000
[0001.351] I> gpio framework initialized
[0001.354] I> tegrabl_gpio_driver_register: register 'tegra_gpio_main_driver' driver
[0001.362] I> tegrabl_gpio_driver_register: register 'tegra_gpio_aon_driver' driver
[0001.369] I> tegrabl_tca9539_init: i2c bus: 0, slave addr: 0xee
[0001.378] I> tegrabl_gpio_driver_register: register 'tca9539_gpio_driver' driver
[0001.385] I> tegrabl_tca9539_init: i2c bus: 0, slave addr: 0xe8
[0001.393] I> tegrabl_gpio_driver_register: register 'tca9539_gpio_driver' driver
[0001.401] E> tegrabl_blob_init: BMP partition does not have valid Blob
[0001.407] E> tegrabl_load_bmp_blob: BMP blob initialization failed
[0001.413] W> Loading bmp blob to memory failed
[0001.421] I> Find /i2c@c250000's alias i2c7
[0001.425] I> Reading eeprom i2c=7 address=0x50
[0001.455] I> Device at /i2c@c250000:0x50
[0001.459] I> Reading eeprom i2c=7 address=0x57
[0001.488] I> Device at /i2c@c250000:0x57
[0001.492] I> Find /i2c@c240000's alias i2c1
[0001.496] I> Reading eeprom i2c=1 address=0x51
[0001.502] I> Eeprom read failed 0x1a800027
[0001.506] I> Find /i2c@3160000's alias i2c0
[0001.510] I> Reading eeprom i2c=0 address=0x50
[0001.516] I> Eeprom read failed 0x1a800027
[0001.521] I> Find /i2c@3180000's alias i2c2
[0001.525] I> Reading eeprom i2c=2 address=0x54
[0001.529] I> Enabling gpio chip_id = 2, gpio pin = 9
[0001.560] I> Disabling gpio chip_id = 2, gpio pin = 9
[0001.565] I> Device at /i2c@3180000:0x54
[0001.568] I> create_pm_ids: id: 3310-1000-B00-E, len: 15
[0001.574] I> config: mem-type:00,power-config:00,misc-config:00,modem-config:00,touch-config:00,display-config:00,, le3
[0001.585] I> create_pm_ids: id: 2597-0000-500-C, len: 15
[0001.590] I> config: mem-type:00,power-config:00,misc-config:00,modem-config:00,touch-config:00,display-config:00,, le3
[0001.601] I> create_pm_ids: id: 3326-1000-100-M, len: 15
[0001.606] I> config: mem-type:ff,power-config:ff,misc-config:ff,modem-config:ff,touch-config:ff,display-config:ff,, le3
[0001.617] initializing target
[0001.620] calling apps_init()
[0001.623] starting app android_boot_app
[0001.627] I> Gpio keyboard init success
[0001.630] I> Kernel type = Normal
[0001.634] I> Loading kernel/boot.img ...
[0001.637] W> No valid slot number is found in scratch register
[0001.643] W> Return default slot: _a
[0001.646] I> A/B: bin_type (0) slot 0
[0001.650] I> Select partition: kernel
[0001.653] I> Loading partition kernel at 0xa8000000
[0001.734] W> No valid slot number is found in scratch register
[0001.740] W> Return default slot: _a
[0001.743] I> A/B: bin_type (1) slot 0
[0001.747] I> Select partition: kernel-dtb
[0001.751] I> Loading partition kernel-dtb at 0x92000000
[0001.760] I> Kernel DTB @ 0x92000000
[0001.763] I> Verified boot state = Orange
[0001.767] E> tegrabl_display_clear: display is not initialized
[0001.772] I> Checking boot.img header magic ... [0001.777] I> [OK]
[0001.778] I> Valid boot.img @ 0xa8000000
[0001.782] I> decompressor handler not found
[0001.786] I> Copying kernel image (462634 bytes) from 0xa8000800 to 0x80080000 ... [0001.794] I> Done
[0001.795] I> Move ramdisk (len: 6252235) from 0xa8071800 to 0x98000000
[0001.805] I> Updated bpmp info to DTB
[0001.810] I> Ramdisk: Base: 0x98000000; Size: 0x5f66cb
[0001.815] I> Updated initrd info to DTB
[0001.819] I> disabled_core_mask: 0xffffff0c
[0001.823] I> Kernel type = Normal
[0001.826] I> add_serialno: Serial Num = 0320717049259
[0001.831] W> No valid slot number is found in scratch register
[0001.837] W> Return default slot: _a
[0001.840] I> Linux Cmdline: root=/dev/mmcblk0p1 rw rootwait fbcon=map:0 net.ifnames=0 console=tty0 OS=l4t console=ttyS 
[0001.879] I> Updated bootarg info to DTB
[0001.884] I> eeprom_get_mac_addr: MAC (type: 0): 00:04:4b:8c:45:d3
[0001.890] I> eeprom_get_mac_addr: MAC (type: 1): 00:04:4b:8c:45:d4
[0001.897] I> eeprom_get_mac_addr: MAC (type: 2): 00:04:4b:8c:45:d5
[0001.903] E> "ids" doesn't exist, creating 
[0001.907] E> "connection" doesn't exist, creating 
[0001.911] E> "configs" doesn't exist, creating 
[0001.916] I> create_pm_ids: id: 3310-1000-B00-E, len: 15
[0001.921] I> config: mem-type:00,power-config:00,misc-config:00,modem-config:00,touch-config:00,display-config:00,, le3
[0001.932] I> create_pm_ids: id: 2597-0000-500-C, len: 15
[0001.937] I> config: mem-type:00,power-config:00,misc-config:00,modem-config:00,touch-config:00,display-config:00,, le3
[0001.948] I> create_pm_ids: id: 3326-1000-100-M, len: 15
[0001.953] I> config: mem-type:ff,power-config:ff,misc-config:ff,modem-config:ff,touch-config:ff,display-config:ff,, le3
[0001.964] I> Adding plugin-manager/ids/3310-1000-B00=/i2c@c250000:module@0x50
[0001.971] E> "i2c@c250000" doesn't exist, creating 
[0001.976] E> "module@0x50" doesn't exist, creating 
[0001.980] I> Adding plugin-manager/ids/2597-0000-500=/i2c@c250000:module@0x57
[0001.987] E> "module@0x57" doesn't exist, creating 
[0001.992] I> Adding plugin-manager/ids/3326-1000-100=/i2c@3180000:module@0x54
[0001.999] E> "i2c@3180000" doesn't exist, creating 
[0002.004] E> "module@0x54" doesn't exist, creating 
[0002.011] I> Adding plugin-manager/ids/3310-1000-B00-E
[0002.018] I> Adding plugin-manager/configs/3310-mem-type 00
[0002.023] I> Adding plugin-manager/configs/3310-power-config 00
[0002.029] I> Adding plugin-manager/configs/3310-misc-config 00
[0002.035] I> Adding plugin-manager/configs/3310-modem-config 00
[0002.041] I> Adding plugin-manager/configs/3310-touch-config 00
[0002.046] I> Adding plugin-manager/configs/3310-display-config 00
[0002.052] E> "chip-id" doesn't exist, creating 
[0002.057] I> Adding plugin-manager/chip-id/A02P
[0002.063] I> Updated memory info to DTB
[0002.069] E> "reset" doesn't exist, creating 
[0002.073] E> "pmc-reset-reason" doesn't exist, creating 
[0002.078] E> "pmic-reset-reason" doesn't exist, creating 
[0002.084] I> disabled_core_mask: 0xffffff0c
[0002.094] I> tegrabl_load_kernel_and_dtb: Done

U-Boot 2016.07-g5971907 (Mar 01 2017 - 21:06:45 -0800)

TEGRA186
Model: NVIDIA P2771-0000-500
DRAM:  7.8 GiB
MC:   Tegra SD/MMC: 0, Tegra SD/MMC: 1
*** Warning - bad CRC, using default environment

In:    serial
Out:   serial
Err:   serial
Net:   eth0: ethernet@2490000
Hit any key to stop autoboot:  0 
MMC: no card present
switch to partitions #0, OK
mmc0(part 0) is current device
Scanning mmc 0:1...
starting USB...
No controllers found
USB is stopped. Please issue 'usb start' first.
starting USB...
No controllers found
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
missing environment variable: pxeuuid
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/01-00-04-4b-8c-45-d5
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/00000000
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/0000000
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/000000
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/00000
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/0000
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/000
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/00
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/0
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/default-arm-tegra186
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/default-arm
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/default
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
Config file not found
starting USB...
No controllers found
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
ethernet@2490000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
ERROR: phy_startup() failed: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:894/eqos_start()
ERROR: FAILED: -110
at /dvs/git/dirty/git-master_linux/3rdparty/u-boot/drivers/net/dwc_eth_qos.c:1122/eqos_start()
Tegra186 (P2771-0000-500) #

Flashing it again with JetPack 3.0 and Ethernet cable installed:

[0000.183] I> Welcome to MB2(TBoot-BPMP)(version: 01.00.160913-t186-M-00.00-mobile-f4c42291)
[0000.191] I> Default Heap @ [0xd486400 - 0xd488400]
[0000.196] I> DMA Heap @ [0x84900000 - 0x85300000]
[0000.200] I> bit @ 0xd480000
[0000.203] I> BR-BCT relocated to 0xf7f20000
[0000.207] I> Boot-device: eMMC
[0000.211] I> pmic: reset reason (nverc)        : 0x4
[0000.216] I> Reading GPT from 512 for device 00000003
[0000.222] I> Reading GPT from 8388096 for device 00000003
[0000.229] I> Found 6 partitions in 00000003 device
[0000.233] I> Reading GPT from 512 for device 00010003
[0000.240] I> Found 17 partitions in 00010003 device
[0000.245] W> No valid slot number is found in scratch register
[0000.251] W> Return default slot: _a
[0000.254] I> A/B: bin_type (16) slot 0
[0000.258] I> Select partition: bpmp-fw
[0000.261] I> Loading partition bpmp-fw at 0xf7600000
[0000.266] I> Reading two headers - addr:0xf7600000 blocks:1
[0000.272] I> Addr: 0xf7600000, start-block: 58739717, num_blocks: 1
[0000.287] I> Binary(16) of size 524480 is loaded @ 0xf7600000
[0000.292] W> No valid slot number is found in scratch register
[0000.298] W> Return default slot: _a
[0000.301] I> A/B: bin_type (17) slot 0
[0000.305] I> Select partition: bpmp-fw-dtb
[0000.309] I> Loading partition bpmp-fw-dtb at 0xf77f0000
[0000.314] I> Reading two headers - addr:0xf77f0000 blocks:1
[0000.320] I> Addr: 0xf77f0000, start-block: 58740925, num_blocks: 1
[0000.331] I> Binary(17) of size 326672 is loaded @ 0xf77b0200
[0000.458] I> BPMP-FW load address = 0xf7600000
[0000.463] I> BPMP-FW DTB load address = 0x501b0200
[0000.467] I> Loading SCE-FW ...
[0000.470] W> No valid slot number is found in scratch register
[0000.476] W> Return default slot: _a
[0000.479] I> A/B: bin_type (12) slot 0
[0000.483] I> Select partition: sce-fw
[0000.487] I> Loading partition sce-fw at 0xf7800000
[0000.491] I> Reading two headers - addr:0xf7800000 blocks:1
[0000.497] I> Addr: 0xf7800000, start-block: 58741925, num_blocks: 1
[0000.505] I> Binary(12) of size 65088 is loaded @ 0xf7800000
[0000.511] I> Init SCE
[0000.513] I> Copy BTCM section
[0000.516] W> No valid slot number is found in scratch register
[0000.522] W> Return default slot: _a
[0000.525] I> A/B: bin_type (13) slot 0
[0000.529] I> Select partition: cpu-bootloader
[0000.533] I> Loading partition cpu-bootloader at 0x96000000
[0000.538] I> Reading two headers - addr:0x96000000 blocks:1
[0000.544] I> Addr: 0x96000000, start-block: 58732545, num_blocks: 1
[0000.554] I> Binary(13) of size 195776 is loaded @ 0x96000000
[0000.560] W> No valid slot number is found in scratch register
[0000.565] W> Return default slot: _a
[0000.569] I> A/B: bin_type (20) slot 0
[0000.573] I> Select partition: bootloader-dtb
[0000.577] I> Loading partition bootloader-dtb at 0x85300000
[0000.582] I> Reading two headers - addr:0x85300000 blocks:1
[0000.588] I> Addr: 0x85300000, start-block: 58733057, num_blocks: 1
[0000.599] I> Binary(20) of size 248032 is loaded @ 0x85300000
[0000.604] I> MB2-params @ 0xf7f00000
[0000.608] I> CPUBL-params @ 0xf7f00000
[0000.611] I> CPU-BL loaded at : 0x96000000
[0000.615] I> Loading TOS ...
[0000.618] W> No valid slot number is found in scratch register
[0000.624] W> Return default slot: _a
[0000.627] I> A/B: bin_type (14) slot 0
[0000.631] I> Select partition: secure-os
[0000.635] I> Loading partition secure-os at 0x8490f400
[0000.640] I> Reading two headers - addr:0x8490f400 blocks:1
[0000.645] I> Addr: 0x8490f400, start-block: 58733569, num_blocks: 1
[0000.653] I> Binary(14) of size 54384 is loaded @ 0x8490f400
[0000.659] I> Copying Monitor (length: 0xd270) from 0x8490f600 to 0x40000000
[0000.666] I> Erasing Monitor @ 0x8490f600
[0000.670] I> Unhalting SCE
[0000.674] I> Waypoint2-ACK: 0x5200b8d0
[0000.678] I> MB2(TBoot-BPMP) done

NOTICE:  BL31: v1.2(release):ff7a644
NOTICE:  BL31: Built : 21:06:35, Mar  1 2017
NOTICE:  Trusty image missing.
ERROR:   Error initializing runtime service trusty_fast
[0001.040] I> Welcome to Cboot
[0001.043] I> Cboot Version: 00.00.2014.50-t186-fabbc56c
[0001.048] I> CPU-BL Params @ 0xf7f00000
[0001.051] I>  0) Base:0x00000000 Size:0x00000000
[0001.056] I>  1) Base:0xf7e00000 Size:0x00100000
[0001.060] I>  2) Base:0xf7d00000 Size:0x00100000
[0001.065] I>  3) Base:0xf7c00000 Size:0x00100000
[0001.069] I>  4) Base:0xf7b00000 Size:0x00100000
[0001.073] I>  5) Base:0xf7a00000 Size:0x00100000
[0001.078] I>  6) Base:0xf7600000 Size:0x00200000
[0001.082] I>  7) Base:0xf7000000 Size:0x00400000
[0001.087] I>  8) Base:0xf7900000 Size:0x00100000
[0001.091] I>  9) Base:0xf7800000 Size:0x00100000
[0001.096] I> 10) Base:0xf6800000 Size:0x00800000
[0001.100] I> 11) Base:0x30000000 Size:0x00040000
[0001.104] I> 12) Base:0xf7500000 Size:0x00100000
[0001.109] I> 13) Base:0x30040000 Size:0x00001000
[0001.113] I> 14) Base:0x30048000 Size:0x00001000
[0001.118] I> 15) Base:0x30049000 Size:0x00001000
[0001.122] I> 16) Base:0x3004a000 Size:0x00001000
[0001.127] I> 17) Base:0x3004b000 Size:0x00001000
[0001.131] I> 18) Base:0x3004c000 Size:0x00001000
[0001.135] I> 19) Base:0x3004d000 Size:0x00001000
[0001.140] I> 20) Base:0x3004e000 Size:0x00001000
[0001.144] I> 21) Base:0x3004f000 Size:0x00001000
[0001.149] I> 22) Base:0x00000000 Size:0x00000000
[0001.153] I> 23) Base:0xf7ff0000 Size:0x00010000
[0001.158] I> 24) Base:0x00000000 Size:0x00000000
[0001.162] I> 25) Base:0x00000000 Size:0x00000000
[0001.166] I> 26) Base:0x00000000 Size:0x00000000
[0001.171] I> 27) Base:0x00000000 Size:0x00000000
[0001.175] I> 28) Base:0x84400000 Size:0x00400000
[0001.180] I> 29) Base:0x30000000 Size:0x00010000
[0001.184] I> 30) Base:0xf8000000 Size:0x08000000
[0001.189] I> 31) Base:0x00000000 Size:0x00000000
[0001.193] I> 32) Base:0xf6000000 Size:0x00600000
[0001.197] I> 33) Base:0x80000000 Size:0x76000000
[0001.202] I> 34) Base:0x100000000 Size:0x180000000
[0001.206] I> 35) Base:0x00000000 Size:0x00000000
[0001.211] I> 36) Base:0x00000000 Size:0x00000000
[0001.215] I> 37) Base:0xf7fc0000 Size:0x00020000
[0001.220] I> 38) Base:0x84000000 Size:0x00400000
[0001.224] I> 39) Base:0x96000000 Size:0x02000000
[0001.229] I> 40) Base:0x84800000 Size:0x00b00000
[0001.233] I> 41) Base:0xf7f00000 Size:0x00080000
[0001.237] I> 42) Base:0x00000000 Size:0x00000000
[0001.242] I> 43) Base:0x00000000 Size:0x00000000
[0001.246] platform_init_interrupts-121, 1*
[0001.251] Interrupts Init done
[0001.254] calling constructors
[0001.257] initializing heap
[0001.260] initializing threads
[0001.263] initializing timers
[0001.266] creating bootstrap completion thread
[0001.270] top of bootstrap2()
[0001.273] CPU: ARM Cortex A57
[0001.277] CPU: MIDR: 0x411FD073, MPIDR: 0x80000100
[0001.282] initializing platform
[0001.285] I> Boot-device: eMMC
[0001.288] I> odm data is 1090000
[0001.292] I> Reading GPT from 512 for device 00000003
[0001.297] I> Reading GPT from 8388096 for device 00000003
[0001.304] I> Found 6 partitions in 00000003 device
[0001.308] I> Reading GPT from 512 for device 00010003
[0001.314] I> Found 17 partitions in 00010003 device
[0001.319] W> No valid slot number is found in scratch register
[0001.325] W> Return default slot: _a
[0001.328] I> A/B: bin_type (1) slot 0
[0001.331] I> Select partition: kernel-dtb
[0001.335] I> Loading partition kernel-dtb at 0x92000000
[0001.344] I> Kernel_dtb @0x92000000
[0001.347] I> Bl_dtb @0x85300000
[0001.350] I> gpio framework initialized
[0001.354] I> tegrabl_gpio_driver_register: register 'tegra_gpio_main_driver' driver
[0001.361] I> tegrabl_gpio_driver_register: register 'tegra_gpio_aon_driver' driver
[0001.369] I> tegrabl_tca9539_init: i2c bus: 0, slave addr: 0xee
[0001.377] I> tegrabl_gpio_driver_register: register 'tca9539_gpio_driver' driver
[0001.385] I> tegrabl_tca9539_init: i2c bus: 0, slave addr: 0xe8
[0001.393] I> tegrabl_gpio_driver_register: register 'tca9539_gpio_driver' driver
[0001.401] E> tegrabl_blob_init: BMP partition does not have valid Blob
[0001.407] E> tegrabl_load_bmp_blob: BMP blob initialization failed
[0001.413] W> Loading bmp blob to memory failed
[0001.421] I> Find /i2c@c250000's alias i2c7
[0001.425] I> Reading eeprom i2c=7 address=0x50
[0019.382] I> Welcome to MB1 recovery(prd-version : 10.02.161215-t186-M-00.00-f24525c4)
[0019.390] I> rst_source : 0x0
[0019.393] I> rst_level : 0x0
[0019.396] I> Boot-device: eMMC
[0019.419] I> sdmmc ddr50 mode
[0019.423] I> Entering into 3p server..
[0019.426] I> Transport interface is USB
[0019.832] I> transport_usbf_priv_open USB configuration success
[0025.536] I> Populate eeprom info for module cvm
[0141.987] I> bit @ 0xd480000
[0141.990] I> Downloading bct_bootrom at 0x000000004004e800
[0141.996] I> downloaded image bct_bootrom successfully
[0142.003] I> Downloading bct_mb1 at 0x0000000040041000
[0142.013] I> MB1-BCT relocated to 0xd48bc00 from 0x40041000
[0142.019] I> Supported mb1-bct versions 9-12
[0142.023] I> Version of mb1 bct binary 12
[0142.027] W> MB1 BCT does not have controller prod config data
[0142.032] I> Bootrom patch version : 31 (correctly patched)
[0142.038] I> ATE fuse revision : 0x30880
[0142.042] I> chip revision : A02P
[0142.045] I> disabled_core_mask: 0xffffff0c
[0142.049] I> Enabled Cores: 0xf3
[0142.052] I> TPC disable fuse status: 0
[0142.056] I> Booting Parker Sku
[0142.059] I> Ram repair fuse : 0x0
[0142.062] I> allocated(CO:30) base:0xf8000000 size:0x8000000 align: 0x8000000
[0142.069] I> allocated(CO:23) base:0xf7ff0000 size:0x10000 align: 0x10000
[0142.076] I> allocated(CO:31) base:0x0 size:0x0 align: 0x0
[0142.081] I> allocated(CO:1) base:0xf7e00000 size:0x100000 align: 0x100000
[0142.088] I> allocated(CO:2) base:0xf7d00000 size:0x100000 align: 0x100000
[0142.095] I> allocated(CO:3) base:0xf7c00000 size:0x100000 align: 0x100000
[0142.102] I> allocated(CO:4) base:0xf7b00000 size:0x100000 align: 0x100000
[0142.108] I> allocated(CO:5) base:0xf7a00000 size:0x100000 align: 0x100000
[0142.115] I> allocated(CO:8) base:0xf7900000 size:0x100000 align: 0x100000
[0142.122] I> allocated(CO:27) base:0x0 size:0x0 align: 0x0
[0142.127] I> allocated(CO:6) base:0xf7600000 size:0x200000 align: 0x200000
[0142.134] I> allocated(CO:7) base:0xf7000000 size:0x400000 align: 0x400000
[0142.141] I> allocated(CO:9) base:0xf7800000 size:0x100000 align: 0x100000
[0142.148] I> allocated(CO:10) base:0xf6800000 size:0x800000 align: 0x800000
[0142.155] I> allocated(CO:11) base:0x30000000 size:0x40000 align: 0x0
[0142.161] I> allocated(CO:12) base:0xf7500000 size:0x100000 align: 0x100000
[0142.168] I> allocated(CO:13) base:0x30040000 size:0x1000 align: 0x0
[0142.174] I> allocated(CO:14) base:0x30048000 size:0x1000 align: 0x0
[0142.180] I> allocated(CO:15) base:0x30049000 size:0x1000 align: 0x0
[0142.187] I> allocated(CO:16) base:0x3004a000 size:0x1000 align: 0x0
[0142.193] I> allocated(CO:17) base:0x3004b000 size:0x1000 align: 0x0
[0142.199] I> allocated(CO:19) base:0x3004d000 size:0x1000 align: 0x0
[0142.205] I> allocated(CO:18) base:0x3004c000 size:0x1000 align: 0x0
[0142.212] I> allocated(CO:20) base:0x3004e000 size:0x1000 align: 0x0
[0142.218] I> allocated(CO:21) base:0x3004f000 size:0x1000 align: 0x0
[0142.224] I> allocated(CO:22) base:0x0 size:0x0 align: 0x0
[0142.229] I> allocated(CO:32) base:0xf6000000 size:0x600000 align: 0x400000
[0142.236] I> allocated(CO:24) base:0x0 size:0x0 align: 0x0
[0142.242] I> allocated(CO:25) base:0x0 size:0x0 align: 0x0
[0142.247] I> allocated(CO:26) base:0x0 size:0x0 align: 0x0
[0142.252] I> allocated(CO:39) base:0x96000000 size:0x2000000 align: 0x2000000
[0142.259] I> allocated(CO:38) base:0x84000000 size:0x400000 align: 0x400000
[0142.266] I> allocated(CO:37) base:0xf7fc0000 size:0x20000 align: 0x20000
[0142.273] I> allocated(CO:40) base:0x84800000 size:0xb00000 align: 0x800000
[0142.280] I> allocated(CO:41) base:0xf7f00000 size:0x80000 align: 0x80000
[0142.287] I> allocated(CO:28) base:0x84400000 size:0x400000 align: 0x400000
[0142.294] I> Boot-device: eMMC
[0142.297] I> sdmmc bdev is already initialized
[0142.302] W> MB1 PMIC CFG is version 1.2
[0142.305] W> Rail ID 7 is not found on MB1 BCT
[0142.310] W> MB1 PMIC CFG is version 1.2
[0142.316] W> MB1 PMIC CFG is version 1.2
[0142.323] W> MB1 PMIC CFG is version 1.2
[0142.327] I> sdram slot : 1
[0142.330] I> Initializing SDRAM
[0142.336] I> mss encrypt status check successful
[0142.341] I> downloaded image bct_mb1 successfully
[0143.236] I> Downloading blob at 0x0000000085300000
[0143.620] I> downloaded image blob successfully
[0144.344] I> exiting nv3p server
[0144.347] I> disabled_core_mask: 0xffffff0c
[0144.351] I> Enabled Cores: 0xf3
[0144.354] I> TPC disable fuse status: 0
[0144.358] I> Booting Parker Sku
[0144.361] I> Setup temp. GSC#29 (base:0x30000000, size:0x00010000)
[0144.367] I> Loading preboot
[0144.372] I> Binary(1) of size 59024 is loaded @ 0x40000000
[0144.377] I> Restrict GSC#29 access to DPMU only
[0144.382] I> Updated LSR_DVCOMP_PARAMS: 0xc0760ec5c
[0144.386] I> Updated LSR_DVCOMP_PARAMS: 0xc07a0f45c
[0144.391] I> WP0 triggered
[0144.394] I> Waypoint-0 ACK received :)
[0144.397] I> WP0.5 triggered
[0144.401] I> Initialized SCRs
[0144.404] W> MB1 PMIC CFG is version 1.2
[0144.411] W> MB1 PMIC CFG is version 1.2
[0144.462] I> Waypoint-0.5 ACK received :)
[0144.466] I> Setup temp. GSC#28 (base:0x84400000, size:0x00400000)
[0144.472] I> Loading MTS-DMCE
[0144.486] I> Binary(2) of size 266624 is loaded @ 0x84400000
[0144.491] I> disabled_core_mask: 0xffffff0c
[0144.495] I> Loading MTS-PROPER
[0144.498] I> Binary(3) of size 1809872 is loaded @ 0x0
[0144.503] I> Restrict GSC#28 access to DPMU only
[0144.508] I> disabled_core_mask: 0xffffff0c
[0144.512] I> WP1 triggered
[0144.515] I> Loading MB2
[0144.518] I> Binary(8) of size 59696 is loaded @ 0x84000000
[0144.523] W> MB1 PMIC CFG is version 1.2
[0144.528] I> Configure DMCE carveout GSC#13
[0144.532] I> CPU reset vector: 0x96000000
[0144.536] I> MB2-params @ 0xf7f00000
[0144.540] I> Waypoint-1 ACK received :)
[0144.544] I> Configure SC7 carveout GSC#23
[0144.548] I> MB1 recovery done

[0144.554] I> Welcome to MB2(TBoot-BPMP) Recovery(version: 01.00.160913-t186-M-00.00-mobile-597f2c10)
[0144.563] I> Default Heap @ [0xd486400 - 0xd488400]
[0144.568] I> DMA Heap @ [0x84900000 - 0x85300000]
[0144.572] I> bit @ 0xd480000
[0144.575] I> BR-BCT relocated to 0xf7f20000
[0144.579] I> Boot-device: eMMC
[0144.583] I> pmic: reset reason (nverc)        : 0x80
[0144.588] I> Reading GPT from 512 for device 00000003
[0144.594] I> Reading GPT from 8388096 for device 00000003
[0144.601] I> Found 6 partitions in 00000003 device
[0144.605] I> Reading GPT from 512 for device 00010003
[0144.612] I> Found 17 partitions in 00010003 device
[0144.620] I> Binary(16) of size 524480 is loaded @ 0xf7600000
[0144.627] I> Binary(17) of size 326672 is loaded @ 0xf77b03e0
[0144.753] I> BPMP-FW load address = 0xf7600000
[0144.758] I> BPMP-FW DTB load address = 0x501b03e0
[0144.762] I> Copy BTCM section
[0144.766] I> Binary(13) of size 143872 is loaded @ 0x96000000
[0144.772] I> MB2-params @ 0xf7f00000
[0144.775] I> CPUBL-params @ 0xf7f00000
[0144.779] I> CPU-BL loaded at : 0x96000000
[0144.783] I> Loading TOS ...
[0144.786] I> Binary(14) of size 54384 is loaded @ 0x8490f400
[0144.792] I> Copying Monitor (length: 0xd270) from 0x8490f600 to 0x40000000
[0144.799] I> Erasing Monitor @ 0x8490f600
[0144.803] I> Unhalting SCE
[0144.807] I> Waypoint2-ACK: 0x5200b694
[0144.811] I> MB2(TBoot-BPMP) Recovery done

NOTICE:  BL31: v1.2(release):ff7a644
NOTICE:  BL31: Built : 21:06:35, Mar  1 2017
NOTICE:  Trusty image missing.
ERROR:   Error initializing runtime service trusty_fast
[0145.173] I> Welcome to TBoot-CPU Recovery(version: 01.00.160913-t186-M-00.00-mobile-e9641362)
[0145.182] I> gpio framework initialized
[0145.185] I> tegrabl_gpio_driver_register: register 'tegra_gpio_main_driver' driver
[0145.193] I> tegrabl_gpio_driver_register: register 'tegra_gpio_aon_driver' driver
[0145.200] I> tegrabl_tca9539_init: i2c bus: 0, slave addr: 0xee
[0145.209] I> tegrabl_gpio_driver_register: register 'tca9539_gpio_driver' driver
[0145.216] I> tegrabl_tca9539_init: i2c bus: 0, slave addr: 0xe8
[0145.224] I> tegrabl_gpio_driver_register: register 'tca9539_gpio_driver' driver
[0145.231] I> CPU: ARM Cortex A57
[0145.234] I> CPU: MIDR: 0x411fd073, MPIDR: 0x80000100
[0145.239] I> L2 ECC enabled : yes
[0145.242] I> CPU-BL Params @ 0xf7f00000
[0145.246] I>  0) Base:0x00000000 Size:0x00000000
[0145.251] I>  1) Base:0xf7e00000 Size:0x00100000
[0145.255] I>  2) Base:0xf7d00000 Size:0x00100000
[0145.259] I>  3) Base:0xf7c00000 Size:0x00100000
[0145.264] I>  4) Base:0xf7b00000 Size:0x00100000
[0145.268] I>  5) Base:0xf7a00000 Size:0x00100000
[0145.273] I>  6) Base:0xf7600000 Size:0x00200000
[0145.277] I>  7) Base:0xf7000000 Size:0x00400000
[0145.282] I>  8) Base:0xf7900000 Size:0x00100000
[0145.286] I>  9) Base:0xf7800000 Size:0x00100000
[0145.290] I> 10) Base:0xf6800000 Size:0x00800000
[0145.295] I> 11) Base:0x30000000 Size:0x00040000
[0145.299] I> 12) Base:0xf7500000 Size:0x00100000
[0145.304] I> 13) Base:0x30040000 Size:0x00001000
[0145.308] I> 14) Base:0x30048000 Size:0x00001000
[0145.313] I> 15) Base:0x30049000 Size:0x00001000
[0145.317] I> 16) Base:0x3004a000 Size:0x00001000
[0145.321] I> 17) Base:0x3004b000 Size:0x00001000
[0145.326] I> 18) Base:0x3004c000 Size:0x00001000
[0145.330] I> 19) Base:0x3004d000 Size:0x00001000
[0145.335] I> 20) Base:0x3004e000 Size:0x00001000
[0145.339] I> 21) Base:0x3004f000 Size:0x00001000
[0145.344] I> 22) Base:0x00000000 Size:0x00000000
[0145.348] I> 23) Base:0xf7ff0000 Size:0x00010000
[0145.353] I> 24) Base:0x00000000 Size:0x00000000
[0145.357] I> 25) Base:0x00000000 Size:0x00000000
[0145.361] I> 26) Base:0x00000000 Size:0x00000000
[0145.366] I> 27) Base:0x00000000 Size:0x00000000
[0145.370] I> 28) Base:0x84400000 Size:0x00400000
[0145.375] I> 29) Base:0x30000000 Size:0x00010000
[0145.379] I> 30) Base:0xf8000000 Size:0x08000000
[0145.384] I> 31) Base:0x00000000 Size:0x00000000
[0145.388] I> 32) Base:0xf6000000 Size:0x00600000
[0145.392] I> 33) Base:0x80000000 Size:0x76000000
[0145.397] I> 34) Base:0x100000000 Size:0x180000000
[0145.401] I> 35) Base:0x00000000 Size:0x00000000
[0145.406] I> 36) Base:0x00000000 Size:0x00000000
[0145.410] I> 37) Base:0xf7fc0000 Size:0x00020000
[0145.415] I> 38) Base:0x84000000 Size:0x00400000
[0145.419] I> 39) Base:0x96000000 Size:0x02000000
[0145.424] I> 40) Base:0x84800000 Size:0x00b00000
[0145.428] I> 41) Base:0xf7f00000 Size:0x00080000
[0145.432] I> 42) Base:0x00000000 Size:0x00000000
[0145.437] I> 43) Base:0x00000000 Size:0x00000000
[0145.441] I> Boot-device: eMMC
[0145.466] I> sdmmc ddr50 mode
[0145.469] I> sdmmc bdev is already initialized
[0145.474] I> Reading GPT from 512 for device 00000003
[0145.479] I> Reading GPT from 8388096 for device 00000003
[0145.486] I> Found 6 partitions in 00000003 device
[0145.490] I> Reading GPT from 512 for device 00010003
[0145.496] I> Found 17 partitions in 00010003 device
[0145.501] I> Recovery boot_type: 0
[0145.504] I> Entering 3p server
[0145.507] I> Entering into 3p server..
[0145.511] I> Transport interface is USB
[0145.917] I> transport_usbf_priv_open USB configuration success
[0149.890] I> Populate storage info
[0150.094] I> Erasing device 0: 3
[0150.098] I> Erasing device 16384 blocks from block 0
[0150.119] I> Erase successful.
[0150.123] I> Writing device 0: 3
[0150.126] I> Total write size is 16896 bytes
[0150.170] I> Reading GPT from 512 for device 00000003
[0150.176] I> Reading GPT from 8388096 for device 00000003
[0150.182] I> Found 6 partitions in 00000003 device
[0150.187] I> Write successful.
[0150.191] I> Erasing device 1: 3
[0150.194] I> Erasing device 61071360 blocks from block 0
[0151.332] I> Erase successful.
[0151.337] I> Writing device 1: 3
[0151.340] I> Total write size is 512 bytes
[0151.345] I> Write successful.
[0151.349] I> Writing device 1: 3
[0151.352] I> Total write size is 2688 bytes
[0151.359] I> Reading GPT from 512 for device 00010003
[0151.364] I> Found 17 partitions in 00010003 device
[0151.369] I> Write successful.
[0151.373] I> Writing device 1: 3
[0151.376] I> Total write size is 16896 bytes
[0151.383] I> Reading GPT from 512 for device 00010003
[0151.389] I> Found 17 partitions in 00010003 device
[0151.393] I> Write successful.
[0151.397] I> Writing mb1 partition
[0151.401] I> Total write size is 88368 bytes
[0151.428] I> Write successful.
[0151.432] I> Writing spe-fw partition
[0151.436] I> Total write size is 57184 bytes
[0151.465] I> Write successful.
[0151.469] I> Writing mb2 partition
[0151.473] I> Total write size is 60720 bytes
[0151.507] I> Write successful.
[0151.511] I> Writing mts-preboot partition
[0151.515] I> Total write size is 59824 bytes
[0151.555] I> Write successful.
[0151.559] I> Writing device 1: 3
[0151.562] I> Total write size is 512 bytes
[0151.568] I> Write successful.
[0151.572] I> Writing APP partition
[0151.575] I> Total write size is 3359363332 bytes
[0304.258] I> Write successful.
[0304.261] I> Writing mts-bootpack partition
[0304.265] I> Total write size is 2077344 bytes
[0304.359] I> Write successful.
[0304.363] I> Writing cpu-bootloader partition
[0304.367] I> Total write size is 196176 bytes
[0304.382] I> Write successful.
[0304.386] I> Writing bootloader-dtb partition
[0304.390] I> Total write size is 248432 bytes
[0304.411] I> Write successful.
[0304.415] I> Writing secure-os partition
[0304.419] I> Total write size is 54784 bytes
[0304.427] I> Write successful.
[0304.430] I> Writing eks partition
[0304.434] I> Total write size is 1488 bytes
[0304.440] I> Write successful.
[0304.444] I> Writing bpmp-fw partition
[0304.447] I> Total write size is 524880 bytes
[0304.476] I> Write successful.
[0304.480] I> Writing bpmp-fw-dtb partition
[0304.484] I> Total write size is 327072 bytes
[0304.505] I> Write successful.
[0304.509] I> Writing sce-fw partition
[0304.513] I> Total write size is 65488 bytes
[0304.522] I> Write successful.
[0304.526] I> Writing sc7 partition
[0304.529] I> Total write size is 20848 bytes
[0304.536] I> Write successful.
[0304.540] I> Writing kernel partition
[0304.543] I> Total write size is 6717440 bytes
[0304.843] I> Write successful.
[0304.847] I> Writing kernel-dtb partition
[0304.851] I> Total write size is 248032 bytes
[0304.869] I> Write successful.
[0305.235] I> Writing BCT partition
[0305.239] I> Total write size is 3584 bytes
[0305.280] I> Write successful.
[0305.644] I> Writing MB1_BCT partition
[0305.647] I> Total write size is 49968 bytes
[0305.688] I> Write successful.
[0305.999] I> Rebooting : reset-coldboot

[0000.213] I> Welcome to MB2(TBoot-BPMP)(version: 01.00.160913-t186-M-00.00-mobile-f4c42291)
[0000.221] I> Default Heap @ [0xd486400 - 0xd488400]
[0000.226] I> DMA Heap @ [0x84900000 - 0x85300000]
[0000.230] I> bit @ 0xd480000
[0000.233] I> BR-BCT relocated to 0xf7f20000
[0000.237] I> Boot-device: eMMC
[0000.242] I> pmic: reset reason (nverc)        : 0x0
[0000.246] I> Reading GPT from 512 for device 00000003
[0000.252] I> Reading GPT from 8388096 for device 00000003
[0000.259] I> Found 6 partitions in 00000003 device
[0000.263] I> Reading GPT from 512 for device 00010003
[0000.270] I> Found 17 partitions in 00010003 device
[0000.275] W> No valid slot number is found in scratch register
[0000.281] W> Return default slot: _a
[0000.284] I> A/B: bin_type (16) slot 0
[0000.288] I> Select partition: bpmp-fw
[0000.291] I> Loading partition bpmp-fw at 0xf7600000
[0000.296] I> Reading two headers - addr:0xf7600000 blocks:1
[0000.302] I> Addr: 0xf7600000, start-block: 58739717, num_blocks: 1
[0000.317] I> Binary(16) of size 524480 is loaded @ 0xf7600000
[0000.322] W> No valid slot number is found in scratch register
[0000.328] W> Return default slot: _a
[0000.331] I> A/B: bin_type (17) slot 0
[0000.335] I> Select partition: bpmp-fw-dtb
[0000.339] I> Loading partition bpmp-fw-dtb at 0xf77f0000
[0000.344] I> Reading two headers - addr:0xf77f0000 blocks:1
[0000.350] I> Addr: 0xf77f0000, start-block: 58740925, num_blocks: 1
[0000.361] I> Binary(17) of size 326672 is loaded @ 0xf77b0200
[0000.489] I> BPMP-FW load address = 0xf7600000
[0000.493] I> BPMP-FW DTB load address = 0x501b0200
[0000.498] I> Loading SCE-FW ...
[0000.501] W> No valid slot number is found in scratch register
[0000.507] W> Return default slot: _a
[0000.510] I> A/B: bin_type (12) slot 0
[0000.514] I> Select partition: sce-fw
[0000.517] I> Loading partition sce-fw at 0xf7800000
[0000.522] I> Reading two headers - addr:0xf7800000 blocks:1
[0000.528] I> Addr: 0xf7800000, start-block: 58741925, num_blocks: 1
[0000.536] I> Binary(12) of size 65088 is loaded @ 0xf7800000
[0000.542] I> Init SCE
[0000.544] I> Copy BTCM section
[0000.547] W> No valid slot number is found in scratch register
[0000.553] W> Return default slot: _a
[0000.556] I> A/B: bin_type (13) slot 0
[0000.560] I> Select partition: cpu-bootloader
[0000.564] I> Loading partition cpu-bootloader at 0x96000000
[0000.569] I> Reading two headers - addr:0x96000000 blocks:1
[0000.575] I> Addr: 0x96000000, start-block: 58732545, num_blocks: 1
[0000.585] I> Binary(13) of size 195776 is loaded @ 0x96000000
[0000.591] W> No valid slot number is found in scratch register
[0000.596] W> Return default slot: _a
[0000.600] I> A/B: bin_type (20) slot 0
[0000.603] I> Select partition: bootloader-dtb
[0000.607] I> Loading partition bootloader-dtb at 0x85300000
[0000.613] I> Reading two headers - addr:0x85300000 blocks:1
[0000.618] I> Addr: 0x85300000, start-block: 58733057, num_blocks: 1
[0000.629] I> Binary(20) of size 248032 is loaded @ 0x85300000
[0000.635] I> MB2-params @ 0xf7f00000
[0000.638] I> CPUBL-params @ 0xf7f00000
[0000.642] I> CPU-BL loaded at : 0x96000000
[0000.646] I> Loading TOS ...
[0000.649] W> No valid slot number is found in scratch register
[0000.654] W> Return default slot: _a
[0000.658] I> A/B: bin_type (14) slot 0
[0000.662] I> Select partition: secure-os
[0000.665] I> Loading partition secure-os at 0x8490f400
[0000.670] I> Reading two headers - addr:0x8490f400 blocks:1
[0000.676] I> Addr: 0x8490f400, start-block: 58733569, num_blocks: 1
[0000.684] I> Binary(14) of size 54384 is loaded @ 0x8490f400
[0000.690] I> Copying Monitor (length: 0xd270) from 0x8490f600 to 0x40000000
[0000.697] I> Erasing Monitor @ 0x8490f600
[0000.701] I> Unhalting SCE
[0000.705] I> Waypoint2-ACK: 0x5200b8d0
[0000.709] I> MB2(TBoot-BPMP) done

NOTICE:  BL31: v1.2(release):ff7a644
NOTICE:  BL31: Built : 21:06:35, Mar  1 2017
NOTICE:  Trusty image missing.
ERROR:   Error initializing runtime service trusty_fast
[0001.071] I> Welcome to Cboot
[0001.074] I> Cboot Version: 00.00.2014.50-t186-fabbc56c
[0001.079] I> CPU-BL Params @ 0xf7f00000
[0001.082] I>  0) Base:0x00000000 Size:0x00000000
[0001.087] I>  1) Base:0xf7e00000 Size:0x00100000
[0001.091] I>  2) Base:0xf7d00000 Size:0x00100000
[0001.096] I>  3) Base:0xf7c00000 Size:0x00100000
[0001.100] I>  4) Base:0xf7b00000 Size:0x00100000
[0001.104] I>  5) Base:0xf7a00000 Size:0x00100000
[0001.109] I>  6) Base:0xf7600000 Size:0x00200000
[0001.113] I>  7) Base:0xf7000000 Size:0x00400000
[0001.118] I>  8) Base:0xf7900000 Size:0x00100000
[0001.122] I>  9) Base:0xf7800000 Size:0x00100000
[0001.127] I> 10) Base:0xf6800000 Size:0x00800000
[0001.131] I> 11) Base:0x30000000 Size:0x00040000
[0001.135] I> 12) Base:0xf7500000 Size:0x00100000
[0001.140] I> 13) Base:0x30040000 Size:0x00001000
[0001.144] I> 14) Base:0x30048000 Size:0x00001000
[0001.149] I> 15) Base:0x30049000 Size:0x00001000
[0001.153] I> 16) Base:0x3004a000 Size:0x00001000
[0001.158] I> 17) Base:0x3004b000 Size:0x00001000
[0001.162] I> 18) Base:0x3004c000 Size:0x00001000
[0001.166] I> 19) Base:0x3004d000 Size:0x00001000
[0001.171] I> 20) Base:0x3004e000 Size:0x00001000
[0001.175] I> 21) Base:0x3004f000 Size:0x00001000
[0001.180] I> 22) Base:0x00000000 Size:0x00000000
[0001.184] I> 23) Base:0xf7ff0000 Size:0x00010000
[0001.189] I> 24) Base:0x00000000 Size:0x00000000
[0001.193] I> 25) Base:0x00000000 Size:0x00000000
[0001.197] I> 26) Base:0x00000000 Size:0x00000000
[0001.202] I> 27) Base:0x00000000 Size:0x00000000
[0001.206] I> 28) Base:0x84400000 Size:0x00400000
[0001.211] I> 29) Base:0x30000000 Size:0x00010000
[0001.215] I> 30) Base:0xf8000000 Size:0x08000000
[0001.220] I> 31) Base:0x00000000 Size:0x00000000
[0001.224] I> 32) Base:0xf6000000 Size:0x00600000
[0001.228] I> 33) Base:0x80000000 Size:0x76000000
[0001.233] I> 34) Base:0x100000000 Size:0x180000000
[0001.237] I> 35) Base:0x00000000 Size:0x00000000
[0001.242] I> 36) Base:0x00000000 Size:0x00000000
[0001.246] I> 37) Base:0xf7fc0000 Size:0x00020000
[0001.251] I> 38) Base:0x84000000 Size:0x00400000
[0001.255] I> 39) Base:0x96000000 Size:0x02000000
[0001.260] I> 40) Base:0x84800000 Size:0x00b00000
[0001.264] I> 41) Base:0xf7f00000 Size:0x00080000
[0001.268] I> 42) Base:0x00000000 Size:0x00000000
[0001.273] I> 43) Base:0x00000000 Size:0x00000000
[0001.277] platform_init_interrupts-121, 1*
[0001.282] Interrupts Init done
[0001.285] calling constructors
[0001.288] initializing heap
[0001.290] initializing threads
[0001.294] initializing timers
[0001.297] creating bootstrap completion thread
[0001.301] top of bootstrap2()
[0001.304] CPU: ARM Cortex A57
[0001.307] CPU: MIDR: 0x411FD073, MPIDR: 0x80000100
[0001.312] initializing platform
[0001.316] I> Boot-device: eMMC
[0001.319] I> odm data is 1090000
[0001.322] I> Reading GPT from 512 for device 00000003
[0001.328] I> Reading GPT from 8388096 for device 00000003
[0001.335] I> Found 6 partitions in 00000003 device
[0001.339] I> Reading GPT from 512 for device 00010003
[0001.345] I> Found 17 partitions in 00010003 device
[0001.350] W> No valid slot number is found in scratch register
[0001.355] W> Return default slot: _a
[0001.359] I> A/B: bin_type (1) slot 0
[0001.362] I> Select partition: kernel-dtb
[0001.366] I> Loading partition kernel-dtb at 0x92000000
[0001.375] I> Kernel_dtb @0x92000000
[0001.378] I> Bl_dtb @0x85300000
[0001.381] I> gpio framework initialized
[0001.385] I> tegrabl_gpio_driver_register: register 'tegra_gpio_main_driver' driver
[0001.392] I> tegrabl_gpio_driver_register: register 'tegra_gpio_aon_driver' driver
[0001.400] I> tegrabl_tca9539_init: i2c bus: 0, slave addr: 0xee
[0001.408] I> tegrabl_gpio_driver_register: register 'tca9539_gpio_driver' driver
[0001.416] I> tegrabl_tca9539_init: i2c bus: 0, slave addr: 0xe8
[0001.424] I> tegrabl_gpio_driver_register: register 'tca9539_gpio_driver' driver
[0001.432] E> tegrabl_blob_init: BMP partition does not have valid Blob
[0001.438] E> tegrabl_load_bmp_blob: BMP blob initialization failed
[0001.444] W> Loading bmp blob to memory failed
[0001.452] I> Find /i2c@c250000's alias i2c7
[0001.456] I> Reading eeprom i2c=7 address=0x50
[0001.486] I> Device at /i2c@c250000:0x50
[0001.489] I> Reading eeprom i2c=7 address=0x57
[0001.518] I> Device at /i2c@c250000:0x57
[0001.523] I> Find /i2c@c240000's alias i2c1
[0001.527] I> Reading eeprom i2c=1 address=0x51
[0001.533] I> Eeprom read failed 0x1a800027
[0001.537] I> Find /i2c@3160000's alias i2c0
[0001.541] I> Reading eeprom i2c=0 address=0x50
[0001.547] I> Eeprom read failed 0x1a800027
[0001.551] I> Find /i2c@3180000's alias i2c2
[0001.555] I> Reading eeprom i2c=2 address=0x54
[0001.560] I> Enabling gpio chip_id = 2, gpio pin = 9
[0001.590] I> Disabling gpio chip_id = 2, gpio pin = 9
[0001.595] I> Device at /i2c@3180000:0x54
[0001.599] I> create_pm_ids: id: 3310-1000-B00-E, len: 15
[0001.604] I> config: mem-type:00,power-config:00,misc-config:00,modem-config:00,touch-config:00,display-config:00,, le3
[0001.615] I> create_pm_ids: id: 2597-0000-500-C, len: 15
[0001.620] I> config: mem-type:00,power-config:00,misc-config:00,modem-config:00,touch-config:00,display-config:00,, le3
[0001.631] I> create_pm_ids: id: 3326-1000-100-M, len: 15
[0001.636] I> config: mem-type:ff,power-config:ff,misc-config:ff,modem-config:ff,touch-config:ff,display-config:ff,, le3
[0001.647] initializing target
[0001.650] calling apps_init()
[0001.653] starting app android_boot_app
[0001.657] I> Gpio keyboard init success
[0001.661] I> Kernel type = Normal
[0001.664] I> Loading kernel/boot.img ...
[0001.668] W> No valid slot number is found in scratch register
[0001.674] W> Return default slot: _a
[0001.677] I> A/B: bin_type (0) slot 0
[0001.681] I> Select partition: kernel
[0001.684] I> Loading partition kernel at 0xa8000000
[0001.765] W> No valid slot number is found in scratch register
[0001.771] W> Return default slot: _a
[0001.774] I> A/B: bin_type (1) slot 0
[0001.778] I> Select partition: kernel-dtb
[0001.781] I> Loading partition kernel-dtb at 0x92000000
[0001.790] I> Kernel DTB @ 0x92000000
[0001.794] I> Verified boot state = Orange
[0001.798] E> tegrabl_display_clear: display is not initialized
[0001.803] I> Checking boot.img header magic ... [0001.807] I> [OK]
[0001.809] I> Valid boot.img @ 0xa8000000
[0001.813] I> decompressor handler not found
[0001.817] I> Copying kernel image (462634 bytes) from 0xa8000800 to 0x80080000 ... [0001.824] I> Done
[0001.826] I> Move ramdisk (len: 6252235) from 0xa8071800 to 0x98000000
[0001.835] I> Updated bpmp info to DTB
[0001.841] I> Ramdisk: Base: 0x98000000; Size: 0x5f66cb
[0001.846] I> Updated initrd info to DTB
[0001.850] I> disabled_core_mask: 0xffffff0c
[0001.854] I> Kernel type = Normal
[0001.857] I> add_serialno: Serial Num = 0320717049259
[0001.862] W> No valid slot number is found in scratch register
[0001.867] W> Return default slot: _a
[0001.871] I> Linux Cmdline: root=/dev/mmcblk0p1 rw rootwait fbcon=map:0 net.ifnames=0 console=tty0 OS=l4t console=ttyS 
[0001.910] I> Updated bootarg info to DTB
[0001.915] I> eeprom_get_mac_addr: MAC (type: 0): 00:04:4b:8c:45:d3
[0001.921] I> eeprom_get_mac_addr: MAC (type: 1): 00:04:4b:8c:45:d4
[0001.927] I> eeprom_get_mac_addr: MAC (type: 2): 00:04:4b:8c:45:d5
[0001.933] E> "ids" doesn't exist, creating 
[0001.937] E> "connection" doesn't exist, creating 
[0001.942] E> "configs" doesn't exist, creating 
[0001.946] I> create_pm_ids: id: 3310-1000-B00-E, len: 15
[0001.951] I> config: mem-type:00,power-config:00,misc-config:00,modem-config:00,touch-config:00,display-config:00,, le3
[0001.962] I> create_pm_ids: id: 2597-0000-500-C, len: 15
[0001.968] I> config: mem-type:00,power-config:00,misc-config:00,modem-config:00,touch-config:00,display-config:00,, le3
[0001.978] I> create_pm_ids: id: 3326-1000-100-M, len: 15
[0001.984] I> config: mem-type:ff,power-config:ff,misc-config:ff,modem-config:ff,touch-config:ff,display-config:ff,, le3
[0001.995] I> Adding plugin-manager/ids/3310-1000-B00=/i2c@c250000:module@0x50
[0002.002] E> "i2c@c250000" doesn't exist, creating 
[0002.006] E> "module@0x50" doesn't exist, creating 
[0002.011] I> Adding plugin-manager/ids/2597-0000-500=/i2c@c250000:module@0x57
[0002.018] E> "module@0x57" doesn't exist, creating 
[0002.023] I> Adding plugin-manager/ids/3326-1000-100=/i2c@3180000:module@0x54
[0002.030] E> "i2c@3180000" doesn't exist, creating 
[0002.035] E> "module@0x54" doesn't exist, creating 
[0002.041] I> Adding plugin-manager/ids/3310-1000-B00-E
[0002.048] I> Adding plugin-manager/configs/3310-mem-type 00
[0002.054] I> Adding plugin-manager/configs/3310-power-config 00
[0002.060] I> Adding plugin-manager/configs/3310-misc-config 00
[0002.065] I> Adding plugin-manager/configs/3310-modem-config 00
[0002.071] I> Adding plugin-manager/configs/3310-touch-config 00
[0002.077] I> Adding plugin-manager/configs/3310-display-config 00
[0002.083] E> "chip-id" doesn't exist, creating 
[0002.087] I> Adding plugin-manager/chip-id/A02P
[0002.094] I> Updated memory info to DTB
[0002.099] E> "reset" doesn't exist, creating 
[0002.103] E> "pmc-reset-reason" doesn't exist, creating 
[0002.109] E> "pmic-reset-reason" doesn't exist, creating 
[0002.114] I> disabled_core_mask: 0xffffff0c
[0002.125] I> tegrabl_load_kernel_and_dtb: Done

U-Boot 2016.07-g5971907 (Mar 01 2017 - 21:06:45 -0800)

TEGRA186
Model: NVIDIA P2771-0000-500
DRAM:  7.8 GiB
MC:   Tegra SD/MMC: 0, Tegra SD/MMC: 1
*** Warning - bad CRC, using default environment

In:    serial
Out:   serial
Err:   serial
Net:   eth0: ethernet@2490000
Hit any key to stop autoboot:  0 
MMC: no card present
switch to partitions #0, OK
mmc0(part 0) is current device
Scanning mmc 0:1...
starting USB...
No controllers found
USB is stopped. Please issue 'usb start' first.
starting USB...
No controllers found
ethernet@2490000 Waiting for PHY auto negotiation to complete.... done
BOOTP broadcast 1
BOOTP broadcast 2
BOOTP broadcast 3
DHCP client bound to address 192.168.1.150 (2323 ms)
*** Warning: no boot file name; using 'C0A80196.img'
Using ethernet@2490000 device
TFTP from server 0.0.0.0; our IP address is 192.168.1.150; sending through gateway 192.168.1.1
Filename 'C0A80196.img'.
Load address: 0x80080000
Loading: T T T T T T T T T T 
Retry count exceeded; starting again
missing environment variable: pxeuuid
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/01-00-04-4b-8c-45-d5
ethernet@2490000 Waiting for PHY auto negotiation to complete.... done
*** ERROR: `serverip' not set
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/C0A80196
ethernet@2490000 Waiting for PHY auto negotiation to complete.... done
*** ERROR: `serverip' not set
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/C0A8019
ethernet@2490000 Waiting for PHY auto negotiation to complete.... done
*** ERROR: `serverip' not set
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/C0A801
ethernet@2490000 Waiting for PHY auto negotiation to complete..... done
*** ERROR: `serverip' not set
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/C0A80
ethernet@2490000 Waiting for PHY auto negotiation to complete..... done
*** ERROR: `serverip' not set
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/C0A8
ethernet@2490000 Waiting for PHY auto negotiation to complete...... done
*** ERROR: `serverip' not set
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/C0A
ethernet@2490000 Waiting for PHY auto negotiation to complete.... done
*** ERROR: `serverip' not set
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/C0
ethernet@2490000 Waiting for PHY auto negotiation to complete.... done
*** ERROR: `serverip' not set
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/C
ethernet@2490000 Waiting for PHY auto negotiation to complete..... done
*** ERROR: `serverip' not set
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/default-arm-tegra186
ethernet@2490000 Waiting for PHY auto negotiation to complete..... done
*** ERROR: `serverip' not set
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/default-arm
ethernet@2490000 Waiting for PHY auto negotiation to complete.... done
*** ERROR: `serverip' not set
missing environment variable: bootfile
Retrieving file: pxelinux.cfg/default
ethernet@2490000 Waiting for PHY auto negotiation to complete.... done
*** ERROR: `serverip' not set
Config file not found
starting USB...
No controllers found
ethernet@2490000 Waiting for PHY auto negotiation to complete..... done
BOOTP broadcast 1
BOOTP broadcast 2
BOOTP broadcast 3
DHCP client bound to address 192.168.1.150 (3112 ms)
Using ethernet@2490000 device
TFTP from server 0.0.0.0; our IP address is 192.168.1.150; sending through gateway 192.168.1.1
Filename 'boot.scr.uimg'.
Load address: 0x90000000
Loading: T T T T T T T T T T 
Retry count exceeded; starting again
ethernet@2490000 Waiting for PHY auto negotiation to complete.... done
BOOTP broadcast 1
BOOTP broadcast 2
BOOTP broadcast 3
DHCP client bound to address 192.168.1.150 (2328 ms)
Using ethernet@2490000 device
TFTP from server 0.0.0.0; our IP address is 192.168.1.150; sending through gateway 192.168.1.1
Filename 'boot.scr.uimg'.
Load address: 0x80080000
Loading: T T T T T T T T T T 
Retry count exceeded; starting again
Tegra186 (P2771-0000-500) #

On my hard disk (ext4) used for flashing I have 11GB free storage left (after flashing is finished):

/dev/sda1                   252G  229G   11G  96% /media/fab/Externe

Flashing Output:

Rootfs looks like this:

Linux_for_Tegra/rootfs$ sudo tree | head -n 30
.
├── bin
│   ├── archdetect
│   ├── bash
│   ├── btrfs
│   ├── btrfs-calc-size
│   ├── btrfsck -> btrfs
│   ├── btrfs-convert
│   ├── btrfs-debug-tree
│   ├── btrfs-find-root
│   ├── btrfs-image
│   ├── btrfs-map-logical
│   ├── btrfs-select-super
│   ├── btrfs-show-super
│   ├── btrfstune
│   ├── btrfs-zero-log
│   ├── bunzip2
│   ├── busybox
│   ├── bzcat
│   ├── bzcmp -> bzdiff
│   ├── bzdiff
│   ├── bzegrep -> bzgrep
│   ├── bzexe
│   ├── bzfgrep -> bzgrep
│   ├── bzgrep
│   ├── bzip2
│   ├── bzip2recover
│   ├── bzless -> bzmore
│   ├── bzmore
│   ├── cat

ok. I good it working with “Test 1”:
[url]https://devtalk.nvidia.com/default/topic/1001880/jetson-tx2/tx2-not-booting-after-successful-flashing-/post/5120372/#5120372[/url]

Thanks to linuxdev

Glad it worked. Those options you removed are only on some of the newest of distributions, but distributions will begin using those options more and more over time.

Eventually it may be necessary for the flash.sh script to modify mkfs options to not use 64-bit extensions (to override host-specific defaults)…otherwise U-Boot will need to be modified to understand file systems with those options. Since a Jetson does not have sufficient space to make those options useful on its internal eMMC it wouldn’t be useful to modify U-Boot to understand those options. Of course some day someone might mount a SATA drive or USB drive using those options…in which case U-Boot could in fact use 64-bit extensions…it just wouldn’t be for the eMMC.

Hey

I faced a similar issue after flashing my tx2, also the TX2 stopped powering up. Any suggestions on what can be done now?

rakshuagarwal,

Does LED on the carrier board still work?