Monday, March 25, 2019

NVIDIA Jetson Nano first impression

Just received my NVIDIA Jetson Nano developer kit today.  Here are my first impressions:

- the mounting holes on the board are tiny.  M3 pole won't fit.  The package does come with a paper (!) stand though

- the board is picky on the power supply.  Tried several USB chargers and the board will shutdown during boot.  Ended up using the barrel plug.  Needed to short jumper J48 to enable power supply via the barrel plug.

- during first boot, after configuring the keyboard etc, the machine froze when trying to login.  Needed to recycle the power.

- Need to manually install Tensorflow for python3 (this should install the CUDA accelerated Tensorflow)

- When trying to install scipy with pip3  (compiling from source), the heatsink was too hot to touch and the machine eventually locked up.  Needed to cycle the power to reboot.

- the cpuinfo:

~$ cat /proc/cpuinfo
processor : 0
model name : ARMv8 Processor rev 1 (v8l)
BogoMIPS : 38.40
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32
CPU implementer : 0x41
CPU architecture: 8
CPU variant : 0x1
CPU part : 0xd07
CPU revision : 1
processor : 1
model name : ARMv8 Processor rev 1 (v8l)
BogoMIPS : 38.40
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32
CPU implementer : 0x41
CPU architecture: 8
CPU variant : 0x1
CPU part : 0xd07
CPU revision : 1
processor : 2
model name : ARMv8 Processor rev 1 (v8l)
BogoMIPS : 38.40
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32
CPU implementer : 0x41
CPU architecture: 8
CPU variant : 0x1
CPU part : 0xd07
CPU revision : 1
processor : 3
model name : ARMv8 Processor rev 1 (v8l)
BogoMIPS : 38.40
Features : fp asimd evtstrm aes pmull sha1 sha2 crc32
CPU implementer : 0x41
CPU architecture: 8
CPU variant : 0x1
CPU part : 0xd07
CPU revision : 1
view raw cpuinfo.txt hosted with ❤ by GitHub
- dmesg:

