Jetson Nano Pytorch returns CUDA False

I have a problem, torch.cuda.is_available() returns False. I followed everything in https://developer.nvidia.com/embedded/learn/get-started-jetson-nano-devkit . I also followed all the advice for installing torch and torchvision given in: https://forums.developer.nvidia.com/t/pytorch-for-jetson/72048
CUDA is definitely installed, and all the relevant environment variables placed in $PATH and $LD_LIBRARY_PATH.

Still, when I do:
import torch
torch.cuda.is_available()

False

Versions:

Python 3.6.9
JetPack 4.6.1
CUDA 10.2
torch 1.10.0
torchvision 0.11.1

Hi @js95, what’s the URL of the PyTorch wheel that you downloaded/installed? I would try removing PyTorch and torchvision, and starting fresh. Install one of the PyTorch wheels from that PyTorch for Jetson thread first, and make sure it detects GPU before proceeding with torchvision.

If you continue having issues, you can use the prebuilt l4t-pytorch container images, which come with PyTorch and torchvision pre-installed:

This is the wheel I used:

https://nvidia.box.com/shared/static/fjtbno0vpo676a25cgvuqc1wty0fkkg6.whl

I tried removing torch and torchvision and installing it again, I even tried installing torch 1.9.0, but to no avail. I tried checking for CUDA even before installing torchvision and it always returns False.

Okay so I tried installing the prebuilt l4t-pytorch container image ( l4t-pytorch:r32.7.1-pth1.10-py3). However when I type:

sudo docker pull nvcr.io/nvidia/l4t-pytorch:r32.7.1-pth1.10-py3

I get the following error:

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docke r daemon running?

Then I type journalctl -xe to find out more and I get:

