PCIe to 4 USB ports use vl805 chipset on jetson nano custom carrier board

vl805 is a pcie to usb bridge chipset, in my board, jetson nano can found and recognized it, but can not found any USB device on any vl805’s usb ports.(and could not seen any “dmesg”
about vl805’s usb ports)

“lspci”:

paltform:
software : jetpack 4.4
hardware : jetson nano development kit b01

What do you see from:
sudo lspci -s 01:00.0 -vvv
(the verbose lspci specific to the VL805 at slot 01:00.0)


like this,my knowlege about PCIe is poor, could you find some answers from this picture ?

Thanks

The best way to do this is with plain text…then it can be searched, and copy and paste is not as hard as screenshots. Plus it won’t cut off. Here are two ways to do this:

# Seeing what gets saved to text:
sudo lspci -s 01:00.0 -vvv | tee log_lspci.txt
# Just creating the log:
sudo lspci -s 01:00.0 -vvv > log_lspci.txt

If your command shows errors, and you want errors logged, then also use “2>&1”, e.g., if you want to include an error message from the above (but the above won’t generate an error, I’m just illustrating):

# Seeing what gets saved to text:
sudo lspci -s 01:00.0 -vvv 2>&1 | tee log_lspci.txt
# Just creating the log:
sudo lspci -s 01:00.0 -vvv 2>&1 > log_lspci.txt

(“2” is stderr, “1” is stdout, “2>&1” redirects stderr to the address of “1”…there is also a stdlog which is “3”, but few programs use that)

From the part of your screenshot I can see (the bottom is truncated) the PCIe side found the device, the device reports it is capable of PCIe gen. 2 speeds (5GT/s), and the lanes are actually running at gen. 2 speeds (meaning signal quality is good). Other information needed to know more is missing from the screenshot, and the full message is needed.

Incidentally, you can log “lsusb” in a similar way. I don’t know if a driver was loaded, but if you wanted to log the list of all USB devices which are powered (sometimes unused hardware, e.g., hubs without devices, do not get listed), you could do something similar:

sudo lsusb | tee log_lsusb.txt
sudo lsusb -t | tee log_tree_lsusb.txt

This pic is hardware diagram of my design. I have tested all USB ports of chip USB2517 or RTS5411 ,they are work well on my board.

This is the result of command “lspci”:(Here are all of vl805’s PCIe informations,less than rtl8111’s PCIe informations)

nano@jetson-desktop:~$ sudo lspci -s 01:00.0 -vvv
01:00.0 USB controller: VIA Technologies, Inc. VL805 USB 3.0 Host Controller (rev 01) (prog-if 30 [XHCI])
        Subsystem: VIA Technologies, Inc. VL805 USB 3.0 Host Controller
        Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Interrupt: pin A routed to IRQ 84
        Region 0: Memory at 13000000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: [80] Power Management version 3
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold-)
                Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [90] MSI: Enable- Count=1/4 Maskable- 64bit+
                Address: 0000000000000000  Data: 0000
        Capabilities: [c4] Express (v2) Endpoint, MSI 00
                DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
                        ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
                DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
                        RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
                        MaxPayload 128 bytes, MaxReadReq 512 bytes
                DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
                LnkCap: Port #0, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <2us, L1 <16us
                        ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
                LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk+
                        ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
                LnkSta: Speed 5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
                DevCap2: Completion Timeout: Range B, TimeoutDis+, LTR-, OBFF Not Supported
                DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
                LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis+
                         Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
                         Compliance De-emphasis: -6dB
                LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
                         EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
        Capabilities: [100 v1] Advanced Error Reporting
                UESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
                UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
                UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
                CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
                CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
                AERCap: First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-

This is the result of command “lsusb -t” :

nano@jetson-desktop:~$ lsusb -t
/:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=tegra-xusb/4p, 5000M
    |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 5000M
        |__ Port 3: Dev 3, If 0, Class=Mass Storage, Driver=usb-storage, 5000M
/:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=tegra-xusb/5p, 480M
    |__ Port 3: Dev 2, If 0, Class=Hub, Driver=hub/7p, 480M
        |__ Port 7: Dev 3, If 0, Class=Communications, Driver=cdc_acm, 12M
        |__ Port 7: Dev 3, If 1, Class=CDC Data, Driver=cdc_acm, 12M

This is the result of command “lshw”:(PCI part)

 *-pci:0
      description: PCI bridge
      product: NVIDIA Corporation
      vendor: NVIDIA Corporation
      physical id: 1
      bus info: pci@0000:00:01.0
      version: a1
      width: 32 bits
      clock: 33MHz
      capabilities: pci pm msi ht pciexpress normal_decode bus_master cap_list
      configuration: driver=pcieport
      resources: irq:84 memory:13000000-130fffff
    *-usb UNCLAIMED
         description: USB controller
         product: VL805 USB 3.0 Host Controller
         vendor: VIA Technologies, Inc.
         physical id: 0
         bus info: pci@0000:01:00.0
         version: 01
         width: 64 bits
         clock: 33MHz
         capabilities: pm msi pciexpress xhci cap_list
         configuration: latency=0
         resources: memory:13000000-13000fff
 *-pci:1
      description: PCI bridge
      product: NVIDIA Corporation
      vendor: NVIDIA Corporation
      physical id: 2
      bus info: pci@0000:00:02.0
      version: a1
      width: 32 bits
      clock: 33MHz
      capabilities: pci pm msi ht pciexpress normal_decode bus_master cap_list
      configuration: driver=pcieport
      resources: irq:84 ioport:1000(size=4096) memory:13100000-131fffff
    *-network
         description: Ethernet interface
         product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
         vendor: Realtek Semiconductor Co., Ltd.
         physical id: 0
         bus info: pci@0000:02:00.0
         logical name: eth0
         version: 15
         serial: 00:04:4b:e7:1c:b8
         size: 1Gbit/s
         capacity: 1Gbit/s
         width: 64 bits
         clock: 33MHz
         capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
         configuration: autonegotiation=on broadcast=yes driver=r8168 driverversion=8.045.08-NAPI duplex=full ip=192.168.2.204 latency=0 link=yes multicast=yes port=twisted pair speed=1Gbit/s
         resources: irq:407 ioport:1000(size=256) memory:13104000-13104fff memory:13100000-13103fff

This is the ressult of command “dmesg”:

nano@jetson-desktop:~$ dmesg
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.140-tegra (buildbrain@mobile-u64-3456) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #1 SMP PREEMPT Thu Jun 25 21:25:44 PDT 2020
[    0.000000] Boot CPU: AArch64 Processor [411fd071]
[    0.000000] OF: fdt:memory scan node memory@80000000, reg size 48,
[    0.000000] OF: fdt: - 80000000 ,  7ee00000
[    0.000000] OF: fdt: - 100000000 ,  7f200000
[    0.000000] earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb0_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb0_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb1_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb1_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: reserved mem: initialized node vpr-carveout, compatible id nvidia,vpr-carveout
[    0.000000] OF: reserved mem: initialized node iram-carveout, compatible id nvidia,iram-carveout
[    0.000000] OF: reserved mem: initialized node ramoops_carveout, compatible id nvidia,ramoops
[    0.000000] cma: Reserved 64 MiB at 0x00000000fac00000
[    0.000000] On node 0 totalpages: 1039872
[    0.000000]   DMA zone: 8192 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 519168 pages, LIFO batch:31
[    0.000000]   Normal zone: 8136 pages used for memmap
[    0.000000]   Normal zone: 520704 pages, LIFO batch:31
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.0 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 25 pages/cpu @ffffffc0fefb3000 s61656 r8192 d32552 u102400
[    0.000000] pcpu-alloc: s61656 r8192 d32552 u102400 alloc=25*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[    0.000000] CPU features: enabling workaround for ARM erratum 832075
[    0.000000] Speculative Store Bypass Disable mitigation not required
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1023544
[    0.000000] Kernel command line: tegraid=21.1.2.0.0 ddr_die=4096M@2048M section=512M memtype=0 vpr_resize usb_port_owner_info=0 lane_owner_info=0 emc_max_dvfs=0 touch_id=0@63 video=tegrafb no_console_suspend=1 console=ttyS0,115200n8 debug_uartport=lsport,2 earlyprintk=uart8250-32bit,0x70006000 maxcpus=4 usbcore.old_scheme_first=1 lp0_vec=0x1000@0xff780000 core_edp_mv=1075 core_edp_ma=4000  earlycon=uart8250,mmio32,0x70006000  root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 quiet root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0
[    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: 29340(89%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Memory: 3570288K/4159488K available (15294K kernel code, 2934K rwdata, 6640K rodata, 8576K init, 609K bss, 114064K reserved, 475136K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)
[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)
[    0.000000]       .text : 0xffffff8008080000 - 0xffffff8008f70000   ( 15296 KB)
[    0.000000]     .rodata : 0xffffff8008f70000 - 0xffffff8009600000   (  6720 KB)
[    0.000000]       .init : 0xffffff8009600000 - 0xffffff8009e60000   (  8576 KB)
[    0.000000]       .data : 0xffffff8009e60000 - 0xffffff800a13d808   (  2935 KB)
[    0.000000]        .bss : 0xffffff800a13d808 - 0xffffff800a1d5f7c   (   610 KB)
[    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 KB)
[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)
[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)
[    0.000000]               0xffffffbf00000000 - 0xffffffbf03fc8000   (    63 MB actual)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc0ff200000   (  4082 MB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 64.
[    0.000000]  RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:64 nr_irqs:64 0
[    0.000000] /interrupt-controller@60004000: 192 interrupts forwarded to /interrupt-controller
[    0.000000] t210 clock and reset probe
[    0.000000] tegra-pmc: get_secure_pmc_setting: done secure_pmc=1
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] arm_arch_timer: Architected cp15 timer(s) running at 19.20MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
[    0.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
[    0.001737] Console: colour dummy device 80x25
[    0.001747] console [tty0] enabled
[    0.001753] bootconsole [uart8250] disabled
[    0.001771] kmemleak: Kernel memory leak detector disabled
[    0.001789] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
[    0.001799] pid_max: default: 32768 minimum: 301
[    0.002249] Security Framework initialized
[    0.002470] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.002479] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.003587] ftrace: allocating 47104 entries in 185 pages
[    0.171709] sched-energy: CPU device node has no sched-energy-costs
[    0.171742] ASID allocator initialised with 65536 entries
[    0.207843] tegra-id: chipid=22117.
[    0.207856] tegra-id: opt_subrevision=0.
[    0.207874] Tegra Speedo/IDDQ fuse revision 4
[    0.207879] Tegra: CPU Speedo ID 9, SoC Speedo ID 0, GPU Speedo ID 2
[    0.207883] Tegra: CPU Process ID 0, SoC Process ID 1, GPU Process ID 0
[    0.207890] Tegra: CPU Speedo Value 2092, SoC Speedo Value 1967, GPU Speedo Value 2092
[    0.207895] Tegra: CPU IDDQ Value 2608, SoC IDDQ Value 3096, GPU IDDQ Value 3680
[    0.207915] Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 1
[    0.207932] DTS File Name: /dvs/git/dirty/git-master_linux/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-b00.dts
[    0.207940] DTB Build time: Jun 25 2020 21:31:08
[    0.257047] CPU1: Booted secondary processor [411fd071]
[    0.288954] CPU2: Booted secondary processor [411fd071]
[    0.320936] CPU3: Booted secondary processor [411fd071]
[    0.321024] Brought up 4 CPUs
[    0.321030] SMP: Total of 4 processors activated.
[    0.321039] CPU features: detected feature: 32-bit EL0 Support
[    0.321302] CPU: All CPU(s) started at EL2
[    0.321320] alternatives: patching kernel code
[    0.329404] devtmpfs: initialized
[    0.366788] Initilizing CustomIPI irq domain
[    0.367174] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.367194] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.377685] pinctrl core: initialized pinctrl subsystem
[    0.378327] OS set in device tree is not L4T.
[    0.378719] regulator-dummy: no parameters
[    0.379016] Initializing plugin-manager
[    0.379116] Plugin module not found
[    0.379352] node /plugin-manager/fragement@0 match with board >=3448-0000-100
[    0.379905] node /plugin-manager/fragment@1 match with board >=3448-0000-101
[    0.380952] node /plugin-manager/fragement@6 match with odm-data enable-tegra-wdt
[    0.381493] node /plugin-manager/fragement@8 match with odm-data enable-tegra-wdt
[    0.382139] node /plugin-manager/fragement@10 match with board >=3448-0000-300
[    0.384222] node /plugin-manager/fragement@11 match with board >=3448-0000-300
[    0.387658] NET: Registered protocol family 16
[    0.388986] pstore: using zlib compression
[    0.389025] console [pstore-1] enabled
[    0.389029] pstore: Registered ramoops as persistent store backend
[    0.389035] ramoops: attached 0x200000@0xb0000000, ecc: 0/0
[    0.405061] cpuidle: using governor menu
[    0.409084] tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
[    0.410813] vdso: 2 pages (1 code @ ffffff8008f77000, 1 data @ ffffff8009e64000)
[    0.410835] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.413499] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[    0.415756] Serial: AMBA PL011 UART driver
[    0.416246] tegra_powergate_init: DONE
[    0.416262] DTS File Name: /dvs/git/dirty/git-master_linux/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-b00.dts
[    0.416268] DTB Build time: Jun 25 2020 21:31:08
[    0.418119] Tegra reboot handler registered.
[    0.422604] iommu: Adding device tegra-carveouts to group 0
[    0.422740] platform tegra-carveouts: domain=ffffffc0f9bbf3d8 allocates as[0]=ffffffc0f9bd40a8
[    0.423076] iommu: Adding device smmu_test to group 1
[    0.423125] platform smmu_test: domain=ffffffc0f9bbf618 allocates as[0]=ffffffc0f9bd4110
[    0.423921] mc: mapped MMIO address: 0xffffff800802e000 -> 0x70019000
[    0.423975] mc: mapped MMIO address: 0xffffff8008065000 -> 0x7001c000
[    0.424032] mc: mapped MMIO address: 0xffffff8008079000 -> 0x7001d000
[    0.424042] nv-tegra-mc 70019000.mc: No mssnvlink node
[    0.424064] mc-err: mcerr ops are set to t21x
[    0.433527] iommu: Adding device 70090000.xusb to group 2
[    0.433825] iommu: Adding device 70006000.serial to group 3
[    0.433888] platform 70006000.serial: domain=ffffffc0f943ccd8 allocates as[0]=ffffffc0f9bd4178
[    0.434307] iommu: Adding device 70006040.serial to group 4
[    0.434556] iommu: Adding device 70006200.serial to group 5
[    0.434740] iommu: Adding device sound to group 6
[    0.434787] platform sound: domain=ffffffc0f94ae258 allocates as[0]=ffffffc0f9bd41e0
[    0.435311] iommu: Adding device 7000d400.spi to group 7
[    0.435561] iommu: Adding device 7000d600.spi to group 8
[    0.435872] iommu: Adding device 70410000.spi to group 9
[    0.436173] iommu: Adding device 50000000.host1x to group 10
[    0.436448] iommu: Adding device 54080000.vi to group 11
[    0.436833] iommu: Adding device 54600000.isp to group 12
[    0.437131] iommu: Adding device 54680000.isp to group 13
[    0.437415] iommu: Adding device tegradc.0 to group 14
[    0.437466] platform tegradc.0: domain=ffffffc0f94ba198 allocates as[0]=ffffffc0f9bd4248
[    0.437981] platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
[    0.438295] iommu: Adding device tegradc.1 to group 15
[    0.438344] platform tegradc.1: domain=ffffffc0f94ba3d8 allocates as[0]=ffffffc0f9bd42b0
[    0.438847] platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
[    0.439107] iommu: Adding device 54340000.vic to group 16
[    0.439306] iommu: Adding device 544c0000.nvenc to group 17
[    0.439502] iommu: Adding device 54500000.tsec to group 18
[    0.439690] iommu: Adding device 54100000.tsecb to group 19
[    0.439880] iommu: Adding device 54480000.nvdec to group 20
[    0.440063] iommu: Adding device 54380000.nvjpg to group 21
[    0.441149] iommu: Adding device 546c0000.i2c to group 22
[    0.441473] iommu: Adding device 57000000.gpu to group 23
[    0.441527] platform 57000000.gpu: domain=ffffffc0f95243d8 allocates as[0]=ffffffc0f9bd4318
[    0.441585] platform 57000000.gpu: domain=ffffffc0f95243d8 allocates as[1]=ffffffc0f9bd4380
[    0.441623] platform 57000000.gpu: domain=ffffffc0f95243d8 allocates as[2]=ffffffc0f9bd43e8
[    0.441656] platform 57000000.gpu: domain=ffffffc0f95243d8 allocates as[3]=ffffffc0f9bd4450
[    0.442489] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency thermal reset disabled.
[    0.442499] tegra-pmc 7000e400.pmc: scratch reg offset dts data not present
[    0.442510] tegra-pmc: ### PMC reset source: TEGRA_POWER_ON_RESET
[    0.442514] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_WARM
[    0.442517] tegra-pmc: ### PMC reset status reg: 0x0
[    0.493243] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[    0.493252] tegra-pmc: Clear bootloader IO dpd settings
[    0.493272] tegra-pmc 7000e400.pmc: IO padctrl driver initialized
[    0.493338] tegra-pmc 7000e400.pmc: PMC: Successfully configure bootrom reset commands
[    0.493622] iommu: Adding device 70012000.se to group 24
[    0.494462] iommu: Adding device 7000c000.i2c to group 25
[    0.494774] iommu: Adding device 7000c400.i2c to group 26
[    0.495075] iommu: Adding device 7000c500.i2c to group 27
[    0.495377] iommu: Adding device 7000c700.i2c to group 28
[    0.495682] iommu: Adding device 7000d000.i2c to group 29
[    0.495984] iommu: Adding device 7000d100.i2c to group 30
[    0.496342] iommu: Adding device sdhci-tegra.0 to group 31
[    0.496398] platform sdhci-tegra.0: domain=ffffffc0f956c558 allocates as[0]=ffffffc0f9bd44b8
[    0.497460] iommu: Adding device 700d0000.xudc to group 32
[    0.501672] vdd-ac-bat: 5000 mV
[    0.502019] vdd-5v0-sys: 5000 mV
[    0.503060] vdd-5v0-hdmi: supplied by vdd-5v0-sys
[    0.503098] vdd-5v0-hdmi: 5000 mV
[    0.503620] vdd-1v8-sys: 1800 mV
[    0.504135] vdd-fan: supplied by vdd-5v0-sys
[    0.504170] vdd-fan: 5000 mV
[    0.504661] vdd-usb-vbus: supplied by vdd-5v0-sys
[    0.504696] vdd-usb-vbus: 5000 mV
[    0.505336] vdd-usb-vbus2: 5000 mV
[    0.538210] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.540647] gpio gpiochip0: gpio-line-names specifies 240 line names but there are 256 lines on the chip
[    0.542077] GPIO line 151 (camera-control-output-low) hogged as output/low
[    0.542100] GPIO line 152 (camera-control-output-low) hogged as output/low
[    0.542136] GPIO line 6 (system-suspend-gpio) hogged as output/high
[    0.542537] gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip0 (tegra-gpio)
[    0.550179] eventlib_kernel: keventlib is initialized, test id: 0
[    0.550515] SCSI subsystem initialized
[    0.550742] libata version 3.00 loaded.
[    0.551079] usbcore: registered new interface driver usbfs
[    0.551135] usbcore: registered new interface driver hub
[    0.551209] usbcore: registered new device driver usb
[    0.555152] max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
[    0.561171] vdd-core: 600 <--> 1162 mV at 1075 mV
[    0.561990] random: fast init done
[    0.562202] vdd-ddr-1v1: Bringing 1125000uV into 1150000-1150000uV
[    0.565031] vdd-ddr-1v1: 1150 mV
[    0.568973] vdd-pre-reg-1v35: 1350 mV
[    0.572969] vdd-1v8: 1800 mV
[    0.576972] avdd-sys-1v2: 1200 mV
[    0.580974] vdd-pex-1v0: 1050 mV
[    0.581635] vddio-sdmmc-ap: 1800 <--> 3300 mV at 3300 mV
[    0.582159] max77620-ldo3: at 3100 mV
[    0.584975] vdd-rtc: 850 <--> 1100 mV at 1000 mV
[    0.585509] max77620-ldo5: at 3100 mV
[    0.588977] vddio-sdmmc3-ap: 1800 <--> 3300 mV at 2800 mV
[    0.592969] avdd-1v05-pll: 1050 mV
[    0.596975] avdd-io-hdmi-dp: 1050 mV
[    0.599557] GPIO line 505 (spmic-default-output-high) hogged as output/high
[    0.599819] gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpiochip1 (max77620-gpio)
[    0.600100] max77620 4-003c: max77620 probe successful
[    0.602710] media: Linux media interface: v0.10
[    0.602767] Linux video capture interface: v2.00
[    0.603641] pps_core: LinuxPPS API ver. 1 registered
[    0.603647] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.603672] PTP clock support registered
[    0.606930] tegra210-emc 7001b000.external-memory-controller: validated EMC DFS table
[    0.607735] Advanced Linux Sound Architecture Driver Initialized.
[    0.608404] Bluetooth: Core ver 2.22
[    0.608453] NET: Registered protocol family 31
[    0.608457] Bluetooth: HCI device and connection manager initialized
[    0.608472] Bluetooth: HCI socket layer initialized
[    0.608485] Bluetooth: L2CAP socket layer initialized
[    0.608512] Bluetooth: SCO socket layer initialized
[    0.610387] tegra210_dvfs: no clock found for sdmmc2_ddr
[    0.610406] tegra210_dvfs: no clock found for sdmmc4_ddr
[    0.610460] tegra210_dvfs: no clock found for sdmmc1_ddr
[    0.610477] tegra210_dvfs: no clock found for sdmmc3_ddr
[    0.614000] tegra_dvfs: Unable to get vdd-cpu rail for step info, defering probe
[    0.615193] vdd-3v3-sys: supplied by vdd-5v0-sys
[    0.615257] vdd-3v3-sys: 3300 mV
[    0.615521] vdd-1v8-sys: supplied by vdd-3v3-sys
[    0.616302] vdd-usb-vbus2: supplied by vdd-3v3-sys
[    0.616756] vdd-3v3-sd: supplied by vdd-3v3-sys
[    0.616820] vdd-3v3-sd: 3300 mV
[    0.617812] avdd-io-edp-1v05: supplied by avdd-1v05-pll
[    0.617879] avdd-io-edp-1v05: 1050 mV
[    0.618322] vdd-usb-hub-en: supplied by vdd-1v8-sys
[    0.618363] vdd-usb-hub-en: 5000 mV
[    0.619668] camchar: rtcpu character device driver loaded
[    0.620440] extcon-gpio-states extcon:extcon@1: Cable state:0, cable id:0
[    0.621903] clocksource: Switched to clocksource arch_sys_counter
[    0.662154] VFS: Disk quotas dquot_6.6.0
[    0.662279] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.662744] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    0.663143] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000d7000000, size=0x19000000
[    0.663161]  dma-vpr: heap size is not multiple of cma_chunk_size heap_info->num_chunks (13) rem_chunk_size(0x1000000)
[    0.663361] cma: enabled page replacement for spfn=d7000, epfn=f0000
[    0.663367] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful
[    0.663379] tegra-carveouts tegra-carveouts: assigned reserved memory node vpr-carveout
[    0.663407] tegra-carveouts tegra-carveouts: iram :dma coherent mem declare 0x0000000040001000,258048
[    0.663413] tegra-carveouts tegra-carveouts: assigned reserved memory node iram-carveout
[    0.663426] nvmap: nvmap_select_cache_ops() nvmap cache ops set to set/ways
[    0.663435] nvmap_page_pool_init: Total RAM pages: 1011356
[    0.663440] nvmap_page_pool_init: nvmap page pool size: 126419 pages (493 MB)
[    0.663525] nvmap_background_zero_thread: PP zeroing thread starting.
[    0.663954] misc nvmap: created heap iram base 0x0000000040001000 size (252KiB)
[    0.664677] misc nvmap: created heap vpr base 0x00000000d7000000 size (409600KiB)
[    0.674698] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type AO-therm
[    0.675089] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type CPU-therm
[    0.675327] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
[    0.675532] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[    0.675706] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
[    0.675966] pre_t19x_iso_plat_init(): iso emc max clk=1600000KHz
[    0.675970] pre_t19x_iso_plat_init(): max_iso_bw=11520000KB
[    0.676399] NET: Registered protocol family 2
[    0.677355] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.677568] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.678113] TCP: Hash tables configured (established 32768 bind 32768)
[    0.678264] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.678346] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.678759] NET: Registered protocol family 1
[    0.679460] RPC: Registered named UNIX socket transport module.
[    0.679464] RPC: Registered udp transport module.
[    0.679468] RPC: Registered tcp transport module.
[    0.679472] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.679485] PCI: CLS 0 bytes, default 64
[    0.679721] Trying to unpack rootfs image as initramfs...
[    0.911127] Freeing initrd memory: 5356K
[    0.921022] host1x 50000000.host1x: initialized
[    0.922842] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    0.926082] audit: initializing netlink subsys (disabled)
[    0.926150] audit: type=2000 audit(0.779:1): initialized
[    0.926875] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    0.936610] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.938154] ntfs: driver 2.1.32 [Flags: R/W].
[    0.938941] 9p: Installing v9fs 9p2000 file system support
[    0.942222] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)
[    0.942368] io scheduler noop registered
[    0.942663] io scheduler cfq registered (default)
[    0.945234] gic 702f9000.agic: GIC IRQ controller registered
[    0.948413] iommu: Adding device 702ef000.adsp to group 33
[    0.957121] iommu: Adding device aconnect@702c0000:adsp_audio to group 34
[    0.957263] tegra-aconnect aconnect@702c0000: Tegra ACONNECT bus registered
[    0.957803] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 = 0x71e9c0e
[    0.957811] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_0 = 0x4
[    0.959462] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane = usb2-0, function = xusb
[    0.959582] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.1, lane = usb2-1, function = xusb
[    0.959674] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.2, lane = usb2-2, function = xusb
[    0.959859] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane = pcie-0, function = pcie-x1
[    0.959951] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane = pcie-1, function = pcie-x4
[    0.960038] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane = pcie-2, function = pcie-x4
[    0.960130] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane = pcie-3, function = pcie-x4
[    0.960216] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane = pcie-4, function = pcie-x4
[    0.960307] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.8, lane = pcie-5, function = xusb
[    0.960392] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.9, lane = pcie-6, function = xusb
[    0.966348] tegra-pwm 7000a000.pwm: PWM clk cannot sleep in ops
[    0.968085] tegra-dfll-pwm 70110000.pwm: DFLL pwm-rate: 12800000
[    0.970218] tegra-pcie 1003000.pcie: 4x1, 1x1 configuration
[    0.971490] tegra-pcie 1003000.pcie: PCIE: Enable power rails
[    0.971844] tegra-pcie 1003000.pcie: probing port 0, using 4 lanes
[    0.973048] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[    0.973273] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=1500000, vi_iso_bw=1500000, max_bw=1500000
[    0.973492] Adding domain tsec-pd to PM domain host1x-pd
[    0.975687] tegra-pcie 1003000.pcie: probing port 1, using 1 lanes
[    0.976667] tsec 54500000.tsec: initialized
[    0.978202] tsec 54100000.tsecb: initialized
[    0.978899] Adding domain nvdec-pd to PM domain host1x-pd
[    0.982379] nvdec 54480000.nvdec: initialized
[    0.983415] Adding domain vic03-pd to PM domain host1x-pd
[    0.983599] Adding domain msenc-pd to PM domain host1x-pd
[    0.983751] Adding domain nvjpg-pd to PM domain host1x-pd
[    0.987917] falcon 54340000.vic: initialized
[    0.989188] falcon 544c0000.nvenc: initialized
[    0.990550] falcon 54380000.nvjpg: initialized
[    0.994895] tegra_cec 70015000.tegra_cec: dt=1 start=0x70015000 end=0x70015FFF irq=97
[    0.994939] tegra_cec 70015000.tegra_cec: Enable clock result: 0.
[    0.994967] tegra_cec 70015000.tegra_cec: tegra_cec_init started
[    0.995015] tegradc tegradc.0: disp0 connected to head0->/host1x/sor1
[    0.995128] display board info: id 0x0, fab 0x0
[    0.995184] generic_infoframe_type: 0x87
[    0.995309] tegradc tegradc.0: DT parsed successfully
[    0.995348] tegradc tegradc.0: Display dc.ffffff800ab80000 registered with id=0
[    0.995728] tegra_cec 70015000.tegra_cec: cec_add_sysfs ret=0
[    0.995735] tegra_cec 70015000.tegra_cec: probed
[    0.999013] tegradc tegradc.0: probed
[    0.999743] Console: switching to colour frame buffer device 80x30
[    0.999778] tegradc tegradc.0: fb registered
[    1.000941] tegradc tegradc.1: disp1 connected to head1->/host1x/sor
[    1.001028] tegradc tegradc.1: No lt-data, using default setting
[    1.001056] tegradc tegradc.1: No hpd-gpio in DT
[    1.001089] tegradc tegradc.1: DT parsed successfully
[    1.001141] tegradc tegradc.1: Display dc.ffffff800ad00000 registered with id=1
[    1.002952] tegradc tegradc.1: dpd enable lookup fail:-19
[    1.003694] tegra-apbdma 60020000.dma: Tegra20 APB DMA driver register 32 channels
[    1.509134] Host read timeout at address 545c00c4
[    1.510444] tegradc tegradc.1: probed
[    1.510846] tegradc tegradc.1: fb registered
[    1.511705] tegra-adma 702e2000.adma: Tegra210 ADMA driver registered 22 channels
[    1.512481] tegra-fuse-burn 7000f800.efuse:efuse-burn: shutdown limit check disabled
[    1.512487] tegra-fuse-burn 7000f800.efuse:efuse-burn: Fuse burn driver initialized
[    1.512776] kfuse 7000fc00.kfuse: initialized
[    1.513643] tegra-pmc-iopower pmc-iopower: Regulator supply iopower-dbg-supply not available
[    1.514404] hpd: state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[    1.514412] hpd: switching from state 7 (Takeover from bootloader) to state 0 (Reset)
[    1.514421] hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
[    1.514438] tegradc tegradc.1: blank - powerdown
[    1.514462] extcon-disp-state extcon:disp-state: cable 44 state 0 already set.
[    1.514467] Extcon DP: HPD disabled
[    1.514472] hpd: hpd_switch 0
[    1.514476] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[    1.514484] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[    1.514491] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[    1.514530] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[    1.516687] tegra-pcie 1003000.pcie: PCI host bridge to bus 0000:00
[    1.516696] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    1.516701] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
[    1.516707] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pref]
[    1.516713] pci_bus 0000:00: root bus resource [bus 00-ff]
[    1.516736] pci 0000:00:01.0: [10de:0fae] type 01 class 0x060400
[    1.516802] pci 0000:00:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.516980] pci 0000:00:02.0: [10de:0faf] type 01 class 0x060400
[    1.517039] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.517213] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    1.517222] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    1.517338] pci 0000:01:00.0: [1106:3483] type 00 class 0x0c0330
[    1.517364] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    1.517459] pci 0000:01:00.0: PME# supported from D0 D3hot
[    1.517924] tegra-dfll-pwm 70110000.pwm: DFLL_PWM regulator is available now
[    1.517931] vdd-cpu: 708 <--> 1322 mV at 708 mV
[    1.518223] pwm-regulator pwm_regulators:pwm-regulator@0: PWM regulator registration passed
[    1.519268] vdd-gpu: applied init 1000000uV constraint
[    1.519274] vdd-gpu: 708 <--> 1323 mV at 997 mV
[    1.519581] pwm-regulator pwm_regulators:pwm-regulator@1: PWM regulator registration passed
[    1.522385] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.522449] No Device Node present for smmu client: serial8250 !!
[    1.522457] platform serial8250: No iommus property found in DT node, got swgids from fixup(101004000)
[    1.522481] iommu: Adding device serial8250 to group 35
[    1.523935] console [ttyS0] disabled
[    1.523971] 70006000.serial: ttyS0 at MMIO 0x70006000 (irq = 63, base_baud = 25500000) is a Tegra
[    1.529930] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    1.530066] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    1.530088] pci 0000:02:00.0: reg 0x10: [io  0x0000-0x00ff]
[    1.530114] pci 0000:02:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
[    1.530132] pci 0000:02:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
[    1.530255] pci 0000:02:00.0: supports D1 D2
[    1.530259] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.534243] console [ttyS0] enabled
[    1.534928] 70006040.serial: ttyTHS1 at MMIO 0x70006040 (irq = 64, base_baud = 0) is a TEGRA_UART
[    1.535140] serial-tegra 70006200.serial: RX in PIO mode
[    1.535214] 70006200.serial: ttyTHS2 at MMIO 0x70006200 (irq = 65, base_baud = 0) is a TEGRA_UART
[    1.535969] [drm] Initialized
[    1.537985] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
[    1.538028] pci 0000:00:01.0: BAR 14: assigned [mem 0x13000000-0x130fffff]
[    1.538035] pci 0000:00:02.0: BAR 14: assigned [mem 0x13100000-0x131fffff]
[    1.538041] pci 0000:00:02.0: BAR 13: assigned [io  0x1000-0x1fff]
[    1.538050] pci 0000:01:00.0: BAR 0: assigned [mem 0x13000000-0x13000fff 64bit]
[    1.538065] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.538072] pci 0000:00:01.0:   bridge window [mem 0x13000000-0x130fffff]
[    1.538083] pci 0000:02:00.0: BAR 4: assigned [mem 0x13100000-0x13103fff 64bit]
[    1.538100] pci 0000:02:00.0: BAR 2: assigned [mem 0x13104000-0x13104fff 64bit]
[    1.538116] pci 0000:02:00.0: BAR 0: assigned [io  0x1000-0x10ff]
[    1.538125] pci 0000:00:02.0: PCI bridge to [bus 02]
[    1.538129] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
[    1.538136] pci 0000:00:02.0:   bridge window [mem 0x13100000-0x131fffff]
[    1.538426] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    1.538431] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    1.538437] pcie_pme 0000:00:01.0:pcie001: service driver pcie_pme loaded
[    1.538554] aer 0000:00:01.0:pcie002: service driver aer loaded
[    1.538749] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    1.538755] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
[    1.538761] pcie_pme 0000:00:02.0:pcie001: service driver pcie_pme loaded
[    1.538861] aer 0000:00:02.0:pcie002: service driver aer loaded
[    1.538923] pci 0000:01:00.0: enabling device (0000 -> 0002)
[    1.543528] brd: module loaded
[    1.551978] loop: module loaded
[    1.552038] tegra_profiler: version: 1.141, samples/io: 48/28
[    1.552128] tegra_profiler: auth: init
[    1.552680] THERMAL EST: found 2 subdevs
[    1.552685] THERMAL EST num_resources: 0
[    1.552690] [THERMAL EST subdev 0]
[    1.552695] [THERMAL EST subdev 1]
[    1.553020] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type thermal-fan-est
[    1.553023] THERMAL EST: thz register success.
[    1.553110] THERMAL EST: end of probe, return err: 0
[    1.553788] sd: No Scsi addr parsed to reserve index
[    1.553813] hisi_sas: driver version v1.6
[    1.557361] tegra-qspi 70410000.spi: Prod settings list not found
[    1.558270] qspi_mtd spi32766.0: MX25U3235F (4096 Kbytes)
[    1.558278] qspi_mtd spi32766.0: mtd .name = spi32766.0, .size = 0x400000 (4MiB) .erasesize = 0x00001000 (4KiB) .numeraseregions = 0
[    1.560258] libphy: Fixed MDIO Bus: probed
[    1.560949] tun: Universal TUN/TAP device driver, 1.6
[    1.560952] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.561549] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.561552] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.561592] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    1.561594] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.561635] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    1.561638] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.561676] Intel(R) 10GbE PCI Express Linux Network Driver - version 4.6.4
[    1.561679] Copyright(c) 1999 - 2017 Intel Corporation.
[    1.566742] PPP generic driver version 2.4.2
[    1.566880] PPP BSD Compression module registered
[    1.566884] PPP Deflate Compression module registered
[    1.566899] PPP MPPE Compression module registered
[    1.566904] NET: Registered protocol family 24
[    1.566951] usbcore: registered new interface driver r8152
[    1.566989] usbcore: registered new interface driver asix
[    1.567025] usbcore: registered new interface driver ax88179_178a
[    1.567060] usbcore: registered new interface driver cdc_ether
[    1.567093] usbcore: registered new interface driver net1080
[    1.567126] usbcore: registered new interface driver cdc_subset
[    1.567158] usbcore: registered new interface driver zaurus
[    1.567201] usbcore: registered new interface driver cdc_ncm
[    1.567323] VFIO - User Level meta-driver version: 0.3
[    1.568265] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.568275] ehci-pci: EHCI PCI platform driver
[    1.568317] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.568325] ohci-pci: OHCI PCI platform driver
[    1.568362] ohci-platform: OHCI generic platform driver
[    1.570294] tegra-xusb 70090000.xusb: USB2 port 0 has OTG_CAP
[    1.570873] tegra-xusb-padctl 7009f000.xusb_padctl: enabled OTG on UTMI pad 0
[    1.571905] tegra-xusb 70090000.xusb: extcon 0: ffffffc0f9114400 id
[    1.572861] usbcore: registered new interface driver uas
[    1.572909] usbcore: registered new interface driver usb-storage
[    1.572986] usbcore: registered new interface driver usbserial
[    1.575422] tegra-xudc-new 700d0000.xudc: device count: 1
[    1.576349] tegra-xudc-new 700d0000.xudc: USB charger detection disabled
[    1.576358] tegra-xudc-new 700d0000.xudc: vbus state: 0
[    1.576676] tegra-xudc-new 700d0000.xudc: entering ELPG
[    1.576824] mousedev: PS/2 mouse device common for all mice
[    1.576887] usbcore: registered new interface driver xpad
[    1.576898] tegra-xudc-new 700d0000.xudc: entering ELPG done
[    1.577535] tegra-xusb 70090000.xusb: Firmware timestamp: 2019-10-17 15:58:59 UTC, Version: 50.25 release
[    1.577565] tegra-xusb 70090000.xusb: xHCI Host Controller
[    1.577583] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 1
[    1.578306] tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100 quirks 0x00050010
[    1.578340] tegra-xusb 70090000.xusb: irq 61, io mem 0x70090000
[    1.578474] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.578481] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.578486] usb usb1: Product: xHCI Host Controller
[    1.578491] usb usb1: Manufacturer: Linux 4.9.140-tegra xhci-hcd
[    1.578495] usb usb1: SerialNumber: 70090000.xusb
[    1.578892] hub 1-0:1.0: USB hub found
[    1.578926] hub 1-0:1.0: 5 ports detected
[    1.579391] tegra-xusb 70090000.xusb: xHCI Host Controller
[    1.579402] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 2
[    1.579471] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.579570] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.579575] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.579580] usb usb2: Product: xHCI Host Controller
[    1.579585] usb usb2: Manufacturer: Linux 4.9.140-tegra xhci-hcd
[    1.579589] usb usb2: SerialNumber: 70090000.xusb
[    1.579970] hub 2-0:1.0: USB hub found
[    1.580000] hub 2-0:1.0: 4 ports detected
[    1.681961] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 2
[    1.698735] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[    1.700810] rtc rtc1: alarm rtc device
[    1.700823] tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
[    1.700850] tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
[    1.701194] i2c /dev entries driver
[    1.702535] i2c i2c-6: Added multiplexed i2c bus 7
[    1.702843] i2c i2c-6: Added multiplexed i2c bus 8
[    1.702848] i2c-mux-gpio cam_i2cmux: 2 port mux on Tegra I2C adapter adapter
[    1.703358] imx219 7-0010: tegracam sensor driver:imx219_v2.0.6
[    1.726625] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x10
[    1.726690] imx219 7-0010: imx219_board_setup: error during i2c read probe (-121)
[    1.734217] imx219 7-0010: board setup failed
[    1.738644] imx219: probe of 7-0010 failed with error -121
[    1.739032] imx219 8-0010: tegracam sensor driver:imx219_v2.0.6
[    1.762282] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x10
[    1.762346] imx219 8-0010: imx219_board_setup: error during i2c read probe (-121)
[    1.769863] imx219 8-0010: board setup failed
[    1.774274] imx219: probe of 8-0010 failed with error -121
[    1.775196] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[    1.777018] tegra_soctherm 700e2000.soctherm: pllx_offset tz:0 max:14, min:2
[    1.777023] tegra_soctherm 700e2000.soctherm: pllx_offset tz:2 max:8, min:4
[    1.777314] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.777326] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when cpu reaches 102500 mC
[    1.777334] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when cpu reaches 100500 mC
[    1.777462] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.777471] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when gpu reaches 103000 mC
[    1.777477] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when gpu reaches 101000 mC
[    1.777617] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.777626] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when pll reaches 127000 mC
[    1.777631] tegra_soctherm 700e2000.soctherm: throttrip: pll: missing hot temperature
[    1.777800] tegra_soctherm 700e2000.soctherm: failed to register sensor: -19
[    1.778402] tegra_aotag tegra-aotag: Registering sensor 0
[    1.778446] tegra_aotag tegra-aotag: Invalid temp readout
[    1.778466] tegra_aotag tegra-aotag: Invalid temp readout
[    1.778483] tegra_aotag tegra-aotag: Bound to TZ : ID 0
[    1.778492] tegra_aotag tegra-aotag: Probe done [SUCCESS]:0
[    1.779227] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.779242] tegra_dfll_action dfll-cdev-cap: Tegra DFLL 'cap cooling device' registered
[    1.779386] tegra_aotag tegra-aotag: Invalid temp readout
[    1.779408] tegra_dfll_action dfll-cdev-floor: Tegra DFLL 'floor cooling device' registered
[    1.779735] parse_throttle_dt_data: Num cap clks = 6
[    1.779740] parse_throttle_dt_data: clk=cclk_g type=2
[    1.779747] parse_throttle_dt_data: clk=gpu type=4
[    1.779766] parse_throttle_dt_data: clk=cap.throttle.c2bus type=0
[    1.779783] parse_throttle_dt_data: clk=cap.throttle.c3bus type=0
[    1.779802] parse_throttle_dt_data: clk=cap.throttle.sclk type=0
[    1.779806] parse_throttle_dt_data: clk=emc type=3
[    1.780139] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.780231] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.780329] tegra_throttle_probe: probe successful. #cdevs=4
[    1.780886] FAN dev name: pwm-fan
[    1.780927] FAN:gpio request success.
[    1.780976] pwm_fan_driver pwm-fan: cap state:7, cap pwm:255
[    1.781199] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[    1.781351] pwm_fan_driver pwm-fan: fan tach request irq success
[    1.781359] pwm_fan_driver pwm-fan: tach period: 1000
[    1.781431] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, state:2
[    1.781436] pwm_fan_driver pwm-fan: index 1: pwm=80, rpm=1000, rru=2, rrd=2, state:2
[    1.781441] pwm_fan_driver pwm-fan: index 2: pwm=120, rpm=2000, rru=1, rrd=1, state:2
[    1.781446] pwm_fan_driver pwm-fan: index 3: pwm=160, rpm=3000, rru=1, rrd=1, state:2
[    1.781451] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1, state:3
[    1.781456] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1, state:3
[    1.781461] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1, state:3
[    1.781465] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1, state:4
[    1.781471] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1, state:4
[    1.781476] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1, state:4
[    1.782088] tegra-wdt 60005100.watchdog: Tegra WDT enabled on probe. Timeout = 120 seconds.
[    1.782316] tegra-wdt 60005100.watchdog: initialized (timeout = 120 sec, nowayout = 1)
[    1.782997] device-mapper: uevent: version 1.0.3
[    1.783425] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    1.786028] tegra210-cpufreq cpufreq: probe()...completed
[    1.786673] sdhci: Secure Digital Host Controller Interface driver
[    1.786674] sdhci: Copyright(c) Pierre Ossman
[    1.786676] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.787133] sdhci-tegra sdhci-tegra.0: Got CD GPIO
[    1.787467] sdhci-tegra sdhci-tegra.0: Client registration for eMC Successful
[    1.787588] sdhci-tegra sdhci-tegra.0: wakeup init done, cdirq 300
[    1.790250] tegra-se 70012000.se: tegra_se_probe: complete
[    1.790756] hidraw: raw HID events driver (C) Jiri Kosina
[    1.791902] usbcore: registered new interface driver usbhid
[    1.791904] usbhid: USB HID core driver
[    1.793876] tegra21x_actmon 6000c800.actmon: in actmon_register()...
[    1.794228] tegra21x_actmon 6000c800.actmon: initialization Completed for the device mc_all
[    1.795985] nvpmodel: initialized successfully
[    1.797311] usbcore: registered new interface driver snd-usb-audio
[    1.797372] No Device Node present for smmu client: snd-soc-dummy !!
[    1.797377] platform snd-soc-dummy: No iommus property found in DT node, got swgids from fixup(101004000)
[    1.797394] iommu: Adding device snd-soc-dummy to group 36
[    1.802778] input: tegra-hda HDMI/DP,pcm=3 as /devices/70030000.hda/sound/card0/input0
[    1.820273] OPE platform probe
[    1.820359] OPE platform probe successful
[    1.820613] OPE platform probe
[    1.820690] OPE platform probe successful
[    1.834175] mmc0: SDHCI controller on sdhci-tegra.0 [sdhci-tegra.0] using ADMA 64-bit with 64 bit addr
[    1.842912] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[    1.843032] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[    1.843145] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[    1.843275] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[    1.843386] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[    1.843496] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[    1.843614] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[    1.843726] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[    1.843847] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[    1.843959] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[    1.855523] u32 classifier
[    1.855526]     Actions configured
[    1.855598] Initializing XFRM netlink socket
[    1.856305] NET: Registered protocol family 10
[    1.856938] NET: Registered protocol family 17
[    1.856949] NET: Registered protocol family 15
[    1.857023] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    1.857071] Bluetooth: RFCOMM socket layer initialized
[    1.857081] Bluetooth: RFCOMM ver 1.11
[    1.857086] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    1.857093] Bluetooth: HIDP socket layer initialized
[    1.857111] 9pnet: Installing 9P2000 support
[    1.857144] Key type dns_resolver registered
[    1.857511] Registered cp15_barrier emulation handler
[    1.857517] Registered setend emulation handler
[    1.858568] registered taskstats version 1
[    1.859125] Adding domain ve2-pd to PM domain host1x-pd
[    1.859354] Adding domain ve-pd to PM domain host1x-pd
[    1.861291] isp 54600000.isp: initialized
[    1.862028] isp 54680000.isp: initialized
[    1.872201] last reset is due to power on reset
[    1.872205] KERNEL: PMC reset status reg: 0x0
[    1.872278] BL: PMC reset status reg: 0x0
[    1.872281] BL: PMIC poweroff Event Recorder: 0x40
[    1.873703] clk_cbus_recalc_rate: no gbus parent
[    1.873709] clk_cbus_round_rate: no gbus parent
[    1.873711] clk_cbus_round_rate: no gbus parent
[    1.873716] clk_cbus_recalc_rate: no gbus parent
[    1.873817] clk_cbus_recalc_rate: no gbus parent
[    1.873821] clk_cbus_round_rate: no gbus parent
[    1.873823] clk_cbus_round_rate: no gbus parent
[    1.873827] clk_cbus_recalc_rate: no gbus parent
[    1.874545] tegra_dvfs: GPU-cap: registered
[    1.874598] tegra dvfs: vdd-cpu: nominal 1168mV, offset 708000uV, step 19200uV, scaling enabled
[    1.874600] tegra dvfs: vdd-core: nominal 1075mV, offset 600000uV, step 12500uV, scaling enabled
[    1.874602] tegra dvfs: vdd-gpu: nominal 1048mV, offset 708000uV, step 10000uV, scaling enabled
[    1.875938] tegra_dvfs: vdd-gpu-vts: registered
[    1.876594] tegra_core_action core_dvfs_cdev_floor: Tegra CORE DVFS 'floor cooling device' registered
[    1.877167] tegra_core_action core_dvfs_cdev_cap: Tegra CORE DVFS 'cap cooling device' registered
[    1.877637] input: gpio-keys as /devices/gpio-keys/input/input1
[    1.910183] usb 1-3: new high-speed USB device number 2 using tegra-xusb
[    1.916075] tegra_rtc 7000e000.rtc: setting system clock to 2000-01-01 01:00:19 UTC (946688419)
[    1.918328] vi 54080000.vi: vi_probe: ++
[    1.920907] vi 54080000.vi: initialized
[    1.922823] vi 54080000.vi: subdev nvcsi--2 bound
[    1.922920] vi 54080000.vi: subdev nvcsi--1 bound
[    1.924286] Disable partitions left on by BL
[    1.924290]   disb
[    1.924334] bwmgr: missing cdev-type property
[    1.924420] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.924426] DRAM derating cdev registered.
[    1.925361] vdd-fan: disabling
[    1.925365] vdd-usb-vbus: disabling
[    1.925367] vdd-usb-vbus2: disabling
[    1.925377] vddio-sdmmc3-ap: disabling
[    1.925457] avdd-io-edp-1v05: disabling
[    1.925460] vdd-usb-hub-en: disabling
[    1.925536] ALSA device list:
[    1.925539]   #0: tegra-hda at 0x70038000 irq 83
[    1.925541]   #1: tegra-snd-t210ref-mobile-rt565x
[    1.928634] Freeing unused kernel memory: 8576K
[    1.934503] usb 1-3: New USB device found, idVendor=0424, idProduct=2517
[    1.934508] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.937951] hub 1-3:1.0: USB hub found
[    1.938999] hub 1-3:1.0: 7 ports detected
[    1.963575] Root device found: mmcblk0p1
[    2.001907] tegra_cec 70015000.tegra_cec: Can't find physical addresse.
[    2.001911] tegra_cec 70015000.tegra_cec: tegra_cec_init Done.
[    2.037796] mmc0: hw tuning done ...
[    2.037830] mmc0: new ultra high speed SDR104 SDXC card at address aaaa
[    2.038313] mmcblk0: mmc0:aaaa SC128 119 GiB
[    2.042963]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14
[    2.168210] Found dev node: /dev/mmcblk0p1
[    2.237912] usb 1-3.7: new full-speed USB device number 3 using tegra-xusb
[    2.262929] usb 1-3.7: New USB device found, idVendor=0483, idProduct=5740
[    2.262934] usb 1-3.7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.262938] usb 1-3.7: Product: STM32 Virtual ComPort
[    2.262941] usb 1-3.7: Manufacturer: STMicroelectronics
[    2.262944] usb 1-3.7: SerialNumber: 48FB558A3437
[    4.352721] EXT4-fs (mmcblk0p1): 22 orphan inodes deleted
[    4.352725] EXT4-fs (mmcblk0p1): recovery complete
[    4.368082] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[    4.368827] Rootfs mounted over mmcblk0p1
[    4.382387] Switching from initrd to actual rootfs
[    4.526564] systemd[1]: System time before build time, advancing clock.
[    4.550954] ip_tables: (C) 2000-2006 Netfilter Core Team
[    4.562963] cgroup: cgroup2: unknown option "nsdelegate"
[    4.579266] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[    4.580020] systemd[1]: Detected architecture arm64.
[    4.604429] systemd[1]: Set hostname to <jetson-desktop>.
[    4.703985] systemd[1]: File /lib/systemd/system/systemd-journald.service:36 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[    4.703995] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[    4.827169] random: systemd: uninitialized urandom read (16 bytes read)
[    4.827198] systemd[1]: Reached target Swap.
[    4.827398] random: systemd: uninitialized urandom read (16 bytes read)
[    4.828593] systemd[1]: Created slice User and Session Slice.
[    4.828644] random: systemd: uninitialized urandom read (16 bytes read)
[    4.829405] systemd[1]: Created slice System Slice.
[    4.829609] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.829746] systemd[1]: Listening on RPCbind Server Activation Socket.
[    4.868533] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
[    5.014046] nvgpu: 57000000.gpu           gm20b_init_clk_setup_sw:1268 [INFO]  GPCPLL initial settings: NA mode, M=1, N=34, P=3 (id = 1)
[    5.385659] systemd-journald[2004]: Received request to flush runtime journal from PID 1
[    5.738671] tegra-xusb 70090000.xusb: Upgrade port 0 to USB3.0
[    5.738678] tegra-xusb 70090000.xusb: Upgrade port 1 to USB3.0
[    6.012035] using random self ethernet address
[    6.016588] using random host ethernet address
[    6.066310] usb 2-1: new SuperSpeed USB device number 2 using tegra-xusb
[    6.096311] usb 2-1: New USB device found, idVendor=0bda, idProduct=0411
[    6.096318] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.096322] usb 2-1: Product: 4-Port USB 3.0 Hub
[    6.096325] usb 2-1: Manufacturer: Generic
[    6.099870] hub 2-1:1.0: USB hub found
[    6.100649] hub 2-1:1.0: 4 ports detected
[    6.253927] usb 2-1: usb_suspend_both: status 0
[    6.254076] usb usb2: usb_suspend_both: status 0
[    6.847842] random: crng init done
[    6.851249] random: 7 urandom warning(s) missed due to ratelimiting
[    7.001306] pci 0000:01:00.0: xHCI HW not ready after 5 sec (HC bug?) status = 0x801
[    7.009097] sysfs: cannot create duplicate filename '/devices/1003000.pcie/pci0000:00/0000:00:01.0/0000:01:00.0/config'
[    7.019930] ------------[ cut here ]------------
[    7.024551] WARNING: CPU: 2 PID: 664 at /dvs/git/dirty/git-master_linux/kernel/kernel-4.9/fs/sysfs/dir.c:31 sysfs_warn_dup+0x68/0x88
[    7.036442] Modules linked in: spidev nvgpu bluedroid_pm ip_tables x_tables
[    7.036463] CPU: 2 PID: 664 Comm: kworker/2:1 Not tainted 4.9.140-tegra #1
[    7.036465] Hardware name: NVIDIA Jetson Nano Developer Kit (DT)
[    7.036476] Workqueue: events pcie_delayed_detect
[    7.036481] task: ffffffc0f96a1c00 task.stack: ffffffc0f90c4000
[    7.036486] PC is at sysfs_warn_dup+0x68/0x88
[    7.036489] LR is at sysfs_warn_dup+0x68/0x88
[    7.036493] pc : [<ffffff80082f23f8>] lr : [<ffffff80082f23f8>] pstate: 40400045
[    7.036495] sp : ffffffc0f90c7ba0
[    7.036497] x29: ffffffc0f90c7ba0 x28: ffffffc0f97da380
[    7.036503] x27: 0000000000000000 x26: 0000000000000005
[    7.036508] x25: ffffffc0f97da000 x24: ffffffc0f967b0b0
[    7.036513] x23: 0000000000000001 x22: 00000000000001a4
[    7.036518] x21: ffffffc0f7d9abb8 x20: ffffff8009446e40
[    7.036523] x19: ffffffc0ee8f5000 x18: 0000000000000010
[    7.036528] x17: 0000000000000000 x16: 0000000000000000
[    7.036533] x15: ffffffffffffffff x14: 303030333030312f
[    7.036537] x13: 736563697665642f x12: 2720656d616e656c
[    7.036542] x11: 6966206574616369 x10: 00000000000002f1
[    7.036547] x9 : 65726320746f6e6e x8 : ffffff80083d3768
[    7.036551] x7 : ffffff8009eb4198 x6 : ffffffc0fefe9bf0
[    7.036556] x5 : ffffffc0fefe9bf0 x4 : 0000000000000000
[    7.036561] x3 : ffffffc0fefef7f8 x2 : ffffffc0fefe9bf0
[    7.036566] x1 : ffffffc0f96a1c00 x0 : 000000000000006b
[    7.036572] ---[ end trace c95dd74f461c0a88 ]---
[    7.041182] Call trace:
[    7.041188] [<ffffff80082f23f8>] sysfs_warn_dup+0x68/0x88
[    7.041193] [<ffffff80082f2064>] sysfs_add_file_mode_ns+0x164/0x190
[    7.041197] [<ffffff80082f227c>] sysfs_create_bin_file+0x44/0x58
[    7.041202] [<ffffff80084e5ba4>] pci_create_sysfs_dev_files+0x4c/0x318
[    7.041207] [<ffffff80084d6f28>] pci_bus_add_device+0x38/0xb0
[    7.041210] [<ffffff80084d6fe0>] pci_bus_add_devices+0x40/0x90
[    7.041214] [<ffffff80084d7028>] pci_bus_add_devices+0x88/0x90
[    7.041217] [<ffffff8008502374>] pcie_delayed_detect+0x96c/0xdf8
[    7.041222] [<ffffff80080d4ebc>] process_one_work+0x1e4/0x4b0
[    7.041226] [<ffffff80080d51d8>] worker_thread+0x50/0x4c8
[    7.041230] [<ffffff80080dbe64>] kthread+0xec/0xf0
[    7.041234] [<ffffff80080838a0>] ret_from_fork+0x10/0x30
[    7.041554] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    7.041569] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 3
[    7.780693] cdc_acm 1-3.7:1.0: ttyACM0: USB ACM device
[    7.781295] usbcore: registered new interface driver cdc_acm
[    7.781298] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   10.889869] zram: Added device: zram0
[   10.894251] zram: Added device: zram1
[   10.894653] zram: Added device: zram2
[   10.895090] zram: Added device: zram3
[   10.923170] zram0: detected capacity change from 0 to 519598080
[   10.953191] Adding 507416k swap on /dev/zram0.  Priority:5 extents:1 across:507416k SS
[   10.956984] zram1: detected capacity change from 0 to 519598080
[   10.980758] Adding 507416k swap on /dev/zram1.  Priority:5 extents:1 across:507416k SS
[   10.996396] zram2: detected capacity change from 0 to 519598080
[   11.015674] Adding 507416k swap on /dev/zram2.  Priority:5 extents:1 across:507416k SS
[   11.023246] zram3: detected capacity change from 0 to 519598080
[   11.052570] Adding 507416k swap on /dev/zram3.  Priority:5 extents:1 across:507416k SS
[   23.569395] xhci_hcd 0000:01:00.0: can't setup: -110
[   23.574408] xhci_hcd 0000:01:00.0: USB bus 3 deregistered
[   23.574435] xhci_hcd 0000:01:00.0: init 0000:01:00.0 fail, -110
[   23.580385] xhci_hcd: probe of 0000:01:00.0 failed with error -110
[   23.586790] sysfs: cannot create duplicate filename '/devices/1003000.pcie/pci0000:00/0000:00:02.0/0000:02:00.0/config'
[   23.598225] ------------[ cut here ]------------
[   23.602941] WARNING: CPU: 2 PID: 664 at /dvs/git/dirty/git-master_linux/kernel/kernel-4.9/fs/sysfs/dir.c:31 sysfs_warn_dup+0x68/0x88
[   23.614862] Modules linked in: overlay zram cdc_acm spidev nvgpu bluedroid_pm ip_tables x_tables

