USB OTG - custom device tree

Hi

We have designed a custom carrier board for Jetson TX2.
For some reasons, we used a USB Type B connector on carrier board, for Jetson USB0 port:

image

Here are our carrier board differences with P2597 schematic:

1- Only USB data pins (D+ and D-) were connected to the Jetson module.

2-No supply voltage is provided for the USB connector (As we want to work only in device mode). The pin #1 of the connector is left unconnected.

3- The USB OTG ID pin (USB0_OTG_ID) and USB VBUS detect pin (USB0_VBUS_DET) are left unconnected.

I read the “Jetson TX2 Series Adaptation and Bring-Up” guide:

https://docs.nvidia.com/jetson/l4t/index.html#page/Tegra%20Linux%20Driver%20Package%20Development%20Guide/adaptation_and_bringup_tx2.html#wwpID0E02L0HA

Would you please help me how to change the device tree to get the USB0 working on my board?

(I Changed all four cable states to 0x1 value and flashed the device tree, But It didn’t solve the problem).

Thanks in advance for your kind attention.

Hi,
There are two examples for reference:
USB not working in Jetson TX2 - R32.2 - #2 by DaneLLL
Jetson TX2 USB 2/3 connection - #2 by DaneLLL

Please take a look.

Thanks DaneLLL

Will the following changes to the device tree solve my problem?

Changing mode to “device”:

usb2-0 {
    status = "okay";
    mode = "device";
    vbus-supply = <&vdd_usb0_5v>;
    nvidia,oc-pin = <0>;
};

disabling xudc@3550000 :

xudc@3550000 {
    status = "disabled";
    ...
};

and removing extcon-* in xhci@3530000

xhci@3530000 {
    # extcon-cables = <&vbus_id_extcon 1>;
    # extcon-cable-names = "id";
    # extcon-cells = <1>;
    ...
};

Have you tried with the suggestions? any rsult can be shared? Thanks

Hi

I tried the changes in the POST#3, as well as other changes mentioned in the links in POST#2.

None of them make USB0 work on my custom carrier board. So I flashed the original device tree to get the dmesg output and share it.

Here is the dmesg output:

