How to configure extcon-gpio-states when typeA repalce the typeC?

We designed a carrier board which has two usb typeA connector,both workd in host mode.Not have BUS_DETECT pin and ID pin.
How to configure extcon-gpio-states?

USB2.0 device can work,but USB3.0 device can’t found. Follow the below configuration.
I can found the errors “xhci_hcd 0002:01:00.0: init 0002:01:00.0 fail, -110…” in the log file.

lsusb -t
/:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=tegra-xusb/4p, 10000M
/:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=tegra-xusb/4p, 480M
    |__ Port 2: Dev 2, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M
rtso1001_vdd_usba0_5v0: regulator@117 {
			compatible = "regulator-fixed";
			reg = <117>;
			regulator-name = "vdd-usba0-5v0";
			regulator-min-microvolt = <5000000>;
			regulator-max-microvolt = <5000000>;
			gpio = <&tegra_aon_gpio TEGRA194_AON_GPIO(AA, 5) 0>; 
			enable-active-high;
			vin-supply = <&battery_reg>;
		};

		rtso1001_vdd_usba1_5v0: regulator@118 {
			compatible = "regulator-fixed";
			reg = <118>;
			regulator-name = "vdd-usba1-5v0";
			regulator-min-microvolt = <5000000>;
			regulator-max-microvolt = <5000000>;
			gpio = <&tegra_aon_gpio TEGRA194_AON_GPIO(AA, 6) 0>; 
			enable-active-high;
			vin-supply = <&battery_reg>;
		};
#if TEGRA_XUSB_PADCONTROL_VERSION >= DT_VERSION_2
	xusb_padctl@3520000 {
		pex_dvdd-supply = <&p2888_spmic_sd0>;
		pex_hvdd-supply = <&p2888_spmic_sd1>;
		pex_pll_hvdd-supply = <&p2888_spmic_sd1>;
		vclamp_usb-supply = <&p2888_spmic_sd3>;
		avdd_usb-supply = <&p2888_spmic_ldo5>;
		avdd_pll_nvhs_eutmip-supply = <&p2888_spmic_sd1>;

		ports {
			usb2-0 {
				
				vbus-supply = <&rtso1001_vdd_usba1_5v0>;
			};
			usb2-1 {
			
				vbus-supply = <&rtso1001_vdd_usba0_5v0>;
			};
			usb2-2 {
				vbus-supply = <&battery_reg>;
			};
			usb2-3 {
				vbus-supply = <&battery_reg>;
			};
		};
	};
#endif
#if TEGRA_XUSB_PADCONTROL_VERSION >= DT_VERSION_2

	xusb_padctl: xusb_padctl@3520000 {
		status = "okay";

		pads {
			usb2 {
				lanes {
					usb2-0 {
						nvidia,function = "xusb";
						status = "okay";
					};
					usb2-1 {
						nvidia,function = "xusb";
						status = "okay";
					};
					usb2-2 {
						nvidia,function = "xusb";
						status = "okay";
					};
					usb2-3 {
						nvidia,function = "xusb";
						status = "okay";
					};
				};
			};
			usb3 {
				lanes {
					usb3-0 {
						nvidia,function = "xusb";
						status = "okay";
					};
					usb3-2 {
						nvidia,function = "xusb";
						status = "okay";
					};

				};
			};
		};

		ports {
			usb2-0 {
				mode = "host";
				status = "okay";
			};
			usb2-1 {
				mode = "host";
				status = "okay";
			};
			usb2-2 {
				mode = "host";
				status = "okay";
			};
			usb2-3 {
				mode = "host";
				status = "okay";
			};

			usb3-0 {
				nvidia,usb2-companion = <1>;
				status = "okay";
			};
			usb3-2 {
				nvidia,usb2-companion = <0>;
				status = "okay";
			};

		};
	};
#endif






	vbus_id_extcon: extcon@1 {
		compatible = "extcon-gpio-states";
		extcon-gpio,name = "VBUS_ID";
		extcon-gpio,wait-for-gpio-scan = <0>;
		extcon-gpio,cable-states = <0x3 0x0
					0x0 0x2
					0x1 0x2
					0x2 0x1>;
/*
		gpios = <&tegra_main_gpio TEGRA194_MAIN_GPIO(M, 3) 0
			&tegra_main_gpio TEGRA194_MAIN_GPIO(Q, 0) 0>;
*/	
		extcon-gpio,out-cable-name-strings = "USB", "USB-Host";
		extcon-gpio,out-cable-names = <1 2 0>;
		wakeup-source;
		#extcon-cells = <1>;
	};





	tegra_xudc: xudc@3550000 {
		extcon-cables = <&vbus_id_extcon 0>;
		extcon-cable-names = "vbus";
		#extcon-cells = <1>;


#if TEGRA_XUSB_PADCONTROL_VERSION >= DT_VERSION_2
		phys = <&{/xusb_padctl@3520000/pads/usb2/lanes/usb2-0}>,
			<&{/xusb_padctl@3520000/pads/usb3/lanes/usb3-2}>;
		phy-names = "usb2", "usb3";
		nvidia,xusb-padctl = <&xusb_padctl>;
#endif
		nvidia,boost_cpu_freq = <1200>;
		status = "okay";
	};

	tegra_xhci: xhci@3610000 {
		extcon-cables = <&vbus_id_extcon 1>;
		extcon-cable-names = "id";
		#extcon-cells = <1>;

#if TEGRA_XUSB_PADCONTROL_VERSION >= DT_VERSION_2
		phys = <&{/xusb_padctl@3520000/pads/usb2/lanes/usb2-0}>,
			<&{/xusb_padctl@3520000/pads/usb2/lanes/usb2-1}>,
			<&{/xusb_padctl@3520000/pads/usb2/lanes/usb2-3}>,
			<&{/xusb_padctl@3520000/pads/usb2/lanes/usb2-2}>,
			<&{/xusb_padctl@3520000/pads/usb3/lanes/usb3-2}>,
			<&{/xusb_padctl@3520000/pads/usb3/lanes/usb3-0}>;
		phy-names = "usb2-0", "usb2-1", "usb2-3", "usb2-2",
			"usb3-2", "usb3-0";
		nvidia,xusb-padctl = <&xusb_padctl>;
#endif
		status = "okay";
	};

[code]