[   23.615147] CPU: 2 PID: 664 Comm: kworker/2:1 Tainted: G        W       4.9.140-tegra #1
[   23.615180] Hardware name: NVIDIA Jetson Nano Developer Kit (DT)
[   23.615282] Workqueue: events pcie_delayed_detect
[   23.615351] task: ffffffc0f96a1c00 task.stack: ffffffc0f90c4000
[   23.615409] PC is at sysfs_warn_dup+0x68/0x88
[   23.615458] LR is at sysfs_warn_dup+0x68/0x88
[   23.615506] pc : [<ffffff80082f23f8>] lr : [<ffffff80082f23f8>] pstate: 40400045
[   23.615534] sp : ffffffc0f90c7ba0
[   23.615568] x29: ffffffc0f90c7ba0 x28: ffffffc0f97da380
[   23.615650] x27: 0000000000000000 x26: 0000000000000005
[   23.615726] x25: ffffffc0f97da000 x24: ffffffc0f967f0b0
[   23.615801] x23: 0000000000000001 x22: 00000000000001a4
[   23.615871] x21: ffffffc0f7da24b0 x20: ffffff8009446e40
[   23.615938] x19: ffffffc0f98ed000 x18: 0000000000000010
[   23.616003] x17: 0000000000000000 x16: 0000000000000000
[   23.616068] x15: ffffffffffffffff x14: 303030333030312f
[   23.616133] x13: 736563697665642f x12: 2720656d616e656c
[   23.616197] x11: 6966206574616369 x10: 0000000000000331
[   23.616264] x9 : 65726320746f6e6e x8 : ffffff80083d3768
[   23.616329] x7 : ffffff8009eb4198 x6 : ffffffc0fefe9bf0
[   23.616393] x5 : ffffffc0fefe9bf0 x4 : 0000000000000000
[   23.616456] x3 : ffffffc0fefef7f8 x2 : ffffffc0fefe9bf0
[   23.616520] x1 : ffffffc0f96a1c00 x0 : 000000000000006b