[    0.000000] Booting Linux on physical CPU 0x100
[    0.000000] Linux version 4.9.253-tegra (buildbrain@mobile-u64-5403-d8000) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #1 SMP PREEMPT Sat Feb 19 08:58:27 PST 2022
[    0.000000] Boot CPU: AArch64 Processor [411fd073]
[    0.000000] OF: fdt:memory scan node memory@80000000, reg size 80,
[    0.000000] OF: fdt: - 80000000 ,  70000000
[    0.000000] OF: fdt: - f0200000 ,  185600000
[    0.000000] OF: fdt: - 275e00000 ,  200000
[    0.000000] OF: fdt: - 276600000 ,  200000
[    0.000000] OF: fdt: - 277000000 ,  200000
[    0.000000] earlycon: uart8250 at MMIO32 0x0000000003100000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    0.000000] OF: reserved mem: initialized node vpr-carveout, compatible id nvidia,vpr-carveout
[    0.000000] OF: reserved mem: initialized node ramoops_carveout, compatible id nvidia,ramoops
[    0.000000] cma: Reserved 64 MiB at 0x00000000fc000000
[    0.000000] On node 0 totalpages: 2055168
[    0.000000]   DMA zone: 8192 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 523776 pages, LIFO batch:31
[    0.000000]   Normal zone: 24008 pages used for memmap
[    0.000000]   Normal zone: 1531392 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] 4 [0] 5
[    0.000000] Speculative Store Bypass Disable mitigation not required
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2022968
[    0.000000] Kernel command line: console=ttyS0,115200 androidboot.presilicon=true firmware_class.path=/etc/firmware root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 isolcpus=1-2 nv-auto-config  video=tegrafb earlycon=uart8250,mmio32,0x3100000 nvdumper_reserved=0x2772e0000 gpt rootfs.slot_suffix= usbcore.old_scheme_first=1 tegraid=18.1.2.0.0 maxcpus=6 no_console_suspend boot.slot_suffix= boot.ratchetvalues=0.2031647.1 vpr_resize bl_prof_dataptr=0x10000@0x275840000 sdhci_tegra.en_boot_part_access=1 quiet root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 isolcpus=1-2 nv-auto-config
[    0.000000] log_buf_len individual max cpu contribution: 32768 bytes
[    0.000000] log_buf_len total cpu_extra contributions: 163840 bytes
[    0.000000] log_buf_len min size: 32768 bytes
[    0.000000] log_buf_len: 262144 bytes
[    0.000000] early log buf free: 29836(91%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Memory: 7277628K/8220672K available (15358K kernel code, 2956K rwdata, 6696K rodata, 8640K init, 612K bss, 189380K reserved, 753664K 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 - 0xffffff8008f80000   ( 15360 KB)
[    0.000000]     .rodata : 0xffffff8008f80000 - 0xffffff8009610000   (  6720 KB)
[    0.000000]       .init : 0xffffff8009610000 - 0xffffff8009e80000   (  8640 KB)
[    0.000000]       .data : 0xffffff8009e80000 - 0xffffff800a163008   (  2957 KB)
[    0.000000]        .bss : 0xffffff800a163008 - 0xffffff800a1fc0b4   (   613 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 - 0xffffffbf07dc8000   (   125 MB actual)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc1f7200000   (  8050 MB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, 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=6.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=6
[    0.000000] NR_IRQS:64 nr_irqs:64 0
[    0.000000] GIC: Using split EOI/Deactivate mode
[    0.000000] arm_arch_timer: Architected cp15 timer(s) running at 31.25MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xe6a171046, max_idle_ns: 881590405314 ns
[    0.000003] sched_clock: 56 bits at 31MHz, resolution 32ns, wraps every 4398046511088ns
[    0.001626] Console: colour dummy device 80x25
[    0.001631] console [tty0] enabled
[    0.001634] bootconsole [uart8250] disabled
[    0.001642] kmemleak: Kernel memory leak detector disabled
[    0.001652] Calibrating delay loop (skipped), value calculated using timer frequency.. 62.50 BogoMIPS (lpj=125000)
[    0.001659] pid_max: default: 32768 minimum: 301
[    0.001967] Security Framework initialized
[    0.002121] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.002125] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.002715] ftrace: allocating 47098 entries in 184 pages
[    0.124994] sched-energy: Sched-energy-costs installed from DT
[    0.125003] ASID allocator initialised with 65536 entries
[    0.164256] tegra-id: chipid=21817.
[    0.164263] tegra-id: opt_subrevision=1.
[    0.164280] Tegra Revision: A02p SKU: 0xdc CPU Process: 0 SoC Process: 0
[    0.164288] DTS File Name: /dvs/git/dirty/git-master_linux/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t18x/quill/kernel-dts/tegra186-quill-p3310-1000-c03-00-base.dts
[    0.164294] DTB Build time: Feb 19 2022 09:00:51
[    0.214747] CPU1: Booted secondary processor [4e0f0030]
[    0.246152] CPU2: Booted secondary processor [4e0f0030]
[    0.277166] CPU3: Booted secondary processor [411fd073]
[    0.309131] CPU4: Booted secondary processor [411fd073]
[    0.341121] CPU5: Booted secondary processor [411fd073]
[    0.341178] Brought up 6 CPUs
[    0.341182] SMP: Total of 6 processors activated.
[    0.341187] CPU features: detected feature: 32-bit EL0 Support
[    0.343259] CPU: All CPU(s) started at EL2
[    0.343402] alternatives: patching kernel code
[    0.346391] devtmpfs: initialized
[    0.385933] Initilizing CustomIPI irq domain
[    0.386087] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.386096] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.394382] pinctrl core: initialized pinctrl subsystem
[    0.394628] OS set in device tree is not L4T.
[    0.394785] regulator-dummy: no parameters
[    0.394924] Initializing plugin-manager
[    0.394986] Plugin module not found
[    0.395024] Plugin-manager status disabled
[    0.396977] NET: Registered protocol family 16
[    0.397975] pstore: using zlib compression
[    0.397988] console [pstore-1] enabled
[    0.397991] pstore: Registered ramoops as persistent store backend
[    0.397994] ramoops: attached 0x200000@0x275880000, ecc: 0/0
[    0.413176] cpuidle: using governor menu
[    0.414736] bpmp: waiting for handshake
[    0.414740] bpmp: handshake completed
[    0.414757] bpmp: synchronizing channels
[    0.414771] bpmp: channels synchronized
[    0.414774] bpmp: mail init ok
[    0.416965] arm-smmu 12000000.iommu: probing hardware configuration...
[    0.416969] arm-smmu 12000000.iommu: SMMUv2 with:
[    0.416974] arm-smmu 12000000.iommu:         stage 1 translation
[    0.416977] arm-smmu 12000000.iommu:         stage 2 translation
[    0.416980] arm-smmu 12000000.iommu:         nested translation
[    0.416986] arm-smmu 12000000.iommu:         stream matching with 128 register groups, mask 0x7f80
[    0.416992] arm-smmu 12000000.iommu: SMMU address space size (0x800000) differs from mapped region size (0x1000000)!
[    0.416996] arm-smmu 12000000.iommu:         64 context banks (0 stage-2 only)
[    0.417001] arm-smmu 12000000.iommu:         Stage-1: 39-bit VA -> 48-bit IPA
[    0.417005] arm-smmu 12000000.iommu:         Stage-2: 39-bit IPA -> 48-bit PA
[    0.419298] vdso: 2 pages (1 code @ ffffff8008f87000, 1 data @ ffffff8009e84000)
[    0.419312] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.421416] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[    0.423593] Registering BPMP clocks...
[    0.423681] tegra_bpmp_clk_init: clock init ok (638 clks)
[    0.424667] Serial: AMBA PL011 UART driver
[    0.425815] tegra_powergate_init: DONE
[    0.425823] DTS File Name: /dvs/git/dirty/git-master_linux/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t18x/quill/kernel-dts/tegra186-quill-p3310-1000-c03-00-base.dts
[    0.425828] DTB Build time: Feb 19 2022 09:00:51
[    0.428090] Tegra reboot handler registered.
[    0.429719] tegra-pmc c360000.pmc: scratch reg offset dts data not present
[    0.429786] tegra-pmc: get_secure_pmc_setting: done secure_pmc=0
[    0.429798] tegra-pmc: ### PMC reset source: TEGRA_SOFTWARE_RESET
[    0.429801] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_L1
[    0.429803] tegra-pmc: ### PMC reset status reg: 0x2d
[    0.429956] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[    0.429966] tegra-pmc c360000.pmc: IO padctrl driver initialized
[    0.430291] iommu: Adding device 3460000.sdhci to group 0
[    0.430987] iommu: Adding device 3400000.sdhci to group 1
[    0.432068] iommu: Adding device 3507000.ahci-sata to group 2
[    0.432082] arm-smmu: forcing sodev map for 3507000.ahci-sata
[    0.432547] iommu: Adding device 3160000.i2c to group 3
[    0.433023] iommu: Adding device c240000.i2c to group 4
[    0.433418] iommu: Adding device 3180000.i2c to group 5
[    0.433769] iommu: Adding device 3190000.i2c to group 6
[    0.434187] iommu: Adding device 31b0000.i2c to group 7
[    0.434518] iommu: Adding device 31c0000.i2c to group 8
[    0.434856] iommu: Adding device c250000.i2c to group 9
[    0.435191] iommu: Adding device 31e0000.i2c to group 10
[    0.436706] iommu: Adding device 3210000.spi to group 11
[    0.437046] iommu: Adding device c260000.spi to group 12
[    0.437411] iommu: Adding device 3240000.spi to group 13
[    0.438107] iommu: Adding device 3100000.serial to group 14
[    0.438451] iommu: Adding device 3110000.serial to group 15
[    0.438783] iommu: Adding device c280000.serial to group 16
[    0.439116] iommu: Adding device 3130000.serial to group 17
[    0.440499] iommu: Adding device 2490000.ether_qos to group 18
[    0.440512] arm-smmu: forcing sodev map for 2490000.ether_qos
[    0.441415] iommu: Adding device b000000.rtcpu to group 19
[    0.443645] iommu: Adding device 13e10000.host1x to group 20
[    0.443958] iommu: Adding device 13e10000.host1x:ctx0 to group 21
[    0.444276] iommu: Adding device 13e10000.host1x:ctx1 to group 22
[    0.444581] iommu: Adding device 13e10000.host1x:ctx2 to group 23
[    0.444889] iommu: Adding device 13e10000.host1x:ctx3 to group 24
[    0.445230] iommu: Adding device 13e10000.host1x:ctx4 to group 25
[    0.445542] iommu: Adding device 13e10000.host1x:ctx5 to group 26
[    0.445844] iommu: Adding device 13e10000.host1x:ctx6 to group 27
[    0.446165] iommu: Adding device 13e10000.host1x:ctx7 to group 28
[    0.446636] iommu: Adding device 150c0000.nvcsi to group 29
[    0.447280] iommu: Adding device 15700000.vi to group 30
[    0.447641] iommu: Adding device 15600000.isp to group 31
[    0.447859] iommu: Adding device 15200000.dc_common to group 32
[    0.448479] iommu: Adding device 15210000.nvdisplay to group 33
[    0.448836] iommu: Adding device 15340000.vic to group 34
[    0.449058] iommu: Adding device 154c0000.nvenc to group 35
[    0.449303] iommu: Adding device 15480000.nvdec to group 36
[    0.449657] iommu: Adding device 15380000.nvjpg to group 37
[    0.449871] iommu: Adding device 15500000.tsec to group 38
[    0.450079] iommu: Adding device 15100000.tsecb to group 39
[    0.450777] iommu: Adding device 15810000.se to group 40
[    0.450995] iommu: Adding device 15820000.se to group 41
[    0.451212] iommu: Adding device 15830000.se to group 42
[    0.451436] iommu: Adding device 15840000.se to group 43
[    0.452368] iommu: Adding device smmu_test to group 44
[    0.453019] mc: mapped MMIO address: 0xffffff800a7b0000 -> 0x2c10000
[    0.453030] mc: mapped MMIO address: 0xffffff800a7d0000 -> 0x2c20000
[    0.453041] mc: mapped MMIO address: 0xffffff800b110000 -> 0x2c30000
[    0.453051] mc: mapped MMIO address: 0xffffff800b130000 -> 0x2c40000
[    0.453060] mc: mapped MMIO address: 0xffffff800b150000 -> 0x2c50000
[    0.453068] nv-tegra-mc 2c10000.mc: No mssnvlink node
[    0.453077] mc-err: mcerr ops are set to t18x
[    0.453243] dram-ecc: DRAM ECC disabled-MC_ECC_CONTROL:0x0000000c
[    0.454402] iommu: Adding device 3530000.xhci to group 45
[    0.454416] arm-smmu: forcing sodev map for 3530000.xhci
[    0.454861] iommu: Adding device 3550000.xudc to group 46
[    0.454872] arm-smmu: forcing sodev map for 3550000.xudc
[    0.455585] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CNTRL_83 = 0x10a
[    0.455591] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CTRL_0 = 3
[    0.455596] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CNTRL_24(PMU_INT) = 256
[    0.456233] iommu: Adding device 17000000.gp10b to group 47
[    0.457340] tegra-reset 5000000.clock: registered 193 resets.
[    0.459566] iommu: Adding device d000000.bpmp to group 48
[    0.459767] bpmp: ping status is 0
[    0.459867] bpmp d000000.bpmp: firmware tag is 91572a54614f84d0fd0c270beec2c56f
[    0.462444] bpmp d000000.bpmp: probe ok
[    0.465630] iommu: Adding device 2600000.dma to group 49
[    0.466518] gpio gpiochip0: gpio-line-names specifies 180 line names but there are 192 lines on the chip
[    0.467015] GPIO line 461 (camera-control-output-low) hogged as output/low
[    0.467046] GPIO line 456 (camera-control-output-low) hogged as output/low
[    0.467076] GPIO line 457 (camera-control-output-low) hogged as output/low
[    0.467104] GPIO line 426 (camera-control-output-low) hogged as output/low
[    0.467134] GPIO line 424 (wifi-enable) hogged as output/high
[    0.467162] GPIO line 445 (sdmmc-wake-support-input) hogged as input
[    0.467191] GPIO line 446 (sdmmc-wake-support-output) hogged as output/low
[    0.467350] gpiochip_setup_dev: registered GPIOs 320 to 511 on device: gpiochip0 (tegra-gpio)
[    0.471005] gpio gpiochip1: gpio-line-names specifies 60 line names but there are 64 lines on the chip
[    0.471124] GPIO line 315 (wifi-wake-ap) hogged as input
[    0.471278] gpiochip_setup_dev: registered GPIOs 256 to 319 on device: gpiochip1 (tegra-gpio-aon)
[    0.472969] iommu: Adding device 10003000.pcie-controller to group 50
[    0.472984] arm-smmu: forcing sodev map for 10003000.pcie-controller
[    0.473356] iommu: Adding device sound to group 51
[    0.473723] iommu: Adding device 3510000.hda to group 52
[    0.481385] iommu: Adding device c1a0000.aon to group 53
[    0.481837] vdd-ac-bat: 5000 mV
[    0.483530] vdd-1v8-ap: 1800 mV
[    0.502256] random: fast init done
[    0.509736] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.512433] eventlib_kernel: keventlib is initialized, test id: 0
[    0.512623] SCSI subsystem initialized
[    0.512798] libata version 3.00 loaded.
[    0.512982] usbcore: registered new interface driver usbfs
[    0.513013] usbcore: registered new interface driver hub
[    0.513041] usbcore: registered new device driver usb
[    0.515226] tegra-i2c 3160000.i2c: no acknowledge from address 0x74
[    0.515256] pca953x 0-0074: failed reading register
[    0.515306] pca953x: probe of 0-0074 failed with error -121
[    0.515636] tegra-i2c 3160000.i2c: no acknowledge from address 0x77
[    0.515664] pca953x 0-0077: failed reading register
[    0.515700] pca953x: probe of 0-0077 failed with error -121
[    0.525740] max77620 4-003c: PMIC Version OTP:0x45 and ES:0x8
[    0.528851] vddio-ddr: at 1125 mV
[    0.532710] avdd_dsi_csi: 1200 mV
[    0.536696] vdd-1v8: 1800 mV
[    0.540694] vdd-3v3-sys: 3300 mV
[    0.541539] spmic-ldo0: at 1800 mV
[    0.542244] spmic-ldo1: at 800 mV
[    0.544697] vddio-3v3: 3300 mV
[    0.545425] vddio-sdmmc1: 1800 <--> 3300 mV at 3300 mV
[    0.548697] vdd-rtc: at 800 mV
[    0.549305] avdd-ts-hv: 1800 <--> 3300 mV at 1800 mV
[    0.552698] spmic-ldo6: at 1500 mV
[    0.556695] vdd-pex-1v00: 1000 mV
[    0.557333] dvdd-pex: 1000 mV
[    0.559729] GPIO line 253 (spmic_gpio_input) hogged as input
[    0.559887] GPIO line 254 (spmic_gpio_input) hogged as input
[    0.560046] gpiochip_setup_dev: registered GPIOs 248 to 255 on device: gpiochip2 (max77620-gpio)
[    0.560218] max77620 4-003c: max77620 probe successful
[    0.560609] media: Linux media interface: v0.10
[    0.560636] Linux video capture interface: v2.00
[    0.564332] pps_core: LinuxPPS API ver. 1 registered
[    0.564335] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.564353] PTP clock support registered
[    0.564580] tegra_wdt_t18x 30c0000.watchdog: Expiry count is deprecated
[    0.564817] tegra_wdt_t18x 30c0000.watchdog: Tegra WDT init timeout = 120 sec
[    0.564833] tegra_wdt_t18x 30c0000.watchdog: Registered successfully
[    0.566252] trusty trusty: trusty version: Built: 08:57:14 Feb 19 2022
[    0.566269] trusty trusty: selected api version: 3 (requested 3)
[    0.567082] Advanced Linux Sound Architecture Driver Initialized.
[    0.567414] Bluetooth: Core ver 2.22
[    0.567443] NET: Registered protocol family 31
[    0.567445] Bluetooth: HCI device and connection manager initialized
[    0.567452] Bluetooth: HCI socket layer initialized
[    0.567456] Bluetooth: L2CAP socket layer initialized
[    0.567470] Bluetooth: SCO socket layer initialized
[    0.568219] en-vdd-sd: 3300 mV
[    0.568617] vdd-usb0-5v: 5000 mV
[    0.568892] vdd-usb1-5v: 5000 mV
[    0.569395] vdd-3v3: 3300 mV
[    0.569642] en-vdd-vcm-2v8: 2800 mV
[    0.569880] vdd-sys-bl: 3300 mV
[    0.571900] camchar: rtcpu character device driver loaded
[    0.572458] gpio tegra-gpio wake53 for gpio=159(X:7)
[    0.574229] extcon-gpio-states external-connection:extcon@1: Cable state:0, cable id:0
[    0.575158] clocksource: Switched to clocksource arch_sys_counter
[    0.597412] VFS: Disk quotas dquot_6.6.0
[    0.597485] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.597732] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    0.598256] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000c6000000, size=0x2a000000
[    0.598365] cma: enabled page replacement for spfn=c6000, epfn=f0000
[    0.598369] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful
[    0.598376] nvmap: nvmap_select_cache_ops() nvmap cache ops set to roc
[    0.598381] nvmap_page_pool_init: Total RAM pages: 2007823
[    0.598384] nvmap_page_pool_init: nvmap page pool size: 250977 pages (980 MB)
[    0.598429] nvmap_background_zero_thread: PP zeroing thread starting.
[    0.598896] misc nvmap: created heap vpr base 0x00000000c6000000 size (688128KiB)
[    0.600961] tegra-gpcdma 2600000.dma: GPC DMA driver register 32 channels
[    0.606425] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type BCPU-therm
[    0.606645] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type MCPU-therm
[    0.607064] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
[    0.607159] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[    0.607269] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type Tboard_tegra
[    0.607369] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type Tdiode_tegra
[    0.607531] thermal thermal_zone6: Registering thermal zone thermal_zone6 for type PMIC-Die
[    0.607731] la/ptsa driver initialized.
[    0.607740] pre_t19x_iso_plat_init(): iso emc max clk=1866000KHz
[    0.607743] pre_t19x_iso_plat_init(): max_iso_bw=26870400KB
[    0.608031] NET: Registered protocol family 2
[    0.608093] IP idents hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.610552] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.610858] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.611483] TCP: Hash tables configured (established 65536 bind 65536)
[    0.611536] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.611651] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.612033] NET: Registered protocol family 1
[    0.612394] RPC: Registered named UNIX socket transport module.
[    0.612397] RPC: Registered udp transport module.
[    0.612399] RPC: Registered tcp transport module.
[    0.612402] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.612407] PCI: CLS 0 bytes, default 64
[    0.612519] Trying to unpack rootfs image as initramfs...
[    0.821933] Freeing initrd memory: 7068K
[    0.837943] host1x 13e10000.host1x: initialized
[    0.839454] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    0.841584] audit: initializing netlink subsys (disabled)
[    0.841616] audit: type=2000 audit(0.732:1): initialized
[    0.842011] workingset: timestamp_bits=46 max_order=21 bucket_order=0
[    0.848537] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.849476] ntfs: driver 2.1.32 [Flags: R/W].
[    0.849977] 9p: Installing v9fs 9p2000 file system support
[    0.852082] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)
[    0.852147] io scheduler noop registered
[    0.852346] io scheduler cfq registered (default)
[    0.855655] gic 2a41000.agic-controller: GIC IRQ controller registered
[    0.962374] iommu: Adding device aconnect@2a41000:adsp_audio to group 54
[    0.997286] iommu: Adding device 2993000.adsp to group 55
[    0.998380] tegra-aconnect aconnect@2a41000: Tegra ACONNECT bus registered
[    1.000769] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[    1.004751] tegra-pwm 3280000.pwm: PWM clk can sleep in ops
[    1.005932] tegra-pwm 3290000.pwm: PWM clk can sleep in ops
[    1.007011] tegra-pwm 32a0000.pwm: PWM clk can sleep in ops
[    1.008075] tegra-pwm c340000.pwm: PWM clk can sleep in ops
[    1.010603] tegra-pcie 10003000.pcie-controller: 4x1, 1x1 configuration
[    1.011597] tegra-pcie 10003000.pcie-controller: PCIE: Enable power rails
[    1.011935] tegra-pcie 10003000.pcie-controller: probing port 0, using 4 lanes
[    1.012048] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[    1.012157] misc tegra_camera_ctrl: tegra_camera_isomgr_register tpg_max_iso = 3916800KBs
[    1.012162] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=4687500, vi_iso_bw=2000000, max_bw=4687500
[    1.014422] tegra-pcie 10003000.pcie-controller: probing port 2, using 1 lanes
[    1.015727] tsec 15500000.tsec: initialized
[    1.016846] tsec 15100000.tsecb: initialized
[    1.020419] nvdec 15480000.nvdec: initialized
[    1.026559] falcon 15340000.vic: initialized
[    1.027938] falcon 154c0000.nvenc: initialized
[    1.029168] falcon 15380000.nvjpg: initialized
[    1.031083] iommu_context_dev 13e10000.host1x:ctx0: initialized (streamid=56)
[    1.032588] iommu_context_dev 13e10000.host1x:ctx1: initialized (streamid=57)
[    1.034028] iommu_context_dev 13e10000.host1x:ctx2: initialized (streamid=58)
[    1.035487] iommu_context_dev 13e10000.host1x:ctx3: initialized (streamid=59)
[    1.036925] iommu_context_dev 13e10000.host1x:ctx4: initialized (streamid=60)
[    1.038370] iommu_context_dev 13e10000.host1x:ctx5: initialized (streamid=61)
[    1.039890] iommu_context_dev 13e10000.host1x:ctx6: initialized (streamid=62)
[    1.041292] iommu_context_dev 13e10000.host1x:ctx7: initialized (streamid=63)
[    1.044567] tegradccommon 15200000.dc_common: host1x channel mapped
[    1.044574] tegradccommon 15200000.dc_common: dc_common syncpt # 1 allocated
[    1.044601] tegradccommon 15200000.dc_common: dma mapping done
[    1.045418] tegra_cec 3960000.tegra_cec: dt=1 start=0x03960000 end=0x03960FFF irq=391
[    1.045591] tegradc 15210000.nvdisplay: disp0 connected to head1->/host1x/sor1
[    1.045632] generic_infoframe_type: 0x87
[    1.045709] tegradc 15210000.nvdisplay: DT parsed successfully
[    1.045727] tegradc 15210000.nvdisplay: Display dc.ffffff800b3e0000 registered with id=0
[    1.046103] tegra_cec 3960000.tegra_cec: Unpowergate DISP: 0.
[    1.046938] tegra_cec 3960000.tegra_cec: Enable clock result: 0.
[    1.046952] tegra_cec 3960000.tegra_cec: tegra_cec_init started
[    1.047108] tegra_cec 3960000.tegra_cec: cec_add_sysfs ret=0
[    1.047142] tegra_cec 3960000.tegra_cec: probed
[    1.051258] tegra_nvdisp_bandwidth_register_max_config: max config iso bw = 16727000 KB/s
[    1.051262] tegra_nvdisp_bandwidth_register_max_config: max config EMC floor = 665600000 Hz
[    1.051265] tegra_nvdisp_bandwidth_register_max_config: max config hubclk = 357620000 Hz
[    1.051434] tegradc 15210000.nvdisplay: vblank syncpt # 8 for dc 1
[    1.051439] tegradc 15210000.nvdisplay: vpulse3 syncpt # 9 for dc 1
[    1.052191] tegradc 15210000.nvdisplay: dc_hdmi_hotplug_init: couldn't get regulator vdd_hdmi_5v0, -517
[    1.057487] tegradc 15210000.nvdisplay: hdmi: invalid prod list prod_list_hdmi_board
[    1.057491] tegradc 15210000.nvdisplay: hdmi: tegra_hdmi_tmds_range_read(bd) failed
[    1.062148] tegra-adma 2930000.adma: Tegra210 ADMA driver registered 32 channels
[    1.062799] tegra-fuse-burn 3820000.efuse:efuse-burn: shutdown limit check disabled
[    1.062825] tegra-fuse-burn 3820000.efuse:efuse-burn: Fuse burn driver initialized
[    1.063241] kfuse 3830000.kfuse: initialized
[    1.064567] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[    1.067355] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.069736] console [ttyS0] disabled
[    1.069770] 3100000.serial: ttyS0 at MMIO 0x3100000 (irq = 36, base_baud = 25500000) is a Tegra
[    1.088973] console [ttyS0] enabled
[    1.090303] 3110000.serial: ttyTHS1 at MMIO 0x3110000 (irq = 37, base_baud = 0) is a TEGRA_UART
[    1.091165] c280000.serial: ttyTHS2 at MMIO 0xc280000 (irq = 38, base_baud = 0) is a TEGRA_UART
[    1.091393] serial-tegra 3130000.serial: RX in PIO mode
[    1.092132] 3130000.serial: ttyTHS3 at MMIO 0x3130000 (irq = 39, base_baud = 0) is a TEGRA_UART
[    1.093161] [drm] Initialized
[    1.099924] brd: module loaded
[    1.103211] loop: module loaded
[    1.103258] tegra_profiler: version: 1.145, samples/io: 49/28
[    1.103334] tegra_profiler: auth: init
[    1.103662] nct1008_nct72 7-004c: starting parse dt
[    1.103763] nct1008_nct72 7-004c: !!!Found deprecated property!!!
[    1.103768] nct1008_nct72 7-004c: success parsing dt
[    1.103878] nct1008_nct72 7-004c: success in enabling tmp451 VDD rail
[    1.104221] THERMAL EST: found 3 subdevs
[    1.104225] THERMAL EST num_resources: 0
[    1.104228] [THERMAL EST subdev 0]
[    1.104233] [THERMAL EST subdev 1]
[    1.104237] [THERMAL EST subdev 2]
[    1.104491] thermal thermal_zone7: Registering thermal zone thermal_zone7 for type thermal-fan-est
[    1.104494] THERMAL EST: thz register success.
[    1.104583] THERMAL EST: end of probe, return err: 0
[    1.105199] sd: No Scsi addr parsed to reserve index
[    1.105221] hisi_sas: driver version v1.6
[    1.108656] tegra-ahci 3507000.ahci-sata: AHCI 0001.0301 32 slots 2 ports 3 Gbps 0x1 impl platform mode
[    1.108664] tegra-ahci 3507000.ahci-sata: flags: 64bit ncq sntf pm led pmp pio slum part deso sadm apst
[    1.109356] scsi host0: tegra_ahci
[    1.109722] scsi host1: tegra_ahci
[    1.109856] ata1: SATA max UDMA/133 mmio [mem 0x03507000-0x03508fff] port 0x100 irq 24
[    1.109858] ata2: DUMMY
[    1.114955] libphy: Fixed MDIO Bus: probed
[    1.115651] tun: Universal TUN/TAP device driver, 1.6
[    1.115655] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.116328] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.116331] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.116364] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    1.116366] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.116396] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    1.116398] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.116431] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k
[    1.116433] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    1.123283] eqos 2490000.ether_qos: can't get pllrefe_vcoout clk (-2)
[    1.125677] eqos 2490000.ether_qos: failed to read eqos_auto_cal_config_0_reg
[    1.126159] eqos 2490000.ether_qos: Setting local MAC: 48 b0 2d 1c f4 3c
[    1.126188] Using phyrst_lpmode = 0 from DT
[    1.126257] libphy: dwc_phy: probed
[    1.126534] bcm54xx_low_power_mode(): put phy in iddq-lp mode
[    1.128403] PPP generic driver version 2.4.2
[    1.128517] PPP BSD Compression module registered
[    1.128520] PPP Deflate Compression module registered
[    1.128533] PPP MPPE Compression module registered
[    1.128537] NET: Registered protocol family 24
[    1.128577] usbcore: registered new interface driver r8152
[    1.128607] usbcore: registered new interface driver asix
[    1.128640] usbcore: registered new interface driver ax88179_178a
[    1.128666] usbcore: registered new interface driver cdc_ether
[    1.128692] usbcore: registered new interface driver net1080
[    1.128720] usbcore: registered new interface driver cdc_subset
[    1.128744] usbcore: registered new interface driver zaurus
[    1.128780] usbcore: registered new interface driver cdc_ncm
[    1.128880] VFIO - User Level meta-driver version: 0.3
[    1.129712] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.129723] ehci-pci: EHCI PCI platform driver
[    1.129754] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.129761] ohci-pci: OHCI PCI platform driver
[    1.129793] ohci-platform: OHCI generic platform driver
[    1.132351] usbcore: registered new interface driver uas
[    1.132389] usbcore: registered new interface driver usb-storage
[    1.132452] usbcore: registered new interface driver usbserial
[    1.134073] tegra-usb-cd usb_cd: otg phy is not available yet
[    1.136543] mousedev: PS/2 mouse device common for all mice
[    1.136587] usbcore: registered new interface driver xpad
[    1.139260] nct1008_nct72 7-004c: LOC shutdown limit 107
[    1.139603] nct1008_nct72 7-004c: EXT shutdown limit 107
[    1.175495] nct1008_nct72 7-004c: initial LOC temp: 37000
[    1.175809] nct1008_nct72 7-004c: initial EXT temp: 38500
[    1.176430] nct1008_nct72 7-004c: hi_b:-11, lo_b:0
[    1.176734] gpio tegra-gpio-aon wake35 for gpio=16(V:0)
[    1.176922] nct1008_nct72 7-004c: nct1008_probe: initialized
[    1.264874] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[    1.265947] Wake73 for irq=42
[    1.267211] rtc rtc1: alarm rtc device
[    1.267222] tegra_rtc c2a0000.rtc: rtc core: registered c2a0000.rtc as rtc1
[    1.267235] tegra_rtc c2a0000.rtc: Tegra internal Real Time Clock
[    1.267455] i2c /dev entries driver
[    1.269964] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[    1.274736] parse_throttle_dt_data: Num cap clks = 4
[    1.274740] parse_throttle_dt_data: clk=mcpu type=1
[    1.274743] parse_throttle_dt_data: clk=bcpu type=2
[    1.274750] parse_throttle_dt_data: clk=gpu type=4
[    1.274752] parse_throttle_dt_data: clk=emc type=3
[    1.275741] tegra_throttle_probe: probe successful. #cdevs=4
[    1.276286] FAN: coudln't get the regulator
[    1.280929] tegra-oc-event d280000.soctherm-oc-event: OC driver initialized
[    1.281852] device-mapper: uevent: version 1.0.3
[    1.282157] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    1.282399] CPU EMC frequency mapping table: from device tree
[    1.288422] cpufreq: platform driver Initialization: pass
[    1.289023] cpuidle: Initializing cpuidle driver init for Denver cluster
[    1.289140] cpuidle: Initializing cpuidle driver init for A57 cluster
[    1.289924] sdhci: Secure Digital Host Controller Interface driver
[    1.289926] sdhci: Copyright(c) Pierre Ossman
[    1.289928] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.291139] sdhci-tegra 3460000.sdhci: Client registration for eMC Successful
[    1.292880] CMDQ: cmdq_platfm_init successful
[    1.293901] CQE: CMD_TIMING bit set for R1B DCMD
[    1.294133] sdhci-tegra 3440000.sdhci: Client registration for eMC Successful
[    1.299269] sdhci-tegra 3400000.sdhci: Got CD GPIO
[    1.299320] sdhci-tegra 3400000.sdhci: Got WP GPIO
[    1.299919] sdhci-tegra 3400000.sdhci: Client registration for eMC Successful
[    1.301648] sdhci-tegra 3400000.sdhci: wakeup init done, cdirq 258
[    1.335134] mmc0: SDHCI controller on 3460000.sdhci [3460000.sdhci] using ADMA 64-bit with 64 bit addr
[    1.343136] mmc1: SDHCI controller on 3440000.sdhci [3440000.sdhci] using ADMA 64-bit with 64 bit addr
[    1.355206] gpio tegra-gpio wake71 for gpio=125(P:5)
[    1.355249] mmc2: SDHCI controller on 3400000.sdhci [3400000.sdhci] using ADMA 64-bit with 64 bit addr
[    1.380800] mmc0: mmc_decode_ext_csd: CMDQ supported: depth: 31, cmdq_support: 1
[    1.395790] mmc0: periodic cache flush enabled
[    1.395796] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    1.396096] mmcblk0: mmc0:0001 DG4032 29.1 GiB
[    1.400218] mmcblk0boot0: mmc0:0001 DG4032 partition 1 4.00 MiB
[    1.400308] mmcblk0boot1: mmc0:0001 DG4032 partition 2 4.00 MiB
[    1.404411] mmcblk0rpmb: mmc0:0001 DG4032 partition 3 4.00 MiB
[    1.408814]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33
[    1.421530] ata1: SATA link down (SStatus 0 SControl 300)
[    1.441128] tegra-pcie 10003000.pcie-controller: link 0 down, retrying
[    1.588525] mmc1: hw tuning done ...
[    1.592437] mmc1: new ultra high speed SDR104 SDIO card at address 0001
[    1.844502] tegra-pcie 10003000.pcie-controller: link 0 down, retrying
[    2.059154] tegra_cec 3960000.tegra_cec: Can't find physical addresse.
[    2.059159] tegra_cec 3960000.tegra_cec: tegra_cec_init Done.
[    2.249274] tegra-pcie 10003000.pcie-controller: link 0 down, retrying
[    2.251289] tegra-pcie 10003000.pcie-controller: link 0 down, ignoring
[    2.653758] tegra-pcie 10003000.pcie-controller: link 2 down, retrying
[    3.058594] tegra-pcie 10003000.pcie-controller: link 2 down, retrying
[    3.463352] tegra-pcie 10003000.pcie-controller: link 2 down, retrying
[    3.465365] tegra-pcie 10003000.pcie-controller: link 2 down, ignoring
[    3.670513] tegra-pcie 10003000.pcie-controller: PCIE: no end points detected
[    3.670761] tegra-pcie 10003000.pcie-controller: PCIE: Disable power rails
[   11.083137] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   11.089500] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   11.096122] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   11.101173] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   11.107784] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   11.113268] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   11.119011] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   11.124148] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   11.129400] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   11.138174] tegradc 15210000.nvdisplay: probed
[   11.138432] Console: switching to colour frame buffer device 80x30
[   11.138447] tegradc 15210000.nvdisplay: fb registered
[   11.138586] gpio tegra-gpio wake21 for gpio=121(P:1)
[   11.139393] tegra_nvdisp_handle_pd_enable: Unpowergated Head0 pd
[   11.139485] tegra_nvdisp_handle_pd_enable: Unpowergated Head1 pd
[   11.139566] tegra_nvdisp_handle_pd_enable: Unpowergated Head2 pd
[   11.140784] Parent Clock set for DC plld2
[   11.143603] edid invalid
[   11.144304] tegradc 15210000.nvdisplay: hdmi: tmds rate:25200K prod-setting:prod_c_hdmi_0m_54m
[   11.145533] tegradc 15210000.nvdisplay: hdmi: get YCC quant from EDID.
[   21.323127] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   21.329484] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   21.336098] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   21.341148] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   21.347758] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   21.353242] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   21.358984] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   21.364120] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   21.369372] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   21.379336] extcon-disp-state external-connection:disp-state: cable 47 state 1
[   21.379340] Extcon AUX1(HDMI) enable
[   21.380633] tegra-se-nvhost 15810000.se: initialized
[   21.381764] tegra-se-nvhost 15810000.se: tegra_se_probe: complete
[   21.382419] tegra-se-nvhost 15820000.se: initialized
[   21.383425] tegra-se-nvhost 15820000.se: tegra_se_probe: complete
[   21.383988] tegra-se-nvhost 15830000.se: initialized
[   21.384776] tegra-se-nvhost 15830000.se: tegra_se_probe: complete
[   21.385317] tegra-se-nvhost 15840000.se: initialized
[   21.386220] tegra-se-nvhost 15840000.se: tegra_se_probe: complete
[   21.387004] tegra-se-elp 3ad0000.se_elp: tegra_se_elp_probe: complete
[   21.387200] hidraw: raw HID events driver (C) Jiri Kosina
[   21.388027] usbcore: registered new interface driver usbhid
[   21.388029] usbhid: USB HID core driver
[   21.390260] tegra-i2c 3160000.i2c: no acknowledge from address 0x42
[   21.390289] ina3221x 0-0042: ina3221 reset failure status: 0xffffff87
[   21.396844] ina3221x: probe of 0-0042 failed with error -121
[   21.397070] tegra-i2c 3160000.i2c: no acknowledge from address 0x43
[   21.397097] ina3221x 0-0043: ina3221 reset failure status: 0xffffff87
[   21.403649] ina3221x: probe of 0-0043 failed with error -121
[   21.406252] tegra186-cam-rtcpu b000000.rtcpu: Trace buffer configured at IOVA=0xbff00000
[   21.408414] tegra-ivc ivc-b000000.rtcpu: region 0: iova=0xbfef0000-0xbfefdb7f size=56192
[   21.408663] tegra-ivc ivc-b000000.rtcpu:echo@0: echo: ver=0 grp=1 RX[16x64]=0x1000-0x1480 TX[16x64]=0x1480-0x1900
[   21.408780] tegra-ivc ivc-b000000.rtcpu:i2c@480: i2c: ver=0 grp=1 RX[8x128]=0x1900-0x1d80 TX[8x128]=0x1d80-0x2200
[   21.408974] tegra-ivc ivc-b000000.rtcpu:vinotify@12c0: vinotify: ver=0 grp=1 RX[64x128]=0x2200-0x4280 TX[64x128]=0x4280-0x6300
[   21.409668] tegra-ivc ivc-b000000.rtcpu:mods@32c0: mods: ver=0 grp=1 RX[1x64]=0x6300-0x63c0 TX[1x64]=0x63c0-0x6480
[   21.409737] tegra-ivc ivc-b000000.rtcpu:ivccontrol@52c0: ivccontrol: ver=0 grp=1 RX[16x320]=0x6480-0x7900 TX[16x320]=0x7900-0x8d80
[   21.409817] tegra-ivc ivc-b000000.rtcpu:ivccapture@72c0: ivccapture: ver=0 grp=1 RX[16x64]=0x8d80-0x9200 TX[16x64]=0x9200-0x9680
[   21.409891] tegra-ivc ivc-b000000.rtcpu:dbg@7c00: dbg: ver=0 grp=1 RX[1x384]=0x9680-0x9880 TX[1x384]=0x9880-0x9a80
[   21.410016] tegra-ivc ivc-b000000.rtcpu:dbg@7e00: dbg: ver=0 grp=1 RX[1x8192]=0x9a80-0xbb00 TX[1x8192]=0xbb00-0xdb80
[   21.410355] tegra186-cam-rtcpu b000000.rtcpu: using cam RTCPU IRQ (52)
[   21.410358] tegra186-cam-rtcpu b000000.rtcpu: tegra_camrtc_mon_create is successful
[   21.410832] tegra186-cam-rtcpu b000000.rtcpu: firmware version cpu=sce cmd=5 sha1=c73bbe92930645be44530c166eb578bfbb9499c3
[   21.412574] tegra_aon c1a0000.aon: tegra aon driver probe OK
[   21.413012] tegra186-aondbg aondbg: aondbg driver probe() OK
[   21.413399] register_ari_mca_banks: Registered MCA ROC:IOB
[   21.413686] register_ari_mca_banks: Registered MCA ROC:CCE
[   21.414382] tegra18-bridge 2390000.axi2apb: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.414385] tegra18-bridge 2390000.axi2apb: enabled timeout = 11155000
[   21.414387] tegra18-bridge 2390000.axi2apb: bridge probed OK
[   21.414450] tegra18-bridge 23a0000.axi2apb: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.414452] tegra18-bridge 23a0000.axi2apb: enabled timeout = 11155000
[   21.414454] tegra18-bridge 23a0000.axi2apb: bridge probed OK
[   21.414504] tegra18-bridge 23b0000.axi2apb: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.414506] tegra18-bridge 23b0000.axi2apb: enabled timeout = 11155000
[   21.414508] tegra18-bridge 23b0000.axi2apb: bridge probed OK
[   21.414554] tegra18-bridge 23c0000.axi2apb: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.414557] tegra18-bridge 23c0000.axi2apb: enabled timeout = 11155000
[   21.414558] tegra18-bridge 23c0000.axi2apb: bridge probed OK
[   21.414606] tegra18-bridge 23d0000.axi2apb: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.414608] tegra18-bridge 23d0000.axi2apb: enabled timeout = 11155000
[   21.414610] tegra18-bridge 23d0000.axi2apb: bridge probed OK
[   21.414659] tegra18-bridge 2100000.axip2p: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.414664] tegra18-bridge 2100000.axip2p: enabled timeout = 11155000
[   21.414666] tegra18-bridge 2100000.axip2p: bridge probed OK
[   21.414711] tegra18-bridge 2110000.axip2p: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.414716] tegra18-bridge 2110000.axip2p: enabled timeout = 11155000
[   21.414718] tegra18-bridge 2110000.axip2p: bridge probed OK
[   21.414764] tegra18-bridge 2120000.axip2p: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.414768] tegra18-bridge 2120000.axip2p: enabled timeout = 11155000
[   21.414770] tegra18-bridge 2120000.axip2p: bridge probed OK
[   21.414818] tegra18-bridge 2130000.axip2p: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.414822] tegra18-bridge 2130000.axip2p: enabled timeout = 11155000
[   21.414824] tegra18-bridge 2130000.axip2p: bridge probed OK
[   21.414868] tegra18-bridge 2140000.axip2p: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.414871] tegra18-bridge 2140000.axip2p: enabled timeout = 11155000
[   21.414872] tegra18-bridge 2140000.axip2p: bridge probed OK
[   21.414917] tegra18-bridge 2150000.axip2p: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.414922] tegra18-bridge 2150000.axip2p: enabled timeout = 11155000
[   21.414924] tegra18-bridge 2150000.axip2p: bridge probed OK
[   21.414969] tegra18-bridge 2160000.axip2p: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.414974] tegra18-bridge 2160000.axip2p: enabled timeout = 11155000
[   21.414975] tegra18-bridge 2160000.axip2p: bridge probed OK
[   21.415020] tegra18-bridge 2170000.axip2p: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.415025] tegra18-bridge 2170000.axip2p: enabled timeout = 11155000
[   21.415027] tegra18-bridge 2170000.axip2p: bridge probed OK
[   21.415072] tegra18-bridge 2180000.axip2p: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.415077] tegra18-bridge 2180000.axip2p: enabled timeout = 11155000
[   21.415079] tegra18-bridge 2180000.axip2p: bridge probed OK
[   21.415158] tegra18-bridge 2190000.axip2p: axi_cbb clk rate = 115 MHZ, timeout = 97000 useconds
[   21.415163] tegra18-bridge 2190000.axip2p: enabled timeout = 11155000
[   21.415165] tegra18-bridge 2190000.axip2p: bridge probed OK
[   21.415226] **** A57 ECC: Enabled
[   21.415228] tegra18_a57_serr_init: on CPU 5 a A57 Core
[   21.415293] tegra18x_actmon d230000.actmon: in actmon_register()...
[   21.415739] tegra18x_actmon d230000.actmon: initialization Completed for the device mc_all
[   21.416179] hw perfevents: enabled with denver15_uncore_pmu PMU driver, 3 counters available
[   21.416300] denver_knobs_init:MTS_VERSION:55941701
[   21.418405] nvpmodel: initialized successfully
[   21.419316] trusty-virtio trusty:virtio: initializing
[   21.419420] trusty_ipc virtio0: vring0: va(pa)  ffffffc1e8f46000(0) qsz 32 notifyid 1
[   21.419426] trusty_ipc virtio0: vring1: va(pa)  ffffffc1e8f4c000(0) qsz 32 notifyid 2
[   21.419491] trusty-virtio trusty:virtio: initializing done
[   21.419584] trusty_ipc virtio0: is online
[   21.421031] usbcore: registered new interface driver snd-usb-audio
[   21.428279] input: tegra-hda HDMI/DP,pcm=3 as /devices/3510000.hda/sound/card0/input0
[   21.428402] input: tegra-hda HDMI/DP,pcm=7 as /devices/3510000.hda/sound/card0/input1
[   21.509966] OPE platform probe
[   21.510033] OPE platform probe successful
[   21.564022] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[   21.564095] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[   21.564164] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[   21.564231] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[   21.564297] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[   21.564361] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[   21.564427] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[   21.564498] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[   21.564562] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[   21.564629] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[   21.564696] tegra-asoc: sound: ADMAIF11 <-> ADMAIF11 mapping ok
[   21.564764] tegra-asoc: sound: ADMAIF12 <-> ADMAIF12 mapping ok
[   21.564830] tegra-asoc: sound: ADMAIF13 <-> ADMAIF13 mapping ok
[   21.564898] tegra-asoc: sound: ADMAIF14 <-> ADMAIF14 mapping ok
[   21.564963] tegra-asoc: sound: ADMAIF15 <-> ADMAIF15 mapping ok
[   21.565028] tegra-asoc: sound: ADMAIF16 <-> ADMAIF16 mapping ok
[   21.565095] tegra-asoc: sound: ADMAIF17 <-> ADMAIF17 mapping ok
[   21.565161] tegra-asoc: sound: ADMAIF18 <-> ADMAIF18 mapping ok
[   21.565229] tegra-asoc: sound: ADMAIF19 <-> ADMAIF19 mapping ok
[   21.565294] tegra-asoc: sound: ADMAIF20 <-> ADMAIF20 mapping ok
[   21.584161] u32 classifier
[   21.584164]     Actions configured
[   21.584223] Initializing XFRM netlink socket
[   21.584765] NET: Registered protocol family 10
[   21.585338] NET: Registered protocol family 17
[   21.585348] NET: Registered protocol family 15
[   21.585405] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   21.585440] Bluetooth: RFCOMM socket layer initialized
[   21.585449] Bluetooth: RFCOMM ver 1.11
[   21.585452] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   21.585456] Bluetooth: HIDP socket layer initialized
[   21.585470] 9pnet: Installing 9P2000 support
[   21.585502] Key type dns_resolver registered
[   21.585783] Registered cp15_barrier emulation handler
[   21.585797] Registered setend emulation handler
[   21.586635] registered taskstats version 1
[   21.590320] isp 15600000.isp: initialized
[   21.594862] nvcsi 150c0000.nvcsi: initialized
[   21.596772] tegra-vi4 15700000.vi: using default number of vi channels,15
[   21.600860] tegra-vi4 15700000.vi: initialized
[   21.601719] tegra-vi4 15700000.vi: ep of_device is not enabled /host1x/vi@15700000/ports/port@0/endpoint.
[   21.601723] tegra-vi4 15700000.vi: ep of_device is not enabled /host1x/vi@15700000/ports/port@1/endpoint.
[   21.602448] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[   21.604497] tegra-usb-cd usb_cd: otg phy is not available yet
[   21.607898] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[   21.608726] Wake83 for irq=51
[   21.608798] gpio tegra-gpio-aon wake29 for gpio=56(FF:0)
[   21.608874] gpio tegra-gpio-aon wake67 for gpio=57(FF:1)
[   21.608949] gpio tegra-gpio-aon wake68 for gpio=58(FF:2)
[   21.609066] input: gpio-keys as /devices/gpio-keys/input/input2
[   21.610735] tegra-usb-cd usb_cd: otg phy is not available yet
[   21.614094] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[   21.639800] tegra_rtc c2a0000.rtc: setting system clock to 2022-05-04 10:43:05 UTC (1651660985)
[   21.641180] mmcblk mmc0:0001: Card claimed for testing.
[   21.669868] bpmp: mounted debugfs mirror
[   21.671065] bwmgr: missing cdev-type property
[   21.677551] ALSA device list:
[   21.677555]   #0: tegra-hda at 0x3518000 irq 384
[   21.677557]   #1: tegra-snd-t186ref-mobile-rt565x
[   21.679997] Freeing unused kernel memory: 8640K
[   21.701587] Root device found: mmcblk0p1
[   21.702669] Found dev node: /dev/mmcblk0p1
[   21.721949] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[   21.723748] Rootfs mounted over mmcblk0p1
[   21.743246] Switching from initrd to actual rootfs
[   21.849564] ip_tables: (C) 2000-2006 Netfilter Core Team
[   21.858451] cgroup: cgroup2: unknown option "nsdelegate"
[   21.872189] 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)
[   21.872946] systemd[1]: Detected architecture arm64.
[   21.892624] systemd[1]: Set hostname to <ubuntu>.
[   21.981087] 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.
[   21.981096] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[   22.095903] random: systemd: uninitialized urandom read (16 bytes read)
[   22.097395] systemd[1]: Created slice System Slice.
[   22.097524] random: systemd: uninitialized urandom read (16 bytes read)
[   22.098135] systemd[1]: Created slice User and Session Slice.
[   22.098161] random: systemd: uninitialized urandom read (16 bytes read)
[   22.098256] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   22.099789] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   22.099954] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[   22.159328] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
[   22.251633] tegra-usb-cd usb_cd: otg phy is not available yet
[   22.256664] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[   22.353770] systemd-journald[2285]: Received request to flush runtime journal from PID 1
[   22.971783] random: crng init done
[   22.975193] random: 7 urandom warning(s) missed due to ratelimiting
[   23.919428] bcpu-throttle-alert cooling device registered.
[   23.921232] tegra-usb-cd usb_cd: otg phy is not available yet
[   23.924272] gpio tegra-gpio-aon wake30 for gpio=60(FF:4)
[   23.928208] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[   23.930429] tegra-usb-cd usb_cd: otg phy is not available yet
[   23.935843] mcpu-throttle-alert cooling device registered.
[   23.938959] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[   23.941629] tegra-usb-cd usb_cd: otg phy is not available yet
[   23.970248] gpu-throttle-alert cooling device registered.
[   23.973690] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[   23.976535] tegra-usb-cd usb_cd: otg phy is not available yet
[   24.035095] dhd_module_init in
[   24.038518] found wifi platform device bcmdhd_wlan
[   24.040733] wifi_platform_get_country_code_map: could not get country_code_map
[   24.040740] wifi_plat_dev_drv_probe:platform country code map is not available
[   24.040760] Power-up adapter 'DHD generic adapter'
[   24.040768] wifi_platform_set_power = 1
[   24.083496] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   24.099400] CPU1: shutdown
[   24.102469] psci: CPU1 killed (polled 0 ms)
[   24.164928] gpio tegra-gpio wake18 for gpio=101(M:5)
[   24.167893] net eth0: get_configure_l3v4_filter -->
[   24.168502] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   24.187651] CPU2: shutdown
[   24.190425] psci: CPU2 killed (polled 0 ms)
[   24.247736] wifi_platform_bus_enumerate device present 1
[   24.266496] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[   24.270156] tegra-usb-cd usb_cd: otg phy is not available yet
[   24.301808] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[   24.306210] tegra-usb-cd usb_cd: otg phy is not available yet
[   24.330378] wifi_platform_bus_enumerate device present 0
[   24.333705] F1 signature read @0x18000000=0x17214354
[   24.341279] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[   24.345143] tegra-usb-cd usb_cd: otg phy is not available yet
[   24.413482] F1 signature OK, socitype:0x1 chip:0x4354 rev:0x1 pkg:0x2
[   24.428743] DHD: dongle ram size is set to 786432(orig 786432) at 0x180000
[   24.428988] wifi_platform_get_mac_addr
[   24.467612] ids dhd_log_netlink_init
[   24.491531]  wl_event_handler :
[   24.491537] tsk Enter, tsk = 0xffffffc1c9101a90
[   24.494938] wl_create_event_handler(): thread:wl_event_handler:160c started
[   24.503244] dhd_attach(): thread:dhd_watchdog_thread:1613 started
[   24.504581] dhd_attach(): thread:dhd_dpc:1616 started
[   24.509801] dhd_attach(): thread:dhd_rxf:1617 started
[   24.509815] dhd_deferred_work_init: work queue initialized
[   24.511772]
               Dongle Host Driver, version 1.201.82 (r)
               Compiled from