~$ dmesg
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 4.9.140-tegra (buildbrain@mobile-u64-3531) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #1 SMP PREEMPT Wed Mar 13 00:32:22 PDT 2019
[ 0.000000] Boot CPU: AArch64 Processor [411fd071]
[ 0.000000] OF: fdt:memory scan node memory@80000000, reg size 48,
[ 0.000000] OF: fdt: - 80000000 , 7ee00000
[ 0.000000] OF: fdt: - 100000000 , 7f200000
[ 0.000000] Found tegra_fbmem: 00800000@92cb6000
[ 0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb0_carveout': base 0x0000000000000000, size 0 MiB
[ 0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb0_carveout': base 0x0000000000000000, size 0 MiB
[ 0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb1_carveout': base 0x0000000000000000, size 0 MiB
[ 0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb1_carveout': base 0x0000000000000000, size 0 MiB
[ 0.000000] OF: reserved mem: initialized node vpr-carveout, compatible id nvidia,vpr-carveout
[ 0.000000] OF: reserved mem: initialized node iram-carveout, compatible id nvidia,iram-carveout
[ 0.000000] OF: reserved mem: initialized node ramoops_carveout, compatible id nvidia,ramoops
[ 0.000000] cma: Reserved 64 MiB at 0x00000000fac00000
[ 0.000000] On node 0 totalpages: 1039872
[ 0.000000] DMA zone: 8192 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 519168 pages, LIFO batch:31
[ 0.000000] Normal zone: 8136 pages used for memmap
[ 0.000000] Normal zone: 520704 pages, LIFO batch:31
[ 0.000000] psci: probing for conduit method from DT.
[ 0.000000] psci: PSCIv1.0 detected in firmware.
[ 0.000000] psci: Using standard PSCI v0.2 function IDs
[ 0.000000] psci: MIGRATE_INFO_TYPE not supported.
[ 0.000000] psci: SMC Calling Convention v1.1
[ 0.000000] percpu: Embedded 23 pages/cpu @ffffffc0fefd2000 s53400 r8192 d32616 u94208
[ 0.000000] pcpu-alloc: s53400 r8192 d32616 u94208 alloc=23*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[ 0.000000] CPU features: enabling workaround for ARM erratum 832075
[ 0.000000] Speculative Store Bypass Disable mitigation not required
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1023544
[ 0.000000] Kernel command line: tegraid=21.1.2.0.0 ddr_die=4096M@2048M section=512M memtype=0 vpr_resize usb_port_owner_info=0 lane_owner_info=0 emc_max_dvfs=0 touch_id=0@63 video=tegrafb no_console_suspend=1 console=ttyS0,115200n8 debug_uartport=lsport,0 earlyprintk=uart8250-32bit,0x70006000 maxcpus=4 usbcore.old_scheme_first=1 lp0_vec=0x1000@0xff780000 core_edp_mv=1125 core_edp_ma=4000 tegra_fbmem=0x800000@0x92cb6000 is_hdmi_initialised=1 root=/dev/mmcblk0p1 rw rootwait console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 root=/dev/mmcblk0p1 rw rootwait console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 rootfstype=ext4 root=/dev/mmcblk0p1 rw rootwait
[ 0.000000] log_buf_len individual max cpu contribution: 32768 bytes
[ 0.000000] log_buf_len total cpu_extra contributions: 98304 bytes
[ 0.000000] log_buf_len min size: 32768 bytes
[ 0.000000] log_buf_len: 131072 bytes
[ 0.000000] early log buf free: 29384(89%)
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.000000] Memory: 3567872K/4159488K available (15166K kernel code, 2914K rwdata, 6616K rodata, 8512K init, 605K bss, 116480K reserved, 475136K cma-reserved)
[ 0.000000] Virtual kernel memory layout:
[ 0.000000] modules : 0xffffff8000000000 - 0xffffff8008000000 ( 128 MB)
[ 0.000000] vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000 ( 250 GB)
[ 0.000000] .text : 0xffffff8008080000 - 0xffffff8008f50000 ( 15168 KB)
[ 0.000000] .rodata : 0xffffff8008f50000 - 0xffffff80095d0000 ( 6656 KB)
[ 0.000000] .init : 0xffffff80095d0000 - 0xffffff8009e20000 ( 8512 KB)
[ 0.000000] .data : 0xffffff8009e20000 - 0xffffff800a0f8808 ( 2915 KB)
[ 0.000000] .bss : 0xffffff800a0f8808 - 0xffffff800a18fe3c ( 606 KB)
[ 0.000000] fixed : 0xffffffbefe7fd000 - 0xffffffbefec00000 ( 4108 KB)
[ 0.000000] PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000 ( 16 MB)
[ 0.000000] vmemmap : 0xffffffbf00000000 - 0xffffffc000000000 ( 4 GB maximum)
[ 0.000000] 0xffffffbf00000000 - 0xffffffbf03fc8000 ( 63 MB actual)
[ 0.000000] memory : 0xffffffc000000000 - 0xffffffc0ff200000 ( 4082 MB)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] Build-time adjustment of leaf fanout to 64.
[ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[ 0.000000] NR_IRQS:64 nr_irqs:64 0
[ 0.000000] /interrupt-controller@60004000: 192 interrupts forwarded to /interrupt-controller
[ 0.000000] t210 clock and reset probe
[ 0.000000] boot misc1 0x90000000: expected 0x10000000
[ 0.000000] (comparison mask = 0xf8000000)
[ 0.000000] boot misc2 0x0: expected 0xf6e0f620
[ 0.000000] (comparison mask = 0xffffffff)
[ 0.000000] boot misc3 0xf5c1: expected 0x10000
[ 0.000000] (comparison mask = 0xffffffff)
[ 0.000000] PLL_D2 already enabled. Postponing set full defaults
[ 0.000000] tegra-pmc: get_secure_pmc_setting: done secure_pmc=1
[ 0.000000] clk_cbus_recalc_rate: no gbus parent
[ 0.000000] clk_cbus_recalc_rate: no gbus parent
[ 0.000000] clk_cbus_recalc_rate: no gbus parent
[ 0.000000] clk_cbus_recalc_rate: no gbus parent
[ 0.000000] clk_cbus_recalc_rate: no gbus parent
[ 0.000000] arm_arch_timer: Architected cp15 timer(s) running at 19.20MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
[ 0.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
[ 0.001504] Console: colour dummy device 80x25
[ 0.002445] console [tty0] enabled
[ 0.002471] kmemleak: Kernel memory leak detector disabled
[ 0.002501] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
[ 0.002528] pid_max: default: 32768 minimum: 301
[ 0.002986] Security Framework initialized
[ 0.003218] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.003238] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.004502] ftrace: allocating 46802 entries in 183 pages
[ 0.175987] sched-energy: CPU device node has no sched-energy-costs
[ 0.176021] ASID allocator initialised with 65536 entries
[ 0.211762] tegra-id: chipid=22117.
[ 0.211804] tegra-id: opt_subrevision=0.
[ 0.211832] Tegra Speedo/IDDQ fuse revision 4
[ 0.211847] Tegra: CPU Speedo ID 9, SoC Speedo ID 0, GPU Speedo ID 2
[ 0.211864] Tegra: CPU Process ID 0, SoC Process ID 0, GPU Process ID 0
[ 0.211879] Tegra: CPU Speedo Value 2024, SoC Speedo Value 1932, GPU Speedo Value 2029
[ 0.211899] Tegra: CPU IDDQ Value 1780, SoC IDDQ Value 2056, GPU IDDQ Value 2430
[ 0.211935] Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 0
[ 0.211961] DTS File Name: /dvs/git/dirty/git-master_linux/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-a02.dts
[ 0.211995] DTB Build time: Mar 15 2019 09:52:07
[ 0.261099] CPU1: Booted secondary processor [411fd071]
[ 0.292995] CPU2: Booted secondary processor [411fd071]
[ 0.324988] CPU3: Booted secondary processor [411fd071]
[ 0.325079] Brought up 4 CPUs
[ 0.325144] SMP: Total of 4 processors activated.
[ 0.325162] CPU features: detected feature: 32-bit EL0 Support
[ 0.325441] CPU: All CPU(s) started at EL2
[ 0.325471] alternatives: patching kernel code
[ 0.333784] devtmpfs: initialized
[ 0.368812] Initilizing CustomIPI irq domain
[ 0.369270] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.369320] futex hash table entries: 1024 (order: 4, 65536 bytes)
[ 0.380737] pinctrl core: initialized pinctrl subsystem
[ 0.381469] OS set in device tree is not L4T.
[ 0.381913] regulator-dummy: no parameters
[ 0.382199] Initializing plugin-manager
[ 0.382366] Plugin module not found
[ 0.382581] node /plugin-manager/fragement@0 match with board >=3448-0000-100
[ 0.383124] node /plugin-manager/fragment@1 match with board >=3448-0000-101
[ 0.383891] node /plugin-manager/fragment@5 match with board 3449-0000-200
[ 0.387202] NET: Registered protocol family 16
[ 0.388572] pstore: using zlib compression
[ 0.389295] console [pstore-1] enabled
[ 0.389312] pstore: Registered ramoops as persistent store backend
[ 0.389331] ramoops: attached 0x200000@0xb0000000, ecc: 0/0
[ 0.405115] cpuidle: using governor menu
[ 0.409065] tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
[ 0.410630] vdso: 2 pages (1 code @ ffffff8008f57000, 1 data @ ffffff8009e24000)
[ 0.410676] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.413690] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[ 0.415290] tegra_bpmp_of_clk_init: EMC proxy not found.
[ 0.416260] tegra_powergate_init: DONE
[ 0.416299] DTS File Name: /dvs/git/dirty/git-master_linux/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-a02.dts
[ 0.416336] DTB Build time: Mar 15 2019 09:52:07
[ 0.418001] Tegra reboot handler registered.
[ 0.422452] iommu: Adding device tegra-carveouts to group 0
[ 0.422630] platform tegra-carveouts: domain=ffffffc0f9400318 allocates as[0]=ffffffc0f9bd40a8
[ 0.423008] iommu: Adding device smmu_test to group 1
[ 0.423075] platform smmu_test: domain=ffffffc0f9400558 allocates as[0]=ffffffc0f9bd4110
[ 0.423941] mc: mapped MMIO address: 0xffffff800802e000 -> 0x70019000
[ 0.424019] mc: mapped MMIO address: 0xffffff8008065000 -> 0x7001c000
[ 0.424094] mc: mapped MMIO address: 0xffffff8008079000 -> 0x7001d000
[ 0.424117] nv-tegra-mc 70019000.mc: No mssnvlink node
[ 0.424153] mc-err: mcerr ops are set to t21x
[ 0.433949] iommu: Adding device 70090000.xusb to group 2
[ 0.434258] iommu: Adding device 70006000.serial to group 3
[ 0.434362] platform 70006000.serial: domain=ffffffc0f9489618 allocates as[0]=ffffffc0f9bd4178
[ 0.434810] iommu: Adding device 70006040.serial to group 4
[ 0.435121] iommu: Adding device 70006200.serial to group 5
[ 0.435365] iommu: Adding device sound to group 6
[ 0.435423] platform sound: domain=ffffffc0f9489b58 allocates as[0]=ffffffc0f9bd41e0
[ 0.435991] iommu: Adding device 7000d400.spi to group 7
[ 0.436270] iommu: Adding device 7000d600.spi to group 8
[ 0.436572] iommu: Adding device 70410000.spi to group 9
[ 0.436890] iommu: Adding device 50000000.host1x to group 10
[ 0.437250] iommu: Adding device 54080000.vi to group 11
[ 0.437676] iommu: Adding device 54600000.isp to group 12
[ 0.437958] iommu: Adding device 54680000.isp to group 13
[ 0.438281] iommu: Adding device tegradc.0 to group 14
[ 0.438352] platform tegradc.0: domain=ffffffc0f9496a98 allocates as[0]=ffffffc0f9bd4248
[ 0.442548] platform tegradc.0: IOVA linear map 0x0000000092cb6000(800000)
[ 0.442961] platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
[ 0.443315] iommu: Adding device tegradc.1 to group 15
[ 0.443381] platform tegradc.1: domain=ffffffc0f9496cd8 allocates as[0]=ffffffc0f9bd42b0
[ 0.447697] platform tegradc.1: IOVA linear map 0x0000000092cb6000(800000)
[ 0.448111] platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
[ 0.448389] iommu: Adding device 54340000.vic to group 16
[ 0.448620] iommu: Adding device 544c0000.nvenc to group 17
[ 0.448837] iommu: Adding device 54500000.tsec to group 18
[ 0.449089] iommu: Adding device 54100000.tsecb to group 19
[ 0.449301] iommu: Adding device 54480000.nvdec to group 20
[ 0.449544] iommu: Adding device 54380000.nvjpg to group 21
[ 0.450596] iommu: Adding device 546c0000.i2c to group 22
[ 0.450944] iommu: Adding device 57000000.gpu to group 23
[ 0.451011] platform 57000000.gpu: domain=ffffffc0f94a5cd8 allocates as[0]=ffffffc0f9bd4318
[ 0.451068] platform 57000000.gpu: domain=ffffffc0f94a5cd8 allocates as[1]=ffffffc0f9bd4380
[ 0.451125] platform 57000000.gpu: domain=ffffffc0f94a5cd8 allocates as[2]=ffffffc0f9bd43e8
[ 0.451183] platform 57000000.gpu: domain=ffffffc0f94a5cd8 allocates as[3]=ffffffc0f9bd4450
[ 0.452111] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency thermal reset disabled.
[ 0.452153] tegra-pmc 7000e400.pmc: scratch reg offset dts data not present
[ 0.452181] tegra-pmc: ### PMC reset source: TEGRA_POWER_ON_RESET
[ 0.452202] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_WARM
[ 0.452219] tegra-pmc: ### PMC reset status reg: 0x0
[ 0.505180] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[ 0.505216] tegra-pmc: Clear bootloader IO dpd settings
[ 0.505248] tegra-pmc 7000e400.pmc: IO padctrl driver initialized
[ 0.505328] tegra-pmc 7000e400.pmc: PMC: Successfully configure bootrom reset commands
[ 0.505643] iommu: Adding device 70012000.se to group 24
[ 0.506448] iommu: Adding device 7000c000.i2c to group 25
[ 0.506726] iommu: Adding device 7000c400.i2c to group 26
[ 0.506988] iommu: Adding device 7000c500.i2c to group 27
[ 0.507255] iommu: Adding device 7000c700.i2c to group 28
[ 0.507562] iommu: Adding device 7000d000.i2c to group 29
[ 0.507830] iommu: Adding device 7000d100.i2c to group 30
[ 0.508148] iommu: Adding device sdhci-tegra.0 to group 31
[ 0.508218] platform sdhci-tegra.0: domain=ffffffc0f953ce58 allocates as[0]=ffffffc0f9bd44b8
[ 0.509113] iommu: Adding device 700d0000.xudc to group 32
[ 0.513769] vdd-ac-bat: 5000 mV
[ 0.514150] vdd-5v0-sys: 5000 mV
[ 0.515137] vdd-5v0-hdmi: supplied by vdd-5v0-sys
[ 0.515226] vdd-5v0-hdmi: 5000 mV
[ 0.515660] vdd-1v8: 1800 mV
[ 0.516065] vdd-fan: supplied by vdd-5v0-sys
[ 0.516121] vdd-fan: 5000 mV
[ 0.516554] vdd-usb-vbus: supplied by vdd-5v0-sys
[ 0.516631] vdd-usb-vbus: 5000 mV
[ 0.517204] vdd-usb-vbus2: 5000 mV
[ 0.550136] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.552795] GPIO line 151 (camera-control-output-low) hogged as output/low
[ 0.553203] gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip0 (tegra-gpio)
[ 0.561363] eventlib_kernel: keventlib is initialized, test id: 0
[ 0.561753] SCSI subsystem initialized
[ 0.562032] libata version 3.00 loaded.
[ 0.562333] usbcore: registered new interface driver usbfs
[ 0.562426] usbcore: registered new interface driver hub
[ 0.562525] usbcore: registered new device driver usb
[ 0.566690] max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
[ 0.568098] random: fast init done
[ 0.572392] vdd-core: 600 <--> 1162 mV at 1125 mV
[ 0.573661] vdd-ddr-1v1: Bringing 1125000uV into 1150000-1150000uV
[ 0.576248] vdd-ddr-1v1: 1150 mV
[ 0.580334] vdd-pre-reg-1v35: 1350 mV
[ 0.584238] vdd-1v8: 1800 mV
[ 0.584531] vdd-1v8: Failed to create debugfs directory
[ 0.588235] avdd-sys-1v2: 1200 mV
[ 0.592239] vdd-pex-1v0: 1050 mV
[ 0.593058] vddio-sdmmc-ap: 1800 <--> 3300 mV at 3300 mV
[ 0.593707] max77620-ldo3: at 3100 mV
[ 0.596239] vdd-rtc: 850 <--> 1100 mV at 1000 mV
[ 0.596891] max77620-ldo5: at 3100 mV
[ 0.597548] max77620-ldo6: at 2800 mV
[ 0.600250] avdd-1v05-pll: 1050 mV
[ 0.604236] avdd-io-hdmi-dp: 1050 mV
[ 0.605804] GPIO line 505 (spmic-default-output-high) hogged as output/high
[ 0.606102] gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpiochip1 (max77620-gpio)
[ 0.608201] max77620 4-003c: max77620 probe successful
[ 0.610536] i2c i2c-6: Unbalanced pm_runtime_enable!
[ 0.611096] media: Linux media interface: v0.10
[ 0.611172] Linux video capture interface: v2.00
[ 0.612129] pps_core: LinuxPPS API ver. 1 registered
[ 0.612159] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.612209] PTP clock support registered
[ 0.615445] tegra_fiq_debugger_init: found FIQ source (IRQ 98)
[ 0.621775] tegra210-emc 7001b000.external-memory-controller: validated EMC DFS table
[ 0.622706] Advanced Linux Sound Architecture Driver Initialized.
[ 0.623400] Bluetooth: Core ver 2.22
[ 0.623473] NET: Registered protocol family 31
[ 0.623491] Bluetooth: HCI device and connection manager initialized
[ 0.623518] Bluetooth: HCI socket layer initialized
[ 0.623539] Bluetooth: L2CAP socket layer initialized
[ 0.623580] Bluetooth: SCO socket layer initialized
[ 0.625341] tegra210_dvfs: no clock found for sdmmc2_ddr
[ 0.625379] tegra210_dvfs: no clock found for sdmmc4_ddr
[ 0.625441] tegra210_dvfs: no clock found for sdmmc1_ddr
[ 0.625469] tegra210_dvfs: no clock found for sdmmc3_ddr
[ 0.628291] tegra_dvfs: Unable to get vdd-cpu rail for step info, defering probe
[ 0.629705] vdd-3v3-sys: supplied by vdd-5v0-sys
[ 0.629816] vdd-3v3-sys: 3300 mV
[ 0.630109] vdd-1v8: supplied by vdd-3v3-sys
[ 0.632312] vdd-usb-vbus2: supplied by vdd-3v3-sys
[ 0.632791] vdd-3v3-sd: supplied by vdd-3v3-sys
[ 0.632844] vdd-3v3-sd: 3300 mV
[ 0.634131] avdd-io-edp-1v05: supplied by avdd-1v05-pll
[ 0.634189] avdd-io-edp-1v05: 1050 mV
[ 0.634678] vdd-usb-hub-en: supplied by vdd-1v8
[ 0.634731] vdd-usb-hub-en: 5000 mV
[ 0.636088] camchar: rtcpu character device driver loaded
[ 0.636854] extcon-gpio-states extcon:extcon@1: Cable state:0, cable id:0
[ 0.638239] clocksource: Switched to clocksource arch_sys_counter
[ 0.678210] VFS: Disk quotas dquot_6.6.0
[ 0.678449] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.678975] nvmap_heap_init: nvmap_heap_init: created heap block cache
[ 0.679423] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000d7000000, size=0x19000000
[ 0.679470] dma-vpr: heap size is not multiple of cma_chunk_size heap_info->num_chunks (13) rem_chunk_size(0x1000000)
[ 0.679719] cma: enabled page replacement for spfn=d7000, epfn=f0000
[ 0.679746] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful
[ 0.679772] tegra-carveouts tegra-carveouts: assigned reserved memory node vpr-carveout
[ 0.679821] tegra-carveouts tegra-carveouts: iram :dma coherent mem declare 0x0000000040001000,258048
[ 0.679847] tegra-carveouts tegra-carveouts: assigned reserved memory node iram-carveout
[ 0.679882] nvmap: nvmap_select_cache_ops() nvmap cache ops set to set/ways
[ 0.679903] nvmap_page_pool_init: Total RAM pages: 1010752
[ 0.679921] nvmap_page_pool_init: nvmap page pool size: 126344 pages (493 MB)
[ 0.680069] nvmap_background_zero_thread: PP zeroing thread starting.
[ 0.680468] misc nvmap: created heap iram base 0x0000000040001000 size (252KiB)
[ 0.681514] misc nvmap: created heap vpr base 0x00000000d7000000 size (409600KiB)
[ 0.689714] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type AO-therm
[ 0.690137] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type CPU-therm
[ 0.690450] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
[ 0.690685] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[ 0.690908] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
[ 0.691212] pre_t19x_iso_plat_init(): iso emc max clk=1600000KHz
[ 0.691233] pre_t19x_iso_plat_init(): max_iso_bw=33280000KB
[ 0.691689] NET: Registered protocol family 2
[ 0.692668] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.692908] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[ 0.693459] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.693633] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.693731] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.694152] NET: Registered protocol family 1
[ 0.694968] RPC: Registered named UNIX socket transport module.
[ 0.694998] RPC: Registered udp transport module.
[ 0.695014] RPC: Registered tcp transport module.
[ 0.695031] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.695059] PCI: CLS 0 bytes, default 64
[ 0.695300] Trying to unpack rootfs image as initramfs...
[ 0.704730] host1x 50000000.host1x: initialized
[ 0.707050] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[ 0.710304] audit: initializing netlink subsys (disabled)
[ 0.710401] audit: type=2000 audit(0.563:1): initialized
[ 0.711177] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[ 0.721704] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.723291] ntfs: driver 2.1.32 [Flags: R/W].
[ 0.724118] 9p: Installing v9fs 9p2000 file system support
[ 0.727644] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)
[ 0.727803] io scheduler noop registered
[ 0.728112] io scheduler cfq registered (default)
[ 0.730936] gic 702f9000.agic: GIC IRQ controller registered
[ 0.733919] iommu: Adding device 702ef000.adsp to group 33
[ 0.740715] iommu: Adding device aconnect@702c0000:adsp_audio to group 34
[ 0.740923] tegra-aconnect aconnect@702c0000: Tegra ACONNECT bus registered
[ 0.741534] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 = 0x7a47c11
[ 0.741568] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_0 = 0x4
[ 0.743761] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane = usb2-0, function = xusb
[ 0.743895] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.1, lane = usb2-1, function = xusb
[ 0.744017] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.2, lane = usb2-2, function = xusb
[ 0.744232] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane = pcie-0, function = pcie-x1
[ 0.744343] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane = pcie-1, function = pcie-x4
[ 0.744452] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane = pcie-2, function = pcie-x4
[ 0.744564] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane = pcie-3, function = pcie-x4
[ 0.744673] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane = pcie-4, function = pcie-x4
[ 0.744787] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.8, lane = pcie-5, function = xusb
[ 0.744902] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.9, lane = pcie-6, function = xusb
[ 0.751314] tegra-pwm 7000a000.pwm: PWM clk cannot sleep in ops
[ 0.752678] tegra-dfll-pwm 70110000.pwm: DFLL pwm-rate: 12800000
[ 0.754647] tegra-pcie 1003000.pcie-controller: 4x1, 1x1 configuration
[ 0.755943] tegra-pcie 1003000.pcie-controller: PCIE: Enable power rails
[ 0.756325] tegra-pcie 1003000.pcie-controller: probing port 0, using 4 lanes
[ 0.757559] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[ 0.757819] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=1500000, vi_iso_bw=750000, max_bw=1500000
[ 0.758064] Adding domain tsec-pd to PM domain host1x-pd
[ 0.760066] tegra-pcie 1003000.pcie-controller: probing port 1, using 1 lanes
[ 0.761115] tsec 54500000.tsec: initialized
[ 0.762902] tsec 54100000.tsecb: initialized
[ 0.763652] Adding domain nvdec-pd to PM domain host1x-pd
[ 0.766897] nvdec 54480000.nvdec: initialized
[ 0.767966] Adding domain vic03-pd to PM domain host1x-pd
[ 0.768170] Adding domain msenc-pd to PM domain host1x-pd
[ 0.768353] Adding domain nvjpg-pd to PM domain host1x-pd
[ 0.772039] falcon 54340000.vic: initialized
[ 0.773259] falcon 544c0000.nvenc: initialized
[ 0.774683] falcon 54380000.nvjpg: initialized
[ 0.779362] tegradc tegradc.0: disp0 connected to head0->/host1x/sor1
[ 0.779494] display board info: id 0x0, fab 0x0
[ 0.779568] generic_infoframe_type: 0x87
[ 0.779712] tegradc tegradc.0: DT parsed successfully
[ 0.779773] tegradc tegradc.0: Display dc.ffffff800ab40000 registered with id=0
[ 0.780480] tegradc tegradc.0: Bootloader disp_param detected. Detected mode: 1920x1080 (on 0x0mm) pclk=148350781
[ 0.783917] tegradc tegradc.0: probed
[ 0.787477] tegra-apbdma 60020000.dma: Tegra20 APB DMA driver register 32 channels
[ 0.792692] tegra-adma 702e2000.adma: Tegra210 ADMA driver registered 10 channels
[ 0.793723] tegra-fuse-burn 7000f800.efuse:efuse-burn: Fuse burn driver initialized
[ 0.794133] kfuse 7000fc00.kfuse: initialized
[ 0.795843] tegra-pmc-iopower pmc-iopower: Regulator supply iopower-dbg-supply not available
[ 0.796937] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[ 0.798425] tegra-dfll-pwm 70110000.pwm: DFLL_PWM regulator is available now
[ 0.798470] vdd-cpu: 708 <--> 1322 mV at 708 mV
[ 0.799083] pwm-regulator pwm_regulators:pwm-regulator@0: PWM regulator registration passed
[ 0.800931] vdd-gpu: applied init 1000000uV constraint
[ 0.800965] vdd-gpu: 708 <--> 1323 mV at 997 mV
[ 0.801403] pwm-regulator pwm_regulators:pwm-regulator@1: PWM regulator registration passed
[ 0.806543] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 0.806769] No Device Node present for smmu client: serial8250 !!
[ 0.806804] platform serial8250: No iommus property found in DT node, got swgids from fixup(101004000)
[ 0.806898] iommu: Adding device serial8250 to group 35
[ 0.810657] console [ttyS0] disabled
[ 0.810839] 70006000.serial: ttyS0 at MMIO 0x70006000 (irq = 63, base_baud = 25500000) is a Tegra
[ 1.231787] tegra-pcie 1003000.pcie-controller: link 0 down, retrying
[ 1.636111] tegra-pcie 1003000.pcie-controller: link 0 down, retrying
[ 2.040451] tegra-pcie 1003000.pcie-controller: link 0 down, retrying
[ 2.042471] tegra-pcie 1003000.pcie-controller: link 0 down, ignoring
[ 2.042857] tegra-pcie 1003000.pcie-controller: PCI host bridge to bus 0000:00
[ 2.042867] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
[ 2.042872] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
[ 2.042878] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pref]
[ 2.042885] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 2.042931] pci 0000:00:02.0: [10de:0faf] type 01 class 0x060400
[ 2.043057] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 2.043297] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 2.043475] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[ 2.043510] pci 0000:01:00.0: reg 0x10: [io 0x0000-0x00ff]
[ 2.043554] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
[ 2.043583] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
[ 2.043790] pci 0000:01:00.0: supports D1 D2
[ 2.043794] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 2.058360] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[ 2.058416] pci 0000:00:02.0: BAR 14: assigned [mem 0x13000000-0x130fffff]
[ 2.058421] pci 0000:00:02.0: BAR 13: assigned [io 0x1000-0x1fff]
[ 2.058430] pci 0000:01:00.0: BAR 4: assigned [mem 0x13000000-0x13003fff 64bit]
[ 2.058456] pci 0000:01:00.0: BAR 2: assigned [mem 0x13004000-0x13004fff 64bit]
[ 2.058479] pci 0000:01:00.0: BAR 0: assigned [io 0x1000-0x10ff]
[ 2.058491] pci 0000:00:02.0: PCI bridge to [bus 01]
[ 2.058497] pci 0000:00:02.0: bridge window [io 0x1000-0x1fff]
[ 2.058505] pci 0000:00:02.0: bridge window [mem 0x13000000-0x130fffff]
[ 2.059294] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[ 2.059299] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[ 2.059307] pcie_pme 0000:00:02.0:pcie001: service driver pcie_pme loaded
[ 2.059433] aer 0000:00:02.0:pcie002: service driver aer loaded
[ 3.224470] console [ttyS0] enabled
[ 3.225096] Console: switching to colour frame buffer device 240x67
[ 3.227587] 70006040.serial: ttyTHS1 at MMIO 0x70006040 (irq = 64, base_baud = 0) is a TEGRA_UART
[ 3.227941] serial-tegra 70006200.serial: RX in PIO mode
[ 3.228038] 70006200.serial: ttyTHS2 at MMIO 0x70006200 (irq = 65, base_baud = 0) is a TEGRA_UART
[ 3.229135] [drm] Initialized
[ 3.250751] brd: module loaded
[ 3.264610] tegradc tegradc.0: fb registered
[ 3.269163] loop: module loaded
[ 3.272483] tegra_profiler: version: 1.132, samples/io: 46/26
[ 3.277620] tegradc tegradc.0: DC initialized, skipping tegra_dc_program_mode.
[ 3.277664] tegradc tegradc.0: hdmi: tmds rate:148351K prod-setting:prod_c_hdmi_75m_150m
[ 3.278167] tegradc tegradc.0: hdmi: get RGB quant from REG programmed by BL.
[ 3.278177] tegradc tegradc.0: hdmi: get YCC quant from REG programmed by BL.
[ 3.278524] extcon-disp-state extcon:disp-state: cable 47 state 1
[ 3.278527] Extcon AUX1(HDMI) enable
[ 3.279400] tegradc tegradc.1: disp1 connected to head1->/host1x/sor
[ 3.279475] tegradc tegradc.1: No lt-data, using default setting
[ 3.279504] tegradc tegradc.1: No hpd-gpio in DT
[ 3.279534] tegradc tegradc.1: DT parsed successfully
[ 3.279590] tegradc tegradc.1: Display dc.ffffff800f4c0000 registered with id=1
[ 3.280964] tegradc tegradc.1: dpd enable lookup fail:-19
[ 3.285244] tegradc tegradc.1: probed
[ 3.292930] edid invalid
[ 3.320636] tegradc tegradc.0: nominal-pclk:148351648 parent:148350781 div:1.0 pclk:148350781 146868084~161703244
[ 3.369089] tegradc tegradc.1: fb registered
[ 3.369228] tegra_profiler: auth: init
[ 3.370748] THERMAL EST: found 2 subdevs
[ 3.370754] THERMAL EST num_resources: 0
[ 3.370760] [THERMAL EST subdev 0]
[ 3.370767] [THERMAL EST subdev 1]
[ 3.371245] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type thermal-fan-est
[ 3.371248] THERMAL EST: thz register success.
[ 3.371434] THERMAL EST: end of probe, return err: 0
[ 3.372853] hisi_sas: driver version v1.6
[ 3.377152] tegra-qspi 70410000.spi: Prod settings list not found
[ 3.378476] qspi_mtd spi32766.0: MX25U3235F (4096 Kbytes)
[ 3.378485] qspi_mtd spi32766.0: mtd .name = spi32766.0, .size = 0x400000 (4MiB) .erasesize = 0x00001000 (4KiB) .numeraseregions = 0
[ 3.381735] libphy: Fixed MDIO Bus: probed
[ 3.382930] tun: Universal TUN/TAP device driver, 1.6
[ 3.382933] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 3.384009] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[ 3.384012] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 3.384067] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[ 3.384069] igb: Copyright (c) 2007-2014 Intel Corporation.
[ 3.384122] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[ 3.384124] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[ 3.384175] Intel(R) 10GbE PCI Express Linux Network Driver - version 4.6.4
[ 3.384176] Copyright(c) 1999 - 2017 Intel Corporation.
[ 3.385074] r8168 0000:01:00.0: enabling device (0000 -> 0003)
[ 3.385103] r8168 Gigabit Ethernet driver 8.045.08-NAPI loaded
[ 3.399320] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Invalid ethernet address 00:00:00:00:00:00, trying device tree node
[ 3.399484] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Found valid ethernet address 00:04:4b:e3:fe:1f from device tree
[ 3.400120] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[ 3.400160] r8168 Copyright (C) 2017 Realtek NIC software team <nicfae@realtek.com>
This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
[ 3.400841] PPP generic driver version 2.4.2
[ 3.401112] PPP BSD Compression module registered
[ 3.401117] PPP Deflate Compression module registered
[ 3.401156] PPP MPPE Compression module registered
[ 3.401163] NET: Registered protocol family 24
[ 3.401236] usbcore: registered new interface driver r8152
[ 3.401284] usbcore: registered new interface driver asix
[ 3.401351] usbcore: registered new interface driver ax88179_178a
[ 3.401398] usbcore: registered new interface driver cdc_ether
[ 3.401436] usbcore: registered new interface driver net1080
[ 3.401486] usbcore: registered new interface driver cdc_subset
[ 3.401579] usbcore: registered new interface driver zaurus
[ 3.401647] usbcore: registered new interface driver cdc_ncm
[ 3.401835] VFIO - User Level meta-driver version: 0.3
[ 3.403207] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 3.403231] ehci-pci: EHCI PCI platform driver
[ 3.403280] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 3.403290] ohci-pci: OHCI PCI platform driver
[ 3.403333] ohci-platform: OHCI generic platform driver
[ 3.406134] tegra-xusb 70090000.xusb: USB2 port 0 has OTG_CAP
[ 3.406922] tegra-xusb-padctl 7009f000.xusb_padctl: enabled OTG on UTMI pad 0
[ 3.408128] tegra-xusb 70090000.xusb: extcon 0: ffffffc0f9693c00 id
[ 3.408247] tegra-xusb 70090000.xusb: Direct firmware load for tegra21x_xusb_firmware failed with error -2
[ 3.408249] tegra-xusb 70090000.xusb: Falling back to user helper
[ 3.409678] usbcore: registered new interface driver uas
[ 3.409734] usbcore: registered new interface driver usb-storage
[ 3.409856] usbcore: registered new interface driver usbserial
[ 3.413282] tegra-xudc-new 700d0000.xudc: device count: 1
[ 3.414706] tegra-xudc-new 700d0000.xudc: USB charger detection disabled
[ 3.414730] tegra-xudc-new 700d0000.xudc: vbus state: 0
[ 3.414768] tegra-xudc-new 700d0000.xudc: entering ELPG
[ 3.415042] tegra-xudc-new 700d0000.xudc: entering ELPG done
[ 3.415770] mousedev: PS/2 mouse device common for all mice
[ 3.415859] usbcore: registered new interface driver xpad
[ 3.544006] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[ 3.546599] rtc rtc1: alarm rtc device
[ 3.546616] tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
[ 3.546648] tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
[ 3.547251] i2c /dev entries driver
[ 3.548894] imx219 6-0010: tegracam sensor driver:imx219_v2.0.6
[ 3.572212] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x10
[ 3.572280] imx219 6-0010: imx219_board_setup: error during i2c read probe (-121)
[ 3.572308] imx219 6-0010: board setup failed
[ 3.572411] imx219: probe of 6-0010 failed with error -121
[ 3.573454] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[ 3.576572] tegra_soctherm 700e2000.soctherm: pllx_offset tz:0 max:14, min:2
[ 3.576577] tegra_soctherm 700e2000.soctherm: pllx_offset tz:2 max:8, min:4
[ 3.577016] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 3.577034] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when cpu reaches 102500 mC
[ 3.577042] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when cpu reaches 100500 mC
[ 3.577171] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 3.577180] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when gpu reaches 103000 mC
[ 3.577185] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when gpu reaches 101000 mC
[ 3.577330] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 3.577339] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when pll reaches 127000 mC
[ 3.577344] tegra_soctherm 700e2000.soctherm: throttrip: pll: missing hot temperature
[ 3.577553] tegra_soctherm 700e2000.soctherm: failed to register sensor: -19
[ 3.578416] tegra_aotag tegra-aotag: Registering sensor 0
[ 3.578473] tegra_aotag tegra-aotag: Invalid temp readout
[ 3.578498] tegra_aotag tegra-aotag: Invalid temp readout
[ 3.578514] tegra_aotag tegra-aotag: Bound to TZ : ID 0
[ 3.578523] tegra_aotag tegra-aotag: Probe done [SUCCESS]:0
[ 3.579462] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 3.579482] tegra_dfll_action dfll-cdev-cap: Tegra DFLL 'cap cooling device' registered
[ 3.579668] tegra_aotag tegra-aotag: Invalid temp readout
[ 3.579698] tegra_dfll_action dfll-cdev-floor: Tegra DFLL 'floor cooling device' registered
[ 3.580150] parse_throttle_dt_data: Num cap clks = 6
[ 3.580158] parse_throttle_dt_data: clk=cclk_g type=2
[ 3.580173] parse_throttle_dt_data: clk=gpu type=4
[ 3.580203] parse_throttle_dt_data: clk=cap.throttle.c2bus type=0
[ 3.580222] parse_throttle_dt_data: clk=cap.throttle.c3bus type=0
[ 3.580243] parse_throttle_dt_data: clk=cap.throttle.sclk type=0
[ 3.580246] parse_throttle_dt_data: clk=emc type=3
[ 3.580692] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 3.580791] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 3.580927] tegra_throttle_probe: probe successful. #cdevs=4
[ 3.581726] FAN dev name: pwm-fan
[ 3.581775] FAN:gpio request success.
[ 3.581850] pwm_fan_driver pwm-fan: cap state:7, cap pwm:255
[ 3.582157] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[ 3.582388] pwm_fan_driver pwm-fan: fan tach request irq success
[ 3.582397] pwm_fan_driver pwm-fan: tach period: 1000
[ 3.582484] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, state:2
[ 3.582488] pwm_fan_driver pwm-fan: index 1: pwm=80, rpm=1000, rru=2, rrd=2, state:2
[ 3.582492] pwm_fan_driver pwm-fan: index 2: pwm=120, rpm=2000, rru=1, rrd=1, state:2
[ 3.582496] pwm_fan_driver pwm-fan: index 3: pwm=160, rpm=3000, rru=1, rrd=1, state:2
[ 3.582499] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1, state:3
[ 3.582503] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1, state:3
[ 3.582506] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1, state:3
[ 3.582509] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1, state:4
[ 3.582513] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1, state:4
[ 3.582517] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1, state:4
[ 3.583170] tegra-wdt 60005100.watchdog: Tegra WDT enabled on probe. Timeout = 120 seconds.
[ 3.583548] tegra-wdt 60005100.watchdog: initialized (timeout = 120 sec, nowayout = 1)
[ 3.584483] device-mapper: uevent: version 1.0.3
[ 3.584974] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[ 3.590382] tegra210-cpufreq cpufreq: probe()...completed
[ 3.591078] sdhci: Secure Digital Host Controller Interface driver
[ 3.591079] sdhci: Copyright(c) Pierre Ossman
[ 3.591080] sdhci-pltfm: SDHCI platform and OF driver helper
[ 3.591560] sdhci-tegra sdhci-tegra.0: Got CD GPIO
[ 3.591919] sdhci-tegra sdhci-tegra.0: Client registration for eMC Successful
[ 3.592040] sdhci-tegra sdhci-tegra.0: wakeup init done, cdirq 300
[ 3.596156] tegra-se 70012000.se: tegra_se_probe: complete
[ 3.596686] hidraw: raw HID events driver (C) Jiri Kosina
[ 3.597811] usbcore: registered new interface driver usbhid
[ 3.597812] usbhid: USB HID core driver
[ 3.599927] tegra21x_actmon 6000c800.actmon: in actmon_register()...
[ 3.600207] tegra21x_actmon 6000c800.actmon: initialization Completed for the device mc_all
[ 3.601981] nvpmodel: initialized successfully
[ 3.602960] usbcore: registered new interface driver snd-usb-audio
[ 3.603022] No Device Node present for smmu client: snd-soc-dummy !!
[ 3.603026] platform snd-soc-dummy: No iommus property found in DT node, got swgids from fixup(101004000)
[ 3.603044] iommu: Adding device snd-soc-dummy to group 36
[ 3.613923] OPE platform probe
[ 3.614004] OPE platform probe successful
[ 3.614028] OPE platform probe
[ 3.614107] OPE platform probe successful
[ 3.628768] input: tegra-hda HDMI/DP,pcm=3 as /devices/70030000.hda/sound/card0/input0
[ 3.642434] mmc0: SDHCI controller on sdhci-tegra.0 [sdhci-tegra.0] using ADMA 64-bit with 64 bit addr
[ 3.652681] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[ 3.652809] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[ 3.652933] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[ 3.653065] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[ 3.653191] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[ 3.653313] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[ 3.653439] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[ 3.653562] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[ 3.653686] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[ 3.653809] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[ 3.666567] u32 classifier
[ 3.666568] Actions configured
[ 3.666637] Initializing XFRM netlink socket
[ 3.667375] NET: Registered protocol family 10
[ 3.668086] NET: Registered protocol family 17
[ 3.668096] NET: Registered protocol family 15
[ 3.668169] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 3.668217] Bluetooth: RFCOMM socket layer initialized
[ 3.668226] Bluetooth: RFCOMM ver 1.11
[ 3.668230] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 3.668235] Bluetooth: HIDP socket layer initialized
[ 3.668252] 9pnet: Installing 9P2000 support
[ 3.668290] Key type dns_resolver registered
[ 3.672501] Registered cp15_barrier emulation handler
[ 3.672508] Registered setend emulation handler
[ 3.673611] registered taskstats version 1
[ 3.674204] Adding domain ve2-pd to PM domain host1x-pd
[ 3.674472] Adding domain ve-pd to PM domain host1x-pd
[ 3.987385] mmc0: Applying tuning correction
[ 3.987398] mmc0: Tap value after applying correction 60
[ 3.987415] mmc0: hw tuning done ...
[ 3.987445] mmc0: new ultra high speed SDR104 SDXC card at address e624
[ 3.987836] mmcblk0: mmc0:e624 SN64G 59.5 GiB
[ 3.993868] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12
[ 4.517037] tegradc tegradc.0: blank - powerdown
[ 4.520089] hpd: state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[ 4.520092] hpd: switching from state 7 (Takeover from bootloader) to state 0 (Reset)
[ 4.520097] hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
[ 4.521184] isp 54600000.isp: initialized
[ 4.521996] isp 54680000.isp: initialized
[ 4.533769] clk_cbus_recalc_rate: no gbus parent
[ 4.533774] clk_cbus_round_rate: no gbus parent
[ 4.533775] clk_cbus_round_rate: no gbus parent
[ 4.533782] clk_cbus_recalc_rate: no gbus parent
[ 4.533885] clk_cbus_recalc_rate: no gbus parent
[ 4.533887] clk_cbus_round_rate: no gbus parent
[ 4.533889] clk_cbus_round_rate: no gbus parent
[ 4.533891] clk_cbus_recalc_rate: no gbus parent
[ 4.534569] tegra_dvfs: GPU-cap: registered
[ 4.534622] tegra dvfs: vdd-cpu: nominal 1168mV, offset 708000uV, step 19200uV, scaling enabled
[ 4.534624] tegra dvfs: vdd-core: nominal 1125mV, offset 600000uV, step 12500uV, scaling enabled
[ 4.534625] tegra dvfs: vdd-gpu: nominal 1068mV, offset 708000uV, step 10000uV, scaling enabled
[ 4.536795] tegra_dvfs: vdd-gpu-vts: registered
[ 4.537803] tegra_core_action core_dvfs_cdev_floor: Tegra CORE DVFS 'floor cooling device' registered
[ 4.538477] tegra_core_action core_dvfs_cdev_cap: Tegra CORE DVFS 'cap cooling device' registered
[ 4.538977] input: gpio-keys as /devices/gpio-keys/input/input1
[ 4.560832] extcon-disp-state extcon:disp-state: cable 47 state 0
[ 4.560833] Extcon AUX1(HDMI) disable
[ 4.571011] tegra_rtc 7000e000.rtc: setting system clock to 2000-01-01 01:00:27 UTC (946688427)
[ 4.571937] vi 54080000.vi: vi_probe: ++
[ 4.576246] vi 54080000.vi: initialized
[ 4.578866] vi 54080000.vi: subdev nvcsi--1 bound
[ 4.579090] mmcblk mmc0:e624: Card claimed for testing.
[ 4.580301] Disable partitions left on by BL
[ 4.580304] disb
[ 4.580350] bwmgr: missing cdev-type property
[ 4.580478] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 4.580483] DRAM derating cdev registered.
[ 4.581504] vdd-1v8: disabling
[ 4.581506] vdd-fan: disabling
[ 4.581507] vdd-usb-vbus: disabling
[ 4.581509] vdd-usb-vbus2: disabling
[ 4.581518] avdd-io-edp-1v05: disabling
[ 4.581520] vdd-usb-hub-en: disabling
[ 4.581683] ALSA device list:
[ 4.581685] #0: tegra-hda at 0x70038000 irq 83
[ 4.581687] #1: tegra-snd-t210ref-mobile-rt565x
[ 4.602218] tegradc tegradc.0: unblank
[ 4.639576] tegradc tegradc.0: nominal-pclk:181250000 parent:181248750 div:1.0 pclk:181248750 179437500~197562500
[ 4.639626] tegradc tegradc.0: hdmi: tmds rate:181250K prod-setting:prod_c_hdmi_150m_300m
[ 4.640621] tegradc tegradc.0: hdmi: get RGB quant from EDID.
[ 4.640626] tegradc tegradc.0: hdmi: get YCC quant from EDID.
[ 4.643893] extcon-disp-state extcon:disp-state: cable 47 state 1
[ 4.643894] Extcon AUX1(HDMI) enable
[ 4.644213] tegradc tegradc.0: sync windows ret = 250
[ 5.025001] tegradc tegradc.1: blank - powerdown
[ 5.031502] extcon-disp-state extcon:disp-state: cable 44 state 0 already set.
[ 5.031508] Extcon DP: HPD disabled
[ 5.031510] hpd: hpd_switch 0
[ 5.031512] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[ 5.031525] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[ 5.031529] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[ 5.076153] extcon-disp-state extcon:disp-state: cable 40 state 1
[ 5.076154] Extcon HDMI: HPD enabled
[ 5.076166] tegradc tegradc.0: hdmi: plugged
[ 5.590664] EXT4-fs (mmcblk0p1): 9 orphan inodes deleted
[ 5.597794] EXT4-fs (mmcblk0p1): recovery complete
[ 5.636026] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[ 5.645962] VFS: Mounted root (ext4 filesystem) on device 179:1.
[ 5.657465] devtmpfs: mounted
[ 5.665333] Freeing unused kernel memory: 8512K
[ 5.854339] systemd[1]: System time before build time, advancing clock.
[ 5.894418] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 5.912732] cgroup: cgroup2: unknown option "nsdelegate"
[ 5.935346] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[ 5.959529] systemd[1]: Detected architecture arm64.
[ 5.998884] systemd[1]: Set hostname to <clarence-jetson-nano>.
[ 6.088756] systemd[1]: File /lib/systemd/system/systemd-journald.service:36 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[ 6.108043] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[ 6.260540] random: systemd: uninitialized urandom read (16 bytes read)
[ 6.270979] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 6.285337] random: systemd: uninitialized urandom read (16 bytes read)
[ 6.294361] systemd[1]: Reached target User and Group Name Lookups.
[ 6.305419] random: systemd: uninitialized urandom read (16 bytes read)
[ 6.316381] systemd[1]: Created slice User and Session Slice.
[ 6.327821] systemd[1]: Created slice System Slice.
[ 6.337592] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 6.410657] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
[ 6.579857] nvgpu: 57000000.gpu gm20b_init_clk_setup_sw:1268 [INFO] GPCPLL initial settings: NA mode, M=1, N=34, P=3 (id = 1)
[ 6.867937] systemd-journald[1942]: Received request to flush runtime journal from PID 1
[ 7.552968] using random self ethernet address
[ 7.590312] using random host ethernet address
[ 7.842823] random: crng init done
[ 7.847864] random: 7 urandom warning(s) missed due to ratelimiting
[ 7.891023] Mass Storage Function, version: 2009/09/11
[ 7.891029] LUN: removable file: (no medium)
[ 7.899879] using random self ethernet address
[ 7.906033] using random host ethernet address
[ 7.919520] rndis0: HOST MAC ca:01:d7:da:eb:68
[ 7.919660] rndis0: MAC ca:01:d7:da:eb:69
[ 7.924462] usb0: HOST MAC ca:01:d7:da:eb:6a
[ 7.924553] usb0: MAC ca:01:d7:da:eb:6b
[ 7.924576] tegra-xudc-new 700d0000.xudc: exiting ELPG
[ 7.925138] tegra-xudc-new 700d0000.xudc: exiting ELPG done
[ 7.925154] tegra-xudc-new 700d0000.xudc: ep 0 (type: 0, dir: out) enabled
[ 7.925184] tegra-xudc-new 700d0000.xudc: entering ELPG
[ 7.925415] tegra-xudc-new 700d0000.xudc: entering ELPG done
[ 7.925427] tegra-xudc-new 700d0000.xudc: exiting ELPG
[ 7.926055] tegra-xudc-new 700d0000.xudc: exiting ELPG done
[ 7.926074] tegra-xudc-new 700d0000.xudc: entering ELPG
[ 7.926341] tegra-xudc-new 700d0000.xudc: entering ELPG done
[ 7.984182] tegra-xusb 70090000.xusb: cannot find firmware....retry after 1 second
[ 8.201448] l4tbr0: port 1(rndis0) entered blocking state
[ 8.201452] l4tbr0: port 1(rndis0) entered disabled state
[ 8.201881] device rndis0 entered promiscuous mode
[ 8.208489] IPv6: ADDRCONF(NETDEV_UP): rndis0: link is not ready
[ 8.215923] l4tbr0: port 2(usb0) entered blocking state
[ 8.215928] l4tbr0: port 2(usb0) entered disabled state
[ 8.217389] device usb0 entered promiscuous mode
[ 8.226892] IPv6: ADDRCONF(NETDEV_UP): usb0: link is not ready
[ 8.226900] l4tbr0: port 2(usb0) entered blocking state
[ 8.226903] l4tbr0: port 2(usb0) entered forwarding state
[ 8.255802] nvs_dsm nvs_dsm: dsm_probe
[ 8.255826] nvs_dsm nvs_dsm: dsm_remove
[ 8.255828] nvs_dsm nvs_dsm: dsm_probe done
[ 8.948827] l4tbr0: port 2(usb0) entered disabled state
[ 8.951111] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 8.952860] eth0: 0xffffff800a35e000, 00:04:4b:e3:fe:1f, IRQ 404
[ 9.006608] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 9.017221] tegra-xusb 70090000.xusb: Firmware timestamp: 2017-11-03 13:36:19 UTC, Version: 50.20 release
[ 9.017262] tegra-xusb 70090000.xusb: xHCI Host Controller
[ 9.017281] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 1
[ 9.018142] tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100 quirks 0x00050010
[ 9.018174] tegra-xusb 70090000.xusb: irq 61, io mem 0x70090000
[ 9.018332] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 9.018336] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 9.018339] usb usb1: Product: xHCI Host Controller
[ 9.018341] usb usb1: Manufacturer: Linux 4.9.140-tegra xhci-hcd
[ 9.018343] usb usb1: SerialNumber: 70090000.xusb
[ 9.018791] hub 1-0:1.0: USB hub found
[ 9.018820] hub 1-0:1.0: 5 ports detected
[ 9.019255] tegra-xusb 70090000.xusb: xHCI Host Controller
[ 9.019265] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 2
[ 9.019343] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 9.019418] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[ 9.019421] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 9.019424] usb usb2: Product: xHCI Host Controller
[ 9.019426] usb usb2: Manufacturer: Linux 4.9.140-tegra xhci-hcd
[ 9.019428] usb usb2: SerialNumber: 70090000.xusb
[ 9.019892] hub 2-0:1.0: USB hub found
[ 9.019995] hub 2-0:1.0: 4 ports detected
[ 9.122369] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 1
[ 9.122622] usb usb2: usb_suspend_both: status 0
[ 9.346294] usb 1-2: new high-speed USB device number 2 using tegra-xusb
[ 9.382821] usb 1-2: New USB device found, idVendor=0bda, idProduct=5411
[ 9.382828] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 9.382832] usb 1-2: Product: 4-Port USB 2.1 Hub
[ 9.382835] usb 1-2: Manufacturer: Generic
[ 9.384135] hub 1-2:1.0: USB hub found
[ 9.386329] hub 1-2:1.0: 4 ports detected
[ 9.491441] usb 2-1: new SuperSpeed USB device number 2 using tegra-xusb
[ 9.526955] usb 2-1: New USB device found, idVendor=0bda, idProduct=0411
[ 9.526961] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 9.526964] usb 2-1: Product: 4-Port USB 3.1 Hub
[ 9.526967] usb 2-1: Manufacturer: Generic
[ 9.531359] hub 2-1:1.0: USB hub found
[ 9.532771] hub 2-1:1.0: 4 ports detected
[ 9.674301] usb 1-2.1: new full-speed USB device number 3 using tegra-xusb
[ 9.690269] usb 2-1: usb_suspend_both: status 0
[ 9.690480] usb usb2: usb_suspend_both: status 0
[ 9.699814] usb 1-2.1: New USB device found, idVendor=046d, idProduct=c52b
[ 9.699821] usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 9.699824] usb 1-2.1: Product: USB Receiver
[ 9.699827] usb 1-2.1: Manufacturer: Logitech
[ 9.790292] usb 1-2.3: new low-speed USB device number 4 using tegra-xusb
[ 9.829427] usb 1-2.3: New USB device found, idVendor=04d9, idProduct=2011
[ 9.829434] usb 1-2.3: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[ 9.829438] usb 1-2.3: Product: USB Keyboard
[ 9.840936] input: USB Keyboard as /devices/70090000.xusb/usb1/1-2/1-2.3/1-2.3:1.0/0003:04D9:2011.0004/input/input2
[ 9.898883] hid-generic 0003:04D9:2011.0004: input,hidraw0: USB HID v1.10 Keyboard [USB Keyboard] on usb-70090000.xusb-2.3/input0
[ 9.922034] input: USB Keyboard as /devices/70090000.xusb/usb1/1-2/1-2.3/1-2.3:1.1/0003:04D9:2011.0005/input/input3
[ 9.978524] hid-generic 0003:04D9:2011.0005: input,hidraw1: USB HID v1.10 Device [USB Keyboard] on usb-70090000.xusb-2.3/input1
[ 10.188362] logitech-djreceiver 0003:046D:C52B.0003: hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-70090000.xusb-2.1/input2
[ 10.334162] input: Logitech MX Anywhere 2S as /devices/70090000.xusb/usb1/1-2/1-2.1/1-2.1:1.2/0003:046D:C52B.0003/0003:046D:406A.0006/input/input4
[ 10.335225] logitech-hidpp-device 0003:046D:406A.0006: input,hidraw3: USB HID v1.11 Keyboard [Logitech MX Anywhere 2S] on usb-70090000.xusb-2.1:1
[ 10.340157] input: Logitech M720 Triathlon as /devices/70090000.xusb/usb1/1-2/1-2.1/1-2.1:1.2/0003:046D:C52B.0003/0003:046D:405E.0007/input/input5
[ 10.340887] logitech-hidpp-device 0003:046D:405E.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech M720 Triathlon] on usb-70090000.xusb-2.1:2
[ 10.799737] tegradc tegradc.0: blank - powerdown
[ 10.860156] extcon-disp-state extcon:disp-state: cable 47 state 0
[ 10.860158] Extcon AUX1(HDMI) disable
[ 10.880317] tegradc tegradc.0: unblank
[ 10.892261] tegradc tegradc.0: nominal-pclk:181250000 parent:181248750 div:1.0 pclk:181248750 179437500~197562500
[ 10.892338] tegradc tegradc.0: hdmi: tmds rate:181250K prod-setting:prod_c_hdmi_150m_300m
[ 10.893358] tegradc tegradc.0: hdmi: get RGB quant from EDID.
[ 10.893364] tegradc tegradc.0: hdmi: get YCC quant from EDID.
[ 10.899499] extcon-disp-state extcon:disp-state: cable 47 state 1
[ 10.899502] Extcon AUX1(HDMI) enable
[ 10.907132] tegradc tegradc.0: unblank
[ 10.907141] tegradc tegradc.1: blank - powerdown
[ 11.675342] fuse init (API version 7.26)
[ 13.117825] r8168: eth0: link up
[ 13.117957] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 25.784994] tegradc tegradc.0: blank - powerdown
[ 25.849438] extcon-disp-state extcon:disp-state: cable 47 state 0
[ 25.849446] Extcon AUX1(HDMI) disable
[ 25.869702] tegradc tegradc.1: blank - powerdown
[ 26.017306] tegradc tegradc.0: blank - powerdown
[ 26.017327] tegradc tegradc.0: unblank
[ 26.023628] tegradc tegradc.0: nominal-pclk:181250000 parent:181248750 div:1.0 pclk:181248750 179437500~197562500
[ 26.023721] tegradc tegradc.0: hdmi: tmds rate:181250K prod-setting:prod_c_hdmi_150m_300m
[ 26.024741] tegradc tegradc.0: hdmi: get RGB quant from EDID.
[ 26.024748] tegradc tegradc.0: hdmi: get YCC quant from EDID.
[ 26.028106] extcon-disp-state extcon:disp-state: cable 47 state 1
[ 26.028108] Extcon AUX1(HDMI) enable
[ 26.035804] tegradc tegradc.0: unblank
[ 26.035813] tegradc tegradc.1: blank - powerdown
[ 31.700118] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 31.700130] Bluetooth: BNEP socket layer initialized
[ 32.032146] tegradc tegradc.0: unblank
[ 32.032156] tegradc tegradc.1: blank - powerdown
view raw dmesg.txt hosted with ❤ by GitHub
- lsusb (with keyboard and mouse attached):