Job for docker.service failed because the control process exited with error code.
See "systemctl status docker.service" and "journalctl -xe" for details.
robotika@jetson:~$ ^C
robotika@jetson:~$ journalctl -xe
-- The start-up result is RESULT.
јул 28 14:19:04 jetson systemd[17330]: Starting Exit the Session...
-- Subject: Unit UNIT has begun start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
--
-- Unit UNIT has begun starting up.
јул 28 14:19:04 jetson systemd[17330]: Received SIGRTMIN+24 from PID 17345 (kill
јул 28 14:19:04 jetson systemd[1]: Stopped User Manager for UID 120.
-- Subject: Unit [email protected] has finished shutting down
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
--
-- Unit [email protected] has finished shutting down.
јул 28 14:19:04 jetson systemd[1]: Removed slice User Slice of gdm.
-- Subject: Unit user-120.slice has finished shutting down
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
--
-- Unit user-120.slice has finished shutting down.
јул 28 14:19:04 jetson gdm3[5632]: Child process -17342 was already dead.
јул 28 14:19:04 jetson gdm3[5632]: Child process 17325 was already dead.
јул 28 14:19:04 jetson gdm3[5632]: Unable to kill session worker process

I am really stuck and do not know what to do anymore and would really appreciate some help.

@js95 I’m wondering if your Nano has docker and the NVIDIA container runtime setup (it should have come pre-installed on the SD card image that you flashed). That also makes me wonder if you have CUDA installed and functioning on your SD card, too. Can you try running this:

cd /usr/local/cuda/samples/1_Utilities/deviceQuery
sudo make
./deviceQuery

That should let you know if your CUDA drivers are functioning or not.

(moving this post to Jetson Nano forum)

okay so this is what I get:

robotika@jetson:~$ cd /usr/local/cuda/samples/1_Utilities/deviceQuery
robotika@jetson:/usr/local/cuda/samples/1_Utilities/deviceQuery$ sudo make
[sudo] password for robotika:
/usr/local/cuda-10.2/bin/nvcc -ccbin g++ -I../../common/inc  -m64    -gencode arch=compute_30,code=sm_30 -gencode arch=compute_32,code=sm_32 -gencode arch=compute_53,code=sm_53 -gencode arch=compute_61,code=sm_61 -gencode arch=compute_62,code=sm_62 -gencode arch=compute_70,code=sm_70 -gencode arch=compute_72,code=sm_72 -gencode arch=compute_75,code=sm_75 -gencode arch=compute_75,code=compute_75 -o deviceQuery.o -c deviceQuery.cpp
/usr/local/cuda-10.2/bin/nvcc -ccbin g++   -m64      -gencode arch=compute_30,code=sm_30 -gencode arch=compute_32,code=sm_32 -gencode arch=compute_53,code=sm_53 -gencode arch=compute_61,code=sm_61 -gencode arch=compute_62,code=sm_62 -gencode arch=compute_70,code=sm_70 -gencode arch=compute_72,code=sm_72 -gencode arch=compute_75,code=sm_75 -gencode arch=compute_75,code=compute_75 -o deviceQuery deviceQuery.o
mkdir -p ../../bin/aarch64/linux/release
cp deviceQuery ../../bin/aarch64/linux/release
robotika@jetson:/usr/local/cuda/samples/1_Utilities/deviceQuery$ ./deviceQuery
./deviceQuery Starting...

 CUDA Device Query (Runtime API) version (CUDART static linking)

cudaGetDeviceCount returned 100
-> no CUDA-capable device is detected
Result = FAIL
robotika@jetson:/usr/local/cuda/samples/1_Utilities/deviceQuery$

But I installed the official SD image for Nano that I found following Nvidia’s Getting Started with Jetson Nano Development Kit link, and downloaded this:

jetson-nano-jp461-sd-card-image.zip

@js95 are you using Jetson Nano 4GB or Jetson Nano 2GB? I’d reflash your SD card with a fresh install of JetPack and check deviceQuery from the beginning to make sure that your GPU is working:

I have a 4GB Development Kit. I downloaded the image in your previous link, I booted Jetson, and and as soon as the system was running the first thing I did was to check deviceQuery. I get the same thing:

robotika@nano:~$ cd /usr/local/cuda/samples/1_Utilities/deviceQuery
robotika@nano:/usr/local/cuda/samples/1_Utilities/deviceQuery$ sudo make
[sudo] password for robotika:
/usr/local/cuda-10.2/bin/nvcc -ccbin g++ -I../../common/inc  -m64    -gencode arch=compute_30,code=sm_30 -gencode arch=compute_32,code=sm_32 -gencode arch=compute_53,code=sm_53 -gencode arch=compute_61,code=sm_61 -gencode arch=compute_62,code=sm_62 -gencode arch=compute_70,code=sm_70 -gencode arch=compute_72,code=sm_72 -gencode arch=compute_75,code=sm_75 -gencode arch=compute_75,code=compute_75 -o deviceQuery.o -c deviceQuery.cpp
/usr/local/cuda-10.2/bin/nvcc -ccbin g++   -m64      -gencode arch=compute_30,code=sm_30 -gencode arch=compute_32,code=sm_32 -gencode arch=compute_53,code=sm_53 -gencode arch=compute_61,code=sm_61 -gencode arch=compute_62,code=sm_62 -gencode arch=compute_70,code=sm_70 -gencode arch=compute_72,code=sm_72 -gencode arch=compute_75,code=sm_75 -gencode arch=compute_75,code=compute_75 -o deviceQuery deviceQuery.o
mkdir -p ../../bin/aarch64/linux/release
cp deviceQuery ../../bin/aarch64/linux/release
robotika@nano:/usr/local/cuda/samples/1_Utilities/deviceQuery$ ./deviceQuery
./deviceQuery Starting...

 CUDA Device Query (Runtime API) version (CUDART static linking)

cudaGetDeviceCount returned 100
-> no CUDA-capable device is detected
Result = FAIL
robotika@nano:/usr/local/cuda/samples/1_Utilities/deviceQuery$

@js95 hmm that’s odd, is there any relevant dmesg kernel log output that might indicate some system or GPU errors?

this is what sudo dmesg returns:

robotika@nano:~$ sudo dmesg
[sudo] password for robotika:
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.299-tegra (buildbrain@mobile-u64-5333-d8000) (g                                                                                                             cc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065                                                                                                             c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #1 SMP PREEMPT Tue Nov 22 09:24:39 P                                                                                                             ST 2022
[    0.000000] Boot CPU: AArch64 Processor [411fd071]
[    0.000000] OF: fdt:memory scan node memory@80000000, reg size 32,
[    0.000000] OF: fdt: - 80000000 ,  7ee00000
[    0.000000] OF: fdt: - 100000000 ,  7f200000
[    0.000000] earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    0.000000] OF: reserved mem: initialized node vpr-carveout, compatible id nv                                                                                                             idia,vpr-carveout
[    0.000000] OF: reserved mem: initialized node iram-carveout, compatible id n                                                                                                             vidia,iram-carveout
[    0.000000] OF: reserved mem: initialized node ramoops_carveout, compatible i                                                                                                             d 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 24 pages/cpu s57624 r8192 d32488 u98304
[    0.000000] pcpu-alloc: s57624 r8192 d32488 u98304 alloc=24*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 pag                                                                                                             es: 1023544
[    0.000000] Kernel command line: tegraid=21.1.2.0.0 ddr_die=4096M@2048M secti                                                                                                             on=512M memtype=0 vpr_resize usb_port_owner_info=0 lane_owner_info=0 emc_max_dvf                                                                                                             s=0 touch_id=0@63 video=tegrafb no_console_suspend=1 console=ttyS0,115200n8 debu                                                                                                             g_uartport=lsport,4 earlyprintk=uart8250-32bit,0x70006000 maxcpus=4 usbcore.old_                                                                                                             scheme_first=1 lp0_vec=0x1000@0xff780000 core_edp_mv=1125 core_edp_ma=4000 gpt                                                                                                               earlycon=uart8250,mmio32,0x70006000  root=/dev/mmcblk0p1 rw rootwait rootfstype=                                                                                                             ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 sdhci_tegra.e                                                                                                             n_boot_part_access=1 quiet root=/dev/sda1 rw rootwait rootfstype=ext4 console=tt                                                                                                             yS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 sdhci_tegra.en_boot_part_acc                                                                                                             ess=1
[    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: 29804(90%)
[    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: 3568328K/4159488K available (15422K kernel code, 2970K rw                                                                                                             data, 6712K rodata, 8640K init, 614K bss, 116024K reserved, 475136K cma-reserved                                                                                                             )
[    0.000000] Virtual kernel memory layout:
[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 M                                                                                                             B)
[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 G                                                                                                             B)
[    0.000000]       .text : 0xffffff8008080000 - 0xffffff8008f90000   ( 15424 K                                                                                                             B)
[    0.000000]     .rodata : 0xffffff8008f90000 - 0xffffff8009630000   (  6784 K                                                                                                             B)
[    0.000000]       .init : 0xffffff8009630000 - 0xffffff8009ea0000   (  8640 K                                                                                                             B)
[    0.000000]       .data : 0xffffff8009ea0000 - 0xffffff800a186808   (  2971 K                                                                                                             B)
[    0.000000]        .bss : 0xffffff800a186808 - 0xffffff800a22032c   (   615 K                                                                                                             B)
[    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 K                                                                                                             B)
[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 M                                                                                                             B)
[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 G                                                                                                             B maximum)
[    0.000000]               0xffffffbf00000000 - 0xffffffbf03fc8000   (    63 M                                                                                                             B actual)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc0ff200000   (  4082 M                                                                                                             B)
[    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 /inte                                                                                                             rrupt-controller
[    0.000000] t210 clock and reset probe
[    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 (ph                                                                                                             ys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles:                                                                                                              0x46d987e47, max_idle_ns: 440795202767 ns
[    0.000006] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 43980                                                                                                             46511078ns
[    0.001663] Console: colour dummy device 80x25
[    0.001672] console [tty0] enabled
[    0.001678] bootconsole [uart8250] disabled
[    0.001698] kmemleak: Kernel memory leak detector disabled
[    0.001717] Calibrating delay loop (skipped), value calculated using timer fr                                                                                                             equency.. 38.40 BogoMIPS (lpj=76800)
[    0.001728] pid_max: default: 32768 minimum: 301
[    0.002175] Security Framework initialized
[    0.002394] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.002402] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.003501] ftrace: allocating 47250 entries in 185 pages
[    0.172294] sched-energy: CPU device node has no sched-energy-costs
[    0.172329] ASID allocator initialised with 65536 entries
[    0.211785] tegra-id: chipid=22117.
[    0.211797] tegra-id: opt_subrevision=0.
[    0.211815] Tegra Speedo/IDDQ fuse revision 4
[    0.211820] Tegra: CPU Speedo ID 9, SoC Speedo ID 0, GPU Speedo ID 2
[    0.211825] Tegra: CPU Process ID 0, SoC Process ID 0, GPU Process ID 0
[    0.211831] Tegra: CPU Speedo Value 2029, SoC Speedo Value 1916, GPU Speedo V                                                                                                             alue 2015
[    0.211836] Tegra: CPU IDDQ Value 1496, SoC IDDQ Value 1716, GPU IDDQ Value 2                                                                                                             025
[    0.211854] Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 0
[    0.211870] 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-0002-p3449-0000-b00.dts
[    0.211878] DTB Build time: Nov 22 2022 09:26:48
[    0.261069] CPU1: Booted secondary processor [411fd071]
[    0.292983] CPU2: Booted secondary processor [411fd071]
[    0.324964] CPU3: Booted secondary processor [411fd071]
[    0.325041] Brought up 4 CPUs
[    0.325047] SMP: Total of 4 processors activated.
[    0.325055] CPU features: detected feature: 32-bit EL0 Support
[    0.325319] CPU: All CPU(s) started at EL2
[    0.325336] alternatives: patching kernel code
[    0.333483] devtmpfs: initialized
[    0.370067] Initilizing CustomIPI irq domain
[    0.370379] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, ma                                                                                                             x_idle_ns: 7645041785100000 ns
[    0.370402] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.380906] pinctrl core: initialized pinctrl subsystem
[    0.381554] OS set in device tree is not L4T.
[    0.381962] regulator-dummy: no parameters
[    0.382209] Initializing plugin-manager
[    0.382361] Plugin module not found
[    0.382554] node /plugin-manager/fragement@0 match with board >=3448-0002-100
[    0.383062] node /plugin-manager/fragment@1 match with board >=3448-0002-101
[    0.383482] node /plugin-manager/fragment@3 match with board >=3448-0002-100
[    0.384202] node /plugin-manager/fragement@7 match with odm-data enable-pmic-                                                                                                             wdt
[    0.384412] node /plugin-manager/fragement@8 match with odm-data enable-pmic-                                                                                                             wdt
[    0.385019] node /plugin-manager/fragement@13 match with board >=3448-0002-30                                                                                                             0
[    0.388660] NET: Registered protocol family 16
[    0.389983] pstore: using zlib compression
[    0.390026] console [pstore-1] enabled
[    0.390030] pstore: Registered ramoops as persistent store backend
[    0.390036] ramoops: attached 0x200000@0xb0000000, ecc: 0/0
[    0.405092] cpuidle: using governor menu
[    0.409107] tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
[    0.410849] vdso: 2 pages (1 code @ ffffff8008f97000, 1 data @ ffffff8009ea40                                                                                                             00)
[    0.410871] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.413466] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomi                                                                                                             c allocations
[    0.415787] Serial: AMBA PL011 UART driver
[    0.416294] tegra_powergate_init: DONE
[    0.416310] 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-0002-p3449-0000-b00.dts
[    0.416317] DTB Build time: Nov 22 2022 09:26:48
[    0.418322] Tegra reboot handler registered.
[    0.422844] iommu: Adding device tegra-carveouts to group 0
[    0.422974] platform tegra-carveouts: domain=ffffffc0f9b1ae58 allocates as[0]                                                                                                             =ffffffc0f94280a8
[    0.423330] iommu: Adding device smmu_test to group 1
[    0.423376] platform smmu_test: domain=ffffffc0f9b230d8 allocates as[0]=fffff                                                                                                             fc0f9428110
[    0.424180] mc: mapped MMIO address: 0xffffff8008041000 -> 0x70019000
[    0.424241] mc: mapped MMIO address: 0xffffff8008067000 -> 0x7001c000
[    0.424295] mc: mapped MMIO address: 0xffffff800807b000 -> 0x7001d000
[    0.424304] nv-tegra-mc 70019000.mc: No mssnvlink node
[    0.424323] mc-err: mcerr ops are set to t21x
[    0.434968] iommu: Adding device 70090000.xusb to group 2
[    0.435247] iommu: Adding device 70006000.serial to group 3
[    0.435297] platform 70006000.serial: domain=ffffffc0f94a2798 allocates as[0]                                                                                                             =ffffffc0f9428178
[    0.435725] iommu: Adding device 70006040.serial to group 4
[    0.435988] iommu: Adding device 70006200.serial to group 5
[    0.436167] iommu: Adding device sound to group 6
[    0.436217] platform sound: domain=ffffffc0f94a2cd8 allocates as[0]=ffffffc0f                                                                                                             94281e0
[    0.436789] iommu: Adding device 7000d400.spi to group 7
[    0.437125] iommu: Adding device 7000d600.spi to group 8
[    0.437463] iommu: Adding device 50000000.host1x to group 9
[    0.437734] iommu: Adding device 54080000.vi to group 10
[    0.438133] iommu: Adding device 54600000.isp to group 11
[    0.438388] iommu: Adding device 54680000.isp to group 12
[    0.438656] iommu: Adding device tegradc.0 to group 13
[    0.438705] platform tegradc.0: domain=ffffffc0f94c3a98 allocates as[0]=fffff                                                                                                             fc0f9428248
[    0.439232] platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
[    0.439563] iommu: Adding device tegradc.1 to group 14
[    0.439615] platform tegradc.1: domain=ffffffc0f94c3cd8 allocates as[0]=fffff                                                                                                             fc0f94282b0
[    0.440111] platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
[    0.440377] iommu: Adding device 54340000.vic to group 15
[    0.440586] iommu: Adding device 544c0000.nvenc to group 16
[    0.440780] iommu: Adding device 54500000.tsec to group 17
[    0.441006] iommu: Adding device 54100000.tsecb to group 18
[    0.441217] iommu: Adding device 54480000.nvdec to group 19
[    0.441409] iommu: Adding device 54380000.nvjpg to group 20
[    0.442439] iommu: Adding device 546c0000.i2c to group 21
[    0.442769] iommu: Adding device 57000000.gpu to group 22
[    0.442842] platform 57000000.gpu: domain=ffffffc0f9506cd8 allocates as[0]=ff                                                                                                             ffffc0f9428318
[    0.442882] platform 57000000.gpu: domain=ffffffc0f9506cd8 allocates as[1]=ff                                                                                                             ffffc0f9428380
[    0.442916] platform 57000000.gpu: domain=ffffffc0f9506cd8 allocates as[2]=ff                                                                                                             ffffc0f94283e8
[    0.442948] platform 57000000.gpu: domain=ffffffc0f9506cd8 allocates as[3]=ff                                                                                                             ffffc0f9428450
[    0.443802] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency t                                                                                                             hermal reset disabled.
[    0.443813] tegra-pmc 7000e400.pmc: scratch reg offset dts data not present
[    0.443826] tegra-pmc: ### PMC reset source: TEGRA_POWER_ON_RESET
[    0.443831] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_WARM
[    0.443835] tegra-pmc: ### PMC reset status reg: 0x0
[    0.493271] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registere                                                                                                             d
[    0.493277] tegra-pmc: Clear bootloader IO dpd settings
[    0.493299] tegra-pmc 7000e400.pmc: IO padctrl driver initialized
[    0.493370] tegra-pmc 7000e400.pmc: PMC: Successfully configure bootrom reset                                                                                                              commands
[    0.493678] iommu: Adding device 70012000.se to group 23
[    0.494267] iommu: Adding device 1003000.pcie to group 24
[    0.494352] platform 1003000.pcie: domain=ffffffc0f9afe9d8 allocates as[0]=ff                                                                                                             ffffc0f94284b8
[    0.494780] iommu: Adding device 7000c000.i2c to group 25
[    0.495055] iommu: Adding device 7000c400.i2c to group 26
[    0.495310] iommu: Adding device 7000c500.i2c to group 27
[    0.495572] iommu: Adding device 7000c700.i2c to group 28
[    0.495862] iommu: Adding device 7000d000.i2c to group 29
[    0.496127] iommu: Adding device 7000d100.i2c to group 30
[    0.496405] iommu: Adding device sdhci-tegra.3 to group 31
[    0.496452] platform sdhci-tegra.3: domain=ffffffc0f9574558 allocates as[0]=f                                                                                                             fffffc0f9428520
[    0.497323] iommu: Adding device 700d0000.xudc to group 32
[    0.500559] vdd-ac-bat: 5000 mV
[    0.500912] vdd-5v0-sys: 5000 mV
[    0.501662] vdd-5v0-hdmi: 5000 mV
[    0.502114] vdd-5v0-hdmi: supplied by vdd-5v0-sys
[    0.502369] vdd-1v8-sys: 1800 mV
[    0.502749] vdd-fan: 5000 mV
[    0.502968] vdd-fan: supplied by vdd-5v0-sys
[    0.503231] vdd-usb-vbus: 5000 mV
[    0.503454] vdd-usb-vbus: supplied by vdd-5v0-sys
[    0.503796] vdd-usb-vbus2: 5000 mV
[    0.533855] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.536012] gpio gpiochip0: gpio-line-names specifies 240 line names but ther                                                                                                             e are 256 lines on the chip
[    0.537435] GPIO line 6 (system-suspend-gpio) hogged as output/high
[    0.537466] GPIO line 151 (camera-control-output-low) hogged as output/low
[    0.537485] GPIO line 152 (camera-control-output-low) hogged as output/low
[    0.538068] gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip                                                                                                             0 (tegra-gpio)
[    0.546160] eventlib_kernel: keventlib is initialized, test id: 0
[    0.546505] SCSI subsystem initialized
[    0.546718] libata version 3.00 loaded.
[    0.547035] usbcore: registered new interface driver usbfs
[    0.547089] usbcore: registered new interface driver hub
[    0.547133] usbcore: registered new device driver usb
[    0.551384] max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
[    0.556352] vdd-core: 600 <--> 1162 mV at 1125 mV
[    0.557272] random: fast init done
[    0.557392] vdd-ddr-1v1: Bringing 1125000uV into 1150000-1150000uV
[    0.560381] vdd-ddr-1v1: 1150 mV
[    0.564241] vdd-pre-reg-1v35: 1350 mV
[    0.568236] vdd-1v8: 1800 mV
[    0.572245] avdd-sys-1v2: 1200 mV
[    0.576236] vdd-pex-1v0: 1050 mV
[    0.576850] vddio-sdmmc-ap: 1800 <--> 3300 mV at 3300 mV
[    0.577388] max77620-ldo3: at 3100 mV
[    0.580247] vdd-rtc: 850 <--> 1100 mV at 1000 mV
[    0.580795] max77620-ldo5: at 3100 mV
[    0.584242] vddio-sdmmc3-ap: 1800 <--> 3300 mV at 2800 mV
[    0.588241] avdd-1v05-pll: 1050 mV
[    0.592237] avdd-io-hdmi-dp: 1050 mV
[    0.594937] GPIO line 505 (spmic-default-output-high) hogged as output/high
[    0.595226] gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpioch                                                                                                             ip1 (max77620-gpio)
[    0.595496] max77620 4-003c: max77620 probe successful
[    0.598231] media: Linux media interface: v0.10
[    0.598283] Linux video capture interface: v2.00
[    0.599247] pps_core: LinuxPPS API ver. 1 registered
[    0.599253] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giome                                                                                                             tti <[email protected]>
[    0.599279] PTP clock support registered
[    0.602546] tegra210-emc 7001b000.external-memory-controller: validated EMC D                                                                                                             FS table
[    0.603336] Advanced Linux Sound Architecture Driver Initialized.
[    0.603979] Bluetooth: Core ver 2.22
[    0.604029] NET: Registered protocol family 31
[    0.604034] Bluetooth: HCI device and connection manager initialized
[    0.604047] Bluetooth: HCI socket layer initialized
[    0.604056] Bluetooth: L2CAP socket layer initialized
[    0.604107] Bluetooth: SCO socket layer initialized
[    0.605859] tegra210_dvfs: no clock found for sdmmc2_ddr
[    0.605874] tegra210_dvfs: no clock found for sdmmc4_ddr
[    0.605915] tegra210_dvfs: no clock found for sdmmc1_ddr
[    0.605929] tegra210_dvfs: no clock found for sdmmc3_ddr
[    0.609204] tegra_dvfs: Unable to get vdd-cpu rail for step info, defering pr                                                                                                             obe
[    0.610351] vdd-3v3-sys: 3300 mV
[    0.610677] vdd-3v3-sys: supplied by vdd-5v0-sys
[    0.610722] vdd-1v8-sys: supplied by vdd-3v3-sys
[    0.612331] vdd-usb-vbus2: supplied by vdd-3v3-sys
[    0.612741] vdd-3v3-sd: 3300 mV
[    0.613152] vdd-3v3-sd: supplied by vdd-3v3-sys
[    0.613934] avdd-io-edp-1v05: 1050 mV
[    0.614295] avdd-io-edp-1v05: supplied by avdd-1v05-pll
[    0.614437] vdd-usb-hub-en: 5000 mV
[    0.614766] vdd-usb-hub-en: supplied by vdd-1v8-sys
[    0.615817] camchar: rtcpu character device driver loaded
[    0.616634] extcon-gpio-states extcon:extcon@1: Cable state:1, cable id:1
[    0.618001] clocksource: Switched to clocksource arch_sys_counter
[    0.659186] VFS: Disk quotas dquot_6.6.0
[    0.659311] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.659796] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    0.660235] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr                                                                                                             , base=0x00000000d7000000, size=0x19000000
[    0.660252]  dma-vpr: heap size is not multiple of cma_chunk_size heap_info->                                                                                                             num_chunks (13) rem_chunk_size(0x1000000)
[    0.660483] cma: enabled page replacement for spfn=d7000, epfn=f0000
[    0.660489] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap                                                                                                             =vpr create successful
[    0.660501] tegra-carveouts tegra-carveouts: assigned reserved memory node vp                                                                                                             r-carveout
[    0.660534] tegra-carveouts tegra-carveouts: iram :dma coherent mem declare 0                                                                                                             x0000000040001000,258048
[    0.660540] tegra-carveouts tegra-carveouts: assigned reserved memory node ir                                                                                                             am-carveout
[    0.660561] nvmap: nvmap_select_cache_ops() nvmap cache ops set to set/ways
[    0.660569] nvmap_page_pool_init: Total RAM pages: 1010866
[    0.660574] nvmap_page_pool_init: nvmap page pool size: 126358 pages (493 MB)
[    0.660657] nvmap_background_zero_thread: PP zeroing thread starting.
[    0.661058] misc nvmap: created heap iram base 0x0000000040001000 size (252Ki                                                                                                             B)
[    0.661761] misc nvmap: created heap vpr base 0x00000000d7000000 size (409600                                                                                                             KiB)
[    0.670660] thermal thermal_zone0: Registering thermal zone thermal_zone0 for                                                                                                              type AO-therm
[    0.671110] thermal thermal_zone1: Registering thermal zone thermal_zone1 for                                                                                                              type CPU-therm
[    0.671482] thermal thermal_zone2: Registering thermal zone thermal_zone2 for                                                                                                              type GPU-therm
[    0.671763] thermal thermal_zone3: Registering thermal zone thermal_zone3 for                                                                                                              type PLL-therm
[    0.671947] thermal thermal_zone4: Registering thermal zone thermal_zone4 for                                                                                                              type PMIC-Die
[    0.672201] pre_t19x_iso_plat_init(): iso emc max clk=1600000KHz
[    0.672205] pre_t19x_iso_plat_init(): max_iso_bw=11520000KB
[    0.672641] NET: Registered protocol family 2
[    0.672761] IP idents hash table entries: 65536 (order: 7, 524288 bytes)
[    0.675096] TCP established hash table entries: 32768 (order: 6, 262144 bytes                                                                                                             )
[    0.675307] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.675814] TCP: Hash tables configured (established 32768 bind 32768)
[    0.675963] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.676043] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.676434] NET: Registered protocol family 1
[    0.677107] RPC: Registered named UNIX socket transport module.
[    0.677114] RPC: Registered udp transport module.
[    0.677118] RPC: Registered tcp transport module.
[    0.677122] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.677136] PCI: CLS 0 bytes, default 64
[    0.677383] Trying to unpack rootfs image as initramfs...
[    0.975739] Freeing initrd memory: 6992K
[    0.985738] host1x 50000000.host1x: initialized
[    0.987645] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters av                                                                                                             ailable
[    0.990979] audit: initializing netlink subsys (disabled)
[    0.991044] audit: type=2000 audit(0.843:1): initialized
[    0.991796] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    1.001638] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.003113] ntfs: driver 2.1.32 [Flags: R/W].
[    1.003884] 9p: Installing v9fs 9p2000 file system support
[    1.007201] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 2                                                                                                             40)
[    1.007311] io scheduler noop registered
[    1.007626] io scheduler cfq registered (default)
[    1.010428] gic 702f9000.agic: GIC IRQ controller registered
[    1.013423] iommu: Adding device 702ef000.adsp to group 33
[    1.022697] iommu: Adding device aconnect@702c0000:adsp_audio to group 34
[    1.022854] tegra-aconnect aconnect@702c0000: Tegra ACONNECT bus registered
[    1.023502] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 =                                                                                                              0x8a29412
[    1.023511] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_                                                                                                             0 = 0x4
[    1.025122] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane =                                                                                                              usb2-0, function = xusb
[    1.025228] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.1, lane =                                                                                                              usb2-1, function = xusb
[    1.025336] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.2, lane =                                                                                                              usb2-2, function = xusb
[    1.025531] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane =                                                                                                              pcie-0, function = pcie-x1
[    1.025619] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane =                                                                                                              pcie-1, function = pcie-x4
[    1.025710] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane =                                                                                                              pcie-2, function = pcie-x4
[    1.025797] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane =                                                                                                              pcie-3, function = pcie-x4
[    1.025885] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane =                                                                                                              pcie-4, function = pcie-x4
[    1.025982] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.8, lane =                                                                                                              pcie-5, function = xusb
[    1.026112] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.9, lane =                                                                                                              pcie-6, function = xusb
[    1.032381] tegra-pwm 7000a000.pwm: PWM clk cannot sleep in ops
[    1.034063] tegra-dfll-pwm 70110000.pwm: DFLL pwm-rate: 12800000
[    1.035976] tegra-pcie 1003000.pcie: 4x1, 1x1 configuration
[    1.037257] tegra-pcie 1003000.pcie: PCIE: Enable power rails
[    1.037609] tegra-pcie 1003000.pcie: probing port 0, using 4 lanes
[    1.038911] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:c                                                                                                             amera_platform_driver probe
[    1.039133] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=1                                                                                                             500000, vi_iso_bw=1500000, max_bw=1500000
[    1.039347] Adding domain tsec-pd to PM domain host1x-pd
[    1.041582] tegra-pcie 1003000.pcie: probing port 1, using 1 lanes
[    1.042558] tsec 54500000.tsec: initialized
[    1.044111] tsec 54100000.tsecb: initialized
[    1.044852] Adding domain nvdec-pd to PM domain host1x-pd
[    1.048271] nvdec 54480000.nvdec: initialized
[    1.049327] Adding domain vic03-pd to PM domain host1x-pd
[    1.049513] Adding domain msenc-pd to PM domain host1x-pd
[    1.049671] Adding domain nvjpg-pd to PM domain host1x-pd
[    1.053630] falcon 54340000.vic: initialized
[    1.054903] falcon 544c0000.nvenc: initialized
[    1.056210] falcon 54380000.nvjpg: initialized
[    1.060631] tegra_cec 70015000.tegra_cec: dt=1 start=0x70015000 end=0x70015FF                                                                                                             F irq=96
[    1.060674] tegra_cec 70015000.tegra_cec: Enable clock result: 0.
[    1.060705] tegra_cec 70015000.tegra_cec: tegra_cec_init started
[    1.060808] tegradc tegradc.0: disp0 connected to head0->/host1x/sor1
[    1.060901] display board info: id 0x0, fab 0x0
[    1.060970] generic_infoframe_type: 0x87
[    1.061027] tegra_cec 70015000.tegra_cec: cec_add_sysfs ret=0
[    1.061032] tegra_cec 70015000.tegra_cec: probed
[    1.061142] tegradc tegradc.0: DT parsed successfully
[    1.061198] tegradc tegradc.0: Display dc.ffffff800abc0000 registered with id                                                                                                             =0
[    1.065081] tegradc tegradc.0: probed
[    1.065777] Console: switching to colour frame buffer device 80x30
[    1.065809] tegradc tegradc.0: fb registered
[    1.067363] tegradc tegradc.1: disp1 connected to head1->/host1x/sor
[    1.067449] tegradc tegradc.1: No lt-data, using default setting
[    1.067480] tegradc tegradc.1: No hpd-gpio in DT
[    1.067514] tegradc tegradc.1: DT parsed successfully
[    1.067563] tegradc tegradc.1: Display dc.ffffff800ad40000 registered with id                                                                                                             =1
[    1.069169] tegradc tegradc.1: dpd enable lookup fail:-19
[    1.069342] tegra-apbdma 60020000.dma: Tegra20 APB DMA driver register 32 cha                                                                                                             nnels
[    1.574926] Host read timeout at address 545c00c4
[    1.576412] tegradc tegradc.1: probed
[    1.576904] tegradc tegradc.1: fb registered
[    1.577502] tegra-adma 702e2000.adma: Tegra210 ADMA driver registered 22 chan                                                                                                             nels
[    1.578337] tegra-fuse-burn 7000f800.efuse:efuse-burn: shutdown limit check d                                                                                                             isabled
[    1.578344] tegra-fuse-burn 7000f800.efuse:efuse-burn: Fuse burn driver initi                                                                                                             alized
[    1.578669] kfuse 7000fc00.kfuse: initialized
[    1.579574] tegra-pmc-iopower pmc-iopower: Regulator supply iopower-dbg-suppl                                                                                                             y not available
[    1.580122] hpd: state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[    1.580129] hpd: switching from state 7 (Takeover from bootloader) to state 0                                                                                                              (Reset)
[    1.580157] hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
[    1.580171] tegradc tegradc.1: blank - powerdown
[    1.580194] extcon-disp-state extcon:disp-state: cable 44 state 0 already set                                                                                                             .
[    1.580199] Extcon DP: HPD disabled
[    1.580203] hpd: hpd_switch 0
[    1.580207] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[    1.580216] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[    1.580222] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[    1.580446] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[    1.581390] tegra-dfll-pwm 70110000.pwm: DFLL_PWM regulator is available now
[    1.581401] vdd-cpu: 708 <--> 1322 mV at 708 mV
[    1.581777] pwm-regulator pwm_regulators:pwm-regulator@0: PWM regulator regis                                                                                                             tration passed
[    1.583135] vdd-gpu: applied init 1000000uV constraint
[    1.583143] vdd-gpu: 708 <--> 1323 mV at 997 mV
[    1.583518] pwm-regulator pwm_regulators:pwm-regulator@1: PWM regulator regis                                                                                                             tration passed
[    1.587157] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.587272] No Device Node present for smmu client: serial8250 !!
[    1.587283] platform serial8250: No iommus property found in DT node, got swg                                                                                                             ids from fixup(101004000)
[    1.587322] iommu: Adding device serial8250 to group 35
[    1.589680] console [ttyS0] disabled
[    1.589754] 70006000.serial: ttyS0 at MMIO 0x70006000 (irq = 63, base_baud =                                                                                                              25500000) is a Tegra
[    1.600228] console [ttyS0] enabled
[    1.601286] 70006040.serial: ttyTHS1 at MMIO 0x70006040 (irq = 64, base_baud                                                                                                              = 0) is a TEGRA_UART
[    1.601587] serial-tegra 70006200.serial: RX in PIO mode
[    1.601674] 70006200.serial: ttyTHS2 at MMIO 0x70006200 (irq = 65, base_baud                                                                                                              = 0) is a TEGRA_UART
[    1.602631] [drm] Initialized
[    1.612759] brd: module loaded
[    1.617777] loop: module loaded
[    1.617856] tegra_profiler: version: 1.145, samples/io: 49/28
[    1.617959] tegra_profiler: auth: init
[    1.619383] THERMAL EST: found 2 subdevs
[    1.619392] THERMAL EST num_resources: 0
[    1.619405] [THERMAL EST subdev 0]
[    1.619414] [THERMAL EST subdev 1]
[    1.619885] thermal thermal_zone5: Registering thermal zone thermal_zone5 for                                                                                                              type thermal-fan-est
[    1.619891] THERMAL EST: thz register success.
[    1.620052] THERMAL EST: end of probe, return err: 0
[    1.621245] sd: No Scsi addr parsed to reserve index
[    1.621282] hisi_sas: driver version v1.6
[    1.628728] tun: Universal TUN/TAP device driver, 1.6
[    1.628736] tun: (C) 1999-2004 Max Krasnyansky <[email protected]>
[    1.629772] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.629778] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.629833] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    1.629836] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.629883] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version                                                                                                              2.4.0-k
[    1.629887] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.629932] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4                                                                                                             .4.0-k
[    1.629937] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    1.631517] PPP generic driver version 2.4.2
[    1.631712] PPP BSD Compression module registered
[    1.631718] PPP Deflate Compression module registered
[    1.631760] PPP MPPE Compression module registered
[    1.631768] NET: Registered protocol family 24
[    1.631838] usbcore: registered new interface driver r8152
[    1.631889] usbcore: registered new interface driver asix
[    1.631940] usbcore: registered new interface driver ax88179_178a
[    1.631981] usbcore: registered new interface driver cdc_ether
[    1.632019] usbcore: registered new interface driver net1080
[    1.632076] usbcore: registered new interface driver cdc_subset
[    1.632119] usbcore: registered new interface driver zaurus
[    1.632169] usbcore: registered new interface driver cdc_ncm
[    1.632323] VFIO - User Level meta-driver version: 0.3
[    1.633575] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.633599] ehci-pci: EHCI PCI platform driver
[    1.633645] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.633658] ohci-pci: OHCI PCI platform driver
[    1.633698] ohci-platform: OHCI generic platform driver
[    1.636551] tegra-xusb 70090000.xusb: USB2 port 0 has OTG_CAP
[    1.637214] tegra-xusb-padctl 7009f000.xusb_padctl: enabled OTG on UTMI pad 0
[    1.638447] tegra-xusb 70090000.xusb: extcon 0: ffffffc0f914ac00 id
[    1.640868] usbcore: registered new interface driver uas
[    1.640935] usbcore: registered new interface driver usb-storage
[    1.641055] usbcore: registered new interface driver usbserial
[    1.641344] tegra-xusb 70090000.xusb: Firmware timestamp: 2020-07-31 09:33:12                                                                                                              UTC, Version: 50.26 release
[    1.641399] tegra-xusb 70090000.xusb: xHCI Host Controller
[    1.641429] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus nu                                                                                                             mber 1
[    1.642345] tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100                                                                                                              quirks 0x00050010
[    1.642412] tegra-xusb 70090000.xusb: irq 61, io mem 0x70090000
[    1.642616] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.642623] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=                                                                                                             1
[    1.642629] usb usb1: Product: xHCI Host Controller
[    1.642634] usb usb1: Manufacturer: Linux 4.9.299-tegra xhci-hcd
[    1.642639] usb usb1: SerialNumber: 70090000.xusb
[    1.643312] hub 1-0:1.0: USB hub found
[    1.643363] hub 1-0:1.0: 5 ports detected
[    1.643924] tegra-xusb 70090000.xusb: xHCI Host Controller
[    1.643936] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus nu                                                                                                             mber 2
[    1.644038] usb usb2: We don't know the algorithms for LPM for this host, dis                                                                                                             abling LPM.
[    1.644144] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.644151] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=                                                                                                             1
[    1.644155] usb usb2: Product: xHCI Host Controller
[    1.644160] usb usb2: Manufacturer: Linux 4.9.299-tegra xhci-hcd
[    1.644164] usb usb2: SerialNumber: 70090000.xusb
[    1.644653] hub 2-0:1.0: USB hub found
[    1.644689] hub 2-0:1.0: 4 ports detected
[    1.645445] tegra-xusb 70090000.xusb: Upgrade port 0 to USB3.0
[    1.645452] tegra-xusb 70090000.xusb: Upgrade port 1 to USB3.0
[    1.648941] tegra-xudc-new 700d0000.xudc: device count: 1
[    1.650653] tegra-xudc-new 700d0000.xudc: USB charger detection disabled
[    1.650671] tegra-xudc-new 700d0000.xudc: vbus state: 1
[    1.650689] tegra-xudc-new 700d0000.xudc: device mode on: 0
[    1.650713] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 0
[    1.650741] tegra-xudc-new 700d0000.xudc: active: 0 => 1
[    1.651463] mousedev: PS/2 mouse device common for all mice
[    1.651586] usbcore: registered new interface driver xpad
[    1.666090] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 1
[    1.746212] usb usb2: usb_suspend_both: status 0
[    1.750685] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as r                                                                                                             tc0
[    1.753176] rtc rtc1: alarm rtc device
[    1.753198] tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
[    1.753229] tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
[    1.753821] i2c /dev entries driver
[    1.755970] i2c i2c-6: Added multiplexed i2c bus 7
[    1.756376] i2c i2c-6: Added multiplexed i2c bus 8
[    1.756383] i2c-mux-gpio cam_i2cmux: 2 port mux on Tegra I2C adapter adapter
[    1.757199] imx219 7-0010: tegracam sensor driver:imx219_v2.0.6
[    1.780554] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x10
[    1.780654] imx219 7-0010: imx219_board_setup: error during i2c read probe (-                                                                                                             121)
[    1.788316] imx219 7-0010: board setup failed
[    1.792780] imx219: probe of 7-0010 failed with error -121
[    1.793411] imx219 8-0010: tegracam sensor driver:imx219_v2.0.6
[    1.816703] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x10
[    1.816797] imx219 8-0010: imx219_board_setup: error during i2c read probe (-                                                                                                             121)
[    1.824371] imx219 8-0010: board setup failed
[    1.828818] imx219: probe of 8-0010 failed with error -121
[    1.830404] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[    1.833170] tegra_soctherm 700e2000.soctherm: pllx_offset tz:0 max:14, min:2
[    1.833177] tegra_soctherm 700e2000.soctherm: pllx_offset tz:2 max:8, min:4
[    1.833617] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -214                                                                                                             7483647 forced to -127000
[    1.833636] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when                                                                                                              cpu reaches 102500 mC
[    1.833646] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when c                                                                                                             pu reaches 100500 mC
[    1.833781] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -214                                                                                                             7483647 forced to -127000
[    1.833793] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when                                                                                                              gpu reaches 103000 mC
[    1.833801] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when g                                                                                                             pu reaches 101000 mC
[    1.833979] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -214                                                                                                             7483647 forced to -127000
[    1.834047] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when                                                                                                              pll reaches 127000 mC
[    1.834054] tegra_soctherm 700e2000.soctherm: throttrip: pll: missing hot tem                                                                                                             perature
[    1.834243] tegra_soctherm 700e2000.soctherm: failed to register sensor: -19
[    1.835031] tegra_aotag tegra-aotag: Registering sensor 0
[    1.835088] tegra_aotag tegra-aotag: Invalid temp readout
[    1.835113] tegra_aotag tegra-aotag: Invalid te -127000
[    1.837898] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -214                                                                                                             7483647 forced to -127000
[    1.838126] tegra_throttle_probe: probe successful. #cdevs=4
[    1.838996] FAN dev name: pwm-fan
[    1.839080] FAN:gpio request success.
[    1.839143] pwm_fan_driver pwm-fan: cap state:7, cap pwm:255
[    1.839459] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[    1.839627] pwm_fan_driver pwm-fan: fan tach request irq success
[    1.839639] pwm_fan_driver pwm-fan: tach period: 1000
[    1.839736] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, st                                                                                                             ate:2
[    1.839742] pwm_fan_driver pwm-fan: index 1: pwm=80, rpm=1000, rru=2, rrd=2,                                                                                                              state:2
[    1.839748] pwm_fan_driver pwm-fan: index 2: pwm=120, rpm=2000, rru=1, rrd=1,                                                                                                              state:2
[    1.839753] pwm_fan_driver pwm-fan: index 3: pwm=160, rpm=3000, rru=1, rrd=1,                                                                                                              state:2
[    1.839758] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1,                                                                                                              state:3
[    1.839763] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1,                                                                                                              state:3
[    1.839768] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1,                                                                                                              state:3
[    1.839772] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1,                                                                                                              state:4
[    1.839777] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1                                                                                                             , state:4
[    1.839782] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1                                                                                                             , state:4
[    1.842714] device-mapper: uevent: version 1.0.3
[    1.843177] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-d                                                                                                             [email protected]
[    1.848684] tegra210-cpufreq cpufreq: probe()...completed
[    1.849428] sdhci: Secure Digital Host Controller Interface driver
[    1.849431] sdhci: Copyright(c) Pierre Ossman
[    1.849433] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.849799] sdhci-tegra sdhci-tegra.3: Client registration for eMC Successful
[    1.856147] tegra-se 70012000.se: tegra_se_probe: complete
[    1.856685] hidraw: raw HID events driver (C) Jiri Kosina
[    1.857796] usbcore: registered new interface driver usbhid
[    1.857798] usbhid: USB HID core driver
[    1.859199] ashmem: initialized
[    1.860123] tegra21x_actmon 6000c800.actmon: in actmon_register()...
[    1.860289] tegra21x_actmon 6000c800.actmon: initialization Completed for the                                                                                                              device mc_all
[    1.862574] nvpmodel: initialized successfully
[    1.863668] usbcore: registered new interface driver snd-usb-audio
[    1.863727] No Device Node present for smmu client: snd-soc-dummy !!
[    1.863733] platform snd-soc-dummy: No iommus property found in DT node, got                                                                                                              swgids from fixup(101004000)
[    1.863753] iommu: Adding device snd-soc-dummy to group 36
[    1.869271] input: tegra-hda HDMI/DP,pcm=3 as /devices/70030000.hda/sound/car                                                                                                             d0/input0
[    1.887583] OPE platform probe
[    1.887663] OPE platform probe successful
[    1.887918] OPE platform probe
[    1.887998] OPE platform probe successful
[    1.890079] usb 1-2: new high-speed USB device number 2 using tegra-xusb
[    1.894022] mmc0: SDHCI controller on sdhci-tegra.3 [sdhci-tegra.3] using ADM                                                                                                             A 64-bit with 64 bit addr
[    1.913281] usb 1-2: New USB device found, idVendor=2109, idProduct=2817
[    1.913286] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.913289] usb 1-2: Product: USB2.0 Hub
[    1.913293] usb 1-2: Manufacturer: VIA Labs, Inc.
[    1.913983] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[    1.914147] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[    1.914279] hub 1-2:1.0: USB hub found
[    1.914296] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[    1.914428] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[    1.914553] hub 1-2:1.0: 4 ports detected
[    1.914562] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[    1.914693] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[    1.914820] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[    1.914947] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[    1.915073] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[    1.915213] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[    1.927372] u32 classifier
[    1.927375]     Actions configured
[    1.927442] Initializing XFRM netlink socket
[    1.928137] NET: Registered protocol family 10
[    1.928790] NET: Registered protocol family 17
[    1.928800] NET: Registered protocol family 15
[    1.928875] bridge: filtering via arp/ip/ip6tables is no longer available by                                                                                                              default. Update your scripts to load br_netfilter if you need this.
[    1.928918] Bluetooth: RFCOMM socket layer initialized
[    1.928927] Bluetooth: RFCOMM ver 1.11
[    1.928932] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    1.928937] Bluetooth: HIDP socket layer initialized
[    1.928955] 9pnet: Installing 9P2000 support
[    1.928987] Key type dns_resolver registered
[    1.929358] Registered cp15_barrier emulation handler
[    1.929365] Registered setend emulation handler
[    1.930390] registered taskstats version 1
[    1.930915] Adding domain ve2-pd to PM domain host1x-pd
[    1.931164] Adding domain ve-pd to PM domain host1x-pd
[    1.933171] isp 54600000.isp: initialized
[    1.934180] isp 54680000.isp: initialized
[    1.944346] last reset is due to power on reset
[    1.944350] KERNEL: PMC reset status reg: 0x0
[    1.944408] BL: PMC reset status reg: 0x0
[    1.944411] BL: PMIC poweroff Event Recorder: 0x40
[    1.945813] clk_cbus_recalc_rate: no gbus parent
[    1.945818] clk_cbus_round_rate: no gbus parent
[    1.945820] clk_cbus_round_rate: no gbus parent
[    1.945825] clk_cbus_recalc_rate: no gbus parent
[    1.945921] clk_cbus_recalc_rate: no gbus parent
[    1.945924] clk_cbus_round_rate: no gbus parent
[    1.945927] clk_cbus_round_rate: no gbus parent
[    1.945930] clk_cbus_recalc_rate: no gbus parent
[    1.946325] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    1.946633] tegra_dvfs: GPU-cap: registered
[    1.946689] tegra dvfs: vdd-cpu: nominal 1168mV, offset 708000uV, step 19200u                                                                                                             V, scaling enabled
[    1.946692] tegra dvfs: vdd-core: nominal 1125mV, offset 600000uV, step 12500                                                                                                             uV, scaling enabled
[    1.946695] tegra dvfs: vdd-gpu: nominal 1078mV, offset 708000uV, step 10000u                                                                                                             V, scaling enabled
[    1.948122] tegra_dvfs: vdd-gpu-vts: registered
[    1.948823] tegra_core_action core_dvfs_cdev_floor: Tegra CORE DVFS 'floor co                                                                                                             oling device' registered
[    1.949465] tegra_core_action core_dvfs_cdev_cap: Tegra CORE DVFS 'cap coolin                                                                                                             g device' registered
[    1.949966] input: gpio-keys as /devices/gpio-keys/input/input1
[    1.950738] mmcblk0: mmc0:0001 DG4016 14.7 GiB
[    1.954875] mmcblk0boot0: mmc0:0001 DG4016 partition 1 4.00 MiB
[    1.954975] mmcblk0boot1: mmc0:0001 DG4016 partition 2 4.00 MiB
[    1.955109] mmcblk0rpmb: mmc0:0001 DG4016 partition 3 4.00 MiB
[    1.957602]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16                                                                                                              p17
[    1.982754] tegra_rtc 7000e000.rtc: setting system clock to 2000-01-01 01:00:                                                                                                             13 UTC (946688413)
[    1.983775] vi 54080000.vi: vi_probe: ++
[    1.986766] vi 54080000.vi: initialized
[    1.988795] vi 54080000.vi: subdev nvcsi--2 bound
[    1.988905] vi 54080000.vi: subdev nvcsi--1 bound
[    1.989131] mmcblk mmc0:0001: Card claimed for testing.
[    1.990425] Disable partitions left on by BL
[    1.990429]   disb
[    1.990475] bwmgr: missing cdev-type property
[    1.990603] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -214                                                                                                             7483647 forced to -127000
[    1.990610] DRAM derating cdev registered.
[    1.991482] ALSA device list:
[    1.991486]   #0: tegra-hda at 0x70038000 irq 82
[    1.991488]   #1: tegra-snd-t210ref-mobile-rt565x
[    1.994035] tegra-pcie 1003000.pcie: link 0 down, retrying
[    1.994892] Freeing unused kernel memory: 8640K
[    2.018433] Root device found: sda1
[    2.037719] usb 2-1: new SuperSpeed USB device number 2 using tegra-xusb
[    2.056294] usb 2-1: New USB device found, idVendor=2109, idProduct=0817
[    2.056299] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.056303] usb 2-1: Product: USB3.0 Hub
[    2.056306] usb 2-1: Manufacturer: VIA Labs, Inc.
[    2.057275] hub 2-1:1.0: USB hub found
[    2.057454] hub 2-1:1.0: 4 ports detected
[    2.066071] tegra_cec 70015000.tegra_cec: Can't find physical addresse.
[    2.066074] tegra_cec 70015000.tegra_cec: tegra_cec_init Done.
[    2.404769] tegra-pcie 1003000.pcie: link 0 down, retrying
[    2.438070] tegra-xusb-padctl 7009f000.xusb_padctl: power down UTMI pad 1
[    2.458072] usb 1-2: usb_suspend_both: status 0
[    2.458137] usb usb1: usb_suspend_both: status 0
[    2.602708] usb 2-1.1: new SuperSpeed USB device number 3 using tegra-xusb
[    2.625636] usb 2-1.1: New USB device found, idVendor=8564, idProduct=4000
[    2.625642] usb 2-1.1: New USB device strings: Mfr=3, Product=4, SerialNumber                                                                                                             =5
[    2.625646] usb 2-1.1: Product: Transcend
[    2.625650] usb 2-1.1: Manufacturer: TS-RDF5
[    2.625654] usb 2-1.1: SerialNumber: 000000000039
[    2.626688] usb-storage 2-1.1:1.0: USB Mass Storage device detected
[    2.626927] scsi host0: usb-storage 2-1.1:1.0
[    2.818927] tegra-pcie 1003000.pcie: link 0 down, retrying
[    2.821005] tegra-pcie 1003000.pcie: link 0 down, ignoring
[    2.925010] tegra-pcie 1003000.pcie: PCI host bridge to bus 0000:00
[    2.925015] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    2.925018] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
[    2.925021] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pre                                                                                                             f]
[    2.925025] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.925044] pci 0000:00:02.0: [10de:0faf] type 01 class 0x060400
[    2.925110] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.925227] iommu: Adding device 0000:00:02.0 to group 37
[    2.925291] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), rec                                                                                                             onfiguring
[    2.925395] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[    2.925421] pci 0000:01:00.0: reg 0x10: [io  0x0000-0x00ff]
[    2.925454] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit pref                                                                                                             ]
[    2.925476] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit pref                                                                                                             ]
[    2.925621] pci 0000:01:00.0: supports D1 D2
[    2.925624] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.925765] iommu: Adding device 0000:01:00.0 to group 38
[    2.934109] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    2.934135] pci 0000:00:02.0: BAR 15: assigned [mem 0x20000000-0x200fffff 64b                                                                                                             it pref]
[    2.934139] pci 0000:00:02.0: BAR 13: assigned [io  0x1000-0x1fff]
[    2.934145] pci 0000:01:00.0: BAR 4: assigned [mem 0x20000000-0x20003fff 64bi                                                                                                             t pref]
[    2.934163] pci 0000:01:00.0: BAR 2: assigned [mem 0x20004000-0x20004fff 64bi                                                                                                             t pref]
[    2.934181] pci 0000:01:00.0: BAR 0: assigned [io  0x1000-0x10ff]
[    2.934189] pci 0000:00:02.0: PCI bridge to [bus 01]
[    2.934193] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
[    2.934199] pci 0000:00:02.0:   bridge window [mem 0x20000000-0x200fffff 64bi                                                                                                             t pref]
[    2.934383] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    2.934386] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    2.934391] pcie_pme 0000:00:02.0:pcie001: service driver pcie_pme loaded
[    2.934465] aer 0000:00:02.0:pcie002: service driver aer loaded
[    2.934626] r8168 0000:01:00.0: enabling device (0000 -> 0003)
[    2.934644] r8168 Gigabit Ethernet driver 8.045.08-NAPI loaded
[    2.955772] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Invalid                                                                                                              ethernet address 00:00:00:00:00:00, trying device tree node
[    2.955832] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Found va                                                                                                             lid ethernet address 48:b0:2d:5b:5b:1d from device tree
[    2.956254] r8168: This product is covered by one or more of the following pa                                                                                                             tents: US6,570,884, US6,115,776, and US6,327,625.
[    2.956267] r8168  Copyright (C) 2017  Realtek NIC software team <nicfae@real                                                                                                             tek.com>
                This program comes with ABSOLUTELY NO WARRANTY; for details, ple                                                                                                             ase see <http://www.gnu.org/licenses/>.
                This is free software, and you are welcome to redistribute it un                                                                                                             der certain conditions; see <http://www.gnu.org/licenses/>.