[   24.527059] Register interface [wlan0]  MAC: 48:b0:2d:1c:f4:3a

[   24.527068] dhd_prot_ioctl : bus is down. we have nothing to do
[   24.529220] sdhci-tegra 3440000.sdhci: Tuning done, restoring the best tap value : 60
[   24.530356] zram: Added device: zram0
[   24.531571] wifi_platform_set_power = 0
[   24.533965] zram: Added device: zram1
[   24.537255] zram: Added device: zram2
[   24.538624] zram: Added device: zram3
[   24.587186] zram0: detected capacity change from 0 to 1030017024
[   24.700457] Adding 1005872k swap on /dev/zram0.  Priority:5 extents:1 across:1005872k SS
[   24.715706] zram1: detected capacity change from 0 to 1030017024
[   24.745747] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[   24.748131] Adding 1005872k swap on /dev/zram1.  Priority:5 extents:1 across:1005872k SS
[   24.749867] tegra-usb-cd usb_cd: otg phy is not available yet
[   24.761640] tegra-xusb-padctl 3520000.xusb_padctl: failed to setup XUSB ports: -517
[   24.765726] tegra-usb-cd usb_cd: otg phy is not available yet
[   24.793163] zram2: detected capacity change from 0 to 1030017024
[   24.832184] Adding 1005872k swap on /dev/zram2.  Priority:5 extents:1 across:1005872k SS
[   24.839808] zram3: detected capacity change from 0 to 1030017024
[   24.862316] Adding 1005872k swap on /dev/zram3.  Priority:5 extents:1 across:1005872k SS
[   25.363831] Bridge firewalling registered
[   25.409381] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[   25.743390] tegradc 15210000.nvdisplay: unblank
[   26.578336] Netfilter messages via NETLINK v0.30.
[   26.584591] ctnetlink v0.93: registering with nfnetlink.
[   27.974797] fuse init (API version 7.26)
[   28.645401] IPv6: ADDRCONF(NETDEV_UP): docker0: link is not ready
[   29.777730] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   29.777965]

               Dongle Host Driver, version 1.201.82 (r)
               Compiled from