~$ sudo lsusb -v
Bus 002 Device 002: ID 0bda:0411 Realtek Semiconductor Corp.
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 3.20
bDeviceClass 9 Hub
bDeviceSubClass 0 Unused
bDeviceProtocol 3
bMaxPacketSize0 9
idVendor 0x0bda Realtek Semiconductor Corp.
idProduct 0x0411
bcdDevice 1.20
iManufacturer 1 Generic
iProduct 2 4-Port USB 3.1 Hub
iSerial 0
bNumConfigurations 1
Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength 31
bNumInterfaces 1
bConfigurationValue 1
iConfiguration 4 USB3.0 Hub
bmAttributes 0xe0
Self Powered
Remote Wakeup
MaxPower 0mA
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 0
bAlternateSetting 0
bNumEndpoints 1
bInterfaceClass 9 Hub
bInterfaceSubClass 0 Unused
bInterfaceProtocol 0 Full speed (or root) hub
iInterface 5 Interrupt In Interface
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 19
Transfer Type Interrupt
Synch Type None
Usage Type Feedback
wMaxPacketSize 0x0002 1x 2 bytes
bInterval 8
bMaxBurst 0
Hub Descriptor:
bLength 12
bDescriptorType 42
nNbrPorts 4
wHubCharacteristic 0x0009
Per-port power switching
Per-port overcurrent protection
bPwrOn2PwrGood 50 * 2 milli seconds
bHubContrCurrent 8 milli Ampere
bHubDecLat 0.2 micro seconds
wHubDelay 3202 nano seconds
DeviceRemovable 0x00
Hub Port Status:
Port 1: 0000.02a0 lowspeed
Port 2: 0000.02a0 lowspeed
Port 3: 0000.02a0 lowspeed
Port 4: 0000.02a0 lowspeed
Binary Object Store Descriptor:
bLength 5
bDescriptorType 15
wTotalLength 42
bNumDeviceCaps 3
USB 2.0 Extension Device Capability:
bLength 7
bDescriptorType 16
bDevCapabilityType 2
bmAttributes 0x0000f41e
Link Power Management (LPM) Supported
SuperSpeed USB Device Capability:
bLength 10
bDescriptorType 16
bDevCapabilityType 3
bmAttributes 0x00
wSpeedsSupported 0x000e
Device can operate at Full Speed (12Mbps)
Device can operate at High Speed (480Mbps)
Device can operate at SuperSpeed (5Gbps)
bFunctionalitySupport 1
Lowest fully-functional device speed is Full Speed (12Mbps)
bU1DevExitLat 10 micro seconds
bU2DevExitLat 1023 micro seconds
Container ID Device Capability:
bLength 20
bDescriptorType 16
bDevCapabilityType 4
bReserved 0
ContainerID {e5cdb920-3970-11e0-a935-0002a5d5c51b}
Device Status: 0x0001
Self Powered
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 3.00
bDeviceClass 9 Hub
bDeviceSubClass 0 Unused
bDeviceProtocol 3
bMaxPacketSize0 9
idVendor 0x1d6b Linux Foundation
idProduct 0x0003 3.0 root hub
bcdDevice 4.09
iManufacturer 3 Linux 4.9.140-tegra xhci-hcd
iProduct 2 xHCI Host Controller
iSerial 1 70090000.xusb
bNumConfigurations 1
Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength 31
bNumInterfaces 1
bConfigurationValue 1
iConfiguration 0
bmAttributes 0xe0
Self Powered
Remote Wakeup
MaxPower 0mA
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 0
bAlternateSetting 0
bNumEndpoints 1
bInterfaceClass 9 Hub
bInterfaceSubClass 0 Unused
bInterfaceProtocol 0 Full speed (or root) hub
iInterface 0
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 0x0004 1x 4 bytes
bInterval 12
bMaxBurst 0
Hub Descriptor:
bLength 12
bDescriptorType 42
nNbrPorts 4
wHubCharacteristic 0x000a
No power switching (usb 1.0)
Per-port overcurrent protection
bPwrOn2PwrGood 10 * 2 milli seconds
bHubContrCurrent 0 milli Ampere
bHubDecLat 0.0 micro seconds
wHubDelay 0 nano seconds
DeviceRemovable 0x00
Hub Port Status:
Port 1: 0000.0263 5Gbps power suspend enable connect
Port 2: 0000.02a0 5Gbps power Rx.Detect
Port 3: 0000.02a0 5Gbps power Rx.Detect
Port 4: 0000.02a0 5Gbps power Rx.Detect
Binary Object Store Descriptor:
bLength 5
bDescriptorType 15
wTotalLength 15
bNumDeviceCaps 1
SuperSpeed USB Device Capability:
bLength 10
bDescriptorType 16
bDevCapabilityType 3
bmAttributes 0x00
wSpeedsSupported 0x0008
Device can operate at SuperSpeed (5Gbps)
bFunctionalitySupport 3
Lowest fully-functional device speed is SuperSpeed (5Gbps)
bU1DevExitLat 0 micro seconds
bU2DevExitLat 0 micro seconds
Device Status: 0x0003
Self Powered
Remote Wakeup Enabled
Bus 001 Device 004: ID 04d9:2011 Holtek Semiconductor, Inc. Keyboard [Diatec Filco Majestouch 1]
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 1.10
bDeviceClass 0 (Defined at Interface level)
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 8
idVendor 0x04d9 Holtek Semiconductor, Inc.
idProduct 0x2011 Keyboard [Diatec Filco Majestouch 1]
bcdDevice 3.90
iManufacturer 0
iProduct 2 USB Keyboard
iSerial 0
bNumConfigurations 1
Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength 59
bNumInterfaces 2
bConfigurationValue 1
iConfiguration 0
bmAttributes 0xa0
(Bus Powered)
Remote Wakeup
MaxPower 100mA
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 0
bAlternateSetting 0
bNumEndpoints 1
bInterfaceClass 3 Human Interface Device
bInterfaceSubClass 1 Boot Interface Subclass
bInterfaceProtocol 1 Keyboard
iInterface 0
HID Device Descriptor:
bLength 9
bDescriptorType 33
bcdHID 1.10
bCountryCode 0 Not supported
bNumDescriptors 1
bDescriptorType 34 Report
wDescriptorLength 62
Report Descriptors:
** UNAVAILABLE **
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 0x0008 1x 8 bytes
bInterval 10
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 1
bAlternateSetting 0
bNumEndpoints 1
bInterfaceClass 3 Human Interface Device
bInterfaceSubClass 1 Boot Interface Subclass
bInterfaceProtocol 2 Mouse
iInterface 0
HID Device Descriptor:
bLength 9
bDescriptorType 33
bcdHID 1.10
bCountryCode 0 Not supported
bNumDescriptors 1
bDescriptorType 34 Report
wDescriptorLength 166
Report Descriptors:
** UNAVAILABLE **
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x82 EP 2 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 0x0008 1x 8 bytes
bInterval 10
Device Status: 0x0000
(Bus Powered)
Bus 001 Device 003: ID 046d:c52b Logitech, Inc. Unifying Receiver
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 2.00
bDeviceClass 0 (Defined at Interface level)
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 32
idVendor 0x046d Logitech, Inc.
idProduct 0xc52b Unifying Receiver
bcdDevice 24.07
iManufacturer 1 Logitech
iProduct 2 USB Receiver
iSerial 0
bNumConfigurations 1
Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength 84
bNumInterfaces 3
bConfigurationValue 1
iConfiguration 4 RQR24.07_B0030
bmAttributes 0xa0
(Bus Powered)
Remote Wakeup
MaxPower 98mA
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 0
bAlternateSetting 0
bNumEndpoints 1
bInterfaceClass 3 Human Interface Device
bInterfaceSubClass 1 Boot Interface Subclass
bInterfaceProtocol 1 Keyboard
iInterface 0
HID Device Descriptor:
bLength 9
bDescriptorType 33
bcdHID 1.11
bCountryCode 0 Not supported
bNumDescriptors 1
bDescriptorType 34 Report
wDescriptorLength 59
Report Descriptors:
** UNAVAILABLE **
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 0x0008 1x 8 bytes
bInterval 8
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 1
bAlternateSetting 0
bNumEndpoints 1
bInterfaceClass 3 Human Interface Device
bInterfaceSubClass 1 Boot Interface Subclass
bInterfaceProtocol 2 Mouse
iInterface 0
HID Device Descriptor:
bLength 9
bDescriptorType 33
bcdHID 1.11
bCountryCode 0 Not supported
bNumDescriptors 1
bDescriptorType 34 Report
wDescriptorLength 148
Report Descriptors:
** UNAVAILABLE **
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x82 EP 2 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 0x0008 1x 8 bytes
bInterval 2
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 2
bAlternateSetting 0
bNumEndpoints 1
bInterfaceClass 3 Human Interface Device
bInterfaceSubClass 0 No Subclass
bInterfaceProtocol 0 None
iInterface 0
HID Device Descriptor:
bLength 9
bDescriptorType 33
bcdHID 1.11
bCountryCode 0 Not supported
bNumDescriptors 1
bDescriptorType 34 Report
wDescriptorLength 98
Report Descriptors:
** UNAVAILABLE **
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x83 EP 3 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 0x0020 1x 32 bytes
bInterval 2
Device Status: 0x0000
(Bus Powered)
Bus 001 Device 002: ID 0bda:5411 Realtek Semiconductor Corp.
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 2.10
bDeviceClass 9 Hub
bDeviceSubClass 0 Unused
bDeviceProtocol 2 TT per port
bMaxPacketSize0 64
idVendor 0x0bda Realtek Semiconductor Corp.
idProduct 0x5411
bcdDevice 1.20
iManufacturer 1 Generic
iProduct 2 4-Port USB 2.1 Hub
iSerial 0
bNumConfigurations 1
Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength 41
bNumInterfaces 1
bConfigurationValue 1
iConfiguration 0
bmAttributes 0xe0
Self Powered
Remote Wakeup
MaxPower 0mA
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 0
bAlternateSetting 0
bNumEndpoints 1
bInterfaceClass 9 Hub
bInterfaceSubClass 0 Unused
bInterfaceProtocol 1 Single TT
iInterface 0
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 0x0001 1x 1 bytes
bInterval 12
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 0
bAlternateSetting 1
bNumEndpoints 1
bInterfaceClass 9 Hub
bInterfaceSubClass 0 Unused
bInterfaceProtocol 2 TT per port
iInterface 0
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 0x0001 1x 1 bytes
bInterval 12
Hub Descriptor:
bLength 9
bDescriptorType 41
nNbrPorts 4
wHubCharacteristic 0x00a9
Per-port power switching
Per-port overcurrent protection
TT think time 16 FS bits
Port indicators
bPwrOn2PwrGood 50 * 2 milli seconds
bHubContrCurrent 100 milli Ampere
DeviceRemovable 0x00
PortPwrCtrlMask 0xff
Hub Port Status:
Port 1: 0000.0103 power enable connect
Port 2: 0000.0100 power
Port 3: 0000.0303 lowspeed power enable connect
Port 4: 0000.0100 power
Binary Object Store Descriptor:
bLength 5
bDescriptorType 15
wTotalLength 42
bNumDeviceCaps 3
USB 2.0 Extension Device Capability:
bLength 7
bDescriptorType 16
bDevCapabilityType 2
bmAttributes 0x0000f41e
Link Power Management (LPM) Supported
SuperSpeed USB Device Capability:
bLength 10
bDescriptorType 16
bDevCapabilityType 3
bmAttributes 0x00
wSpeedsSupported 0x000e
Device can operate at Full Speed (12Mbps)
Device can operate at High Speed (480Mbps)
Device can operate at SuperSpeed (5Gbps)
bFunctionalitySupport 1
Lowest fully-functional device speed is Full Speed (12Mbps)
bU1DevExitLat 10 micro seconds
bU2DevExitLat 1023 micro seconds
Container ID Device Capability:
bLength 20
bDescriptorType 16
bDevCapabilityType 4
bReserved 0
ContainerID {e5cdb920-3970-11e0-a935-0002a5d5c51b}
Device Status: 0x0001
Self Powered
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 2.00
bDeviceClass 9 Hub
bDeviceSubClass 0 Unused
bDeviceProtocol 1 Single TT
bMaxPacketSize0 64
idVendor 0x1d6b Linux Foundation
idProduct 0x0002 2.0 root hub
bcdDevice 4.09
iManufacturer 3 Linux 4.9.140-tegra xhci-hcd
iProduct 2 xHCI Host Controller
iSerial 1 70090000.xusb
bNumConfigurations 1
Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength 25
bNumInterfaces 1
bConfigurationValue 1
iConfiguration 0
bmAttributes 0xe0
Self Powered
Remote Wakeup
MaxPower 0mA
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 0
bAlternateSetting 0
bNumEndpoints 1
bInterfaceClass 9 Hub
bInterfaceSubClass 0 Unused
bInterfaceProtocol 0 Full speed (or root) hub
iInterface 0
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 3
Transfer Type Interrupt
Synch Type None
Usage Type Data
wMaxPacketSize 0x0004 1x 4 bytes
bInterval 12
Hub Descriptor:
bLength 9
bDescriptorType 41
nNbrPorts 5
wHubCharacteristic 0x000a
No power switching (usb 1.0)
Per-port overcurrent protection
TT think time 8 FS bits
bPwrOn2PwrGood 10 * 2 milli seconds
bHubContrCurrent 0 milli Ampere
DeviceRemovable 0x00
PortPwrCtrlMask 0xff
Hub Port Status:
Port 1: 0000.0100 power
Port 2: 0000.0503 highspeed power enable connect
Port 3: 0000.0100 power
Port 4: 0000.0100 power
Port 5: 0000.0100 power
Device Status: 0x0003
Self Powered
Remote Wakeup Enabled
view raw lsusb.txt hosted with ❤ by GitHub
- first successful login:


3 comments:

penn said...

Hi Clarence,

Could you run your imx219 camera successfully? I see from you dmesg we have the same error.

Regards,
Di

Clarence said...

Hi Di. I don't have any camera connected to the board.

Anonymous said...

A USB charger is not a power supply.