[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 4.9.140-tegra (buildbrain@mobile-u64-2988) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #1 SMP PREEMPT Wed Mar 13 00:30:11 PDT 2019
[ 0.000000] Boot CPU: AArch64 Processor [4e0f0040]
[ 0.000000] OF: fdt:memory scan node memory, reg size 48,
[ 0.000000] OF: fdt: - 80000000 , 2b000000
[ 0.000000] OF: fdt: - ab200000 , 3da00000
[ 0.000000] OF: fdt: - 100000000 , 380000000
[ 0.000000] earlycon: tegra_comb_uart0 at MMIO32 0x000000000c168000 (options ‘’)
[ 0.000000] bootconsole [tegra_comb_uart0] enabled
[ 0.000000] Found tegra_fbmem: 00140000@a0697000
[ 0.000000] Found lut_mem: 00002008@a0692000
[ 0.000000] Found vpr, start=0xf0000000 size=8000000
[ 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: fdt:Reserved memory: failed to reserve memory for node ‘fb2_carveout’: base 0x0000000000000000, size 0 MiB
[ 0.000000] OF: fdt:Reserved memory: failed to reserve memory for node ‘fb2_carveout’: base 0x0000000000000000, size 0 MiB
[ 0.000000] OF: fdt:Reserved memory: failed to reserve memory for node ‘fb3_carveout’: base 0x0000000000000000, size 0 MiB
[ 0.000000] OF: fdt:Reserved memory: failed to reserve memory for node ‘fb3_carveout’: base 0x0000000000000000, size 0 MiB
[ 0.000000] OF: reserved mem: initialized node ramoops_carveout, compatible id nvidia,ramoops
[ 0.000000] OF: reserved mem: initialized node grid-of-semaphores, compatible id nvidia,gosmem
[ 0.000000] cma: Reserved 64 MiB at 0x00000000e4800000
[ 0.000000] On node 0 totalpages: 4097725
[ 0.000000] DMA zone: 6683 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 427709 pages, LIFO batch:31
[ 0.000000] Normal zone: 57344 pages used for memmap
[ 0.000000] Normal zone: 3670016 pages, LIFO batch:31
[ 0.000000] psci: probing for conduit method from DT.
[ 0.000000] psci: PSCIv1.0 detected in firmware.
[ 0.000000] psci: Using standard PSCI v0.2 function IDs
[ 0.000000] psci: MIGRATE_INFO_TYPE not supported.
[ 0.000000] psci: SMC Calling Convention v1.1
[ 0.000000] percpu: Embedded 23 pages/cpu @ffffffc3ffda7000 s53400 r8192 d32616 u94208
[ 0.000000] pcpu-alloc: s53400 r8192 d32616 u94208 alloc=23*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7
[ 0.000000] Speculative Store Bypass Disable mitigation not required
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4033698
[ 0.000000] Kernel command line: root=/dev/mmcblk0p1 rw rootwait console=ttyTCU0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 rootfstype=ext4 video=tegrafb no_console_suspend=1 earlycon=tegra_comb_uart,mmio32,0x0c168000 gpt tegra_fbmem=0x140000@0xa0697000 lut_mem=0x2008@0xa0692000 usbcore.old_scheme_first=1 tegraid=19.1.2.0.0 maxcpus=8 boot.slot_suffix= boot.ratchetvalues=0.2.2 vpr=0x8000000@0xf0000000 sdhci_tegra.en_boot_part_access=1
[ 0.000000] log_buf_len individual max cpu contribution: 32768 bytes
[ 0.000000] log_buf_len total cpu_extra contributions: 229376 bytes
[ 0.000000] log_buf_len min size: 32768 bytes
[ 0.000000] log_buf_len: 262144 bytes
[ 0.000000] early log buf free: 29232(89%)
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[ 0.000000] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.000000] Memory: 16001720K/16390900K available (15166K kernel code, 2914K rwdata, 6616K rodata, 8512K init, 605K bss, 323644K reserved, 65536K cma-reserved)
[ 0.000000] Virtual kernel memory layout:
[ 0.000000] modules : 0xffffff8000000000 - 0xffffff8008000000 ( 128 MB)
[ 0.000000] vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000 ( 250 GB)
[ 0.000000] .text : 0xffffff8008080000 - 0xffffff8008f50000 ( 15168 KB)
[ 0.000000] .rodata : 0xffffff8008f50000 - 0xffffff80095d0000 ( 6656 KB)
[ 0.000000] .init : 0xffffff80095d0000 - 0xffffff8009e20000 ( 8512 KB)
[ 0.000000] .data : 0xffffff8009e20000 - 0xffffff800a0f8808 ( 2915 KB)
[ 0.000000] .bss : 0xffffff800a0f8808 - 0xffffff800a18fe3c ( 606 KB)
[ 0.000000] fixed : 0xffffffbefe7fd000 - 0xffffffbefec00000 ( 4108 KB)
[ 0.000000] PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000 ( 16 MB)
[ 0.000000] vmemmap : 0xffffffbf00000000 - 0xffffffc000000000 ( 4 GB maximum)
[ 0.000000] 0xffffffbf00000000 - 0xffffffbf10000000 ( 256 MB actual)
[ 0.000000] memory : 0xffffffc000000000 - 0xffffffc400000000 ( 16384 MB)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, 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=8.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
[ 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.000036] sched_clock: 56 bits at 31MHz, resolution 32ns, wraps every 4398046511088ns
[ 0.009477] Console: colour dummy device 80x25
[ 0.012686] console [tty0] enabled
[ 0.016133] bootconsole [tegra_comb_uart0] disabled
[ 0.021144] kmemleak: Kernel memory leak detector disabled
[ 0.021218] Calibrating delay loop (skipped), value calculated using timer frequency… 62.50 BogoMIPS (lpj=125000)
[ 0.021282] pid_max: default: 32768 minimum: 301
[ 0.022866] Security Framework initialized
[ 0.023625] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.023705] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.025931] ftrace: allocating 46802 entries in 183 pages
[ 0.528971] sched-energy: Sched-energy-costs installed from DT
[ 0.529209] ASID allocator initialised with 65536 entries
[ 0.571600] tegra-id: chipid=21917.
[ 0.571643] tegra-id: opt_subrevision=0.
[ 0.571729] Tegra Revision: A02 SKU: 0xd0 CPU Process: 0 SoC Process: 0
[ 0.571786] DTS File Name: /home/gcs/work/public_sources/kernel/kernel-4.9/arch/arm64/boot/dts/…/…/…/…/…/…/hardware/nvidia/platform/t19x/galen/kernel-dts/common/tegra194-p2888-0001-p2822-0000-common.dtsi
[ 0.571872] DTB Build time: Jun 14 2019 15:29:49
[ 0.622299] CPU1: Booted secondary processor [4e0f0040]
[ 0.654332] CPU2: Booted secondary processor [4e0f0040]
[ 0.686716] CPU3: Booted secondary processor [4e0f0040]
[ 0.719117] CPU4: Booted secondary processor [4e0f0040]
[ 0.751493] CPU5: Booted secondary processor [4e0f0040]
[ 0.784049] CPU6: Booted secondary processor [4e0f0040]
[ 0.816082] CPU7: Booted secondary processor [4e0f0040]
[ 0.816996] Brought up 8 CPUs
[ 0.817660] SMP: Total of 8 processors activated.
[ 0.817740] CPU features: detected feature: Privileged Access Never
[ 0.817802] CPU features: detected feature: LSE atomic instructions
[ 0.817864] CPU features: detected feature: User Access Override
[ 0.817934] CPU features: detected feature: 32-bit EL0 Support
[ 0.823310] CPU: All CPU(s) started at EL2
[ 0.823551] alternatives: patching kernel code
[ 0.837072] devtmpfs: initialized
[ 0.923084] Initilizing CustomIPI irq domain
[ 0.924071] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.924158] futex hash table entries: 2048 (order: 5, 131072 bytes)
[ 0.926459] pinctrl core: initialized pinctrl subsystem
[ 0.926894] OS set in device tree is not L4T.
[ 0.927371] regulator-dummy: no parameters
[ 0.927739] Initializing plugin-manager
[ 0.927833] Plugin module not found
[ 0.927901] Plugin-manager status disabled
[ 0.929650] NET: Registered protocol family 16
[ 0.932083] pstore: using zlib compression
[ 0.933735] console [pstore-1] enabled
[ 0.933779] pstore: Registered ramoops as persistent store backend
[ 0.933835] ramoops: attached 0x200000@0xe8a00000, ecc: 0/0
[ 0.951498] cpuidle: using governor menu
[ 0.953210] bpmp: waiting for handshake
[ 0.953263] bpmp: handshake completed
[ 0.953360] bpmp: synchronizing channels
[ 0.953463] bpmp: channels synchronized
[ 0.953508] bpmp: mail init ok
[ 0.957958] t19x-arm-smmu 12000000.iommu: found 3 SMMUs and ISO SMMU id is 2
[ 0.958306] t19x-arm-smmu 12000000.iommu: probing hardware configuration…
[ 0.958405] t19x-arm-smmu 12000000.iommu: SMMUv2 with:
[ 0.958459] t19x-arm-smmu 12000000.iommu: stage 1 translation
[ 0.958514] t19x-arm-smmu 12000000.iommu: stage 2 translation
[ 0.958569] t19x-arm-smmu 12000000.iommu: nested translation
[ 0.958627] t19x-arm-smmu 12000000.iommu: stream matching with 128 register groups, mask 0x7f80
[ 0.958702] t19x-arm-smmu 12000000.iommu: SMMU address space size (0x800000) differs from mapped region size (0x1000000)!
[ 0.958825] t19x-arm-smmu 12000000.iommu: 64 context banks (0 stage-2 only)
[ 0.958888] t19x-arm-smmu 12000000.iommu: Stage-1: 39-bit VA → 48-bit IPA
[ 0.958948] t19x-arm-smmu 12000000.iommu: Stage-2: 39-bit IPA → 48-bit PA
[ 0.964200] vdso: 2 pages (1 code @ ffffff8008f57000, 1 data @ ffffff8009e24000)
[ 0.964793] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.969430] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[ 0.970925] Registering BPMP clocks…
[ 0.971105] tegra_bpmp_clk_init: clock init ok (395 clks)
[ 0.971721] tegra_bpmp_of_clk_init: EMC proxy not found.
[ 0.972317] tegra_powergate_init: DONE
[ 0.972585] DTS File Name: /home/gcs/work/public_sources/kernel/kernel-4.9/arch/arm64/boot/dts/…/…/…/…/…/…/hardware/nvidia/platform/t19x/galen/kernel-dts/common/tegra194-p2888-0001-p2822-0000-common.dtsi
[ 0.972720] DTB Build time: Jun 14 2019 15:29:49
[ 0.977111] Tegra reboot handler registered.
[ 0.988534] iommu: Adding device 14180000.pcie to group 0
[ 0.989776] iommu: Adding device 14100000.pcie to group 1
[ 0.990777] iommu: Adding device 14120000.pcie to group 2
[ 0.991760] iommu: Adding device 14140000.pcie to group 3
[ 0.992758] iommu: Adding device 14160000.pcie to group 4
[ 0.993670] iommu: Adding device 141a0000.pcie to group 5
[ 0.995569] iommu: Adding device 2490000.ether_qos to group 6
[ 0.996400] iommu: Adding device 3100000.serial to group 7
[ 0.997231] iommu: Adding device 3110000.serial to group 8
[ 0.997867] iommu: Adding device 3140000.serial to group 9
[ 0.998684] tegra-pmc c360000.pmc: scratch reg offset dts data not present
[ 0.999002] tegra-pmc: get_secure_pmc_setting: done secure_pmc=0
[ 0.999098] tegra-pmc: ### PMC reset source: TEGRA_POWER_ON_RESET
[ 0.999160] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_L0
[ 0.999220] tegra-pmc: ### PMC reset status reg: 0x0
[ 0.999327] tegra-pmc: PMC Prod config success
[ 0.999628] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[ 0.999747] tegra-pmc c360000.pmc: IO padctrl driver initialized
[ 1.000404] iommu: Adding device 3460000.sdhci to group 10
[ 1.001231] iommu: Adding device 3400000.sdhci to group 11
[ 1.002033] iommu: Adding device c260000.spi to group 12
[ 1.003141] iommu: Adding device 3160000.i2c to group 13
[ 1.003763] iommu: Adding device c240000.i2c to group 14
[ 1.004454] iommu: Adding device 3180000.i2c to group 15
[ 1.005062] iommu: Adding device 3190000.i2c to group 16
[ 1.005845] iommu: Adding device 31b0000.i2c to group 17
[ 1.006451] iommu: Adding device 31c0000.i2c to group 18
[ 1.007056] iommu: Adding device c250000.i2c to group 19
[ 1.007666] iommu: Adding device 31e0000.i2c to group 20
[ 1.008809] iommu: Adding device sound to group 21
[ 1.009639] iommu: Adding device 3510000.hda to group 22
[ 1.010487] iommu: Adding device bc00000.rtcpu to group 23
[ 1.013673] iommu: Adding device 13e10000.host1x to group 24
[ 1.014292] iommu: Adding device 13e10000.host1x:ctx0 to group 25
[ 1.014877] iommu: Adding device 13e10000.host1x:ctx1 to group 26
[ 1.015448] iommu: Adding device 13e10000.host1x:ctx2 to group 27
[ 1.016310] iommu: Adding device 13e10000.host1x:ctx3 to group 28
[ 1.016958] iommu: Adding device 13e10000.host1x:ctx4 to group 29
[ 1.017532] iommu: Adding device 13e10000.host1x:ctx5 to group 30
[ 1.018175] iommu: Adding device 13e10000.host1x:ctx6 to group 31
[ 1.018784] iommu: Adding device 13e10000.host1x:ctx7 to group 32
[ 1.019901] iommu: Adding device 15340000.vic to group 33
[ 1.020556] iommu: Adding device 15380000.nvjpg to group 34
[ 1.021046] iommu: Adding device 15500000.tsec to group 35
[ 1.021508] iommu: Adding device 15100000.tsecb to group 36
[ 1.021946] iommu: Adding device 15480000.nvdec to group 37
[ 1.022417] iommu: Adding device 15140000.nvdec1 to group 38
[ 1.022866] iommu: Adding device 154c0000.nvenc to group 39
[ 1.023370] iommu: Adding device 15a80000.nvenc1 to group 40
[ 1.023990] iommu: Adding device 15880000.nvdla0 to group 41
[ 1.024698] iommu: Adding device 158c0000.nvdla1 to group 42
[ 1.025698] iommu: Adding device 15200000.nvdisplay to group 43
[ 1.026012] platform 15200000.nvdisplay: IOVA linear map 0x00000000a0697000(140000)
[ 1.026091] platform 15200000.nvdisplay: IOVA linear map 0x00000000a0692000(3000)
[ 1.027294] platform 15200000.nvdisplay: IOVA linear map 0x00000000f0000000(8000000)
[ 1.027366] t19x-arm-smmu: Adding 15200000.nvdisplay to ISO SMMU client
[ 1.028044] iommu: Adding device 15210000.nvdisplay to group 44
[ 1.028154] t19x-arm-smmu: Adding 15210000.nvdisplay to ISO SMMU client
[ 1.028843] iommu: Adding device 15220000.nvdisplay to group 45
[ 1.028955] t19x-arm-smmu: Adding 15220000.nvdisplay to ISO SMMU client
[ 1.031686] iommu: Adding device 15c10000.vi to group 46
[ 1.031999] t19x-arm-smmu: Adding 15c10000.vi to ISO SMMU client
[ 1.032607] iommu: Adding device 14800000.isp to group 47
[ 1.034424] iommu: Adding device 16000000.pva0 to group 48
[ 1.035242] iommu: Adding device 16800000.pva1 to group 49
[ 1.035861] iommu: Adding device 15810000.se to group 50
[ 1.036554] iommu: Adding device 15820000.se to group 51
[ 1.036991] iommu: Adding device 15830000.se to group 52
[ 1.037414] iommu: Adding device 15840000.se to group 53
[ 1.037823] iommu: Adding device c1a0000.aon to group 54
[ 1.039775] iommu: Adding device d000000.bpmp to group 55
[ 1.040310] bpmp: ping status is 0
[ 1.040526] bpmp d000000.bpmp: firmware tag is 1c1b2165fe52a0a54ad7caf60d40cdc3
[ 1.044362] bpmp d000000.bpmp: probe ok
[ 1.046277] tegra-reset 0.bpmp_reset: registered 186 resets.
[ 1.046996] iommu: Adding device smmu_test to group 56
[ 1.050213] mc-err: mcerr ops are set to t19x
[ 1.059023] iommu: Adding device 2600000.dma to group 57
[ 1.067311] GPIO line 339 (wifi-enable) hogged as output/high
[ 1.067774] gpiochip_setup_dev: registered GPIOs 288 to 511 on device: gpiochip0 (tegra-gpio)
[ 1.077962] gpiochip_setup_dev: registered GPIOs 248 to 287 on device: gpiochip1 (tegra-gpio-aon)
[ 1.081077] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CTRL_0 = 3
[ 1.081146] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CNTRL_24(PMU_INT) = 256
[ 1.082320] iommu: Adding device 3550000.xudc to group 58
[ 1.083418] iommu: Adding device 3610000.xhci to group 59
[ 1.086588] arm64_ras arm64_ras: probed
[ 1.087282] ras_fhi_enable: FHI 480 enabled on CPU0
[ 1.087382] ras_fhi_enable: FHI 481 enabled on CPU1
[ 1.087498] ras_fhi_enable: FHI 482 enabled on CPU2
[ 1.087613] ras_fhi_enable: FHI 483 enabled on CPU3
[ 1.087728] ras_fhi_enable: FHI 484 enabled on CPU4
[ 1.087835] ras_fhi_enable: FHI 485 enabled on CPU5
[ 1.087936] ras_fhi_enable: FHI 486 enabled on CPU6
[ 1.088050] ras_fhi_enable: FHI 487 enabled on CPU7
[ 1.088352] carmel_ras_enable: RAS enabled on cpu0
[ 1.088626] carmel_ras_enable: RAS enabled on cpu1
[ 1.088893] carmel_ras_enable: RAS enabled on cpu2
[ 1.089165] carmel_ras_enable: RAS enabled on cpu3
[ 1.089439] carmel_ras_enable: RAS enabled on cpu4
[ 1.089702] carmel_ras_enable: RAS enabled on cpu5
[ 1.089961] carmel_ras_enable: RAS enabled on cpu6
[ 1.090247] carmel_ras_enable: RAS enabled on cpu7
[ 1.090394] carmel_ras carmel_ras: probed
[ 1.092516] tegra-cbb 2300000.cbb-noc: noc_secure_irq = 489, noc_nonsecure_irq = 488>
[ 1.093345] tegra-cbb c600000.aon-noc: noc_secure_irq = 491, noc_nonsecure_irq = 490>
[ 1.094524] tegra-cbb d600000.bpmp-noc: noc_secure_irq = 493, noc_nonsecure_irq = 492>
[ 1.095729] tegra-cbb be00000.rce-noc: noc_secure_irq = 495, noc_nonsecure_irq = 494>
[ 1.096907] tegra-cbb b600000.sce-noc: noc_secure_irq = 497, noc_nonsecure_irq = 496>
[ 1.097513] tegra-cbb 14040000.cv-noc: defer probe as CV-NOC not probed yet
[ 1.100910] vdd-3v3-cvb: 3300 mV
[ 1.101372] vdd-1v8-cvb: 1800 mV
[ 1.101918] vdd-1v8-sd: 1800 mV
[ 1.102532] vdd-epb-1v0: supplied by vdd-3v3-cvb
[ 1.102639] vdd-epb-1v0: 1000 mV
[ 1.103206] vdd-sdmmc1-sw: 3300 mV
[ 1.103729] avdd-cam-2v8: 2800 mV
[ 1.104148] vdd-sata-1v5: 1500 mV
[ 1.104560] vdd-1v8-slt: 1800 mV
[ 1.105045] vdd-3v3-slt: 3300 mV
[ 1.105468] vdd-fan: 5000 mV
[ 1.105973] vdd_sys_en: 1200 mV
[ 1.106578] vdd-5v-sata: 5000 mV
[ 1.107233] vdd-hdmip1-5v0: 5000 mV
[ 1.107814] vdd-hdmip2-5v0: 5000 mV
[ 1.108481] vdd-usba0-5v0: 5000 mV
[ 1.109241] vdd-usba1-5v0: 5000 mV
[ 1.109918] vdd-ac-bat: 5000 mV
[ 1.110255] vdd-5v-sata: supplied by vdd-ac-bat
[ 1.110423] vdd-usba0-5v0: supplied by vdd-ac-bat
[ 1.110588] vdd-usba1-5v0: supplied by vdd-ac-bat
[ 1.152976] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 1.158954] eventlib_kernel: keventlib is initialized, test id: 0
[ 1.159442] SCSI subsystem initialized
[ 1.159809] libata version 3.00 loaded.
[ 1.160068] usbcore: registered new interface driver usbfs
[ 1.160186] usbcore: registered new interface driver hub
[ 1.160426] usbcore: registered new device driver usb
[ 1.173637] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[ 1.176967] max77620 4-003c: PMIC Version OTP:0x51 and ES:0x1
[ 1.189158] vdd-1v0: at 1000 mV
[ 1.197164] vdd-1v8-hs: at 1800 mV
[ 1.205287] vdd-1v8-ls: at 1800 mV
[ 1.213201] vdd-1v8-ao: at 1800 mV
[ 1.221267] vddio-ddr-1v1: at 1100 mV
[ 1.229053] vdd-rtc: at 800 mV
[ 1.230612] spmic-ldo1: at 2375 mV
[ 1.241156] vdd-ao-3v3: at 3300 mV
[ 1.250494] vddio-emmc-3v3: at 3300 mV
[ 1.252438] spmic-ldo4: at 1587 mV
[ 1.261332] vdd-usb-3v3: at 3300 mV
[ 1.273328] vddio-sdmmc1-3v3: at 3300 mV
[ 1.278900] vdd-csi-1v2: at 1200 mV
[ 1.281049] spmic-ldo8: at 1800 mV
[ 1.283383] GPIO line 246 (gpio_default) hogged as output/high
[ 1.284921] GPIO line 247 (gpio_default) hogged as output/high
[ 1.285617] gpiochip_setup_dev: registered GPIOs 240 to 247 on device: gpiochip2 (max77620-gpio)
[ 1.289473] max77620 4-003c: max77620 probe successful
[ 1.290297] media: Linux media interface: v0.10
[ 1.290412] Linux video capture interface: v2.00
[ 1.292346] pps_core: LinuxPPS API ver. 1 registered
[ 1.292396] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti giometti@linux.it
[ 1.292507] PTP clock support registered
[ 1.293226] tegra_wdt_t18x 30c0000.watchdog: Tegra WDT init timeout = 120 sec
[ 1.293322] tegra_wdt_t18x 30c0000.watchdog: Registered successfully
[ 1.294943] tegra_fiq_debugger_init: found FIQ source (IRQ 472)
[ 1.297009] Advanced Linux Sound Architecture Driver Initialized.
[ 1.297694] Bluetooth: Core ver 2.22
[ 1.297785] NET: Registered protocol family 31
[ 1.297826] Bluetooth: HCI device and connection manager initialized
[ 1.297892] Bluetooth: HCI socket layer initialized
[ 1.297944] Bluetooth: L2CAP socket layer initialized
[ 1.298021] Bluetooth: SCO socket layer initialized
[ 1.301413] camchar: rtcpu character device driver loaded
[ 1.302217] extcon-gpio-states extcon@1: No Cable connected on boot
[ 1.304555] clocksource: Switched to clocksource arch_sys_counter
[ 1.369939] VFS: Disk quotas dquot_6.6.0
[ 1.370132] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.370672] nvmap_heap_init: nvmap_heap_init: created heap block cache
[ 1.372796] tegra-carveouts tegra-carveouts: assigned reserved memory node grid-of-semaphores
[ 1.372961] tegra-carveouts tegra-carveouts: vpr :dma coherent mem declare 0x00000000f0000000,134217728
[ 1.373044] nvmap: nvmap_select_cache_ops() nvmap cache ops set to scf
[ 1.373099] nvmap_page_pool_init: Total RAM pages: 4016814
[ 1.373141] nvmap_page_pool_init: nvmap page pool size: 502101 pages (1961 MB)
[ 1.373611] nvmap_background_zero_thread: PP zeroing thread starting.
[ 1.374225] misc nvmap: created heap vpr base 0x00000000f0000000 size (131072KiB)
[ 1.376362] tegra-gpcdma 2600000.dma: GPC DMA driver register 31 channels
[ 1.392217] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type CPU-therm
[ 1.392691] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type GPU-therm
[ 1.393060] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type AUX-therm
[ 1.393418] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type AO-therm
[ 1.394023] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type Tdiode_tegra
[ 1.394410] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type PMIC-Die
[ 1.394628] thermal thermal_zone6: Registering thermal zone thermal_zone6 for type Tboard_tegra
[ 1.396135] la/ptsa driver initialized.
[ 1.396655] NET: Registered protocol family 2
[ 1.397922] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 1.398665] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 1.399469] TCP: Hash tables configured (established 131072 bind 65536)
[ 1.399579] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[ 1.399919] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[ 1.400740] NET: Registered protocol family 1
[ 1.401915] RPC: Registered named UNIX socket transport module.
[ 1.401964] RPC: Registered udp transport module.
[ 1.402004] RPC: Registered tcp transport module.
[ 1.402042] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 1.402108] PCI: CLS 0 bytes, default 64
[ 1.402338] Trying to unpack rootfs image as initramfs…
[ 1.426792] random: fast init done
[ 1.431922] host1x 13e10000.host1x: initialized
[ 1.435205] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[ 1.441458] audit: initializing netlink subsys (disabled)
[ 1.441585] audit: type=2000 audit(0.960:1): initialized
[ 1.442639] workingset: timestamp_bits=46 max_order=22 bucket_order=0
[ 1.456649] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 1.458640] ntfs: driver 2.1.32 [Flags: R/W].
[ 1.459931] 9p: Installing v9fs 9p2000 file system support
[ 1.467030] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)
[ 1.467312] io scheduler noop registered
[ 1.467749] io scheduler cfq registered (default)
[ 1.472950] gic 2a41000.agic-controller: GIC IRQ controller registered
[ 1.517400] iommu: Adding device 2993000.adsp to group 60
[ 1.615972] iommu: Adding device aconnect@2a41000:adsp_audio to group 61
[ 1.617194] tegra-aconnect aconnect@2a41000: Tegra ACONNECT bus registered
[ 1.635744] tegra-pwm c340000.pwm: PWM clk can sleep in ops
[ 1.636472] tegra-pwm 32c0000.pwm: PWM clk can sleep in ops
[ 1.637121] tegra-pwm 32f0000.pwm: PWM clk can sleep in ops
[ 1.640927] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[ 1.641314] misc tegra_camera_ctrl: tegra_camera_isomgr_register tpg_max_iso = 3916800KBs
[ 1.641381] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=4687500, vi_iso_bw=2000000, max_bw=4687500
[ 1.646105] tsec 15500000.tsec: initialized
[ 1.649203] tsec 15100000.tsecb: initialized
[ 1.655461] nvdec 15480000.nvdec: initialized
[ 1.659729] nvdec 15140000.nvdec1: initialized
[ 1.667217] falcon 15340000.vic: initialized
[ 1.669838] falcon 15380000.nvjpg: initialized
[ 1.672145] falcon 154c0000.nvenc: initialized
[ 1.674787] falcon 15a80000.nvenc1: initialized
[ 1.679388] iommu_context_dev 13e10000.host1x:ctx0: initialized (streamid=56)
[ 1.683276] iommu_context_dev 13e10000.host1x:ctx1: initialized (streamid=57)
[ 1.687113] iommu_context_dev 13e10000.host1x:ctx2: initialized (streamid=58)
[ 1.689304] iommu_context_dev 13e10000.host1x:ctx3: initialized (streamid=59)
[ 1.691450] iommu_context_dev 13e10000.host1x:ctx4: initialized (streamid=60)
[ 1.693618] iommu_context_dev 13e10000.host1x:ctx5: initialized (streamid=61)
[ 1.695709] iommu_context_dev 13e10000.host1x:ctx6: initialized (streamid=62)
[ 1.697901] iommu_context_dev 13e10000.host1x:ctx7: initialized (streamid=63)
[ 1.702963] t194-nvcsi 15a00000.nvcsi: initialized
[ 1.709417] scare-pigeon 13e10000.host1x:vi-thi@15f00000: initialized
[ 1.709968] scare-pigeon 14b00000.isp-thi: initialized
[ 1.720706] pva 16000000.pva0: initialized
[ 1.726264] pva 16800000.pva1: initialized
[ 1.731085] nvdla 15880000.nvdla0: initialized
[ 1.762352] nvdla 158c0000.nvdla1: initialized
[ 1.766521] tegra-slvs-ec 15ac0000.slvs-ec: initialized
[ 1.766726] tegra-slvs-ec 15ac0000.slvs-ec: no streams defined
[ 1.766766] tegra-slvs-ec 15ac0000.slvs-ec: failed to init SLVS media controller (-19)
[ 1.766811] tegra-slvs-ec 15ac0000.slvs-ec: probed
[ 1.768378] tegradccommon 15200000.dc_common: host1x channel mapped
[ 1.768448] tegradccommon 15200000.dc_common: dc_common syncpt # 1 allocated
[ 1.768602] tegradccommon 15200000.dc_common: dma mapping done
[ 1.770116] tegradc 15200000.nvdisplay: disp0 connected to head0->/host1x/sor2
[ 1.770211] generic_infoframe_type: 0x87
[ 1.770360] tegradc 15200000.nvdisplay: DT parsed successfully
[ 1.770447] tegradc 15200000.nvdisplay: Display dc.ffffff800bd90000 registered with id=0
[ 1.777546] tegra_nvdisp_bandwidth_register_max_config: max config iso bw = 15681600 KB/s
[ 1.777620] tegra_nvdisp_bandwidth_register_max_config: max config EMC floor = 1066500000 Hz
[ 1.777666] tegra_nvdisp_bandwidth_register_max_config: max config hubclk = 358400000 Hz
[ 1.778000] tegradc 15200000.nvdisplay: vblank syncpt # 8 for dc 0
[ 1.778048] tegradc 15200000.nvdisplay: vpulse3 syncpt # 9 for dc 0
[ 1.779676] tegra-adma 2930000.adma: Tegra210 ADMA driver registered 16 channels
[ 1.780337] tegradc 15200000.nvdisplay: Bootloader disp_param detected. Detected mode: 640x480 (on 0x0mm) pclk=50347983
[ 1.780670] tegra-fuse-burn 3820000.efuse:efuse-burn: Fuse burn driver initialized
[ 1.781841] kfuse 3830000.kfuse: initialized
[ 1.783317] tegradc 15200000.nvdisplay: hdmi: invalid prod list prod_list_hdmi_board
[ 1.783486] tegradc 15200000.nvdisplay: hdmi: tegra_hdmi_tmds_range_read(bd) failed
[ 1.790165] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 1.790196] tegradc 15200000.nvdisplay: probed
[ 1.793926] 3100000.serial: ttyTHS0 at MMIO 0x3100000 (irq = 54, base_baud = 0) is a TEGRA_UART
[ 1.795815] 3110000.serial: ttyTHS1 at MMIO 0x3110000 (irq = 55, base_baud = 0) is a TEGRA_UART
[ 1.797396] 3140000.serial: ttyTHS4 at MMIO 0x3140000 (irq = 56, base_baud = 0) is a TEGRA_UART
[ 4.299344] console [ttyTCU0] enabled
[ 4.299783] Console: switching to colour frame buffer device 80x30
[ 4.300074] [drm] Initialized
[ 4.312141] tegradc 15200000.nvdisplay: fb registered
[ 4.317633] gpio tegra-gpio wake71 for gpio=98(M:2)
[ 4.323460] tegra_nvdisp_handle_pd_enable: Unpowergated Head0 pd
[ 4.328467] tegra_nvdisp_handle_pd_enable: Unpowergated Head1 pd
[ 4.334951] brd: module loaded
[ 4.347696] loop: module loaded
[ 4.347924] tegra_profiler: version: 1.132, samples/io: 46/26
[ 4.348371] tegra_profiler: auth: init
[ 4.350952] Parent Clock set for DC plld3
[ 4.351013] nct1008_nct72 4-004c: starting parse dt
[ 4.351179] nct1008_nct72 4-004c: !!!Found deprecated property!!!
[ 4.351198] nct1008_nct72 4-004c: success parsing dt
[ 4.351401] nct1008_nct72 4-004c: success in enabling tmp451 VDD rail
[ 4.351671] THERMAL EST: found 3 subdevs
[ 4.351675] THERMAL EST num_resources: 0
[ 4.351679] [THERMAL EST subdev 0]
[ 4.351683] [THERMAL EST subdev 1]
[ 4.351685] [THERMAL EST subdev 2]
[ 4.352180] thermal thermal_zone7: Registering thermal zone thermal_zone7 for type thermal-fan-est
[ 4.352183] THERMAL EST: thz register success.
[ 4.352519] THERMAL EST: end of probe, return err: 0
[ 4.353391] hisi_sas: driver version v1.6
[ 4.358924] libphy: Fixed MDIO Bus: probed
[ 4.359635] tun: Universal TUN/TAP device driver, 1.6
[ 4.359638] tun: (C) 1999-2004 Max Krasnyansky maxk@qualcomm.com
[ 4.360403] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[ 4.360405] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 4.360470] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[ 4.360472] igb: Copyright (c) 2007-2014 Intel Corporation.
[ 4.360524] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[ 4.360561] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[ 4.360612] Intel(R) 10GbE PCI Express Linux Network Driver - version 4.6.4
[ 4.360614] Copyright(c) 1999 - 2017 Intel Corporation.
[ 4.362264] eqos 2490000.ether_qos: no PHY interrupt found
[ 4.366597] eqos 2490000.ether_qos: Setting local MAC: 0 4 4b cb e9 76
[ 4.366724] libphy: dwc_phy: probed
[ 4.369678] PPP generic driver version 2.4.2
[ 4.369944] PPP BSD Compression module registered
[ 4.369948] PPP Deflate Compression module registered
[ 4.370002] PPP MPPE Compression module registered
[ 4.370006] NET: Registered protocol family 24
[ 4.370113] usbcore: registered new interface driver r8152
[ 4.370172] usbcore: registered new interface driver asix
[ 4.370214] usbcore: registered new interface driver ax88179_178a
[ 4.370257] usbcore: registered new interface driver cdc_ether
[ 4.370296] usbcore: registered new interface driver net1080
[ 4.370332] usbcore: registered new interface driver cdc_subset
[ 4.370370] usbcore: registered new interface driver zaurus
[ 4.370422] usbcore: registered new interface driver cdc_ncm
[ 4.370753] VFIO - User Level meta-driver version: 0.3
[ 4.372301] ehci_hcd: USB 2.0 ‘Enhanced’ Host Controller (EHCI) Driver
[ 4.372314] ehci-pci: EHCI PCI platform driver
[ 4.372367] ohci_hcd: USB 1.1 ‘Open’ Host Controller (OHCI) Driver
[ 4.372375] ohci-pci: OHCI PCI platform driver
[ 4.372447] ohci-platform: OHCI generic platform driver
[ 4.380260] tegra-xusb 3610000.xhci: No USB port has OTG_CAP
[ 4.383029] tegra-xusb 3610000.xhci: Direct firmware load for tegra19x_xusb_firmware failed with error -2
[ 4.383034] tegra-xusb 3610000.xhci: Falling back to user helper
[ 4.383444] usbcore: registered new interface driver uas
[ 4.383506] usbcore: registered new interface driver usb-storage
[ 4.383635] usbcore: registered new interface driver usbserial
[ 4.384221] nct1008_nct72 4-004c: LOC shutdown limit 107
[ 4.385430] nct1008_nct72 4-004c: EXT shutdown limit 109
[ 4.387475] tegra-xudc-new 3550000.xudc: PMQOS CPU boost enabled
[ 4.387702] tegra-xudc-new 3550000.xudc: device count: 1
[ 4.388794] tegra-xudc-new 3550000.xudc: vbus state: 0
[ 4.388801] tegra-xudc-new 3550000.xudc: Initialize boost_cpufreq work
[ 4.388827] tegra-xudc-new 3550000.xudc: entering ELPG
[ 4.389053] tegra-xudc-new 3550000.xudc: entering ELPG done
[ 4.389791] mousedev: PS/2 mouse device common for all mice
[ 4.389876] usbcore: registered new interface driver xpad
[ 4.418931] nct1008_nct72 4-004c: initial LOC temp: 33000
[ 4.419432] nct1008_nct72 4-004c: initial EXT temp: 45250
[ 4.420524] nct1008_nct72 4-004c: hi_b:-10, lo_b:128
[ 4.421633] nct1008_nct72 4-004c: nct1008_probe: initialized
[ 4.524209] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[ 4.525956] Wake73 for irq=42
[ 4.527418] rtc rtc1: alarm rtc device
[ 4.527477] tegra_rtc c2a0000.rtc: rtc core: registered c2a0000.rtc as rtc1
[ 4.527525] tegra_rtc c2a0000.rtc: Tegra internal Real Time Clock
[ 4.527726] i2c /dev entries driver
[ 4.531717] max77620-power max20024-power: Event recorder REG_NVERC : 0x54
[ 4.602017] device-mapper: uevent: version 1.0.3
[ 4.602726] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[ 4.621241] tegra194_cpufreq_probe: platform driver Initialization: pass
[ 4.626214] cpuidle: Initializing cpuidle driver
[ 4.638698] sdhci: Secure Digital Host Controller Interface driver
[ 4.638699] sdhci: Copyright(c) Pierre Ossman
[ 4.638703] sdhci-pltfm: SDHCI platform and OF driver helper
[ 4.639992] sdhci-tegra 3460000.sdhci: Client registration for eMC Successful
[ 4.641821] CMDQ: cmdq_platfm_init successful
[ 4.642285] sdhci-tegra 3400000.sdhci: Got CD GPIO
[ 4.645135] sdhci-tegra 3400000.sdhci: Client registration for eMC Successful
[ 4.646608] sdhci-tegra 3400000.sdhci: wakeup init done, cdirq 257
[ 4.650923] tegra-se-elp 3ad0000.se_elp: tegra_se_elp_probe: complete
[ 4.684587] mmc0: SDHCI controller on 3460000.sdhci [3460000.sdhci] using ADMA 64-bit with 64 bit addr
[ 4.696662] gpio tegra-gpio wake8 for gpio=55(G:7)
[ 4.696744] mmc1: SDHCI controller on 3400000.sdhci [3400000.sdhci] using ADMA 64-bit with 64 bit addr
[ 4.766346] mmc0: mmc_decode_ext_csd: CMDQ supported: depth: 31, cmdq_support: 1
[ 4.777812] mmc0: periodic cache flush enabled
[ 4.777826] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[ 4.778470] mmcblk0: mmc0:0001 HBG4a2 29.1 GiB
[ 4.778678] mmcblk0boot0: mmc0:0001 HBG4a2 partition 1 8.00 MiB
[ 4.778897] mmcblk0boot1: mmc0:0001 HBG4a2 partition 2 8.00 MiB
[ 4.779145] mmcblk0rpmb: mmc0:0001 HBG4a2 partition 3 4.00 MiB
[ 4.781868] 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 p34 p35 p36 p37
[ 5.238954] tegradc 15200000.nvdisplay: hdmi: tmds rate:50349K prod-setting:prod_c_hdmi_0m_54m
[ 5.239689] tegradc 15200000.nvdisplay: hdmi: get RGB quant from REG programmed by BL.
[ 5.239849] tegradc 15200000.nvdisplay: hdmi: BL set VIC 0
[ 5.239944] tegradc 15200000.nvdisplay: hdmi: get YCC quant from REG programmed by BL.
[ 5.240708] extcon-disp-state external-connection:disp-state: cable 48 state 1
[ 5.240846] Extcon AUX2(HDMI) enable
[ 5.241376] tegradc 15210000.nvdisplay: disp1 connected to head1->/host1x/sor
[ 5.241557] tegradc 15210000.nvdisplay: parse_dp_settings: No dp-lt-settings node
[ 5.241780] tegradc 15210000.nvdisplay: DT parsed successfully
[ 5.241925] tegradc 15210000.nvdisplay: Display dc.ffffff800d1e0000 registered with id=1
[ 5.248471] tegradc 15210000.nvdisplay: vblank syncpt # 11 for dc 1
[ 5.254558] tegradc 15210000.nvdisplay: vpulse3 syncpt # 12 for dc 1
[ 5.268588] tegradc 15210000.nvdisplay: probed
[ 5.288962] tegradc 15210000.nvdisplay: fb registered
[ 5.293042] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 2
[ 5.294637] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 1
[ 5.296263] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 0
[ 5.297887] tegradc 15210000.nvdisplay: dp: aux write got error (0x10000100)
[ 5.299212] tegradc 15210000.nvdisplay: dp: Failed for I2C write addr:80, size:1, stat:0x10000100
[ 5.308022] tegra_nvdisp_handle_pd_enable: Unpowergated Head2 pd
[ 5.314618] Parent Clock set for DC pll_d
[ 5.322628] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 2
[ 5.326770] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 1
[ 5.333893] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 0
[ 5.341052] tegradc 15210000.nvdisplay: dp: aux write got error (0x10000100)
[ 5.346554] tegradc 15210000.nvdisplay: dp: Failed to write DPCD data. CMD 0x600, Status 0x10000100
[ 5.356499] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 2
[ 5.744474] tegradc 15200000.nvdisplay: hdmi: edid read failed
[ 5.744561] tegradc 15200000.nvdisplay: hdmi: using fallback edid
[ 6.004092] tegradc 15200000.nvdisplay: blank - powerdown
[ 6.005509] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 1
[ 6.006951] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 0
[ 6.008395] tegradc 15210000.nvdisplay: dp: aux write got error (0x10000100)
[ 6.008399] tegradc 15210000.nvdisplay: dp: Failed to write DPCD data. CMD 0x600, Status 0x10000100
[ 6.009041] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 2
[ 6.010485] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 1
[ 6.011924] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 0
[ 6.013367] tegradc 15210000.nvdisplay: dp: aux write got error (0x10000100)
[ 6.013369] tegradc 15210000.nvdisplay: dp: Failed to write DPCD data. CMD 0x600, Status 0x10000100
[ 6.014008] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 2
[ 6.015456] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 1
[ 6.016900] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 0
[ 6.018342] tegradc 15210000.nvdisplay: dp: aux write got error (0x10000100)
[ 6.018344] tegradc 15210000.nvdisplay: dp: Failed to write DPCD data. CMD 0x600, Status 0x10000100
[ 6.018347] tegradc 15210000.nvdisplay: dp: failed to exit panel power save mode (0xfffffff2)
[ 6.018396] hpd: state 7 (Takeover from bootloader), hpd 1, pending_hpd_evt 1
[ 6.018399] hpd: switching from state 7 (Takeover from bootloader) to state 1 (Check Plug)
[ 6.018858] tegradc 15220000.nvdisplay: disp2 connected to head2->/host1x/sor1
[ 6.018880] generic_infoframe_type: 0x87
[ 6.018924] tegradc 15220000.nvdisplay: DT parsed successfully
[ 6.018961] tegradc 15220000.nvdisplay: Display dc.ffffff800d3d0000 registered with id=2
[ 6.019141] tegradc 15220000.nvdisplay: vblank syncpt # 13 for dc 2
[ 6.019144] tegradc 15220000.nvdisplay: vpulse3 syncpt # 14 for dc 2
[ 6.020908] tegradc 15220000.nvdisplay: hdmi: invalid prod list prod_list_hdmi_board
[ 6.020911] tegradc 15220000.nvdisplay: hdmi: tegra_hdmi_tmds_range_read(bd) failed
[ 6.024405] tegra-i2c 3190000.i2c: no acknowledge from address 0x50
[ 6.026246] tegradc 15220000.nvdisplay: probed
[ 6.040216] extcon-disp-state external-connection:disp-state: cable 48 state 0
[ 6.040219] Extcon AUX2(HDMI) disable
[ 6.071696] tegradc 15200000.nvdisplay: unblank
[ 6.071952] Parent Clock set for DC plld3
[ 6.075914] tegradc 15200000.nvdisplay: hdmi: tmds rate:74250K prod-setting:prod_c_hdmi_54m_111m
[ 6.077160] tegradc 15200000.nvdisplay: hdmi: get RGB quant from EDID.
[ 6.077165] tegradc 15200000.nvdisplay: hdmi: get YCC quant from EDID.
[ 6.080898] extcon-disp-state external-connection:disp-state: cable 48 state 1
[ 6.080902] Extcon AUX2(HDMI) enable
[ 6.120623] hpd: state 1 (Check Plug), hpd 1, pending_hpd_evt 0
[ 6.120649] hpd: switching from state 1 (Check Plug) to state 2 (Check EDID)
[ 6.128644] hpd: state 2 (Check EDID), hpd 1, pending_hpd_evt 0
[ 6.129317] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 2
[ 6.130820] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 1
[ 6.132282] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 0
[ 6.133749] tegradc 15210000.nvdisplay: dp: aux write got error (0x10000100)
[ 6.133753] tegradc 15210000.nvdisplay: dp: Failed to write DPCD data. CMD 0x600, Status 0x10000100
[ 6.134405] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 2
[ 6.135863] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 1
[ 6.137328] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 0
[ 6.138785] tegradc 15210000.nvdisplay: dp: aux write got error (0x10000100)
[ 6.138789] tegradc 15210000.nvdisplay: dp: Failed to write DPCD data. CMD 0x600, Status 0x10000100
[ 6.139440] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 2
[ 6.140905] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 1
[ 6.142379] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 0
[ 6.143837] tegradc 15210000.nvdisplay: dp: aux write got error (0x10000100)
[ 6.143840] tegradc 15210000.nvdisplay: dp: Failed to write DPCD data. CMD 0x600, Status 0x10000100
[ 6.144497] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 2
[ 6.145968] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 1
[ 6.147429] tegradc 15210000.nvdisplay: dp: aux write retry (0x10000100) – 0
[ 6.148886] tegradc 15210000.nvdisplay: dp: aux write got error (0x10000100)
[ 6.148891] tegradc 15210000.nvdisplay: dp: Failed to write DPCD data. CMD 0x600, Status 0x10000100
[ 6.148895] tegradc 15210000.nvdisplay: dp: failed to exit panel power save mode (0xfffffff2)
[ 6.148899] hpd: edid read prepare failed
[ 6.148899] hpd: DC from connected to disconnected
[ 7.165198] tegra_nvdisp_handle_pd_disable: Powergated Head2 pd
[ 8.457594] tegradc 15210000.nvdisplay: blank - powerdown
[ 8.462698] extcon-disp-state external-connection:disp-state: cable 44 state 0 already set.
[ 8.462700] Extcon DP: HPD disabled
[ 8.462701] hpd: hpd_switch 0
[ 8.462720] hpd: switching from state 2 (Check EDID) to state 3 (Disabled)
[ 8.462747] tegradc 15220000.nvdisplay: fb registered
[ 8.463062] gpio tegra-gpio wake63 for gpio=97(M:1)
[ 8.494723] extcon-disp-state external-connection:disp-state: cable 40 state 1
[ 8.502229] Extcon HDMI: HPD enabled
[ 8.505656] tegradc 15200000.nvdisplay: hdmi: plugged
[ 8.511156] tegra-se-nvhost 15810000.se: initialized
[ 8.516791] tegra-se-nvhost 15810000.se: tegra_se_probe: complete
[ 8.522737] tegra-se-nvhost 15820000.se: initialized
[ 8.528087] tegra-se-nvhost 15820000.se: tegra_se_probe: complete
[ 8.533788] tegra-se-nvhost 15830000.se: initialized
[ 8.538702] tegra-se-nvhost 15830000.se: tegra_se_probe: complete
[ 8.544434] tegra-se-nvhost 15840000.se: initialized
[ 8.550043] tegra-se-nvhost 15840000.se: tegra_se_probe: complete
[ 8.555409] hidraw: raw HID events driver (C) Jiri Kosina
[ 8.561622] usbcore: registered new interface driver usbhid
[ 8.565934] usbhid: USB HID core driver
[ 8.575644] tegra186-cam-rtcpu bc00000.rtcpu: deferring, 14800000.isp is not probed
[ 8.578736] tegra_aon c1a0000.aon: tegra aon driver probe OK
[ 8.583888] tegra186-aondbg aondbg: aondbg driver probe() OK
[ 8.589567] denver_knobs_init:MTS_VERSION:44201972
[ 8.594293] tegra19x_actmon d230000.actmon: in actmon_register()…
[ 8.600858] tegra19x_actmon d230000.actmon: initialization Completed for the device mc_all
[ 8.608937] t19x_cache tegra-cache: probed
[ 8.618882] misc nvmap: cvsram :dma coherent mem declare 0x0000000050000000,4194304
[ 8.620145] misc nvmap: created heap cvsram base 0x0000000050000000 size (4096KiB)
[ 8.629918] nvpmodel: initialized successfully
[ 8.632991] tegra-hda 3510000.hda: Override SDO lines to 4
[ 8.636713] usbcore: registered new interface driver snd-usb-audio
[ 8.665535] input: tegra-hda-galen-t194 HDMI/DP,pcm=3 as /devices/3510000.hda/sound/card0/input0
[ 8.666727] input: tegra-hda-galen-t194 HDMI/DP,pcm=7 as /devices/3510000.hda/sound/card0/input1
[ 8.667871] input: tegra-hda-galen-t194 HDMI/DP,pcm=8 as /devices/3510000.hda/sound/card0/input2
[ 8.669877] OPE platform probe
[ 8.669972] OPE platform probe successful
[ 8.677547] input: tegra-hda-galen-t194 HDMI/DP,pcm=9 as /devices/3510000.hda/sound/card0/input3
[ 8.942159] u32 classifier
[ 8.942940] Actions configured
[ 8.943715] Initializing XFRM netlink socket
[ 8.944917] NET: Registered protocol family 10
[ 8.946409] NET: Registered protocol family 17
[ 8.947148] NET: Registered protocol family 15
[ 8.951595] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 8.964418] Bluetooth: RFCOMM socket layer initialized
[ 8.969574] Bluetooth: RFCOMM ver 1.11
[ 8.973296] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 8.979162] Bluetooth: HIDP socket layer initialized
[ 8.984182] 9pnet: Installing 9P2000 support
[ 8.988496] Key type dns_resolver registered
[ 8.993116] Registered cp15_barrier emulation handler
[ 8.997577] Registered setend emulation handler
[ 9.004428] registered taskstats version 1
[ 9.007207] tegra-pcie-dw 14180000.pcie: Setting init speed to max speed
[ 9.014629] OF: PCI: host bridge /pcie@14180000 ranges:
[ 9.018679] OF: PCI: IO 0x38100000…0x381fffff → 0x38100000
[ 9.024803] OF: PCI: MEM 0x38200000…0x39ffffff → 0x38200000
[ 9.030665] OF: PCI: MEM 0x1800000000…0x1bffffffff → 0x1800000000
[ 9.548791] tegra-pcie-dw 14180000.pcie: link is down
[ 9.549934] tegra-pcie-dw 14180000.pcie: PCI host bridge to bus 0000:00
[ 9.550877] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 9.551786] pci_bus 0000:00: root bus resource [io 0x0000-0xfffff] (bus address [0x38100000-0x381fffff])
[ 9.552834] pci_bus 0000:00: root bus resource [mem 0x38200000-0x39ffffff]
[ 9.553799] pci_bus 0000:00: root bus resource [mem 0x1800000000-0x1bffffffff pref]
[ 9.554807] pci 0000:00:00.0: [10de:1ad0] type 01 class 0x060400
[ 9.554982] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[ 9.555244] iommu: Adding device 0000:00:00.0 to group 62
[ 9.556447] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[ 9.557463] pci 0000:00:00.0: Max Payload Size set to 256/ 256 (was 256), Max Read Rq 512
[ 9.558713] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt
[ 9.559710] pcie_pme 0000:00:00.0:pcie001: service driver pcie_pme loaded
[ 9.559809] aer 0000:00:00.0:pcie002: service driver aer loaded
[ 9.560033] pcie_pme 0000:00:00.0:pcie001: unloading service driver pcie_pme
[ 9.560071] aer 0000:00:00.0:pcie002: unloading service driver aer
[ 9.560147] pci_bus 0000:01: busn_res: [bus 01-ff] is released
[ 9.560211] iommu: Removing device 0000:00:00.0 from group 62
[ 9.561243] pci_bus 0000:00: busn_res: [bus 00-ff] is released
[ 9.561461] tegra-pcie-dw 14180000.pcie: PCIe link is not up…!
[ 9.562963] tegra-pcie-dw 14100000.pcie: Setting init speed to max speed
[ 9.565102] OF: PCI: host bridge /pcie@14100000 ranges:
[ 9.566084] OF: PCI: IO 0x30100000…0x301fffff → 0x30100000
[ 9.567023] OF: PCI: MEM 0x30200000…0x31ffffff → 0x30200000
[ 9.567952] OF: PCI: MEM 0x1200000000…0x123fffffff → 0x1200000000
[ 9.676606] tegra-pcie-dw 14100000.pcie: link is up
[ 9.677816] tegra-pcie-dw 14100000.pcie: PCI host bridge to bus 0001:00
[ 9.678753] pci_bus 0001:00: root bus resource [bus 00-ff]
[ 9.679680] pci_bus 0001:00: root bus resource [io 0x100000-0x1fffff] (bus address [0x30100000-0x301fffff])
[ 9.680739] pci_bus 0001:00: root bus resource [mem 0x30200000-0x31ffffff]
[ 9.681698] pci_bus 0001:00: root bus resource [mem 0x1200000000-0x123fffffff pref]
[ 9.682668] pci 0001:00:00.0: [10de:1ad2] type 01 class 0x060400
[ 9.682825] pci 0001:00:00.0: PME# supported from D0 D3hot D3cold
[ 9.683059] iommu: Adding device 0001:00:00.0 to group 62
[ 9.684267] pci 0001:01:00.0: [8086:10d3] type 00 class 0x020000
[ 9.684378] pci 0001:01:00.0: reg 0x10: [mem 0x00000000-0x0001ffff]
[ 9.684510] pci 0001:01:00.0: reg 0x18: [io 0x0000-0x001f]
[ 9.684587] pci 0001:01:00.0: reg 0x1c: [mem 0x00000000-0x00003fff]
[ 9.685245] pci 0001:01:00.0: PME# supported from D0 D3hot D3cold
[ 9.685536] iommu: Adding device 0001:01:00.0 to group 63
[ 9.697471] pci 0001:00:00.0: BAR 14: assigned [mem 0x30200000-0x302fffff]
[ 9.698405] pci 0001:00:00.0: BAR 13: assigned [io 0x100000-0x100fff]
[ 9.699313] pci 0001:01:00.0: BAR 0: assigned [mem 0x30200000-0x3021ffff]
[ 9.700267] pci 0001:01:00.0: BAR 3: assigned [mem 0x30220000-0x30223fff]
[ 9.702084] pci 0001:01:00.0: BAR 2: assigned [io 0x100000-0x10001f]
[ 9.703306] pci 0001:00:00.0: PCI bridge to [bus 01-ff]
[ 9.704161] pci 0001:00:00.0: bridge window [io 0x100000-0x100fff]
[ 9.705078] pci 0001:00:00.0: bridge window [mem 0x30200000-0x302fffff]
[ 9.705975] pci 0001:00:00.0: Max Payload Size set to 256/ 256 (was 256), Max Read Rq 512
[ 9.706927] pci 0001:01:00.0: Max Payload Size set to 256/ 256 (was 128), Max Read Rq 512
[ 9.708125] pcieport 0001:00:00.0: Signaling PME through PCIe PME interrupt
[ 9.714511] pci 0001:01:00.0: Signaling PME through PCIe PME interrupt
[ 9.721034] pcie_pme 0001:00:00.0:pcie001: service driver pcie_pme loaded
[ 9.721152] aer 0001:00:00.0:pcie002: service driver aer loaded
[ 9.721556] e1000e 0001:01:00.0: enabling device (0000 → 0002)
[ 9.727634] e1000e 0001:01:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 9.795528] e1000e 0001:01:00.0 0001:01:00.0 (uninitialized): registered PHC clock
[ 9.859382] e1000e 0001:01:00.0 eth1: (PCI Express:2.5GT/s:Width x1) 72:b3:9f:2d:cb:2d
[ 9.860350] e1000e 0001:01:00.0 eth1: Intel(R) PRO/1000 Network Connection
[ 9.861400] e1000e 0001:01:00.0 eth1: MAC: 3, PHY: 8, PBA No: FFFFFF-0FF
[ 9.862519] tegra-pcie-dw 14120000.pcie: Setting init speed to max speed
[ 9.864301] OF: PCI: host bridge /pcie@14120000 ranges:
[ 9.865288] OF: PCI: IO 0x32100000…0x321fffff → 0x32100000
[ 9.866205] OF: PCI: MEM 0x32200000…0x33ffffff → 0x32200000
[ 9.867109] OF: PCI: MEM 0x1240000000…0x127fffffff → 0x1240000000
[ 9.976576] tegra-pcie-dw 14120000.pcie: link is up
[ 9.977664] tegra-pcie-dw 14120000.pcie: PCI host bridge to bus 0002:00
[ 9.978579] pci_bus 0002:00: root bus resource [bus 00-ff]
[ 9.979469] pci_bus 0002:00: root bus resource [io 0x200000-0x2fffff] (bus address [0x32100000-0x321fffff])
[ 9.980436] pci_bus 0002:00: root bus resource [mem 0x32200000-0x33ffffff]
[ 9.981411] pci_bus 0002:00: root bus resource [mem 0x1240000000-0x127fffffff pref]
[ 9.982353] pci 0002:00:00.0: [10de:1ad2] type 01 class 0x060400
[ 9.982495] pci 0002:00:00.0: PME# supported from D0 D3hot D3cold
[ 9.982722] iommu: Adding device 0002:00:00.0 to group 64
[ 9.983869] pci 0002:01:00.0: [1912:0015] type 00 class 0x0c0330
[ 9.983999] pci 0002:01:00.0: reg 0x10: [mem 0x00000000-0x00001fff 64bit]
[ 9.984656] pci 0002:01:00.0: PME# supported from D0 D3hot
[ 9.984912] iommu: Adding device 0002:01:00.0 to group 65
[ 9.997342] pci 0002:00:00.0: BAR 14: assigned [mem 0x32200000-0x322fffff]
[ 9.998250] pci 0002:01:00.0: BAR 0: assigned [mem 0x32200000-0x32201fff 64bit]
[ 9.999223] pci 0002:00:00.0: PCI bridge to [bus 01-ff]
[ 10.000079] pci 0002:00:00.0: bridge window [mem 0x32200000-0x322fffff]
[ 10.001057] pci 0002:00:00.0: Max Payload Size set to 128/ 256 (was 256), Max Read Rq 512
[ 10.002032] pci 0002:01:00.0: Max Payload Size set to 128/ 128 (was 128), Max Read Rq 512
[ 10.003225] pcieport 0002:00:00.0: Signaling PME through PCIe PME interrupt
[ 10.004172] pci 0002:01:00.0: Signaling PME through PCIe PME interrupt
[ 10.005105] pcie_pme 0002:00:00.0:pcie001: service driver pcie_pme loaded
[ 10.005245] aer 0002:00:00.0:pcie002: service driver aer loaded
[ 10.005405] pci 0002:01:00.0: enabling device (0000 → 0002)
[ 15.855511] pci 0002:01:00.0: xHCI HW not ready after 5 sec (HC bug?) status = 0x1801
[ 15.856961] xhci_hcd 0002:01:00.0: xHCI Host Controller
[ 15.857875] xhci_hcd 0002:01:00.0: new USB bus registered, assigned bus number 1
[ 42.588031] xhci_hcd 0002:01:00.0: can’t setup: -110
[ 42.589008] xhci_hcd 0002:01:00.0: USB bus 1 deregistered
[ 42.589978] xhci_hcd 0002:01:00.0: init 0002:01:00.0 fail, -110
[ 42.590906] xhci_hcd: probe of 0002:01:00.0 failed with error -110
[ 42.592049] tegra-pcie-dw 14140000.pcie: Setting init speed to max speed
[ 42.594058] OF: PCI: host bridge /pcie@14140000 ranges:
[ 42.595023] OF: PCI: IO 0x34100000…0x341fffff → 0x34100000
[ 42.595942] OF: PCI: MEM 0x34200000…0x35ffffff → 0x34200000
[ 42.596884] OF: PCI: MEM 0x1280000000…0x12bfffffff → 0x1280000000
[ 43.107513] tegra-pcie-dw 14140000.pcie: link is down
[ 43.108755] tegra-pcie-dw 14140000.pcie: PCI host bridge to bus 0003:00
[ 43.109725] pci_bus 0003:00: root bus resource [bus 00-ff]
[ 43.110654] pci_bus 0003:00: root bus resource [io 0x300000-0x3fffff] (bus address [0x34100000-0x341fffff])
[ 43.111650] pci_bus 0003:00: root bus resource [mem 0x34200000-0x35ffffff]
[ 43.112604] pci_bus 0003:00: root bus resource [mem 0x1280000000-0x12bfffffff pref]
[ 43.113564] pci 0003:00:00.0: [10de:1ad2] type 01 class 0x060400
[ 43.113698] pci 0003:00:00.0: PME# supported from D0 D3hot D3cold
[ 43.113931] iommu: Adding device 0003:00:00.0 to group 66
[ 43.115066] pci 0003:00:00.0: PCI bridge to [bus 01-ff]
[ 43.115982] pci 0003:00:00.0: Max Payload Size set to 256/ 256 (was 256), Max Read Rq 512
[ 43.117228] pcieport 0003:00:00.0: Signaling PME through PCIe PME interrupt
[ 43.118192] pcie_pme 0003:00:00.0:pcie001: service driver pcie_pme loaded
[ 43.118290] aer 0003:00:00.0:pcie002: service driver aer loaded
[ 43.118441] pcie_pme 0003:00:00.0:pcie001: unloading service driver pcie_pme
[ 43.118500] aer 0003:00:00.0:pcie002: unloading service driver aer
[ 43.118586] pci_bus 0003:01: busn_res: [bus 01-ff] is released
[ 43.118683] iommu: Removing device 0003:00:00.0 from group 66
[ 43.119627] pci_bus 0003:00: busn_res: [bus 00-ff] is released
[ 43.119849] tegra-pcie-dw 14140000.pcie: PCIe link is not up…!
[ 43.121278] tegra-pcie-dw 14160000.pcie: Setting init speed to max speed
[ 43.123096] OF: PCI: host bridge /pcie@14160000 ranges:
[ 43.124039] OF: PCI: IO 0x36100000…0x361fffff → 0x36100000
[ 43.124991] OF: PCI: MEM 0x36200000…0x37ffffff → 0x36200000
[ 43.125915] OF: PCI: MEM 0x1400000000…0x17ffffffff → 0x1400000000
[ 43.636175] tegra-pcie-dw 14160000.pcie: link is down
[ 43.637324] tegra-pcie-dw 14160000.pcie: PCI host bridge to bus 0004:00
[ 43.638270] pci_bus 0004:00: root bus resource [bus 00-ff]
[ 43.639159] pci_bus 0004:00: root bus resource [io 0x400000-0x4fffff] (bus address [0x36100000-0x361fffff])
[ 43.640153] pci_bus 0004:00: root bus resource [mem 0x36200000-0x37ffffff]
[ 43.641101] pci_bus 0004:00: root bus resource [mem 0x1400000000-0x17ffffffff pref]
[ 43.642099] pci 0004:00:00.0: [10de:1ad1] type 01 class 0x060400
[ 43.642240] pci 0004:00:00.0: PME# supported from D0 D3hot D3cold
[ 43.642445] iommu: Adding device 0004:00:00.0 to group 66
[ 43.643609] pci 0004:00:00.0: PCI bridge to [bus 01-ff]
[ 43.644560] pci 0004:00:00.0: Max Payload Size set to 256/ 256 (was 256), Max Read Rq 512
[ 43.645779] pcieport 0004:00:00.0: Signaling PME through PCIe PME interrupt
[ 43.646755] pcie_pme 0004:00:00.0:pcie001: service driver pcie_pme loaded
[ 43.646849] aer 0004:00:00.0:pcie002: service driver aer loaded
[ 43.647006] pcie_pme 0004:00:00.0:pcie001: unloading service driver pcie_pme
[ 43.647061] aer 0004:00:00.0:pcie002: unloading service driver aer
[ 43.647142] pci_bus 0004:01: busn_res: [bus 01-ff] is released
[ 43.647204] iommu: Removing device 0004:00:00.0 from group 66
[ 43.648172] pci_bus 0004:00: busn_res: [bus 00-ff] is released
[ 43.648454] tegra-pcie-dw 14160000.pcie: PCIe link is not up…!
[ 43.650371] tegra-pcie-dw 141a0000.pcie: Setting init speed to max speed
[ 43.652240] OF: PCI: host bridge /pcie@141a0000 ranges:
[ 43.653200] OF: PCI: IO 0x3a100000…0x3a1fffff → 0x3a100000
[ 43.654133] OF: PCI: MEM 0x3a200000…0x3bffffff → 0x3a200000
[ 43.655054] OF: PCI: MEM 0x1c00000000…0x1fffffffff → 0x1c00000000
[ 44.167643] tegra-pcie-dw 141a0000.pcie: link is down
[ 44.168719] tegra-pcie-dw 141a0000.pcie: PCI host bridge to bus 0005:00
[ 44.169648] pci_bus 0005:00: root bus resource [bus 00-ff]
[ 44.170554] pci_bus 0005:00: root bus resource [io 0x500000-0x5fffff] (bus address [0x3a100000-0x3a1fffff])
[ 44.171552] pci_bus 0005:00: root bus resource [mem 0x3a200000-0x3bffffff]
[ 44.172486] pci_bus 0005:00: root bus resource [mem 0x1c00000000-0x1fffffffff pref]
[ 44.173495] pci 0005:00:00.0: [10de:1ad0] type 01 class 0x060400
[ 44.173632] pci 0005:00:00.0: PME# supported from D0 D3hot D3cold
[ 44.173812] iommu: Adding device 0005:00:00.0 to group 66
[ 44.174943] pci 0005:00:00.0: PCI bridge to [bus 01-ff]
[ 44.175877] pci 0005:00:00.0: Max Payload Size set to 256/ 256 (was 256), Max Read Rq 512
[ 44.177234] pcieport 0005:00:00.0: Signaling PME through PCIe PME interrupt
[ 44.179049] pcie_pme 0005:00:00.0:pcie001: service driver pcie_pme loaded
[ 44.179147] aer 0005:00:00.0:pcie002: service driver aer loaded
[ 44.179317] pcie_pme 0005:00:00.0:pcie001: unloading service driver pcie_pme
[ 44.179372] aer 0005:00:00.0:pcie002: unloading service driver aer
[ 44.179466] pci_bus 0005:01: busn_res: [bus 01-ff] is released
[ 44.179565] iommu: Removing device 0005:00:00.0 from group 66
[ 44.180565] pci_bus 0005:00: busn_res: [bus 00-ff] is released
[ 44.180809] tegra-pcie-dw 141a0000.pcie: PCIe link is not up…!
[ 44.195308] tegra-cbb 14040000.cv-noc: noc_secure_irq = 101, noc_nonsecure_irq = 100>
[ 44.200755] tegra194-isp5 14800000.isp: initialized
[ 44.209224] tegra194-vi5 15c10000.vi: initialized
[ 44.215549] tegra194-vi5 15c10000.vi: ep of_device is not

Hi,
For type-A ports, we only support host mode.

Yes,all the ports work in host mode.If I delete “extcon-” in dts file, the kernel will printk “tegra-xudc-new 355000.xudc:extcon_get_extcon_dev_by_cable failed -19”.

The problem for me is the 3.0-bus abnormal.

Hi,
Please realize we do not support device mode in USB Type-A port.