[    3.639815] scsi 0:0:0:0: Direct-Access     TS-RDF5  SD  Transcend    TS37 PQ                                                                                                             : 0 ANSI: 6
[    3.991768] sd 0:0:0:0: [sda] 486637568 512-byte logical blocks: (249 GB/232                                                                                                              GiB)
[    3.992623] sd 0:0:0:0: [sda] Write Protect is off
[    3.992628] sd 0:0:0:0: [sda] Mode Sense: 23 00 00 00
[    3.993436] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doe                                                                                                             sn't support DPO or FUA
[    4.006627]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sd                                                                                                             a12 sda13 sda14
[    4.010737] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    4.051948] Found dev node: /dev/sda1
[    5.420502] EXT4-fs (sda1): recovery complete
[    5.421568] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts:                                                                                                              (null)
[    5.423501] Rootfs mounted over sda1
[    5.436142] Switching from initrd to actual rootfs
[    5.623485] systemd[1]: System time before build time, advancing clock.
[    5.651935] cgroup: cgroup2: unknown option "nsdelegate"
[    5.669807] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SEL                                                                                                             INUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +                                                                                                             XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybr                                                                                                             id)
[    5.670590] systemd[1]: Detected architecture arm64.
[    5.693824] systemd[1]: Set hostname to <nano>.
[    5.875661] systemd[1]: File /lib/systemd/system/systemd-journald.service:36                                                                                                              configures an IP firewall (IPAddressDeny=any), but the local system does not sup                                                                                                             port BPF/cgroup based firewalling.
[    5.875671] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warni                                                                                                             ng is only shown for the first loaded unit using IP firewalling.)
[    6.052826] random: systemd: uninitialized urandom read (16 bytes read)
[    6.054193] systemd[1]: Created slice User and Session Slice.
[    6.054336] random: systemd: uninitialized urandom read (16 bytes read)
[    6.054358] systemd[1]: Reached target User and Group Name Lookups.
[    6.054426] random: systemd: uninitialized urandom read (16 bytes read)
[    6.054546] systemd[1]: Started Forward Password Requests to Wall Directory W                                                                                                             atch.
[    6.056502] systemd[1]: Set up automount Arbitrary Executable File Formats Fi                                                                                                             le System Automount Point.
[    6.057334] systemd[1]: Created slice System Slice.
[    6.126124] EXT4-fs (sda1): re-mounted. Opts: (null)
[    6.475974] systemd-journald[2058]: Received request to flush runtime journal                                                                                                              from PID 1
[    6.591217] random: crng init done
[    6.594621] random: 7 urandom warning(s) missed due to ratelimiting
[    7.239435] using random self ethernet address
[    7.246638] using random host ethernet address
[    8.516952] Mass Storage Function, version: 2009/09/11
[    8.516958] LUN: removable file: (no medium)
[    8.522168] using random self ethernet address
[    8.526648] using random host ethernet address
[    8.644999] rndis0: HOST MAC 02:9f:9a:bd:72:00
[    8.645070] rndis0: MAC 02:9f:9a:bd:72:01
[    8.645714] usb0: HOST MAC 02:9f:9a:bd:72:02
[    8.645741] usb0: MAC 02:9f:9a:bd:72:03
[    8.645768] tegra-xudc-new 700d0000.xudc: ep 0 (type: 0, dir: out) enabled
[    8.650085] l4tbr0: port 1(rndis0) entered blocking state
[    8.650090] l4tbr0: port 1(rndis0) entered disabled state
[    8.650256] device rndis0 entered promiscuous mode
[    8.657756] IPv6: ADDRCONF(NETDEV_UP): rndis0: link is not ready
[    8.662323] l4tbr0: port 2(usb0) entered blocking state
[    8.662328] l4tbr0: port 2(usb0) entered disabled state
[    8.662900] device usb0 entered promiscuous mode
[    8.668517] IPv6: ADDRCONF(NETDEV_UP): usb0: link is not ready
[    8.899528] android_work: did not send uevent (0 0           (null))
[    8.932387] android_work: sent uevent USB_STATE=CONNECTED
[    9.023086] configfs-gadget gadget: high-speed config #1: c
[    9.023115] tegra-xudc-new 700d0000.xudc: ep 5 (type: 3, dir: in) enabled
[    9.023131] tegra-xudc-new 700d0000.xudc: ep 3 (type: 2, dir: in) enabled
[    9.023146] tegra-xudc-new 700d0000.xudc: ep 2 (type: 2, dir: out) enabled
[    9.023239] tegra-xudc-new 700d0000.xudc: ep 9 (type: 3, dir: in) enabled
[    9.023255] tegra-xudc-new 700d0000.xudc: ep 7 (type: 2, dir: in) enabled
[    9.023269] tegra-xudc-new 700d0000.xudc: ep 4 (type: 2, dir: out) enabled
[    9.023306] tegra-xudc-new 700d0000.xudc: ep 15 (type: 3, dir: in) enabled
[    9.023324] tegra-xudc-new 700d0000.xudc: ep 11 (type: 2, dir: in) enabled
[    9.023348] tegra-xudc-new 700d0000.xudc: ep 6 (type: 2, dir: out) enabled
[    9.023410] IPv6: ADDRCONF(NETDEV_CHANGE): rndis0: link becomes ready
[    9.023553] android_work: sent uevent USB_STATE=CONFIGURED
[   13.382252] l4tbr0: port 1(rndis0) entered blocking state
[   13.382257] l4tbr0: port 1(rndis0) entered forwarding state
[   13.383502] IPv6: ADDRCONF(NETDEV_UP): l4tbr0: link is not ready
[   13.383521] IPv6: ADDRCONF(NETDEV_CHANGE): l4tbr0: link becomes ready
[   13.772447] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   13.778255] eth0: 0xffffff800ab01000, 48:b0:2d:5b:5b:1d, IRQ 406
[   13.886604] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   17.714319] tegradc tegradc.0: blank - powerdown
[   18.202060] tegradc tegradc.0: blank - powerdown
[   18.523202] tegradc tegradc.0: blank - powerdown
[   18.723442] device-mapper: table: 253:0: thin-pool: unknown target type
[   18.730142] device-mapper: ioctl: error adding target to table
[   18.850651] tegradc tegradc.0: blank - powerdown
[   19.184068] tegradc tegradc.0: blank - powerdown
[   19.463995] tegradc tegradc.0: blank - powerdown
[   19.744546] tegradc tegradc.0: blank - powerdown
[   20.027172] tegradc tegradc.0: blank - powerdown
[   20.309336] tegradc tegradc.0: blank - powerdown
[   20.595975] tegradc tegradc.0: blank - powerdown
[   20.891727] tegradc tegradc.0: blank - powerdown
[   21.071777] device-mapper: table: 253:0: thin-pool: unknown target type
[   21.078444] device-mapper: ioctl: error adding target to table
[   21.244091] tegradc tegradc.0: blank - powerdown
[   21.525131] tegradc tegradc.0: blank - powerdown
[   21.809575] tegradc tegradc.0: blank - powerdown
[   22.092347] tegradc tegradc.0: blank - powerdown
[   22.377792] tegradc tegradc.0: blank - powerdown
[   22.660026] tegradc tegradc.0: blank - powerdown
[   22.940832] tegradc tegradc.0: blank - powerdown
[   23.243184] tegradc tegradc.0: blank - powerdown
[   23.409273] device-mapper: table: 253:0: thin-pool: unknown target type
[   23.415968] device-mapper: ioctl: error adding target to table
[   23.592666] tegradc tegradc.0: blank - powerdown
[   23.879506] tegradc tegradc.0: blank - powerdown
[   24.160591] tegradc tegradc.0: blank - powerdown
[   24.444720] tegradc tegradc.0: blank - powerdown
[   24.728770] tegradc tegradc.0: blank - powerdown
[   25.007072] tegradc tegradc.0: blank - powerdown
[   25.296728] tegrad.0: blank - powerdown
[   37.710829] tegradc tegradc.0: blank - powerdown
[   37.996442] tegradc tegradc.0: blank - powerdown
[   38.280263] tegradc tegradc.0: blank - powerdown
[   38.567717] tegradc tegradc.0: blank - powerdown
[   38.857110] tegradc tegradc.0: blank - powerdown
[   39.148564] tegradc tegradc.0: blank - powerdown
[   39.436471] tegradc tegradc.0: blank - powerdown
[   39.720746] tegradc tegradc.0: blank - powerdown
[   40.006210] tegradc tegradc.0: blank - powerdown
[   40.290672] tegradc tegradc.0: blank - powerdown
[   40.577036] tegradc tegradc.0: blank - powerdown
[   40.867290] tegradc tegradc.0: blank - powerdown
[   41.154457] tegradc tegradc.0: blank - powerdown
[   41.444893] tegradc tegradc.0: blank - powerdown
[   41.730300] tegradc tegradc.0: blank - powerdown
[   42.024790] tegradc tegradc.0: blank - powerdown
[   42.308597] tegradc tegradc.0: blank - powerdown
[   42.605107] tegradc tegradc.0: blank - powerdown
[   42.895577] tegradc tegradc.0: blank - powerdown
[   43.189440] tegradc tegradc.0: blank - powerdown
[   43.476373] tegradc tegradc.0: blank - powerdown
[   43.764704] tegradc tegradc.0: blank - powerdown
[   44.059050] tegradc tegradc.0: blank - powerdown
[   44.348678] tegradc tegradc.0: blank - powerdown
[   44.641612] tegradc tegradc.0: blank - powerdown
[   44.930507] tegradc tegradc.0: blank - powerdown
[   45.218808] tegradc tegradc.0: blank - powerdown
[   45.512432] tegradc tegradc.0: blank - powerdown
[   45.809662] tegradc tegradc.0: blank - powerdown
[   46.103980] tegradc tegradc.0: blank - powerdown
[   46.394801] tegradc tegradc.0: blank - powerdown
[   46.696439] tegradc tegradc.0: blank - powerdown
[   46.992054] tegradc tegradc.0: blank - powerdown
[   47.283123] tegradc tegradc.0: blank - powerdown
[   47.572522] tegradc tegradc.0: blank - powerdown
[   47.862084] tegradc tegradc.0: blank - powerdown
[   48.151467] tegradc tegradc.0: blank - powerdown
[   48.443959] tegradc tegradc.0: blank - powerdown
[   48.729664] tegradc tegradc.0: blank - powerdown
[   49.029018] tegradc tegradc.0: blank - powerdown
[   49.315111] tegradc tegradc.0: blank - powerdown
[   49.604451] tegradc tegradc.0: blank - powerdown
[   49.897822] tegradc tegradc.0: blank - powerdown
[   50.185700] tegradc tegradc.0: blank - powerdown
[   50.485317] tegradc tegradc.0: blank - powerdown
[   50.789555] tegradc tegradc.0: blank - powerdown
[   51.078782] tegradc tegradc.0: blank - powerdown
[   51.378134] tegradc tegradc.0: blank - powerdown
[   51.679082] tegradc tegradc.0: blank - powerdown
[   51.976086] tegradc tegradc.0: blank - powerdown
[   52.280479] tegradc tegradc.0: blank - powerdown
[   52.571678] tegradc tegradc.0: blank - powerdown
[   52.872096] tegradc tegradc.0: blank - powerdown
[   53.197300] tegradc tegradc.0: blank - powerdown
[   53.505156] tegradc tegradc.0: blank - powerdown
[   53.791395] tegradc tegradc.0: blank - powerdown
[   54.078877] tegradc tegradc.0: blank - powerdown
[   54.367639] tegradc tegradc.0: blank - powerdown
[   54.663181] tegradc tegradc.0: blank - powerdown
[   54.963269] tegradc tegradc.0: blank - powerdown
[   55.263566] tegradc tegradc.0: blank - powerdown
[   55.564705] tegradc tegradc.0: blank - powerdown
[   55.854633] tegradc tegradc.0: blank - powerdown
[   56.147703] tegradc tegradc.0: blank - powerdown
[   56.455417] tegradc tegradc.0: blank - powerdown
[   56.757377] tegradc tegradc.0: blank - powerdown
[   57.057576] tegradc tegradc.0: blank - powerdown
[   57.356715] tegradc tegradc.0: blank - powerdown
[   57.653934] tegradc tegradc.0: blank - powerdown
[   57.958082] tegradc tegradc.0: blank - powerdown
[   58.248382] tegradc tegradc.0: blank - powerdown
[   58.557367] tegradc tegradc.0: blank - powerdown
[   58.855840] tegradc tegradc.0: blank - powerdown
[   59.144203] tegradc tegradc.0: blank - powerdown
[   59.432061] tegradc tegradc.0: blank - powerdown
[   59.735552] tegradc tegradc.0: blank - powerdown
[   60.037308] tegradc tegradc.0: blank - powerdown
[   60.331833] tegradc tegradc.0: blank - powerdown
[   60.620659] tegradc tegradc.0: blank - powerdown
[   60.920210] tegradc tegradc.0: blank - powerdown
[   61.212064] tegradc tegradc.0: blank - powerdown
[   61.515057] tegradc tegradc.0: blank - powerdown
[   61.807231] tegradc tegradc.0: blank - powerdown
[   62.109153] tegradc tegradc.0: blank - powerdown
[   62.405390] tegradc tegradc.0: blank - powerdown
[   62.698437] tegradc tegradc.0: blank - powerdown
[   62.991932] tegradc tegradc.0: blank - powerdown
[   63.279769] tegradc tegradc.0: blank - powerdown
[   63.584721] tegradc tegradc.0: blank - powerdown
[   63.888574] tegradc tegradc.0: blank - powerdown
[   64.194511] tegradc tegradc.0: blank - powerdown
[   64.502436] tegradc tegradc.0: blank - powerdown
[   64.804411] tegradc tegradc.0: blank - powerdown
[   65.104894] tegradc tegradc.0: blank - powerdown
[   65.405406] tegradc tegradc.0: blank - powerdown
[   65.701294] tegradc tegradc.0: blank - powerdown
[   65.996729] tegradc tegradc.0: blank - powerdown
[   66.297284] tegradc tegradc.0: blank - powerdown
[   66.604389] tegradc tegradc.0: blank - powerdown
[   66.910676] tegradc tegradc.0: blank - powerdown
[   67.206215] tegradc tegradc.0: blank - powerdown
[   67.499805] tegradc tegradc.0: blank - powerdown
[   67.803473] tegradc tegradc.0: blank - powerdown
[   68.093271] tegradc tegradc.0: blank - powerdown
[   68.401755] tegradc tegradc.0: blank - powerdown
[   68.708023] tegradc tegradc.0: blank - powerdown
[   69.001666] tegradc tegradc.0: blank - powerdown
[   69.307783] tegradc tegradc.0: blank - powerdown
[   69.598954] tegradc tegradc.0: blank - powerdown
[   69.900188] tegradc tegradc.0: blank - powerdown
[   70.210715] tegradc tegradc.0: blank - powerdown
[   70.507151] tegradc tegradc.0: blank - powerdown
[   70.804984] tegradc tegradc.0: blank - powerdown
[   71.110412] tegradc tegradc.0: blank - powerdown
[   71.402176] tegradc tegradc.0: blank - powerdown
[   71.716430] tegradc tegradc.0: blank - powerdown
[   72.011889] tegradc tegradc.0: blank - powerdown
[   72.317303] tegradc tegradc.0: blank - powerdown
[   72.623032] tegradc tegradc.0: blank - powerdown
[   72.927761] tegradc tegradc.0: blank - powerdown
[   73.234221] tegradc tegradc.0: blank - powerdown
[   73.538133] tegradc tegradc.0: blank - powerdown
[   73.835049] tegradc tegradc.0: blank - powerdown
[   74.146944] tegradc tegradc.0: blank - powerdown
[   74.442052] tegradc tegradc.0: blank - powerdown
[   74.749594] tegradc tegradc.0: blank - powerdown
[   75.057589] tegradc tegradc.0: blank - powerdown
[   75.356903] tegradc tegradc.0: blank - powerdown
[   75.664315] tegradc tegradc.0: blank - powerdown
[   75.971371] tegradc tegradc.0: blank - powerdown
[   76.281616] tegradc tegradc.0: blank - powerdown
[   76.592695] tegradc tegradc.0: blank - powerdown
[   76.901821] tegradc tegradc.0: blank - powerdown
[   77.211523] tegradc tegradc.0: blank - powerdown
[   77.519892] tegradc tegradc.0: blank - powerdown
[   77.828455] tegradc tegradc.0: blank - powerdown
[   78.126527] tegradc tegradc.0: blank - powerdown
[   78.420050] tegradc tegradc.0: blank - powerdown
[   78.729723] tegradc tegradc.0: blank - powerdown
[   79.038451] tegradc tegradc.0: blank - powerdown
[   79.343072] tegradc tegradc.0: blank - powerdown
[   79.653957] tegradc tegradc.0: blank - powerdown
[   79.961276] tegradc tegradc.0: blank - powerdown
[   80.274169] tegradc tegradc.0: blank - powerdown
[   80.586507] tegradc tegradc.0: blank - powerdown
[   80.894806] tegradc tegradc.0: blank - powerdown
[   81.192120] tegradc tegradc.0: blank - powerdown
[   81.504527] tegradc tegradc.0: blank - powerdown
[   81.815390] tegradc tegradc.0: blank - powerdown
[   82.116843] tegradc tegradc.0: blank - powerdown
[   82.411967] tegradc tegradc.0: blank - powerdown
[   82.721758] tegradc tegradc.0: blank - powerdown
[   83.030018] tegradc tegradc.0: blank - powerdown
[   83.339396] tegradc tegradc.0: blank - powerdown
[   83.646591] tegradc tegradc.0: blank - powerdown
[   83.952700] tegradc tegradc.0: blank - powerdown
[   84.261758] tegradc tegradc.0: blank - powerdown
[   84.570500] tegradc tegradc.0: blank - powerdown
[   84.879807] tegradc tegradc.0: blank - powerdown
[   85.192121] tegradc tegradc.0: blank - powerdown
[   85.506169] tegradc tegradc.0: blank - powerdown
[   85.814353] tegradc tegradc.0: blank - powerdown
[   86.124923] tegradc tegradc.0: blank - powerdown
[   86.431072] tegradc tegradc.0: blank - powerdown
[   86.732964] tegradc tegradc.0: blank - powerdown
[   87.041137] tegradc tegradc.0: blank - powerdown
[   87.339092] tegradc tegradc.0: blank - powerdown
[   87.652345] tegradc tegradc.0: blank - powerdown
[   87.948334] tegradc tegradc.0: blank - powerdown
[   88.264829] tegradc tegradc.0: blank - powerdown
[   88.575229] tegradc tegradc.0: blank - powerdown
[   88.890502] tegradc tegradc.0: blank - powerdown
[   89.186498] tegradc tegradc.0: blank - powerdown
[   89.498156] tegradc tegradc.0: blank - powerdown
[   89.808501] tegradc tegradc.0: blank - powerdown
[   90.130224] tegradc tegradc.0: blank - powerdown
[   90.438452] tegradc tegradc.0: blank - powerdown
[   90.756300] tegradc tegradc.0: blank - powerdown
[   91.070662] tegradc tegradc.0: blank - powerdown
[   91.387663] tegradc tegradc.0: blank - powerdown
[   91.701973] tegradc tegradc.0: blank - powerdown
[   92.045270] tegradc tegradc.0: blank - powerdown
[   92.363343] tegradc tegradc.0: blank - powerdown
[   92.680133] tegradc tegradc.0: blank - powerdown
[   92.994858] tegradc tegradc.0: blank - powerdown
[   93.309388] tegradc tegradc.0: blank - powerdown
[   93.623073] tegradc tegradc.0: blank - powerdown
[   93.938808] tegradc tegradc.0: blank - powerdown
[   94.254439] tegradc tegradc.0: blank - powerdown
[   94.565881] tegradc tegradc.0: blank - powerdown
[   94.885462] tegradc tegradc.0: blank - powerdown
[   95.196812] tegradc tegradc.0: blank - powerdown
[   95.507188] tegradc tegradc.0: blank - powerdown
[   95.821451] tegradc tegradc.0: blank - powerdown
[   96.135551] tegradc tegradc.0: blank - powerdown
[   96.437049] tegradc tegradc.0: blank - powerdown
[   96.749359] tegradc tegradc.0: blank - powerdown
[   97.064000] tegradc tegradc.0: blank - powerdown
[   97.382870] tegradc tegradc.0: blank - powerdown
[   97.696493] tegradc tegradc.0: blank - powerdown
[   98.009864] tegradc tegradc.0: blank - powerdown
[   98.323466] tegradc tegradc.0: blank - powerdown
[   98.635125] tegradc tegradc.0: blank - powerdown
[   98.948702] tegradc tegradc.0: blank - powerdown
[   99.270139] tegradc tegradc.0: blank - powerdown
[   99.581271] tegradc tegradc.0: blank - powerdown
[   99.893058] tegradc tegradc.0: blank - powerdown
[  100.204998] tegradc tegradc.0: blank - powerdown
[  100.519670] tegradc tegradc.0: blank - powerdown
[  100.832545] tegradc tegradc.0: blank - powerdown
[  101.148760] tegradc tegradc.0: blank - powerdown
[  101.464893] tegradc tegradc.0: blank - powerdown
[  101.778834] tegradc tegradc.0: blank - powerdown
[  102.095804] tegradc tegradc.0: blank - powerdown
[  102.411885] tegradc tegradc.0: blank - powerdown
[  102.730767] tegradc tegradc.0: blank - powerdown
[  103.046133] tegradc tegradc.0: blank - powerdown
[  103.364965] tegradc tegradc.0: blank - powerdown
[  103.680203] tegradc tegradc.0: blank - powerdown
[  104.002266] tegradc tegradc.0: blank - powerdown
[  104.319103] tegradc tegradc.0: blank - powerdown
[  104.634627] tegradc tegradc.0: blank - powerdown
[  104.957685] tegradc tegradc.0: blank - powerdown
[  105.279539] tegradc tegradc.0: blank - powerdown
[  105.596850] tegradc tegradc.0: blank - powerdown
[  105.913315] tegradc tegradc.0: blank - powerdown
[  106.229695] tegradc tegradc.0: blank - powerdown
[  106.550036] tegradc tegradc.0: blank - powerdown
[  106.870523] tegradc tegradc.0: blank - powerdown
[  107.189758] tegradc tegradc.0: blank - powerdown
[  107.513132] tegradc tegradc.0: blank - powerdown
[  107.840004] tegradc tegradc.0: blank - powerdown
[  108.155070] tegradc tegradc.0: blank - powerdown
[  108.479838] tegradc tegradc.0: blank - powerdown
[  108.798763] tegradc tegradc.0: blank - powerdown
[  109.119167] tegradc tegradc.0: blank - powerdown
[  109.443353] tegradc tegradc.0: blank - powerdown
[  109.766959] tegradc tegradc.0: blank - powerdown
[  110.086470] tegradc tegradc.0: blank - powerdown
[  110.414948] tegradc tegradc.0: blank - powerdown
[  110.743296] tegradc tegradc.0: blank - powerdown
[  111.069214] tegradc tegradc.0: blank - powerdown
[  111.393773] tegradc tegradc.0: blank - powerdown
[  111.726340] tegradc tegradc.0: blank - powerdown
[  112.047947] tegradc tegradc.0: blank - powerdown
[  112.372454] tegradc tegradc.0: blank - powerdown
[  112.692172] tegradc tegradc.0: blank - powerdown
[  113.024435] tegradc tegradc.0: blank - powerdown
[  113.348929] tegradc tegradc.0: blank - powerdown
[  113.667254] tegradc tegradc.0: blank - powerdown
[  113.983303] tegradc tegradc.0: blank - powerdown
[  114.303384] tegradc tegradc.0: blank - powerdown
[  114.627561] tegradc tegradc.0: blank - powerdown
[  114.952448] tegradc tegradc.0: blank - powerdown
[  115.282268] tegradc tegradc.0: blank - powerdown
[  115.649792] tegradc tegradc.0: blank - powerdown
[  116.012224] tegradc tegradc.0: blank - powerdown
[  116.393492] tegradc tegradc.0: blank - powerdown
[  116.726477] tegradc tegradc.0: blank - powerdown
[  117.051470] tegradc tegradc.0: blank - powerdown
[  117.381968] tegradc tegradc.0: blank - powerdown
[  117.703528] tegradc tegradc.0: blank - powerdown
[  118.026941] tegradc tegradc.0: blank - powerdown
[  118.352344] tegradc tegradc.0: blank - powerdown
[  118.675447] tegradc tegradc.0: blank - powerdown
[  119.001203] tegradc tegradc.0: blank - powerdown
[  119.324126] tegradc tegradc.0: blank - powerdown
[  119.646407] tegradc tegradc.0: blank - powerdown
[  119.967041] tegradc tegradc.0: blank - powerdown
[  120.289926] tegradc tegradc.0: blank - powerdown
[  120.612190] tegradc tegradc.0: blank - powerdown
[  120.931238] tegradc tegradc.0: blank - powerdown
[  121.258630] tegradc tegradc.0: blank - powerdown
[  121.585636] tegradc tegradc.0: blank - powerdown
[  121.911553] tegradc tegradc.0: blank - powerdown
[  122.236017] tegradc tegradc.0: blank - powerdown
[  122.564736] tegradc tegradc.0: blank - powerdown
[  122.889986] tegradc tegradc.0: blank - powerdown
[  123.212249] tegradc tegradc.0: blank - powerdown
[  123.540082] tegradc tegradc.0: blank - powerdown
[  123.871058] tegradc tegradc.0: blank - powerdown
[  124.200619] tegradc tegradc.0: blank - powerdown
[  124.526856] tegradc tegradc.0: blank - powerdown
[  124.851744] tegradc tegradc.0: blank - powerdown
[  125.181513] tegradc tegradc.0: blank - powerdown
[  125.510040] tegradc tegradc.0: blank - powerdown
[  125.836556] tegradc tegradc.0: blank - powerdown
[  126.162240] tegradc tegradc.0: blank - powerdown
[  126.486585] tegradc tegradc.0: blank - powerdown
[  126.810745] tegradc tegradc.0: blank - powerdown
[  127.134926] tegradc tegradc.0: blank - powerdown
[  127.457245] tegradc tegradc.0: blank - powerdown
[  127.773134] tegradc tegradc.0: blank - powerdown
[  128.100919] tegradc tegradc.0: blank - powerdown
[  128.423413] tegradc tegradc.0: blank - powerdown
[  128.749289] tegradc tegradc.0: blank - powerdown
[  129.077483] tegradc tegradc.0: blank - powerdown
[  129.408008] tegradc tegradc.0: blank - powerdown
[  129.737843] tegradc tegradc.0: blank - powerdown
[  130.064069] tegradc tegradc.0: blank - powerdown
[  130.397679] tegradc tegradc.0: blank - powerdown
[  130.728277] tegradc tegradc.0: blank - powerdown
[  131.060875] tegradc tegradc.0: blank - powerdown
[  131.385767] tegradc tegradc.0: blank - powerdown
[  131.717725] tegradc tegradc.0: blank - powerdown
[  132.050272] tegradc tegradc.0: blank - powerdown
[  132.379879] tegradc tegradc.0: blank - powerdown
[  132.705017] tegradc tegradc.0: blank - powerdown
[  133.037717] tegradc tegradc.0: blank - powerdown
[  133.372105] tegradc tegradc.0: blank - powerdown