[   29.777984] wl_android_wifi_on in
[   29.777993] wifi_platform_set_power = 1
[   30.153110] sdhci-tegra 3440000.sdhci: Tuning done, restoring the best tap value : 60
[   30.153959] F1 signature read @0x18000000=0x17214354
[   30.160842] F1 signature OK, socitype:0x1 chip:0x4354 rev:0x1 pkg:0x2
[   30.161879] DHD: dongle ram size is set to 786432(orig 786432) at 0x180000
[   30.261125] dhdsdio_write_vars: Download, Upload and compare of NVRAM succeeded.
[   30.325952] dhd_bus_init: enable 0x06, ready 0x06 (waited 0us)
[   30.326335] gpio tegra-gpio-aon wake69 for gpio=59(FF:3)
[   30.326447] gpio tegra-gpio-aon wake69 for gpio=59(FF:3)
[   30.326451] Enabling wake69
[   30.327707] wifi_platform_get_mac_addr
[   30.330422] Firmware up: op_mode=0x0005, MAC=48:b0:2d:1c:f4:3a
[   30.337540] clm path from default:/lib/firmware/brcm/bcmdhd.clm_blob
[   30.337629] Skipping the clm download. len:0 memblk:          (null)
[   30.340894] dhd_preinit_ioctls pspretend_threshold for HostAPD failed  -23
[   30.347414] Firmware version = wl0: Jul 21 2020 16:35:45 version 7.35.349.94 (r726700 CY) FWID 01-aa356e32
[   30.353895] dhd_interworking_enable: failed to set WNM info, ret=-23
[   30.448336] Bluetooth: HCI UART driver ver 2.3
[   30.448348] Bluetooth: HCI UART protocol H4 registered
[   30.448352] Bluetooth: HCI UART protocol BCSP registered
[   30.448355] Bluetooth: HCI UART protocol LL registered
[   30.448358] Bluetooth: HCI UART protocol ATH3K registered
[   30.448967] Bluetooth: HCI UART protocol Intel registered
[   30.449345] Bluetooth: HCI UART protocol Broadcom registered
[   30.449351] Bluetooth: HCI UART protocol QCA registered
[   30.547797] CFGP2P-ERROR) wl_cfgp2p_add_p2p_disc_if :
[   30.547806] P2P interface registered
[   30.595606] WLC_E_IF: NO_IF set, event Ignored
[   30.636748] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   30.958519] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   30.958544] Bluetooth: BNEP socket layer initialized
[   31.563219] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   31.569675] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   31.583246] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   31.588403] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   31.595183] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   31.603927] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   31.609800] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   31.615029] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   31.622900] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   32.518319] [05-04 10:43:16.378] wl_cfg80211_connect: Connectting with 00:1f:fb:f1:2d:8a channel (1) ssid "Irancell-TD-GP2101PLUS-5834", len (27)