[   23.616610] ---[ end trace c95dd74f461c0a89 ]---
[   23.621343] Call trace:
[   23.621409] [<ffffff80082f23f8>] sysfs_warn_dup+0x68/0x88
[   23.621470] [<ffffff80082f2064>] sysfs_add_file_mode_ns+0x164/0x190
[   23.621525] [<ffffff80082f227c>] sysfs_create_bin_file+0x44/0x58
[   23.621575] [<ffffff80084e5ba4>] pci_create_sysfs_dev_files+0x4c/0x318
[   23.621631] [<ffffff80084d6f28>] pci_bus_add_device+0x38/0xb0
[   23.621681] [<ffffff80084d6fe0>] pci_bus_add_devices+0x40/0x90
[   23.621731] [<ffffff80084d7028>] pci_bus_add_devices+0x88/0x90
[   23.621773] [<ffffff8008502374>] pcie_delayed_detect+0x96c/0xdf8
[   23.621825] [<ffffff80080d4ebc>] process_one_work+0x1e4/0x4b0
[   23.621873] [<ffffff80080d51d8>] worker_thread+0x50/0x4c8
[   23.621915] [<ffffff80080dbe64>] kthread+0xec/0xf0
[   23.621959] [<ffffff80080838a0>] ret_from_fork+0x10/0x30
[   23.622841] r8168 0000:02:00.0: enabling device (0000 -> 0003)
[   23.622856] r8168 Gigabit Ethernet driver 8.045.08-NAPI loaded
[   23.636946] r8168 0000:02:00.0 (unnamed net_device) (uninitialized): Invalid ethernet address 00:00:00:00:00:00, trying device tree node
[   23.637027] r8168 0000:02:00.0 (unnamed net_device) (uninitialized): Found valid ethernet address 00:04:4b:e7:1c:b8 from device tree
[   23.637529] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[   23.637545] r8168  Copyright (C) 2017  Realtek NIC software team <nicfae@realtek.com>
                This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
                This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