Is there anything you could further advise me to do? I have followed every step as described by official Nvidia guidelines and am not able to activate CUDA on Jetson. What can I do next?

@js95 given that your GPU is not being visible with deviceQuery, I would try a fresh/different SD card if you haven’t already.

@WayneWWW can you take a look at these error messages from Jovan’s dmesg?

[   18.723442] device-mapper: table: 253:0: thin-pool: unknown target type
[   18.730142] device-mapper: ioctl: error adding target to table
[   18.850651] tegradc tegradc.0: blank - powerdown

@js95 you might also want to try flashing the device in recovery mode over micro USB with SDK Manager to update the bootloader firmware to see if that helps. Did you purchase the device recently? If it’s within the warranty period, you could RMA it.

For that error “tegradc tegradc.0: blank - powerdown”.

Could you reboot your device and share me below text log?

  1. dmesg
  2. cat /var/log/Xorg.0.log.

For sudo dmesg:

robotika@nano:~$ sudo dmesg
[sudo] password for robotika:
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.299-tegra (buildbrain@mobile-u64-5333-d8000) (g                                                                                                             cc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065                                                                                                             c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #1 SMP PREEMPT Tue Nov 22 09:24:39 P                                                                                                             ST 2022
[    0.000000] Boot CPU: AArch64 Processor [411fd071]
[    0.000000] OF: fdt:memory scan node memory@80000000, reg size 32,
[    0.000000] OF: fdt: - 80000000 ,  7ee00000
[    0.000000] OF: fdt: - 100000000 ,  7f200000
[    0.000000] earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    0.000000] OF: reserved mem: initialized node vpr-carveout, compatible id nv                                                                                                             idia,vpr-carveout
[    0.000000] OF: reserved mem: initialized node iram-carveout, compatible id n                                                                                                             vidia,iram-carveout
[    0.000000] OF: reserved mem: initialized node ramoops_carveout, compatible i                                                                                                             d 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 24 pages/cpu s57624 r8192 d32488 u98304
[    0.000000] pcpu-alloc: s57624 r8192 d32488 u98304 alloc=24*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 pag                                                                                                             es: 1023544
[    0.000000] Kernel command line: tegraid=21.1.2.0.0 ddr_die=4096M@2048M secti                                                                                                             on=512M memtype=0 vpr_resize usb_port_owner_info=0 lane_owner_info=0 emc_max_dvf                                                                                                             s=0 touch_id=0@63 video=tegrafb no_console_suspend=1 console=ttyS0,115200n8 debu                                                                                                             g_uartport=lsport,4 earlyprintk=uart8250-32bit,0x70006000 maxcpus=4 usbcore.old_                                                                                                             scheme_first=1 lp0_vec=0x1000@0xff780000 core_edp_mv=1125 core_edp_ma=4000 gpt                                                                                                               earlycon=uart8250,mmio32,0x70006000  root=/dev/mmcblk0p1 rw rootwait rootfstype=                                                                                                             ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 sdhci_tegra.e                                                                                                             n_boot_part_access=1 quiet root=/dev/sda1 rw rootwait rootfstype=ext4 console=tt                                                                                                             yS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 sdhci_tegra.en_boot_part_acc                                                                                                             ess=1
[    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: 29804(90%)
[    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: 3568328K/4159488K available (15422K kernel code, 2970K rw                                                                                                             data, 6712K rodata, 8640K init, 614K bss, 116024K reserved, 475136K cma-reserved                                                                                                             )
[    0.000000] Virtual kernel memory layout:
[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 M                                                                                                             B)
[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 G                                                                                                             B)
[    0.000000]       .text : 0xffffff8008080000 - 0xffffff8008f90000   ( 15424 K                                                                                                             B)
[    0.000000]     .rodata : 0xffffff8008f90000 - 0xffffff8009630000   (  6784 K                                                                                                             B)
[    0.000000]       .init : 0xffffff8009630000 - 0xffffff8009ea0000   (  8640 K                                                                                                             B)
[    0.000000]       .data : 0xffffff8009ea0000 - 0xffffff800a186808   (  2971 K                                                                                                             B)
[    0.000000]        .bss : 0xffffff800a186808 - 0xffffff800a22032c   (   615 K                                                                                                             B)
[    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 K                                                                                                             B)
[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 M                                                                                                             B)
[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 G                                                                                                             B maximum)
[    0.000000]               0xffffffbf00000000 - 0xffffffbf03fc8000   (    63 M                                                                                                             B actual)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc0ff200000   (  4082 M                                                                                                             B)
[    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 /inte                                                                                                             rrupt-controller
[    0.000000] t210 clock and reset probe
[    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 (ph                                                                                                             ys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles:                                                                                                              0x46d987e47, max_idle_ns: 440795202767 ns
[    0.000006] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 43980                                                                                                             46511078ns
[    0.001725] Console: colour dummy device 80x25
[    0.001736] console [tty0] enabled
[    0.001741] bootconsole [uart8250] disabled
[    0.001763] kmemleak: Kernel memory leak detector disabled
[    0.001781] Calibrating delay loop (skipped), value calculated using timer fr                                                                                                             equency.. 38.40 BogoMIPS (lpj=76800)
[    0.001792] pid_max: default: 32768 minimum: 301
[    0.002235] Security Framework initialized
[    0.002452] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.002460] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.003569] ftrace: allocating 47250 entries in 185 pages
[    0.172280] sched-energy: CPU device node has no sched-energy-costs
[    0.172313] ASID allocator initialised with 65536 entries
[    0.212062] tegra-id: chipid=22117.
[    0.212074] tegra-id: opt_subrevision=0.
[    0.212091] Tegra Speedo/IDDQ fuse revision 4
[    0.212096] Tegra: CPU Speedo ID 9, SoC Speedo ID 0, GPU Speedo ID 2
[    0.212101] Tegra: CPU Process ID 0, SoC Process ID 0, GPU Process ID 0
[    0.212107] Tegra: CPU Speedo Value 2029, SoC Speedo Value 1916, GPU Speedo V                                                                                                             alue 2015
[    0.212111] Tegra: CPU IDDQ Value 1496, SoC IDDQ Value 1716, GPU IDDQ Value 2                                                                                                             025
[    0.212130] Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 0
[    0.212150] 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-0002-p3449-0000-b00.dts
[    0.212157] DTB Build time: Nov 22 2022 09:26:48
[    0.261076] CPU1: Booted secondary processor [411fd071]
[    0.292969] CPU2: Booted secondary processor [411fd071]
[    0.324954] CPU3: Booted secondary processor [411fd071]
[    0.325042] Brought up 4 CPUs
[    0.325047] SMP: Total of 4 processors activated.
[    0.325055] CPU features: detected feature: 32-bit EL0 Support
[    0.325308] CPU: All CPU(s) started at EL2
[    0.325325] alternatives: patching kernel code
[    0.333485] devtmpfs: initialized
[    0.370980] Initilizing CustomIPI irq domain
[    0.371282] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, ma                                                                                                             x_idle_ns: 7645041785100000 ns
[    0.371303] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.381886] pinctrl core: initialized pinctrl subsystem
[    0.382462] OS set in device tree is not L4T.
[    0.382885] regulator-dummy: no parameters
[    0.383147] Initializing plugin-manager
[    0.383300] Plugin module not found
[    0.383497] node /plugin-manager/fragement@0 match with board >=3448-0002-100
[    0.383992] node /plugin-manager/fragment@1 match with board >=3448-0002-101
[    0.384416] node /plugin-manager/fragment@3 match with board >=3448-0002-100
[    0.385181] node /plugin-manager/fragement@7 match with odm-data enable-pmic-                                                                                                             wdt
[    0.385393] node /plugin-manager/fragement@8 match with odm-data enable-pmic-                                                                                                             wdt
[    0.386003] node /plugin-manager/fragement@13 match with board >=3448-0002-30                                                                                                             0
[    0.389516] NET: Registered protocol family 16
[    0.390899] pstore: using zlib compression
[    0.390941] console [pstore-1] enabled
[    0.390945] pstore: Registered ramoops as persistent store backend
[    0.390950] ramoops: attached 0x200000@0xb0000000, ecc: 0/0
[    0.405095] cpuidle: using governor menu
[    0.409192] tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
[    0.410843] vdso: 2 pages (1 code @ ffffff8008f97000, 1 data @ ffffff8009ea40                                                                                                             00)
[    0.410866] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.413536] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomi                                                                                                             c allocations
[    0.415816] Serial: AMBA PL011 UART driver
[    0.416362] tegra_powergate_init: DONE
[    0.416379] 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-0002-p3449-0000-b00.dts
[    0.416385] DTB Build time: Nov 22 2022 09:26:48
[    0.418249] Tegra reboot handler registered.
[    0.422717] iommu: Adding device tegra-carveouts to group 0
[    0.422848] platform tegra-carveouts: domain=ffffffc0f94333d8 allocates as[0]                                                                                                             =ffffffc0f94240a8
[    0.423191] iommu: Adding device smmu_test to group 1
[    0.423245] platform smmu_test: domain=ffffffc0f9433618 allocates as[0]=fffff                                                                                                             fc0f9424110
[    0.424052] mc: mapped MMIO address: 0xffffff8008041000 -> 0x70019000
[    0.424107] mc: mapped MMIO address: 0xffffff8008067000 -> 0x7001c000
[    0.424164] mc: mapped MMIO address: 0xffffff800807b000 -> 0x7001d000
[    0.424174] nv-tegra-mc 70019000.mc: No mssnvlink node
[    0.424192] mc-err: mcerr ops are set to t21x
[    0.434749] iommu: Adding device 70090000.xusb to group 2
[    0.435025] iommu: Adding device 70006000.serial to group 3
[    0.435083] platform 70006000.serial: domain=ffffffc0f943ccd8 allocates as[0]                                                                                                             =ffffffc0f9424178
[    0.435508] iommu: Adding device 70006040.serial to group 4
[    0.435761] iommu: Adding device 70006200.serial to group 5
[    0.435954] iommu: Adding device sound to group 6
[    0.436004] platform sound: domain=ffffffc0f94bf258 allocates as[0]=ffffffc0f                                                                                                             94241e0
[    0.436558] iommu: Adding device 7000d400.spi to group 7
[    0.436860] iommu: Adding device 7000d600.spi to group 8
[    0.437237] iommu: Adding device 50000000.host1x to group 9
[    0.437508] iommu: Adding device 54080000.vi to group 10
[    0.437900] iommu: Adding device 54600000.isp to group 11
[    0.438155] iommu: Adding device 54680000.isp to group 12
[    0.438451] iommu: Adding device tegradc.0 to group 13
[    0.438502] platform tegradc.0: domain=ffffffc0f94d5018 allocates as[0]=fffff                                                                                                             fc0f9424248
[    0.439015] platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
[    0.439339] iommu: Adding device tegradc.1 to group 14
[    0.439390] platform tegradc.1: domain=ffffffc0f94d5258 allocates as[0]=fffff                                                                                                             fc0f94242b0
[    0.439890] platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
[    0.440150] iommu: Adding device 54340000.vic to group 15
[    0.440350] iommu: Adding device 544c0000.nvenc to group 16
[    0.440545] iommu: Adding device 54500000.tsec to group 17
[    0.440743] iommu: Adding device 54100000.tsecb to group 18
[    0.440939] iommu: Adding device 54480000.nvdec to group 19
[    0.441168] iommu: Adding device 54380000.nvjpg to group 20
[    0.442209] iommu: Adding device 546c0000.i2c to group 21
[    0.442538] iommu: Adding device 57000000.gpu to group 22
[    0.442609] platform 57000000.gpu: domain=ffffffc0f9524258 allocates as[0]=ff                                                                                                             ffffc0f9424318
[    0.442648] platform 57000000.gpu: domain=ffffffc0f9524258 allocates as[1]=ff                                                                                                             ffffc0f9424380
[    0.442684] platform 57000000.gpu: domain=ffffffc0f9524258 allocates as[2]=ff                                                                                                             ffffc0f94243e8
[    0.442721] platform 57000000.gpu: domain=ffffffc0f9524258 allocates as[3]=ff                                                                                                             ffffc0f9424450
[    0.443551] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency t                                                                                                             hermal reset disabled.
[    0.443562] tegra-pmc 7000e400.pmc: scratch reg offset dts data not present
[    0.443572] tegra-pmc: ### PMC reset source: TEGRA_SOFTWARE_RESET
[    0.443577] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_WARM
[    0.443582] tegra-pmc: ### PMC reset status reg: 0x3
[    0.493262] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registere                                                                                                             d
[    0.493272] tegra-pmc: Clear bootloader IO dpd settings
[    0.493295] tegra-pmc 7000e400.pmc: IO padctrl driver initialized
[    0.493356] tegra-pmc 7000e400.pmc: PMC: Successfully configure bootrom reset                                                                                                              commands
[    0.493654] iommu: Adding device 70012000.se to group 23
[    0.494232] iommu: Adding device 1003000.pcie to group 24
[    0.494282] platform 1003000.pcie: domain=ffffffc0f95249d8 allocates as[0]=ff                                                                                                             ffffc0f94244b8
[    0.494708] iommu: Adding device 7000c000.i2c to group 25
[    0.494976] iommu: Adding device 7000c400.i2c to group 26
[    0.495225] iommu: Adding device 7000c500.i2c to group 27
[    0.495477] iommu: Adding device 7000c700.i2c to group 28
[    0.495722] iommu: Adding device 7000d000.i2c to group 29
[    0.496018] iommu: Adding device 7000d100.i2c to group 30
[    0.496279] iommu: Adding device sdhci-tegra.3 to group 31
[    0.496333] platform sdhci-tegra.3: domain=ffffffc0f9532558 allocates as[0]=f                                                                                                             fffffc0f9424520
[    0.497205] iommu: Adding device 700d0000.xudc to group 32
[    0.500396] vdd-ac-bat: 5000 mV
[    0.500752] vdd-5v0-sys: 5000 mV
[    0.501440] vdd-5v0-hdmi: 5000 mV
[    0.501878] vdd-5v0-hdmi: supplied by vdd-5v0-sys
[    0.502127] vdd-1v8-sys: 1800 mV
[    0.502496] vdd-fan: 5000 mV
[    0.502715] vdd-fan: supplied by vdd-5v0-sys
[    0.502935] vdd-usb-vbus: 5000 mV
[    0.503176] vdd-usb-vbus: supplied by vdd-5v0-sys
[    0.503520] vdd-usb-vbus2: 5000 mV
[    0.533885] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.535980] gpio gpiochip0: gpio-line-names specifies 240 line names but ther                                                                                                             e are 256 lines on the chip
[    0.539101] GPIO line 6 (system-suspend-gpio) hogged as output/high
[    0.539134] GPIO line 151 (camera-control-output-low) hogged as output/low
[    0.539154] GPIO line 152 (camera-control-output-low) hogged as output/low
[    0.539520] gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip                                                                                                             0 (tegra-gpio)
[    0.547364] eventlib_kernel: keventlib is initialized, test id: 0
[    0.547697] SCSI subsystem initialized
[    0.547875] libata version 3.00 loaded.
[    0.548111] usbcore: registered new interface driver usbfs
[    0.548160] usbcore: registered new interface driver hub
[    0.548202] usbcore: registered new device driver usb
[    0.552065] max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
[    0.557098] vdd-core: 600 <--> 1162 mV at 1125 mV
[    0.558034] vdd-ddr-1v1: Bringing 1125000uV into 1150000-1150000uV
[    0.558130] random: fast init done
[    0.561097] vdd-ddr-1v1: 1150 mV
[    0.565086] vdd-pre-reg-1v35: 1350 mV
[    0.568985] vdd-1v8: 1800 mV
[    0.572242] avdd-sys-1v2: 1200 mV
[    0.576243] vdd-pex-1v0: 1050 mV
[    0.576904] vddio-sdmmc-ap: 1800 <--> 3300 mV at 3300 mV
[    0.577470] max77620-ldo3: at 3100 mV
[    0.580245] vdd-rtc: 850 <--> 1100 mV at 1000 mV
[    0.580825] max77620-ldo5: at 3100 mV
[    0.584238] vddio-sdmmc3-ap: 1800 <--> 3300 mV at 2800 mV
[    0.588239] avdd-1v05-pll: 1050 mV
[    0.592237] avdd-io-hdmi-dp: 1050 mV
[    0.594800] GPIO line 505 (spmic-default-output-high) hogged as output/high
[    0.595101] gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpioch                                                                                                             ip1 (max77620-gpio)
[    0.595401] max77620 4-003c: max77620 probe successful
[    0.598289] media: Linux media interface: v0.10
[    0.598339] Linux video capture interface: v2.00
[    0.599279] pps_core: LinuxPPS API ver. 1 registered
[    0.599284] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giome                                                                                                             tti <[email protected]>
[    0.599300] PTP clock support registered
[    0.602384] tegra210-emc 7001b000.external-memory-controller: validated EMC D                                                                                                             FS table
[    0.603205] Advanced Linux Sound Architecture Driver Initialized.
[    0.603839] Bluetooth: Core ver 2.22
[    0.603885] NET: Registered protocol family 31
[    0.603888] Bluetooth: HCI device and connection manager initialized
[    0.603903] Bluetooth: HCI socket layer initialized
[    0.603911] Bluetooth: L2CAP socket layer initialized
[    0.603944] Bluetooth: SCO socket layer initialized
[    0.605749] tegra210_dvfs: no clock found for sdmmc2_ddr
[    0.605765] tegra210_dvfs: no clock found for sdmmc4_ddr
[    0.605805] tegra210_dvfs: no clock found for sdmmc1_ddr
[    0.605818] tegra210_dvfs: no clock found for sdmmc3_ddr
[    0.609011] tegra_dvfs: Unable to get vdd-cpu rail for step info, defering pr                                                                                                             obe
[    0.610233] vdd-3v3-sys: 3300 mV
[    0.610572] vdd-3v3-sys: supplied by vdd-5v0-sys
[    0.610619] vdd-1v8-sys: supplied by vdd-3v3-sys
[    0.612327] vdd-usb-vbus2: supplied by vdd-3v3-sys
[    0.612756] vdd-3v3-sd: 3300 mV
[    0.613155] vdd-3v3-sd: supplied by vdd-3v3-sys
[    0.613728] avdd-io-edp-1v05: 1050 mV
[    0.614075] avdd-io-edp-1v05: supplied by avdd-1v05-pll
[    0.614231] vdd-usb-hub-en: 5000 mV
[    0.614607] vdd-usb-hub-en: supplied by vdd-1v8-sys
[    0.615674] camchar: rtcpu character device driver loaded
[    0.616418] extcon-gpio-states extcon:extcon@1: Cable state:1, cable id:1
[    0.617840] clocksource: Switched to clocksource arch_sys_counter
[    0.658529] VFS: Disk quotas dquot_6.6.0
[    0.658654] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.659143] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    0.659581] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr                                                                                                             , base=0x00000000d7000000, size=0x19000000
[    0.659597]  dma-vpr: heap size is not multiple of cma_chunk_size heap_info->                                                                                                             num_chunks (13) rem_chunk_size(0x1000000)
[    0.659852] cma: enabled page replacement for spfn=d7000, epfn=f0000
[    0.659859] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap                                                                                                             =vpr create successful
[    0.659874] tegra-carveouts tegra-carveouts: assigned reserved memory node vp                                                                                                             r-carveout
[    0.659921] tegra-carveouts tegra-carveouts: iram :dma coherent mem declare 0                                                                                                             x0000000040001000,258048
[    0.659928] tegra-carveouts tegra-carveouts: assigned reserved memory node ir                                                                                                             am-carveout
[    0.659952] nvmap: nvmap_select_cache_ops() nvmap cache ops set to set/ways
[    0.659960] nvmap_page_pool_init: Total RAM pages: 1010866
[    0.659965] nvmap_page_pool_init: nvmap page pool size: 126358 pages (493 MB)
[    0.660045] nvmap_background_zero_thread: PP zeroing thread starting.
[    0.660464] misc nvmap: created heap iram base 0x0000000040001000 size (252Ki                                                                                                             B)
[    0.661157] misc nvmap: created heap vpr base 0x00000000d7000000 size (409600                                                                                                             KiB)
[    0.670974] thermal thermal_zone0: Registering thermal zone thermal_zone0 for                                                                                                              type AO-therm
[    0.671426] thermal thermal_zone1: Registering thermal zone thermal_zone1 for                                                                                                              type CPU-therm
[    0.671773] thermal thermal_zone2: Registering thermal zonport module.
[    0.677438] RPC: Registered tcp transport module.
[    0.677443] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.677458] PCI: CLS 0 bytes, default 64
[    0.677720] Trying to unpack rootfs image as initramfs...
[    0.972004] Freeing initrd memory: 6992K
[    0.981938] host1x 50000000.host1x: initialized
[    0.983760] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters av                                                                                                             ailable
[    0.987065] audit: initializing netlink subsys (disabled)
[    0.987135] audit: type=2000 audit(0.839:1): initialized
[    0.987795] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    0.997563] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.999060] ntfs: driver 2.1.32 [Flags: R/W].
[    0.999842] 9p: Installing v9fs 9p2000 file system support
[    1.003124] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 2                                                                                                             40)
[    1.003284] io scheduler noop registered
[    1.003568] io scheduler cfq registered (default)
[    1.006345] gic 702f9000.agic: GIC IRQ controller registered
[    1.009320] iommu: Adding device 702ef000.adsp to group 33
[    1.018615] iommu: Adding device aconnect@702c0000:adsp_audio to group 34
[    1.018787] tegra-aconnect aconnect@702c0000: Tegra ACONNECT bus registered
[    1.019467] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 =                                                                                                              0x8a29412
[    1.019474] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_                                                                                                             0 = 0x4
[    1.021071] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane =                                                                                                              usb2-0, function = xusb
[    1.021172] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.1, lane =                                                                                                              usb2-1, function = xusb
[    1.021262] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.2, lane =                                                                                                              usb2-2, function = xusb
[    1.021453] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane =                                                                                                              pcie-0, function = pcie-x1
[    1.021543] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane =                                                                                                              pcie-1, function = pcie-x4
[    1.021632] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane =                                                                                                              pcie-2, function = pcie-x4
[    1.021721] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane =                                                                                                              pcie-3, function = pcie-x4
[    1.021811] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane =                                                                                                              pcie-4, function = pcie-x4
[    1.021933] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.8, lane =                                                                                                              pcie-5, function = xusb
[    1.022022] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.9, lane =                                                                                                              pcie-6, function = xusb
[    1.028215] tegra-pwm 7000a000.pwm: PWM clk cannot sleep in ops
[    1.029934] tegra-dfll-pwm 70110000.pwm: DFLL pwm-rate: 12800000
[    1.031841] tegra-pcie 1003000.pcie: 4x1, 1x1 configuration
[    1.033108] tegra-pcie 1003000.pcie: PCIE: Enable power rails
[    1.033463] tegra-pcie 1003000.pcie: probing port 0, using 4 lanes
[    1.034802] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:c                                                                                                             amera_platform_driver probe
[    1.035017] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=1                                                                                                             500000, vi_iso_bw=1500000, max_bw=1500000
[    1.035238] Adding domain tsec-pd to PM domain host1x-pd
[    1.037450] tegra-pcie 1003000.pcie: probing port 1, using 1 lanes
[    1.038345] tsec 54500000.tsec: initialized
[    1.039983] tsec 54100000.tsecb: initialized
[    1.040705] Adding domain nvdec-pd to PM domain host1x-pd
[    1.044166] nvdec 54480000.nvdec: initialized
[    1.045231] Adding domain vic03-pd to PM domain host1x-pd
[    1.045416] Adding domain msenc-pd to PM domain host1x-pd
[    1.045585] Adding domain nvjpg-pd to PM domain host1x-pd
[    1.049498] falcon 54340000.vic: initialized
[    1.050816] falcon 544c0000.nvenc: initialized
[    1.052187] falcon 54380000.nvjpg: initialized
[    1.056619] tegra_cec 70015000.tegra_cec: dt=1 start=0x70015000 end=0x70015FF                                                                                                             F irq=96
[    1.056664] tegra_cec 70015000.tegra_cec: Enable clock result: 0.
[    1.056701] tegra_cec 70015000.tegra_cec: tegra_cec_init started
[    1.056764] tegradc tegradc.0: disp0 connected to head0->/host1x/sor1
[    1.056854] display board info: id 0x0, fab 0x0
[    1.056908] generic_infoframe_type: 0x87
[    1.056980] tegra_cec 70015000.tegra_cec: cec_add_sysfs ret=0
[    1.056986] tegra_cec 70015000.tegra_cec: probed
[    1.057063] tegradc tegradc.0: DT parsed successfully
[    1.057116] tegradc tegradc.0: Display dc.ffffff800abc0000 registered with id                                                                                                             =0
[    1.064670] tegra-apbdma 60020000.dma: Tegra20 APB DMA driver register 32 cha                                                                                                             nnels
[    1.069092] tegradc tegradc.0: probed
[    1.069908] Console: switching to colour frame buffer device 80x30
[    1.069942] tegradc tegradc.0: fb registered
[    1.070254] tegra-adma 702e2000.adma: Tegra210 ADMA driver registered 22 chan                                                                                                             nels
[    1.071441] tegra-fuse-burn 7000f800.efuse:efuse-burn: shutdown limit check d                                                                                                             isabled
[    1.071450] tegra-fuse-burn 7000f800.efuse:efuse-burn: Fuse burn driver initi                                                                                                             alized
[    1.071626] tegradc tegradc.1: disp1 connected to head1->/host1x/sor
[    1.071746] tegradc tegradc.1: No lt-data, using default setting
[    1.071789] tegradc tegradc.1: No hpd-gpio in DT
[    1.071841] tegradc tegradc.1: DT parsed successfully
[    1.071894] tegradc tegradc.1: Display dc.ffffff800ad40000 registered with id                                                                                                             =1
[    1.072098] kfuse 7000fc00.kfuse: initialized
[    1.073332] tegra-pmc-iopower pmc-iopower: Regulator supply iopower-dbg-suppl                                                                                                             y not available
[    1.073482] tegradc tegradc.1: dpd enable lookup fail:-19
[    1.074332] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[    1.075372] tegra-dfll-pwm 70110000.pwm: DFLL_PWM regulator is available now
[    1.075383] vdd-cpu: 708 <--> 1322 mV at 708 mV
[    1.075787] pwm-regulator pwm_regulators:pwm-regulator@0: PWM regulator regis                                                                                                             tration passed
[    1.579200] Host read timeout at address 545c00c4
[    1.579611] vdd-gpu: applied init 1000000uV constraint
[    1.579620] vdd-gpu: 708 <--> 1323 mV at 997 mV
[    1.580028] pwm-regulator pwm_regulators:pwm-regulator@1: PWM regulator regis                                                                                                             tration passed
[    1.580817] tegradc tegradc.1: probed
[    1.581168] tegradc tegradc.1: fb registered
[    1.584165] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.584261] No Device Node present for smmu client: serial8250 !!
[    1.584271] platform serial8250: No iommus property found in DT node, got swg                                                                                                             ids from fixup(101004000)
[    1.584309] iommu: Adding device serial8250 to group 35
[    1.584391] hpd: state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[    1.584398] hpd: switching from state 7 (Takeover from bootloader) to state 0                                                                                                              (Reset)
[    1.584407] hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
[    1.584423] tegradc tegradc.1: blank - powerdown
[    1.584447] extcon-disp-state extcon:disp-state: cable 44 state 0 already set                                                                                                             .
[    1.584452] Extcon DP: HPD disabled
[    1.584456] hpd: hpd_switch 0
[    1.584460] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[    1.584469] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[    1.584476] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[    1.586947] console [ttyS0] disabled
[    1.587050] 70006000.serial: ttyS0 at MMIO 0x70006000 (irq = 63, base_baud =                                                                                                              25500000) is a Tegra
[    1.597351] console [ttyS0] enabled
[    1.598423] 70006040.serial: ttyTHS1 at MMIO 0x70006040 (irq = 64, base_baud                                                                                                              = 0) is a TEGRA_UART
[    1.598736] serial-tegra 70006200.serial: RX in PIO mode
[    1.598827] 70006200.serial: ttyTHS2 at MMIO 0x70006200 (irq = 65, base_baud                                                                                                              = 0) is a TEGRA_UART
[    1.599807] [drm] Initialized
[    1.610362] brd: module loaded
[    1.615519] loop: module loaded
[    1.615599] tegra_profiler: version: 1.145, samples/io: 49/28
[    1.615712] tegra_profiler: auth: init
[    1.617104] THERMAL EST: found 2 subdevs
[    1.617111] THERMAL EST num_resources: 0
[    1.617117] [THERMAL EST subdev 0]
[    1.617124] [THERMAL EST subdev 1]
[    1.617589] thermal thermal_zone5: Registering thermal zone thermal_zone5 for                                                                                                              type thermal-fan-est
[    1.617594] THERMAL EST: thz register success.
[    1.617776] THERMAL EST: end of probe, return err: 0
[    1.619035] sd: No Scsi addr parsed to reserve index
[    1.619074] hisi_sas: driver version v1.6
[    1.626241] tun: Universal TUN/TAP device driver, 1.6
[    1.626252] tun: (C) 1999-2004 Max Krasnyansky <[email protected]>
[    1.627415] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.627420] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.627471] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    1.627474] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.627539] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version                                                                                                              2.4.0-k
[    1.627544] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.627587] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4                                                                                                             .4.0-k
[    1.627591] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    1.628800] PPP generic driver version 2.4.2
[    1.629014] PPP BSD Compression module registered
[    1.629020] PPP Deflate Compression module registered
[    1.629059] PPP MPPE Compression module registered
[    1.629068] NET: Registered protocol family 24
[    1.629144] usbcore: registered new interface driver r8152
[    1.629189] usbcore: registered new interface driver asix
[    1.629238] usbcore: registered new interface driver ax88179_178a
[    1.629275] usbcore: registered new interface driver cdc_ether
[    1.629317] usbcore: registered new interface driver net1080
[    1.629360] usbcore: registered new interface driver cdc_subset
[    1.629396] usbcore: registered new interface driver zaurus
[    1.629459] usbcore: registered new interface driver cdc_ncm
[    1.629665] VFIO - User Level meta-driver version: 0.3
[    1.631167] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.631194] ehci-pci: EHCI PCI platform driver
[    1.631241] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.631252] ohci-pci: OHCI PCI platform driver
[    1.631294] ohci-platform: OHCI generic platform driver
[    1.634366] tegra-xusb 70090000.xusb: USB2 port 0 has OTG_CAP
[    1.634982] tegra-xusb-padctl 7009f000.xusb_padctl: enabled OTG on UTMI pad 0
[    1.636181] tegra-xusb 70090000.xusb: extcon 0: ffffffc0f974e800 id
[    1.638453] usbcore: registered new interface driver uas
[    1.638534] usbcore: registered new interface driver usb-storage
[    1.638644] usbcore: registered new interface driver usbserial
[    1.641872] tegra-xusb 70090000.xusb: Firmware timestamp: 2020-07-31 09:33:12                                                                                                              UTC, Version: 50.26 release
[    1.641958] tegra-xusb 70090000.xusb: xHCI Host Controller
[    1.641986] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus nu                                                                                                             mber 1
[    1.642337] tegra-xudc-new 700d0000.xudc: device count: 1
[    1.642801] tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100                                                                                                              quirks 0x00050010
[    1.642863] tegra-xusb 70090000.xusb: irq 61, io mem 0x70090000
[    1.643176] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.643187] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=                                                                                                             1
[    1.643200] usb usb1: Product: xHCI Host Controller
[    1.643214] usb usb1: Manufacturer: Linux 4.9.299-tegra xhci-hcd
[    1.643219] usb usb1: SerialNumber: 70090000.xusb
[    1.644070] tegra-xudc-new 700d0000.xudc: USB charger detection disabled
[    1.644089] tegra-xudc-new 700d0000.xudc: vbus state: 1
[    1.644106] tegra-xudc-new 700d0000.xudc: device mode on: 0
[    1.644119] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 0
[    1.644138] hub 1-0:1.0: USB hub found
[    1.644149] tegra-xudc-new 700d0000.xudc: active: 0 => 1
[    1.644182] hub 1-0:1.0: 5 ports detected
[    1.644795] tegra-xusb 70090000.xusb: xHCI Host Controller
[    1.644811] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus nu                                                                                                             mber 2
[    1.644917] usb usb2: We don't know the algorithms for LPM for this host, dis                                                                                                             abling LPM.
[    1.644935] mousedev: PS/2 mouse device common for all mice
[    1.645027] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.645033] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=                                                                                                             1
[    1.645038] usb usb2: Product: xHCI Host Controller
[    1.645042] usb usb2: Manufacturer: Linux 4.9.299-tegra xhci-hcd
[    1.645047] usbcore: registered new interface driver xpad
[    1.645051] usb usb2: SerialNumber: 70090000.xusb
[    1.645592] hub 2-0:1.0: USB hub found
[    1.645634] hub 2-0:1.0: 4 ports detected
[    1.646504] tegra-xusb 70090000.xusb: Upgrade port 0 to USB3.0
[    1.646511] tegra-xusb 70090000.xusb: Upgrade port 1 to USB3.0
[    1.665916] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 1
[    1.746579] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as r                                                                                                             tc0
[    1.749086] rtc rtc1: alarm rtc device
[    1.749106] tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
[    1.749137] tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
[    1.749869] i2c /dev entries driver
[    1.750118] usb usb2: usb_suspend_both: status 0
[    1.752205] i2c i2c-6: Added multiplexed i2c bus 7
[    1.752695] i2c i2c-6: Added multiplexed i2c bus 8
[    1.752701] i2c-mux-gpio cam_i2cmux: 2 port mux on Tegra I2C adapter adapter
[    1.753642] imx219 7-0010: tegracam sensor driver:imx219_v2.0.6
[    1.776994] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x10
[    1.777124] imx219 7-0010: imx219_board_setup: error during i2c read probe (-                                                                                                             121)
[    1.784822] imx219 7-0010: board setup failed
[    1.789263] imx219: probe of 7-0010 failed with error -121
[    1.789923] imx219 8-0010: tegracam sensor driver:imx219_v2.0.6
[    1.813219] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x10
[    1.813319] imx219 8-0010: imx219_board_setup: error during i2c read probe (-                                                                                                             121)
[    1.820875] imx219 8-0010: board setup failed
[    1.825305] imx219: probe of 8-0010 failed with error -121
[    1.827197] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[    1.829907] tegra_soctherm 700e2000.soctherm: pllx_offset tz:0 max:14, min:2
[    1.829914] tegra_soctherm 700e2000.soctherm: pllx_offset tz:2 max:8, min:4
[    1.830370] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -214                                                                                                             7483647 forced to -127000
[    1.830388] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when                                                                                                              cpu reaches 102500 mC
[    1.830399] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when c                                                                                                             pu reaches 100500 mC
[    1.830529] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -214                                                                                                             7483647 forced to -127000
[    1.830540] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when                                                                                                              gpu reaches 103000 mC
[    1.830548] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when g                                                                                                             pu reaches 101000 mC
[    1.830692] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -214                                                                                                             7483647 forced to -127000
[    1.830703] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when                                                                                                              pll reaches 127000 mC
[    1.830709] tegra_soctherm 700e2000.soctherm: throttrip: pll: missing hot tem                                                                                                             perature
[    1.830915] tegra_soctherm 700e2000.soctherm: failed to register sensor: -19
[    1.831758] tegra_aotag tegra-aotag: Registering sensor 0
[    1.831816] tegra_aotag tegra-aotag: Invalid temp readout
[    1.831842] tegra_aotag tegra-aotag: Invalid temp readout
[    1.831860] tegra_aotag tegra-aotag: Bound to TZ : ID 0
[    1.831903] tegra_aotag tegra-aotag: Probe done [SUCCESS]:0
[    1.832859] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -214                                                                                                             7483647 forced to -127000
[    1.832881] tegra_dfll_action dfll-cdev-cap: Tegra DFLL 'cap cooling device'                                                                                                              registered
[    1.833075] tegra_aotag tegra-aotag: Invalid temp readout
[    1.833110] tegra_dfll_action dfll-cdev-floor: Tegra DFLL 'floor cooling devi                                                                                                             ce' registered
[    1.833534] parse_throttle_dt_data: Num cap clks = 6
[    1.833542] parse_throttle_dt_data: clk=cclk_g type=2
[    1.833557] parse_throttle_dt_data: clk=gpu type=4
[    1.833588] parse_throttle_dt_data: clk=cap.throttle.c2bus type=0
[    1.833611] parse_throttle_dt_data: clk=cap.throttle.c3bus type=0
[    1.833634] parse_throttle_dt_data: clk=cap.throttle.sclk type=0
[    1.833638] parse_throttle_dt_data: clk=emc type=3
[    1.834085] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -214                                                                                                             7483647 forced to -127000
[    1.834209] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -214                                                                                                             7483647 forced to -127000
[    1.834353] tegra_throttle_probe: probe successful. #cdevs=4
[    1.835197] FAN dev name: pwm-fan
[    1.835282] FAN:gpio request success.
[    1.835344] pwm_fan_driver pwm-fan: cap state:7, cap pwm:255
[    1.835664] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[    1.835840] pwm_fan_driver pwm-fan: fan tach request irq success
[    1.835852] pwm_fan_driver pwm-fan: tach period: 1000
[    1.835990] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, st                                                                                                             ate:2
[    1.835996] pwm_fan_driver pwm-fan: index 1: pwm=80, rpm=1000, rru=2, rrd=2,                                                                                                              state:2
[    1.836001] pwm_fan_driver pwm-fan: index 2: pwm=120, rpm=2000, rru=1, rrd=1,                                                                                                              state:2
[    1.836006] pwm_fan_driver pwm-fan: index 3: pwm=160, rpm=3000, rru=1, rrd=1,                                                                                                              state:2
[    1.836011] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1,                                                                                                              state:3
[    1.836016] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1,                                                                                                              state:3
[    1.836021] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1,                                                                                                              state:3
[    1.836026] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1,                                                                                                              state:4
[    1.836031] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1                                                                                                             , state:4
[    1.836036] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1                                                                                                             , state:4
[    1.838980] device-mapper: uevent: version 1.0.3
[    1.839451] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-d                                                                                                             [email protected]
[    1.845174] tegra210-cpufreq cpufreq: probe()...completed
[    1.845938] sdhci: Secure Digital Host Controller Interface driver
[    1.845940] sdhci: Copyright(c) Pierre Ossman
[    1.845942] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.846302] sdhci-tegra sdhci-tegra.3: Client registration for eMC Successful
[    1.852629] tegra-se 70012000.se: tegra_se_probe: complete
[    1.853138] hidraw: raw HID events driver (C) Jiri Kosina
[    1.854247] usbcore: registered new interface driver usbhid
[    1.854249] usbhid: USB HID core driver
[    1.855638] ashmem: initialized
[    1.856558] tegra21x_actmon 6000c800.actmon: in actmon_register()...
[    1.856724] tegra21x_actmon 6000c800.actmon: initialization Completed for the                                                                                                              device mc_all
[    1.858989] nvpmodel: initialized successfulplatform probe
[    1.878889] OPE platform probe successful
[    1.889905] usb 1-2: new high-speed USB device number 2 using tegra-xusb
[    1.893915] mmc0: SDHCI controller on sdhci-tegra.3 [sdhci-tegra.3] using ADM                                                                                                             A 64-bit with 64 bit addr
[    1.905565] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[    1.905697] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[    1.905851] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[    1.905987] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[    1.906115] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[    1.906243] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[    1.906371] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[    1.906497] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[    1.906626] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[    1.906756] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[    1.912728] usb 1-2: New USB device found, idVendor=2109, idProduct=2817
[    1.912733] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.912737] usb 1-2: Product: USB2.0 Hub
[    1.912740] usb 1-2: Manufacturer: VIA Labs, Inc.
[    1.913736] hub 1-2:1.0: USB hub found
[    1.914004] hub 1-2:1.0: 4 ports detected
[    1.918457] u32 classifier
[    1.918459]     Actions configured
[    1.918527] Initializing XFRM netlink socket
[    1.919236] NET: Registered protocol family 10
[    1.919882] NET: Registered protocol family 17
[    1.919894] NET: Registered protocol family 15
[    1.919970] bridge: filtering via arp/ip/ip6tables is no longer available by                                                                                                              default. Update your scripts to load br_netfilter if you need this.
[    1.920018] Bluetooth: RFCOMM socket layer initialized
[    1.920029] Bluetooth: RFCOMM ver 1.11
[    1.920034] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    1.920038] Bluetooth: HIDP socket layer initialized
[    1.920056] 9pnet: Installing 9P2000 support
[    1.920093] Key type dns_resolver registered
[    1.920513] Registered cp15_barrier emulation handler
[    1.920519] Registered setend emulation handler
[    1.921568] registered taskstats version 1
[    1.922104] Adding domain ve2-pd to PM domain host1x-pd
[    1.922357] Adding domain ve-pd to PM domain host1x-pd
[    1.924347] isp 54600000.isp: initialized
[    1.925320] isp 54680000.isp: initialized
[    1.935427] last reset is due to software reset
[    1.935431] KERNEL: PMC reset status reg: 0x3
[    1.935489] BL: PMC reset status reg: 0x3
[    1.935491] BL: PMIC poweroff Event Recorder: 0x0
[    1.936958] clk_cbus_recalc_rate: no gbus parent
[    1.936964] clk_cbus_round_rate: no gbus parent
[    1.936966] clk_cbus_round_rate: no gbus parent
[    1.936971] clk_cbus_recalc_rate: no gbus parent
[    1.937073] clk_cbus_recalc_rate: no gbus parent
[    1.937077] clk_cbus_round_rate: no gbus parent
[    1.937079] clk_cbus_round_rate: no gbus parent
[    1.937083] clk_cbus_recalc_rate: no gbus parent
[    1.937776] tegra_dvfs: GPU-cap: registered
[    1.937867] tegra dvfs: vdd-cpu: nominal 1168mV, offset 708000uV, step 19200u                                                                                                             V, scaling enabled
[    1.937870] tegra dvfs: vdd-core: nominal 1125mV, offset 600000uV, step 12500                                                                                                             uV, scaling enabled
[    1.937872] tegra dvfs: vdd-gpu: nominal 1078mV, offset 708000uV, step 10000u                                                                                                             V, scaling enabled
[    1.940177] tegra_dvfs: vdd-gpu-vts: registered
[    1.940896] tegra_core_action core_dvfs_cdev_floor: Tegra CORE DVFS 'floor co                                                                                                             oling device' registered
[    1.941544] tegra_core_action core_dvfs_cdev_cap: Tegra CORE DVFS 'cap coolin                                                                                                             g device' registered
[    1.942133] input: gpio-keys as /devices/gpio-keys/input/input1
[    1.946044] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    1.950424] mmcblk0: mmc0:0001 DG4016 14.7 GiB
[    1.950526] mmcblk0boot0: mmc0:0001 DG4016 partition 1 4.00 MiB
[    1.954655] mmcblk0boot1: mmc0:0001 DG4016 partition 2 4.00 MiB
[    1.954758] mmcblk0rpmb: mmc0:0001 DG4016 partition 3 4.00 MiB
[    1.957029]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16                                                                                                              p17
[    1.974635] tegra_rtc 7000e000.rtc: setting system clock to 2000-01-01 01:05:                                                                                                             43 UTC (946688743)
[    1.975652] vi 54080000.vi: vi_probe: ++
[    1.975930] tegra-pcie 1003000.pcie: link 0 down, retrying
[    1.978689] vi 54080000.vi: initialized
[    1.980722] vi 54080000.vi: subdev nvcsi--2 bound
[    1.980831] vi 54080000.vi: subdev nvcsi--1 bound
[    1.981056] mmcblk mmc0:0001: Card claimed for testing.
[    1.982290] Disable partitions left on by BL
[    1.982294]   disb
[    1.982342] bwmgr: missing cdev-type property
[    1.982432] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -214                                                                                                             7483647 forced to -127000
[    1.982438] DRAM derating cdev registered.
[    1.983311] ALSA device list:
[    1.983315]   #0: tegra-hda at 0x70038000 irq 82
[    1.983317]   #1: tegra-snd-t210ref-mobile-rt565x
[    1.986671] Freeing unused kernel memory: 8640K
[    2.010120] Root device found: sda1
[    2.036977] usb 2-1: new SuperSpeed USB device number 2 using tegra-xusb
[    2.056128] usb 2-1: New USB device found, idVendor=2109, idProduct=0817
[    2.056133] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.056136] usb 2-1: Product: USB3.0 Hub
[    2.056140] usb 2-1: Manufacturer: VIA Labs, Inc.
[    2.057063] hub 2-1:1.0: USB hub found
[    2.057229] hub 2-1:1.0: 4 ports detected
[    2.069908] tegra_cec 70015000.tegra_cec: Can't find physical addresse.
[    2.069911] tegra_cec 70015000.tegra_cec: tegra_cec_init Done.
[    2.383817] tegra-pcie 1003000.pcie: link 0 down, retrying
[    2.437910] tegra-xusb-padctl 7009f000.xusb_padctl: power down UTMI pad 1
[    2.457908] usb 1-2: usb_suspend_both: status 0
[    2.457969] usb usb1: usb_suspend_both: status 0
[    2.602477] usb 2-1.1: new SuperSpeed USB device number 3 using tegra-xusb
[    2.625520] usb 2-1.1: New USB device found, idVendor=8564, idProduct=4000
[    2.625526] usb 2-1.1: New USB device strings: Mfr=3, Product=4, SerialNumber                                                                                                             =5
[    2.625529] usb 2-1.1: Product: Transcend
[    2.625533] usb 2-1.1: Manufacturer: TS-RDF5
[    2.625536] usb 2-1.1: SerialNumber: 000000000039
[    2.626553] usb-storage 2-1.1:1.0: USB Mass Storage device detected
[    2.626841] scsi host0: usb-storage 2-1.1:1.0
[    2.793695] tegra-pcie 1003000.pcie: link 0 down, retrying
[    2.795770] tegra-pcie 1003000.pcie: link 0 down, ignoring
[    2.899210] tegra-pcie 1003000.pcie: PCI host bridge to bus 0000:00
[    2.899215] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    2.899218] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
[    2.899222] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pre                                                                                                             f]
[    2.899225] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.899246] pci 0000:00:02.0: [10de:0faf] type 01 class 0x060400
[    2.899313] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.899430] iommu: Adding device 0000:00:02.0 to group 37
[    2.899495] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), rec                                                                                                             onfiguring
[    2.899603] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[    2.899629] pci 0000:01:00.0: reg 0x10: [io  0x0000-0x00ff]
[    2.899661] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit pref                                                                                                             ]
[    2.899684] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit pref                                                                                                             ]
[    2.899829] pci 0000:01:00.0: supports D1 D2
[    2.899832] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.899970] iommu: Adding device 0000:01:00.0 to group 38
[    2.909947] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    2.909973] pci 0000:00:02.0: BAR 15: assigned [mem 0x20000000-0x200fffff 64b                                                                                                             it pref]
[    2.909977] pci 0000:00:02.0: BAR 13: assigned [io  0x1000-0x1fff]
[    2.909982] pci 0000:01:00.0: BAR 4: assigned [mem 0x20000000-0x20003fff 64bi                                                                                                             t pref]
[    2.910001] pci 0000:01:00.0: BAR 2: assigned [mem 0x20004000-0x20004fff 64bi                                                                                                             t pref]
[    2.910018] pci 0000:01:00.0: BAR 0: assigned [io  0x1000-0x10ff]
[    2.910026] pci 0000:00:02.0: PCI bridge to [bus 01]
[    2.910030] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
[    2.910036] pci 0000:00:02.0:   bridge window [mem 0x20000000-0x200fffff 64bi                                                                                                             t pref]
[    2.910221] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    2.910224] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    2.910228] pcie_pme 0000:00:02.0:pcie001: service driver pcie_pme loaded
[    2.910306] aer 0000:00:02.0:pcie002: service driver aer loaded
[    2.910467] r8168 0000:01:00.0: enabling device (0000 -> 0003)
[    2.910484] r8168 Gigabit Ethernet driver 8.045.08-NAPI loaded
[    2.931624] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Invalid                                                                                                              ethernet address 00:00:00:00:00:00, trying device tree node
[    2.931684] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Found va                                                                                                             lid ethernet address 48:b0:2d:5b:5b:1d from device tree
[    2.932098] r8168: This product is covered by one or more of the following pa                                                                                                             tents: US6,570,884, US6,115,776, and US6,327,625.
[    2.932112] r8168  Copyright (C) 2017  Realtek NIC software team <nicfae@real                                                                                                             tek.com>
                This program comes with ABSOLUTELY NO WARRANTY; for details, ple                                                                                                             ase see <http://www.gnu.org/licenses/>.
                This is free software, and you are welcome to redistribute it un                                                                                                             der certain conditions; see <http://www.gnu.org/licenses/>.