[   32.605379] [05-04 10:43:16.465] wl_notify_connect_status: wl_bss_connect_done succeeded with 00:1f:fb:f1:2d:8a
[   32.630353]  wl_bss_connect_done :
[   32.630367] Report connect result - connection succeeded
[   32.660624] [05-04 10:43:16.520] wl_notify_connect_status: wl_bss_connect_done succeeded with 00:1f:fb:f1:2d:8a
[   32.703947] [05-04 10:43:16.564] dhd_dump_eapol_4way_message: ifidx: 0 ETHER_TYPE_802_1X [RX] : M1 of 4way
[   32.705057] [05-04 10:43:16.565] dhd_dump_eapol_4way_message: ifidx: 0 ETHER_TYPE_802_1X [TX] : M2 of 4way
[   32.709254] [05-04 10:43:16.569] dhd_dump_eapol_4way_message: ifidx: 0 ETHER_TYPE_802_1X [RX] : M3 of 4way
[   32.709690] [05-04 10:43:16.569] dhd_dump_eapol_4way_message: ifidx: 0 ETHER_TYPE_802_1X [TX] : M4 of 4way
[   32.727107] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   32.786748] dhd_ndo_add_ip: ndo ip addr add failed, ret = -23
[   32.786776] dhd_inet6_work_handler: Adding host ip for NDO failed -23
[   32.885944] ifidx:0 DHCP - REQUEST [TX]
[   32.899845] ifidx:0 DHCP - ACK [RX]
[   35.434279] dhd_ndo_add_ip: ndo ip addr add failed, ret = -23
[   35.434303] dhd_inet6_work_handler: Adding host ip for NDO failed -23
[   35.435391] dhd_ndo_add_ip: ndo ip addr add failed, ret = -23
[   35.435407] dhd_inet6_work_handler: Adding host ip for NDO failed -23
[   35.963041] tegradc 15210000.nvdisplay: unblank
[   41.803298] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   41.809724] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   41.818395] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   41.828753] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   41.838715] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   41.846235] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   41.857371] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   41.862752] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   41.868184] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   52.043547] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   52.050429] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   52.057502] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   52.062751] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   52.069518] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   52.075076] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   52.080869] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   52.086050] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   52.091388] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   52.300338] spmic-ldo0: disabling
[   52.302594] spmic-ldo1: disabling
[   52.303634] en-vdd-sd: disabling
[   52.303658] vdd-usb0-5v: disabling
[   52.303684] vdd-usb1-5v: disabling
[   52.303708] vdd-3v3: disabling
[   52.303729] en-vdd-vcm-2v8: disabling
[   52.303756] vdd-sys-bl: disabling
[   62.331638] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   62.338498] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   62.345439] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   62.350582] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   62.357275] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   62.362804] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   62.368650] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   62.373966] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   62.379706] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   72.586281] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   72.592721] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   72.599427] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   72.604575] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   72.611272] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   72.616844] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   72.622664] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   72.627857] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   72.633190] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   82.830297] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   82.837127] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   82.849263] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   82.854407] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   82.861070] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   82.866591] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   82.872364] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   82.877538] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   82.882921] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   93.070240] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   93.077017] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   93.083978] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   93.089179] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   93.095914] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   93.101457] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   93.107243] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   93.112419] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   93.117704] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[  103.309459] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[  103.315920] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[  103.333471] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[  103.338661] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[  103.345481] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[  103.352921] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[  103.360444] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[  103.367329] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[  103.374447] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[  113.549139] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[  113.555571] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[  113.562367] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[  113.567491] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[  113.574150] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[  113.579681] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[  113.585541] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[  113.590725] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[  113.596029] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[  123.788988] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[  123.795444] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[  123.804240] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[  123.809398] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[  123.816249] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[  123.821833] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[  123.827680] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[  123.833156] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[  123.838563] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[  123.845709] tegradc 15210000.nvdisplay: hdmi: edid read failed
[  123.851853] tegradc 15210000.nvdisplay: hdmi: using fallback edid
[  123.852053] tegradc 15210000.nvdisplay: blank - powerdown
[  123.916929] extcon-disp-state external-connection:disp-state: cable 47 state 0
[  123.916935] Extcon AUX1(HDMI) disable
[  123.935609] tegra_nvdisp_handle_pd_disable: Powergated Head2 pd
[  123.935741] tegra_nvdisp_handle_pd_disable: Powergated Head1 pd
[  123.936926] tegra_nvdisp_handle_pd_disable: Powergated Head0 pd
[  123.961848] tegradc 15210000.nvdisplay: unblank
[  123.965908] tegra_nvdisp_handle_pd_enable: Unpowergated Head0 pd
[  123.966060] tegra_nvdisp_handle_pd_enable: Unpowergated Head1 pd
[  123.966180] tegra_nvdisp_handle_pd_enable: Unpowergated Head2 pd
[  123.973694] Parent Clock set for DC plld2
[  123.977352] tegradc 15210000.nvdisplay: hdmi: tmds rate:74250K prod-setting:prod_c_hdmi_54m_111m
[  123.979030] tegradc 15210000.nvdisplay: hdmi: get YCC quant from EDID.
[  134.028721] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[  134.028725] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[  134.028731] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[  134.028735] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[  134.028739] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[  134.028743] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[  134.028747] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[  134.028750] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[  134.028785] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[  134.032459] extcon-disp-state external-connection:disp-state: cable 47 state 1
[  134.032461] Extcon AUX1(HDMI) enable
[  134.085567] extcon-disp-state external-connection:disp-state: cable 51 state 1
[  134.085571] Extcon HDMI: HPD enabled
[  134.085611] tegradc 15210000.nvdisplay: hdmi: plugged
[  134.095801] tegradc 15210000.nvdisplay: blank - powerdown
[  134.162609] extcon-disp-state external-connection:disp-state: cable 47 state 0
[  134.162612] Extcon AUX1(HDMI) disable
[  134.185889] tegra_nvdisp_handle_pd_disable: Powergated Head2 pd
[  134.186001] tegra_nvdisp_handle_pd_disable: Powergated Head1 pd
[  134.186935] tegra_nvdisp_handle_pd_disable: Powergated Head0 pd
[  134.187216] tegradc 15210000.nvdisplay: unblank
[  134.188363] tegra_nvdisp_handle_pd_enable: Unpowergated Head0 pd
[  134.188492] tegra_nvdisp_handle_pd_enable: Unpowergated Head1 pd
[  134.188616] tegra_nvdisp_handle_pd_enable: Unpowergated Head2 pd
[  134.198978] Parent Clock set for DC plld2
[  134.202406] tegradc 15210000.nvdisplay: hdmi: tmds rate:25180K prod-setting:prod_c_hdmi_0m_54m
[  134.203707] tegradc 15210000.nvdisplay: hdmi: get YCC quant from EDID.
[  144.268656] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[  144.268670] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[  144.268684] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[  144.268696] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[  144.268708] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[  144.268718] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[  144.268729] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[  144.268739] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[  144.268785] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[  144.277325] extcon-disp-state external-connection:disp-state: cable 47 state 1
[  144.277330] Extcon AUX1(HDMI) enable
[  144.330581] tegradc 15210000.nvdisplay: unblank
[  144.372729] tegradc 15210000.nvdisplay: blank - powerdown
[  144.436848] extcon-disp-state external-connection:disp-state: cable 47 state 0
[  144.436875] Extcon AUX1(HDMI) disable
[  144.451343] tegra_nvdisp_handle_pd_disable: Powergated Head2 pd
[  144.451453] tegra_nvdisp_handle_pd_disable: Powergated Head1 pd
[  144.452402] tegra_nvdisp_handle_pd_disable: Powergated Head0 pd
[  144.453291] tegradc 15210000.nvdisplay: unblank
[  144.454475] tegra_nvdisp_handle_pd_enable: Unpowergated Head0 pd
[  144.454613] tegra_nvdisp_handle_pd_enable: Unpowergated Head1 pd
[  144.454864] tegra_nvdisp_handle_pd_enable: Unpowergated Head2 pd
[  144.462201] Parent Clock set for DC plld2
[  144.465964] tegradc 15210000.nvdisplay: hdmi: tmds rate:74250K prod-setting:prod_c_hdmi_54m_111m
[  144.467250] tegradc 15210000.nvdisplay: hdmi: get YCC quant from EDID.
[  154.507960] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[  154.507973] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[  154.507987] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[  154.507998] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[  154.508009] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[  154.508020] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[  154.508030] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[  154.508041] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[  154.508087] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[  154.516379] extcon-disp-state external-connection:disp-state: cable 47 state 1
[  154.516386] Extcon AUX1(HDMI) enable
[  154.569390] tegradc 15210000.nvdisplay: unblank

The line:

[ 52.303658] vdd-usb0-5v: disabling

may be related to my problem?

Thanks.

What is the exact question here? You want to set your port to device mode only?

Hi

Yes

USB0 port works correctly on the DevKit (i.e. I can connect to Jetson using SSH with 192.168.55.1, and L4T usb drive is present on the host computer)
But on our custom board, USB0 do not work ((i.e. I can not connect to Jetson using SSH with 192.168.55.1, and L4T usb drive is not present on the host computer)

I sent the dmesg output.

Thanks for your help.

Hi,

xhci driver is for host mode and xudc driver is for device mode. This info is also included in the document. I have nothing more than the document. So you could read the document first.

I would prefer explaining something you don’t know from the document but not just helping you create a new dtb.

Thanks WayneWWW.

I will read the document.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.