[   23.680419] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   23.681470] eth0: 0xffffff800a255000, 00:04:4b:e7:1c:b8, IRQ 407
[   23.735841] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   24.388093] tegradc tegradc.0: blank - powerdown
[   24.388102] tegradc tegradc.1: blank - powerdown
[   27.512391] fuse init (API version 7.26)
[   30.397714] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   30.397727] Bluetooth: BNEP socket layer initialized

I found some confused message from “dmesg” log , like these:

[ 7.001306] pci 0000:01:00.0: xHCI HW not ready after 5 sec (HC bug?) status = 0x801
[ 7.009097] sysfs: cannot create duplicate filename
/devices/1003000.pcie/pci0000:00/0000:00:01.0/0000:01:00.0/config’

[ 23.569395] xhci_hcd 0000:01:00.0: can’t setup: -110
[ 23.574408] xhci_hcd 0000:01:00.0: USB bus 3 deregistered
[ 23.574435] xhci_hcd 0000:01:00.0: init 0000:01:00.0 fail, -110
[ 23.580385] xhci_hcd: probe of 0000:01:00.0 failed with error -110

By the way, I could not seen any message after plug a device in VL805’s USB ports by command “dmesg”.

I have read this :https://forums.developer.nvidia.com/t/pci-express-on-jetson-nano/73658,maybe I need learn how to usb device tree.