[    3.635605] scsi 0:0:0:0: Direct-Access     TS-RDF5  SD  Transcend    TS37 PQ                                                                                                             : 0 ANSI: 6
[    3.897523] sd 0:0:0:0: [sda] 486637568 512-byte logical blocks: (249 GB/232                                                                                                              GiB)
[    3.898451] sd 0:0:0:0: [sda] Write Protect is off
[    3.898456] sd 0:0:0:0: [sda] Mode Sense: 23 00 00 00
[    3.899259] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doe                                                                                                             sn't support DPO or FUA
[    3.912011]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sd                                                                                                             a12 sda13 sda14
[    3.915746] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    4.044174] Found dev node: /dev/sda1
[    4.094402] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts:                                                                                                              (null)
[    4.096319] Rootfs mounted over sda1
[    4.121110] Switching from initrd to actual rootfs
[    4.349269] systemd[1]: System time before build time, advancing clock.
[    4.377100] cgroup: cgroup2: unknown option "nsdelegate"
[    4.399061] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SEL                                                                                                             INUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +                                                                                                             XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybr                                                                                                             id)
[    4.399851] systemd[1]: Detected architecture arm64.
[    4.422317] systemd[1]: Set hostname to <nano>.
[    4.636126] systemd[1]: File /lib/systemd/system/systemd-journald.service:36                                                                                                              configures an IP firewall (IPAddressDeny=any), but the local system does not sup                                                                                                             port BPF/cgroup based firewalling.
[    4.636135] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warni                                                                                                             ng is only shown for the first loaded unit using IP firewalling.)
[    4.810980] random: systemd: uninitialized urandom read (16 bytes read)
[    4.812601] systemd[1]: Created slice User and Session Slice.
[    4.812756] random: systemd: uninitialized urandom read (16 bytes read)
[    4.812778] systemd[1]: Reached target User and Group Name Lookups.
[    4.812839] random: systemd: uninitialized urandom read (16 bytes read)
[    4.813604] systemd[1]: Created slice System Slice.
[    4.814500] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    4.814675] systemd[1]: Listening on fsck to fsckd communication Socket.
[    5.053047] EXT4-fs (sda1): re-mounted. Opts: (null)
[    5.125410] systemd-journald[2043]: Received request to flush runtime journal                                                                                                              from PID 1
[    6.412324] random: crng init done
[    6.415729] random: 7 urandom warning(s) missed due to ratelimiting
[    6.551524] using random self ethernet address
[    6.556017] using random host ethernet address
[    7.520814] Mass Storage Function, version: 2009/09/11
[    7.520820] LUN: removable file: (no medium)
[    7.525475] using random self ethernet address
[    7.529972] using random host ethernet address
[    7.560673] rndis0: HOST MAC 02:9f:9a:bd:72:00
[    7.560744] rndis0: MAC 02:9f:9a:bd:72:01
[    7.561597] usb0: HOST MAC 02:9f:9a:bd:72:02
[    7.561729] usb0: MAC 02:9f:9a:bd:72:03
[    7.561758] tegra-xudc-new 700d0000.xudc: ep 0 (type: 0, dir: out) enabled
[    7.570941] l4tbr0: port 1(rndis0) entered blocking state
[    7.570946] l4tbr0: port 1(rndis0) entered disabled state
[    7.571519] device rndis0 entered promiscuous mode
[    7.580388] IPv6: ADDRCONF(NETDEV_UP): rndis0: link is not ready
[    7.586374] l4tbr0: port 2(usb0) entered blocking state
[    7.586379] l4tbr0: port 2(usb0) entered disabled state
[    7.586568] device usb0 entered promiscuous mode
[    7.595922] IPv6: ADDRCONF(NETDEV_UP): usb0: link is not ready
[    7.814651] android_work: did not send uevent (0 0           (null))
[    7.847387] android_work: sent uevent USB_STATE=CONNECTED
[    7.873009] configfs-gadget gadget: high-speed config #1: c
[    7.873040] tegra-xudc-new 700d0000.xudc: ep 5 (type: 3, dir: in) enabled
[    7.873056] tegra-xudc-new 700d0000.xudc: ep 3 (type: 2, dir: in) enabled
[    7.873072] tegra-xudc-new 700d0000.xudc: ep 2 (type: 2, dir: out) enabled
[    7.873177] tegra-xudc-new 700d0000.xudc: ep 9 (type: 3, dir: in) enabled
[    7.873193] tegra-xudc-new 700d0000.xudc: ep 7 (type: 2, dir: in) enabled
[    7.873208] tegra-xudc-new 700d0000.xudc: ep 4 (type: 2, dir: out) enabled
[    7.873242] tegra-xudc-new 700d0000.xudc: ep 15 (type: 3, dir: in) enabled
[    7.873261] tegra-xudc-new 700d0000.xudc: ep 11 (type: 2, dir: in) enabled
[    7.873282] tegra-xudc-new 700d0000.xudc: ep 6 (type: 2, dir: out) enabled
[    7.873981] IPv6: ADDRCONF(NETDEV_CHANGE): rndis0: link becomes ready
[    7.874115] android_work: sent uevent USB_STATE=CONFIGURED
[   11.928244] l4tbr0: port 1(rndis0) entered blocking state
[   11.928249] l4tbr0: port 1(rndis0) entered forwarding state
[   11.928360] IPv6: ADDRCONF(NETDEV_UP): l4tbr0: link is not ready
[   11.928375] IPv6: ADDRCONF(NETDEV_CHANGE): l4tbr0: link becomes ready
[   11.965782] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   11.971461] eth0: 0xffffff800ab03000, 48:b0:2d:5b:5b:1d, IRQ 406
[   12.039020] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   16.413407] tegradc tegradc.0: blank - powerdown
[   16.835785] tegradc tegradc.0: blank - powerdown
[   16.979700] device-mapper: table: 253:0: thin-pool: unknown target type
[   16.987207] device-mapper: ioctl: error adding target to table
[   17.197054] tegradc tegradc.0: blank - powerdown
[   17.489099] tegradc tegradc.0: blank - powerdown
[   17.777029] tegradc tegradc.0: blank - powerdown
[   18.061729] tegradc tegradc.0: blank - powerdown
[   18.345799] tegradc tegradc.0: blank - powerdown
[   18.628222] tegradc tegradc.0: blank - powerdown
[   18.913625] tegradc tegradc.0: blank - powerdown
[   19.217702] tegradc tegradc.0: blank - powerdown
[   19.355016] device-mapper: table: 253:0: thin-pool: unknown target type
[   19.365200] device-mapper: ioctl: error adding target to table
[   19.549060] tegradc tegradc.0: blank - powerdown
[   19.833762] tegradc tegradc.0: blank - powerdown
[   20.120716] tegradc tegradc.0: blank - powerdown
[   20.401120] tegradc tegradc.0: blank - powerdown
[   20.684054] tegradc tegradc.0: blank - powerdown
[   20.973481] tegradc tegradc.0: blank - powerdown
[   21.260849] tegradc tegradc.0: blank - powerdown
[   21.571555] tegradc tegradc.0: blank - powerdown
[   21.716015] device-mapper: table: 253:0: thin-pool: unknown target type
[   21.722755] device-mapper: ioctl: error adding target to table
[   21.906434] tegradc tegradc.0: blank - powerdown
[   22.197143] tegradc tegradc.0: blank - powerdown
[   22.482755] tegradc tegradc.0: blank - powerdown
[   22.763894] tegradc tegradc.0: blank - powerdown
[   23.054270] tegradc tegradc.0: blank - powerdown
[   23.361477] tegradc tegradc.0: blank - powerdown
[   23.642936] tegradc tegradc.0: blank - powerdown
[   23.926520] tegradc tegradc.0: bl[   29.634982] tegradc tegradc.0: blank - po                                                                                                             werdown
[   29.922539] tegradc tegradc.0: blank - powerdown
[   30.208929] tegradc tegradc.0: blank - powerdown
[   30.498183] tegradc tegradc.0: blank - powerdown
[   30.791711] tegradc tegradc.0: blank - powerdown
[   31.077821] tegradc tegradc.0: blank - powerdown
[   31.363528] tegradc tegradc.0: blank - powerdown
[   31.652269] tegradc tegradc.0: blank - powerdown
[   31.939776] tegradc tegradc.0: blank - powerdown
[   32.229034] tegradc tegradc.0: blank - powerdown
[   32.518141] tegradc tegradc.0: blank - powerdown
[   32.807500] tegradc tegradc.0: blank - powerdown
[   33.100919] tegradc tegradc.0: blank - powerdown
[   33.390052] tegradc tegradc.0: blank - powerdown
[   33.676485] tegradc tegradc.0: blank - powerdown
[   33.906026] vdd-fan: disabling
[   33.906031] vdd-usb-vbus: disabling
[   33.906033] vdd-usb-vbus2: disabling
[   33.906042] vddio-sdmmc-ap: disabling
[   33.906162] vddio-sdmmc3-ap: disabling
[   33.906264] vdd-3v3-sd: disabling
[   33.906269] avdd-io-edp-1v05: disabling
[   33.906272] vdd-usb-hub-en: disabling
[   33.964672] tegradc tegradc.0: blank - powerdown
[   34.252521] tegradc tegradc.0: blank - powerdown
[   34.543331] tegradc tegradc.0: blank - powerdown
[   34.829491] tegradc tegradc.0: blank - powerdown
[   35.121378] tegradc tegradc.0: blank - powerdown
[   35.444225] tegradc tegradc.0: blank - powerdown
[   35.729424] tegradc tegradc.0: blank - powerdown
[   36.013490] tegradc tegradc.0: blank - powerdown
[   36.298520] tegradc tegradc.0: blank - powerdown
[   36.583526] tegradc tegradc.0: blank - powerdown
[   36.868410] tegradc tegradc.0: blank - powerdown
[   37.159111] tegradc tegradc.0: blank - powerdown
[   37.448634] tegradc tegradc.0: blank - powerdown
[   37.734989] tegradc tegradc.0: blank - powerdown
[   38.024541] tegradc tegradc.0: blank - powerdown
[   38.314532] tegradc tegradc.0: blank - powerdown
[   38.602523] tegradc tegradc.0: blank - powerdown
[   38.886339] tegradc tegradc.0: blank - powerdown
[   39.174815] tegradc tegradc.0: blank - powerdown
[   39.469632] tegradc tegradc.0: blank - powerdown
[   39.759478] tegradc tegradc.0: blank - powerdown
[   40.044761] tegradc tegradc.0: blank - powerdown
[   40.333079] tegradc tegradc.0: blank - powerdown
[   40.617675] tegradc tegradc.0: blank - powerdown
[   40.909654] tegradc tegradc.0: blank - powerdown
[   41.202493] tegradc tegradc.0: blank - powerdown
[   41.488129] tegradc tegradc.0: blank - powerdown
[   41.791465] tegradc tegradc.0: blank - powerdown
[   42.079802] tegradc tegradc.0: blank - powerdown
[   42.370294] tegradc tegradc.0: blank - powerdown
[   42.659885] tegradc tegradc.0: blank - powerdown
[   42.944011] tegradc tegradc.0: blank - powerdown
[   43.232043] tegradc tegradc.0: blank - powerdown
[   43.534421] tegradc tegradc.0: blank - powerdown
[   43.828308] tegradc tegradc.0: blank - powerdown
[   44.111016] tegradc tegradc.0: blank - powerdown
[   44.411661] tegradc tegradc.0: blank - powerdown
[   44.700355] tegradc tegradc.0: blank - powerdown
[   44.984773] tegradc tegradc.0: blank - powerdown
[   45.279043] tegradc tegradc.0: blank - powerdown
[   45.568957] tegradc tegradc.0: blank - powerdown
[   45.862715] tegradc tegradc.0: blank - powerdown
[   46.150728] tegradc tegradc.0: blank - powerdown
[   46.450955] tegradc tegradc.0: blank - powerdown
[   46.741974] tegradc tegradc.0: blank - powerdown
[   47.042891] tegradc tegradc.0: blank - powerdown
[   47.328348] tegradc tegradc.0: blank - powerdown
[   47.630065] tegradc tegradc.0: blank - powerdown
[   47.926850] tegradc tegradc.0: blank - powerdown
[   48.228734] tegradc tegradc.0: blank - powerdown
[   48.523880] tegradc tegradc.0: blank - powerdown
[   48.819969] tegradc tegradc.0: blank - powerdown
[   49.108735] tegradc tegradc.0: blank - powerdown
[   49.398396] tegradc tegradc.0: blank - powerdown
[   49.698891] tegradc tegradc.0: blank - powerdown
[   50.008886] tegradc tegradc.0: blank - powerdown
[   50.297366] tegradc tegradc.0: blank - powerdown
[   50.598552] tegradc tegradc.0: blank - powerdown
[   50.896695] tegradc tegradc.0: blank - powerdown
[   51.190885] tegradc tegradc.0: blank - powerdown
[   51.482864] tegradc tegradc.0: blank - powerdown
[   51.822966] tegradc tegradc.0: blank - powerdown
[   52.115155] tegradc tegradc.0: blank - powerdown
[   52.408908] tegradc tegradc.0: blank - powerdown
[   52.700034] tegradc tegradc.0: blank - powerdown
[   52.999383] tegradc tegradc.0: blank - powerdown
[   53.305436] tegradc tegradc.0: blank - powerdown
[   53.597267] tegradc tegradc.0: blank - powerdown
[   53.891149] tegradc tegradc.0: blank - powerdown
[   54.195330] tegradc tegradc.0: blank - powerdown
[   54.492864] tegradc tegradc.0: blank - powerdown
[   54.800814] tegradc tegradc.0: blank - powerdown
[   55.152398] tegradc tegradc.0: blank - powerdown
[   55.461676] tegradc tegradc.0: blank - powerdown
[   55.756212] tegradc tegradc.0: blank - powerdown
[   56.060462] tegradc tegradc.0: blank - powerdown
[   56.353994] tegradc tegradc.0: blank - powerdown
[   56.650855] tegradc tegradc.0: blank - powerdown
[   56.943127] tegradc tegradc.0: blank - powerdown
[   57.249510] tegradc tegradc.0: blank - powerdown
[   57.541323] tegradc tegradc.0: blank - powerdown
[   57.834614] tegradc tegradc.0: blank - powerdown
[   58.125597] tegradc tegradc.0: blank - powerdown
[   58.430463] tegradc tegradc.0: blank - powerdown
[   58.740981] tegradc tegradc.0: blank - powerdown
[   59.044517] tegradc tegradc.0: blank - powerdown
[   59.346908] tegradc tegradc.0: blank - powerdown
[   59.654552] tegradc tegradc.0: blank - powerdown
[   59.954454] tegradc tegradc.0: blank - powerdown
[   60.249041] tegradc tegradc.0: blank - powerdown
[   60.542148] tegradc tegradc.0: blank - powerdown
[   60.848829] tegradc tegradc.0: blank - powerdown
[   61.140236] tegradc tegradc.0: blank - powerdown
[   61.445297] tegradc tegradc.0: blank - powerdown
[   61.743972] tegradc tegradc.0: blank - powerdown
[   62.044658] tegradc tegradc.0: blank - powerdown
[   62.347015] tegradc tegradc.0: blank - powerdown
[   62.645910] tegradc tegradc.0: blank - powerdown
[   62.941297] tegradc tegradc.0: blank - powerdown
[   63.253724] tegradc tegradc.0: blank - powerdown
[   63.551869] tegradc tegradc.0: blank - powerdown
[   63.860400] tegradc tegradc.0: blank - powerdown
[   64.155784] tegradc tegradc.0: blank - powerdown
[   64.454663] tegradc tegradc.0: blank - powerdown
[   64.751807] tegradc tegradc.0: blank - powerdown
[   65.050616] tegradc tegradc.0: blank - powerdown
[   65.358106] tegradc tegradc.0: blank - powerdown
[   65.651514] tegradc tegradc.0: blank - powerdown
[   65.956562] tegradc tegradc.0: blank - powerdown
[   66.253238] tegradc tegradc.0: blank - powerdown
[   66.548560] tegradc tegradc.0: blank - powerdown
[   66.842563] tegradc tegradc.0: blank - powerdown
[   67.146104] tegradc tegradc.0: blank - powerdown
[   67.443936] tegradc tegradc.0: blank - powerdown
[   67.744021] tegradc tegradc.0: blank - powerdown
[   68.047752] tegradc tegradc.0: blank - powerdown
[   68.363114] tegradc tegradc.0: blank - powerdown
[   68.660077] tegradc tegradc.0: blank - powerdown