Here is datasheet of the IC VL805 :DS_VLI_VL805_093.zip (806.2 KB)

some important features:

The report of command “lspci” about rtl8111 (Gigabit Ethernet controller on module ):(for refernce)

nano@jetson-desktop:~$ sudo lspci -s 02:00.0 -vvv    
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)
            Subsystem: Realtek Semiconductor Co., Ltd. RTL8111/8168 PCI Express Gigabit Ethernet controller
            Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
            Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
            Latency: 0, Cache Line Size: 64 bytes
            Interrupt: pin A routed to IRQ 407
            Region 0: I/O ports at 1000 [size=256]
            Region 2: Memory at 13104000 (64-bit, non-prefetchable) [size=4K]
            Region 4: Memory at 13100000 (64-bit, non-prefetchable) [size=16K]
            Capabilities: [40] Power Management version 3
                    Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
                    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
            Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
                    Address: 00000000fa81f000  Data: 0000
            Capabilities: [70] Express (v2) Endpoint, MSI 01
                    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <512ns, L1 <64us
                            ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
                    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
                            RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
                            MaxPayload 128 bytes, MaxReadReq 4096 bytes
                    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
                    LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s unlimited, L1 <64us
                            ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
                    LnkCtl: ASPM L1 Enabled; RCB 64 bytes Disabled- CommClk+
                            ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
                    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
                    DevCap2: Completion Timeout: Range ABCD, TimeoutDis+, LTR+, OBFF Via message/WAKE#
                    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR+, OBFF Disabled
                    LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
                             Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
                             Compliance De-emphasis: -6dB
                    LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
                             EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
            Capabilities: [b0] MSI-X: Enable- Count=4 Masked-
                    Vector table: BAR=4 offset=00000000
                    PBA: BAR=4 offset=00000800
            Capabilities: [d0] Vital Product Data
    pcilib: sysfs_read_vpd: read failed: Input/output error
                    Not readable
            Capabilities: [100 v2] Advanced Error Reporting
                    UESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
                    UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
                    UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
                    CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
                    CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
                    AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
            Capabilities: [140 v1] Virtual Channel
                    Caps:   LPEVC=0 RefClk=100ns PATEntryBits=1
                    Arb:    Fixed- WRR32- WRR64- WRR128-
                    Ctrl:   ArbSelect=Fixed
                    Status: InProgress-
                    VC0:    Caps:   PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
                            Arb:    Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
                            Ctrl:   Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
                            Status: NegoPending- InProgress-
            Capabilities: [160 v1] Device Serial Number 00-00-00-00-00-00-00-00
            Capabilities: [170 v1] Latency Tolerance Reporting
                    Max snoop latency: 0ns
                    Max no snoop latency: 0ns
            Capabilities: [178 v1] L1 PM Substates
                    L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
                              PortCommonModeRestoreTime=150us PortTPowerOnTime=150us
                    L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
                               T_CommonMode=0us LTR1.2_Threshold=294912ns
                    L1SubCtl2: T_PwrOn=150us
            Kernel driver in use: r8168

I have find the reason, you need to place a SPI flash to vl805 , the firmware will load from spi flash to vl805 when it boot.