for /var/log/Xorg.0.log

robotika@nano:~$ cat /var/log/Xorg.0.log
[   129.994] (--) Log file renamed from "/var/log/Xorg.pid-14300.log" to "/var/log/Xorg.0.log"
[   129.995]
X.Org X Server 1.19.6
Release Date: 2017-12-20
[   129.995] X Protocol Version 11, Revision 0
[   129.995] Build Operating System: Linux 4.15.0-163-generic aarch64 Ubuntu
[   129.995] Current Operating System: Linux nano 4.9.299-tegra #1 SMP PREEMPT Tue Nov 22 09:24:39 PST 2022 aarch64
[   129.995] 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,4 earlyprintk=uart8250-32bit,0x70006000 maxcpus=4 usbcore.old_scheme_first=1 lp0_vec=0x1000@0xff780000 core_edp_mv=1125 core_edp_ma=4000 gpt  earlycon=uart8250,mmio32,0x70006000  root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 sdhci_tegra.en_boot_part_access=1 quiet root=/dev/sda1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 sdhci_tegra.en_boot_part_access=1
[   129.995] Build Date: 14 December 2021  04:14:51PM
[   129.995] xorg-server 2:1.19.6-1ubuntu4.10 (For technical support please see http://www.ubuntu.com/support)
[   129.995] Current version of pixman: 0.34.0
[   129.995]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[   129.995] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   129.995] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Aug  3 04:16:43 2023
[   129.995] (==) Using config file: "/etc/X11/xorg.conf"
[   129.995] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   129.996] (==) No Layout section.  Using the first Screen section.
[   129.996] (==) No screen section available. Using defaults.
[   129.996] (**) |-->Screen "Default Screen Section" (0)
[   129.996] (**) |   |-->Monitor "<default monitor>"
[   129.997] (==) No device specified for screen "Default Screen Section".
        Using the first device section listed.
[   129.997] (**) |   |-->Device "Tegra0"
[   129.997] (==) No monitor specified for screen "Default Screen Section".
        Using a default monitor configuration.
[   129.997] (==) Automatically adding devices
[   129.997] (==) Automatically enabling devices
[   129.997] (==) Automatically adding GPU devices
[   129.997] (==) Automatically binding GPU devices
[   129.997] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   129.997] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[   129.997]    Entry deleted from font path.
[   129.997] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[   129.997]    Entry deleted from font path.
[   129.997] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[   129.997]    Entry deleted from font path.
[   129.997] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[   129.997]    Entry deleted from font path.
[   129.997] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[   129.997]    Entry deleted from font path.
[   129.997] (==) FontPath set to:
        /usr/share/fonts/X11/misc,
        /usr/share/fonts/X11/Type1,
        built-ins
[   129.997] (==) ModulePath set to "/usr/lib/xorg/modules"
[   129.997] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[   129.997] (II) Loader magic: 0x556e947010
[   129.997] (II) Module ABI versions:
[   129.997]    X.Org ANSI C Emulation: 0.4
[   129.997]    X.Org Video Driver: 23.0
[   129.997]    X.Org XInput driver : 24.1
[   129.997]    X.Org Server Extension : 10.0
[   129.999] (++) using VT number 1

[   130.004] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c372
[   130.005] (II) no primary bus or device found
[   130.005] (WW) "dri" will not be loaded unless you've specified it to be loaded elsewhere.
[   130.005] (II) "glx" will be loaded by default.
[   130.005] (II) LoadModule: "extmod"
[   130.005] (II) Module "extmod" already built-in
[   130.005] (II) LoadModule: "glx"
[   130.006] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   130.008] (II) Module glx: vendor="X.Org Foundation"
[   130.008]    compiled for 1.19.6, module version = 1.0.0
[   130.008]    ABI class: X.Org Server Extension, version 10.0
[   130.008] (II) LoadModule: "nvidia"
[   130.008] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[   130.009] (II) Module nvidia: vendor="NVIDIA Corporation"
[   130.009]    compiled for 4.0.2, module version = 1.0.0
[   130.009]    Module class: X.Org Video Driver
[   130.009] (II) NVIDIA dlloader X Driver  32.7.1  Release Build  (integ_stage_rel)  (buildbrain@mobile-u64-5434-d8000)  Sat Feb 19 08:59:21 PST 2022
[   130.009] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[   130.009] (WW) Falling back to old probe method for NVIDIA
[   130.009] (II) Loading sub module "fb"
[   130.010] (II) LoadModule: "fb"
[   130.010] (II) Loading /usr/lib/xorg/modules/libfb.so
[   130.010] (II) Module fb: vendor="X.Org Foundation"
[   130.010]    compiled for 1.19.6, module version = 1.0.0
[   130.010]    ABI class: X.Org ANSI C Emulation, version 0.4
[   130.010] (II) Loading sub module "wfb"
[   130.010] (II) LoadModule: "wfb"
[   130.011] (II) Loading /usr/lib/xorg/modules/libwfb.so
[   130.011] (II) Module wfb: vendor="X.Org Foundation"
[   130.011]    compiled for 1.19.6, module version = 1.0.0
[   130.011]    ABI class: X.Org ANSI C Emulation, version 0.4
[   130.011] (II) Loading sub module "ramdac"
[   130.011] (II) LoadModule: "ramdac"
[   130.011] (II) Module "ramdac" already built-in
[   130.012] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[   130.012] (II) NVIDIA(0): Creating default Display subsection in Screen section
        "Default Screen Section" for depth/fbbpp 24/32
[   130.012] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[   130.012] (==) NVIDIA(0): RGB weight 888
[   130.012] (==) NVIDIA(0): Default visual is TrueColor
[   130.012] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[   130.012] (DB) xf86MergeOutputClassOptions unsupported bus type 0
[   130.012] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration" "true"
[   130.012] (**) NVIDIA(0): Enabling 2D acceleration
[   130.013] (II) Loading sub module "glxserver_nvidia"
[   130.013] (II) LoadModule: "glxserver_nvidia"
[   130.013] (II) Loading /usr/lib/xorg/modules/extensions/libglxserver_nvidia.so
[   130.019] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[   130.019]    compiled for 4.0.2, module version = 1.0.0
[   130.019]    Module class: X.Org Server Extension
[   130.019] (II) NVIDIA GLX Module  32.7.1  Release Build  (integ_stage_rel)  (buildbrain@mobile-u64-5434-d8000)  Sat Feb 19 08:58:33 PST 2022
[   130.020] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA graphics device!
[   130.020] (EE) NVIDIA(0): Failing initialization of X screen 0
[   130.020] (II) UnloadModule: "nvidia"
[   130.020] (II) UnloadSubModule: "glxserver_nvidia"
[   130.020] (II) Unloading glxserver_nvidia
[   130.020] (II) UnloadSubModule: "wfb"
[   130.020] (II) UnloadSubModule: "fb"
[   130.020] (EE) Screen(s) found, but none have a usable configuration.
[   130.020] (EE)
Fatal server error:
[   130.020] (EE) no screens found(EE)
[   130.020] (EE)
Please consult the The X.Org Foundation support
         at http://wiki.x.org
 for help.
[   130.020] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[   130.020] (EE)
[   130.022] (EE) Server terminated with error (1). Closing log file.

Could you share the “lsmod” result from your jetson?

It looks like gpu driver is gone so desktop is not able to launch. Not sure how your installation would lead gpu driver missing.

I did do initial setup in Headless Mode and have so far only used Nano and communicated with it via PuTTY Serial. Could this be the source of the problem?

This is what lsmod returns:

robotika@nano:~$ lsmod
Module Size Used by

PS I do apologize for the late reply I was on leave.

Nope. That is not the cause of this issue.

As your lsmod is empty, all extra drivers are gone.

Please also share me the result of “uname -r” command and “ls /lib/modules”

robotika@nano:~$ uname -r
4.9.299-tegra
robotika@nano:~$ ls /lib/modules
4.9.253-tegra
robotika@nano:~$

Hi,

The mismatch string indicates your kernel version is newer than the kernel modules.

4.9.299 is from some new jetpack version. 4.9.253 should be around some version like 32.6.1 or 32.7.1.

Do you boot from some usb drive or nvme drive on your board?

Now that you mentioned I did have a problem with booting Nano from SD card with image. I could not do it when I inserted the SD card directly into its slot, so I did it by inserting SD card into a USB adapter and then via a USB port on Nano.