Configuring Device Tree SDIO for the ATWILC3000 WiFi Module

Hi together,

I realize that this question has been asked rather frequently by now, but since I can’t seem to get my WiFi Module working, I was hoping on some help from here.

Current Setup
I am working on a custom carrier-board with the Jetson TX2 NX. The ATWILC3000 is connected via SDIO as per the following schematics:


image

According to the Excel spreadsheet and the TRM, this is SDMMC3 which is found at the address 0x03440000

I therefore adjusted the device tree to have the following configuration:

	sdhci@3440000 {
		uhs-mask = <0x10>; /* SDR104 */
		only-1-8-v;
		max-frequency = <50000000>;
		nvidia,is-sdio;
		nvidia,disable-rtpm;
		non-removable;
		force-non-removable-rescan;

		/* Deletions */
		/delete-property/ ddr-clk-limit;
		/delete-property/ iommus;

		status = "okay";
	};

	wilc1000: wilc_wlan {
			compatible = "microchip,wilc1000", "microchip,wilc3000";
			/* module supports up to 50 MHz*/
			sd-uhs-sdr12; 
			bus-width = <4>; 
			/* reg 1-7 denote SDIO functions */
			reg = <0x01>;
			sdhci-host = <&sdmmc3>;
			interrupt = <&tegra_main_gpio TEGRA_MAIN_GPIO(C, 2) GPIO_ACTIVE_LOW>;
			fw_path = "/lib/firmware/atmel/wilc1000_wifi_firmware.bin";
			pwr-retry-cnt = <3>;
			status = "okay";
	};

Current Problem

  • iwconfig does not show the device
  • Kernel logs show sdhci-tegra 3440000.sdhci: Client registration for eMC Successful
    Logs:
dev@localhost:~$ dmesg | grep -E "sdhc|mmc"
[    0.000000] Kernel command line: console=ttyS0,115200 root=/dev/mmcblk0p rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 isolcpus=1-2  video=tegrafb earlycon=uart8250,mmio32,0x3100000 nvdumper_reserved=0x1772e0000 gpt rootfs.slot_suffix= tegra_fbmem=0x800000@0x96085000 lut_mem=0x2008@0x96081000 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@0x175840000 sdhci_tegra.en_boot_part_access=1 root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 pcie_aspm=off
[    0.430358] iommu: Adding device 3460000.sdhci to group 0
[    0.534044] vddio-sdmmc1: 1800 <--> 3300 mV at 3300 mV
[    4.521238] sdhci: Secure Digital Host Controller Interface driver
[    4.521239] sdhci: Copyright(c) Pierre Ossman
[    4.521240] sdhci-pltfm: SDHCI platform and OF driver helper
[    4.522197] sdhci-tegra 3460000.sdhci: Client registration for eMC Successful
[    4.524170] sdhci-tegra 3440000.sdhci: runtime pm disabled
[    4.528216] sdhci-tegra 3440000.sdhci: Client registration for eMC Successful
[    4.565929] mmc0: SDHCI controller on 3460000.sdhci [3460000.sdhci] using ADMA 64-bit with 64 bit addr
[    4.574926] mmc1: SDHCI controller on 3440000.sdhci [3440000.sdhci] using ADMA 64-bit with 64 bit addr
[    4.607644] mmc0: mmc_decode_ext_csd: CMDQ supported: depth: 31, cmdq_support: 1
[    4.630865] mmc0: periodic cache flush enabled
[    4.635391] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    4.642097] mmcblk0: mmc0:0001 DG4016 14.7 GiB
[    4.651801] mmcblk0boot0: mmc0:0001 DG4016 partition 1 4.00 MiB
[    4.661027] mmcblk0boot1: mmc0:0001 DG4016 partition 2 4.00 MiB
[    4.667086] mmcblk0rpmb: mmc0:0001 DG4016 partition 3 4.00 MiB
[    4.679321]  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
[   13.939522] mmcblk mmc0:0001: Card claimed for testing.
[   14.526285] Root device found: mmcblk0p1
[   14.531305] Found dev node: /dev/mmcblk0p1
[   14.553112] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[   14.563026] Rootfs mounted over mmcblk0p1
[   15.093739] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
[   44.172337] vddio-sdmmc1: disabling

Things I have tried so far

  • Tried various device tree configurations as found on different posts in this forum
  • Tried downloading newer versions of the firmware (ATWILC1000 & ATWILC3000)
  • Tried downloading newer versions of the driver
  • Tried different boards
  • Have set the kernel configurations as per the Microchip Linux porting guide

Things I would love your input on

  • How is the reg property used in this case? Does 1 stand for SDIO1 and so on or am I free to set any value, as long as it is != 0?
  • Am I missing a regulator that I need to configure?
  • When using the spreadsheet, I can set the pad-voltage for SDMMC3 to 1V8, 3V3 or both. However, the resulting .dtsi file (and later the .cfg file) don’t seem to include any setting for SDMMC3 but instead multiple entries for SDMMC1/2/4 Is this the expected behavior?

e.g., my current tegra186-pad.cfg looks like this:

##
## CFG version 1.0
## Input pad file name: ./tegra18x-jetson_tx2_nx-padvoltage-default.dtsi
## Generation date: 2023-02-15 12:21
## PLEASE DO NOT EDIT THIS FILE
## This is autogenerated file using the script pinmux-dts2cfg.py
##
# AUDIO_HV   : 1.8V
# DMIC_HV    : 3.3V
# SDMMC1_HV  : 3.3V
# SDMMC2_HV  : 1.8V
# AUDIO_HV   : 1.8V
# DMIC_HV    : 3.3V
# SDMMC1_HV  : 3.3V
# SDMMC2_HV  : 1.8V
# SDMMC1_HV  : 3.3V
# SDMMC2_HV  : 1.8V
# UFS        : 3.3V
pmc.major = 1;
pmc.minor = 0;
pmc.0x0c36003c = 0x0000003c; # PMC_IMPL_E_18V_PWR_0
pmc.0x0c360040 = 0x0000005d; # PMC_IMPL_E_33V_PWR_0

Any ideas what might be wrong? Any input is highly appreciated! Thanks in advance!

First thing is do not parse any log by yourself. Just share the full log.

Hi Wayne,
thanks for your response. Please find the full log message below.

Full dmesg log
[    0.000000] Booting Linux on physical CPU 0x100
[    0.000000] Linux version 4.9.299-tegra (mdev@LAPTOP-U7V1MID5) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #5 SMP PREEMPT Wed Mar 1 16:56:42 CET 2023
[    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 ,  85600000
[    0.000000] OF: fdt: - 175e00000 ,  200000
[    0.000000] OF: fdt: - 176600000 ,  200000
[    0.000000] OF: fdt: - 177000000 ,  200000
[    0.000000] earlycon: uart8250 at MMIO32 0x0000000003100000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    0.000000] Found tegra_fbmem: 00800000@96085000
[    0.000000] Found lut_mem: 00002008@96081000
[    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 0x00000000fbc00000
[    0.000000] On node 0 totalpages: 1004029
[    0.000000]   DMA zone: 8192 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 521213 pages, LIFO batch:31
[    0.000000]   Normal zone: 7624 pages used for memmap
[    0.000000]   Normal zone: 482816 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: 988213
[    0.000000] Kernel command line: console=ttyS0,115200 root=/dev/mmcblk0p rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 isolcpus=1-2  video=tegrafb earlycon=uart8250,mmio32,0x3100000 nvdumper_reserved=0x1772e0000 gpt rootfs.slot_suffix= tegra_fbmem=0x800000@0x96085000 lut_mem=0x2008@0x96081000 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@0x175840000 sdhci_tegra.en_boot_part_access=1 root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 pcie_aspm=off
[    0.000000] PCIe ASPM is disabled
[    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: 29748(90%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Memory: 3144876K/4016116K available (15806K kernel code, 3040K rwdata, 6868K rodata, 8832K init, 620K bss, 117576K 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 - 0xffffff8008ff0000   ( 15808 KB)
[    0.000000]     .rodata : 0xffffff8008ff0000 - 0xffffff80096b0000   (  6912 KB)
[    0.000000]       .init : 0xffffff80096b0000 - 0xffffff8009f50000   (  8832 KB)
[    0.000000]       .data : 0xffffff8009f50000 - 0xffffff800a248008   (  3041 KB)
[    0.000000]        .bss : 0xffffff800a248008 - 0xffffff800a2e322c   (   621 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 - 0xffffffbf03dc8000   (    61 MB actual)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc0f7200000   (  3954 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.009336] Console: colour dummy device 80x25
[    0.014008] console [tty0] enabled
[    0.017571] bootconsole [uart8250] disabled
[    0.021956] kmemleak: Kernel memory leak detector disabled
[    0.021970] Calibrating delay loop (skipped), value calculated using timer frequency.. 62.50 BogoMIPS (lpj=125000)
[    0.021984] pid_max: default: 32768 minimum: 301
[    0.022293] Security Framework initialized
[    0.022449] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.022459] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.023049] ftrace: allocating 47836 entries in 187 pages
[    0.148855] sched-energy: Sched-energy-costs installed from DT
[    0.148873] ASID allocator initialised with 65536 entries
[    0.185346] tegra-id: chipid=21817.
[    0.185361] tegra-id: opt_subrevision=1.
[    0.185384] Tegra Revision: A02p SKU: 0xdc CPU Process: 0 SoC Process: 0
[    0.185396] DTS File Name: /home/mdev/my-bsp/workdir/Linux_for_Tegra/source/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t18x/lanai/kernel-dts/my-devicetree.dts
[    0.185411] DTB Build time: <unknown>
[    0.235008] CPU1: Booted secondary processor [4e0f0030]
[    0.266386] CPU2: Booted secondary processor [4e0f0030]
[    0.297412] CPU3: Booted secondary processor [411fd073]
[    0.329370] CPU4: Booted secondary processor [411fd073]
[    0.361364] CPU5: Booted secondary processor [411fd073]
[    0.361417] Brought up 6 CPUs
[    0.361450] SMP: Total of 6 processors activated.
[    0.361461] CPU features: detected feature: 32-bit EL0 Support
[    0.363554] CPU: All CPU(s) started at EL2
[    0.363642] alternatives: patching kernel code
[    0.365999] devtmpfs: initialized
[    0.388350] Initilizing CustomIPI irq domain
[    0.388506] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.388530] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.395996] pinctrl core: initialized pinctrl subsystem
[    0.396244] OS set in device tree is not L4T.
[    0.396419] regulator-dummy: no parameters
[    0.396568] Initializing plugin-manager
[    0.396630] Plugin module not found
[    0.397064] node /plugin-manager/fragement@0 match with odm-data enable-denver-wdt
[    0.397753] node /plugin-manager/fragement@3 match with odm-data enable-denver-wdt
[    0.400096] NET: Registered protocol family 16
[    0.401107] pstore: using zlib compression
[    0.401382] console [pstore-1] enabled
[    0.401393] pstore: Registered ramoops as persistent store backend
[    0.401405] ramoops: attached 0x200000@0xffe00000, ecc: 0/0
[    0.416926] cpuidle: using governor menu
[    0.417862] bpmp: waiting for handshake
[    0.417876] bpmp: handshake completed
[    0.417899] bpmp: synchronizing channels
[    0.417910] bpmp: channels synchronized
[    0.417921] bpmp: mail init ok
[    0.419349] arm-smmu 12000000.iommu: probing hardware configuration...
[    0.419365] arm-smmu 12000000.iommu: SMMUv2 with:
[    0.419377] arm-smmu 12000000.iommu: 	stage 1 translation
[    0.419389] arm-smmu 12000000.iommu: 	stage 2 translation
[    0.419401] arm-smmu 12000000.iommu: 	nested translation
[    0.419415] arm-smmu 12000000.iommu: 	stream matching with 128 register groups, mask 0x7f80
[    0.419433] arm-smmu 12000000.iommu: SMMU address space size (0x800000) differs from mapped region size (0x1000000)!
[    0.419451] arm-smmu 12000000.iommu: 	64 context banks (0 stage-2 only)
[    0.419464] arm-smmu 12000000.iommu: 	Stage-1: 39-bit VA -> 48-bit IPA
[    0.419476] arm-smmu 12000000.iommu: 	Stage-2: 39-bit IPA -> 48-bit PA
[    0.421273] vdso: 2 pages (1 code @ ffffff8008ff7000, 1 data @ ffffff8009f54000)
[    0.421303] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.424575] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[    0.425595] Registering BPMP clocks...
[    0.425680] tegra_bpmp_clk_init: clock init ok (638 clks)
[    0.426144] Serial: AMBA PL011 UART driver
[    0.427059] tegra_powergate_init: DONE
[    0.427075] DTS File Name: /home/mdev/my-bsp/workdir/Linux_for_Tegra/source/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t18x/lanai/kernel-dts/my-devicetree.dts
[    0.427101] DTB Build time: <unknown>
[    0.428341] Tegra reboot handler registered.
[    0.429490] tegra-pmc c360000.pmc: scratch reg offset dts data not present
[    0.429568] tegra-pmc: get_secure_pmc_setting: done secure_pmc=0
[    0.429591] tegra-pmc: ### PMC reset source: TEGRA_POWER_ON_RESET
[    0.429602] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_L0
[    0.429614] tegra-pmc: ### PMC reset status reg: 0x0
[    0.429774] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[    0.429799] tegra-pmc c360000.pmc: IO padctrl driver initialized
[    0.430076] iommu: Adding device 3460000.sdhci to group 0
[    0.431197] iommu: Adding device 3160000.i2c to group 1
[    0.431616] iommu: Adding device c240000.i2c to group 2
[    0.431930] iommu: Adding device 3180000.i2c to group 3
[    0.432225] iommu: Adding device 3190000.i2c to group 4
[    0.432608] iommu: Adding device 31b0000.i2c to group 5
[    0.432940] iommu: Adding device 31c0000.i2c to group 6
[    0.433251] iommu: Adding device c250000.i2c to group 7
[    0.433560] iommu: Adding device 31e0000.i2c to group 8
[    0.435053] iommu: Adding device 3210000.spi to group 9
[    0.435354] iommu: Adding device c260000.spi to group 10
[    0.436004] iommu: Adding device 3100000.serial to group 11
[    0.436315] iommu: Adding device 3110000.serial to group 12
[    0.436611] iommu: Adding device 3130000.serial to group 13
[    0.437788] iommu: Adding device 2490000.ether_qos to group 14
[    0.437811] arm-smmu: forcing sodev map for 2490000.ether_qos
[    0.438665] iommu: Adding device b000000.rtcpu to group 15
[    0.440407] iommu: Adding device 13e10000.host1x to group 16
[    0.440704] iommu: Adding device 13e10000.host1x:ctx0 to group 17
[    0.441018] iommu: Adding device 13e10000.host1x:ctx1 to group 18
[    0.441322] iommu: Adding device 13e10000.host1x:ctx2 to group 19
[    0.441619] iommu: Adding device 13e10000.host1x:ctx3 to group 20
[    0.441911] iommu: Adding device 13e10000.host1x:ctx4 to group 21
[    0.442210] iommu: Adding device 13e10000.host1x:ctx5 to group 22
[    0.442506] iommu: Adding device 13e10000.host1x:ctx6 to group 23
[    0.442799] iommu: Adding device 13e10000.host1x:ctx7 to group 24
[    0.443237] iommu: Adding device 150c0000.nvcsi to group 25
[    0.443805] iommu: Adding device 15700000.vi to group 26
[    0.444122] iommu: Adding device 15600000.isp to group 27
[    0.444327] iommu: Adding device 15200000.dc_common to group 28
[    0.444382] platform 15200000.dc_common: OF IOVA linear map 0x96085000 size (0x800000)
[    0.444438] platform 15200000.dc_common: OF IOVA linear map 0x96081000 size (0x2008)
[    0.444943] iommu: Adding device 15200000.nvdisplay to group 29
[    0.445271] iommu: Adding device 15210000.nvdisplay to group 30
[    0.445608] iommu: Adding device 15340000.vic to group 31
[    0.445819] iommu: Adding device 154c0000.nvenc to group 32
[    0.446022] iommu: Adding device 15480000.nvdec to group 33
[    0.446327] iommu: Adding device 15380000.nvjpg to group 34
[    0.446533] iommu: Adding device 15500000.tsec to group 35
[    0.446733] iommu: Adding device 15100000.tsecb to group 36
[    0.447636] iommu: Adding device 15810000.se to group 37
[    0.447851] iommu: Adding device 15820000.se to group 38
[    0.448051] iommu: Adding device 15830000.se to group 39
[    0.448248] iommu: Adding device 15840000.se to group 40
[    0.449047] iommu: Adding device smmu_test to group 41
[    0.449627] mc: mapped MMIO address: 0xffffff800a7e0000 -> 0x2c10000
[    0.449652] mc: mapped MMIO address: 0xffffff800a9b0000 -> 0x2c20000
[    0.449672] mc: mapped MMIO address: 0xffffff800a9d0000 -> 0x2c30000
[    0.449692] mc: mapped MMIO address: 0xffffff800a9f0000 -> 0x2c40000
[    0.449713] mc: mapped MMIO address: 0xffffff800aa10000 -> 0x2c50000
[    0.449729] nv-tegra-mc 2c10000.mc: No mssnvlink node
[    0.449748] mc-err: mcerr ops are set to t18x
[    0.449904] dram-ecc: DRAM ECC disabled-MC_ECC_CONTROL:0x0000000c
[    0.450686] iommu: Adding device 3530000.xhci to group 42
[    0.450711] arm-smmu: forcing sodev map for 3530000.xhci
[    0.451123] iommu: Adding device 3550000.xudc to group 43
[    0.451145] arm-smmu: forcing sodev map for 3550000.xudc
[    0.451661] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CNTRL_83 = 0x10a
[    0.451681] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CTRL_0 = 3
[    0.451696] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CNTRL_24(PMU_INT) = 256
[    0.452290] iommu: Adding device 17000000.gp10b to group 44
[    0.453236] tegra-reset 5000000.clock: registered 193 resets.
[    0.455162] iommu: Adding device d000000.bpmp to group 45
[    0.455373] bpmp: ping status is 0
[    0.455455] bpmp d000000.bpmp: firmware tag is 91572a54614f84d0fd0c270beec2c56f
[    0.457011] bpmp d000000.bpmp: probe ok
[    0.459531] iommu: Adding device 2600000.dma to group 46
[    0.460333] GPIO line 424 (camera-control-output-low) hogged as output/low
[    0.460379] GPIO line 427 (camera-control-output-low) hogged as output/low
[    0.460430] GPIO line 408 (w-disable1) hogged as output/high
[    0.460476] GPIO line 410 (w-disable2) hogged as output/high
[    0.460653] gpiochip_setup_dev: registered GPIOs 320 to 511 on device: gpiochip0 (tegra-gpio)
[    0.464466] gpiochip_setup_dev: registered GPIOs 256 to 319 on device: gpiochip1 (tegra-gpio-aon)
[    0.466053] iommu: Adding device 10003000.pcie-controller to group 47
[    0.466079] arm-smmu: forcing sodev map for 10003000.pcie-controller
[    0.466395] iommu: Adding device sound to group 48
[    0.466716] iommu: Adding device 3510000.hda to group 49
[    0.473145] iommu: Adding device c1a0000.aon to group 50
[    0.473703] vdd-1v8-ap: 1800 mV 
[    0.473916] vdd-ac-bat: 5000 mV 
[    0.474107] vdd-3v3-disp-cvb: 3300 mV 
[    0.474391] vdd-3v3-cvb: 3300 mV 
[    0.474584] vdd-1v8-cvb: 1800 mV 
[    0.474778] vdd-fan: 5000 mV 
[    0.474988] vdd-hdmi-5v0: 5000 mV 
[    0.475182] vdd_sys_en: 1200 mV 
[    0.501856] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.504345] eventlib_kernel: keventlib is initialized, test id: 0
[    0.504539] SCSI subsystem initialized
[    0.504639] libata version 3.00 loaded.
[    0.504760] usbcore: registered new interface driver usbfs
[    0.504805] usbcore: registered new interface driver hub
[    0.504842] usbcore: registered new device driver usb
[    0.506548] random: fast init done
[    0.513851] max77620 4-003c: PMIC Version OTP:0x45 and ES:0x8
[    0.517508] vddio-ddr: at 1125 mV 
[    0.521383] avdd_dsi_csi: 1200 mV 
[    0.525382] vdd-1v8: 1800 mV 
[    0.529382] vdd-3v3-sys: 3300 mV 
[    0.530255] spmic-ldo0: at 1800 mV 
[    0.530890] spmic-ldo1: at 800 mV 
[    0.533382] vddio-3v3: 3300 mV 
[    0.534037] vddio-sdmmc1: 1800 <--> 3300 mV at 3300 mV 
[    0.537382] vdd-rtc: at 800 mV 
[    0.538061] avdd-ts-hv: 1800 <--> 3300 mV at 1800 mV 
[    0.541381] spmic-ldo6: at 800 mV 
[    0.545380] vdd-pex-1v00: 1000 mV 
[    0.545965] dvdd-pex: 1000 mV 
[    0.547934] GPIO line 253 (spmic_gpio_input) hogged as input
[    0.548074] GPIO line 254 (spmic_gpio_input) hogged as input
[    0.548248] gpiochip_setup_dev: registered GPIOs 248 to 255 on device: gpiochip2 (max77620-gpio)
[    0.548433] max77620 4-003c: max77620 probe successful
[    0.548803] media: Linux media interface: v0.10
[    0.548837] Linux video capture interface: v2.00
[    0.551078] pps_core: LinuxPPS API ver. 1 registered
[    0.551092] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.551123] PTP clock support registered
[    0.551324] tegra_wdt_t18x 30c0000.watchdog: Expiry count is deprecated
[    0.551516] tegra_wdt_t18x 30c0000.watchdog: Tegra WDT init timeout = 120 sec
[    0.551554] tegra_wdt_t18x 30c0000.watchdog: Registered successfully
[    0.552685] trusty trusty: trusty version: Built: 09:23:15 Nov 22 2022 
[    0.552714] trusty trusty: selected api version: 3 (requested 3)
[    0.553614] Advanced Linux Sound Architecture Driver Initialized.
[    0.554001] Bluetooth: Core ver 2.22
[    0.554037] NET: Registered protocol family 31
[    0.554049] Bluetooth: HCI device and connection manager initialized
[    0.554064] Bluetooth: HCI socket layer initialized
[    0.554078] Bluetooth: L2CAP socket layer initialized
[    0.554099] Bluetooth: SCO socket layer initialized
[    0.557964] vdd-sys-bl: 3300 mV 
[    0.559470] camchar: rtcpu character device driver loaded
[    0.559901] gpio tegra-gpio wake61 for gpio=92(L:4)
[    0.559983] extcon-gpio-states external-connection:extcon@1: Cable state:1, cable id:1
[    0.560907] clocksource: Switched to clocksource arch_sys_counter
[    0.585631] VFS: Disk quotas dquot_6.6.0
[    0.585721] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.585978] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    0.586427] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000c6000000, size=0x2a000000
[    0.586561] cma: enabled page replacement for spfn=c6000, epfn=f0000
[    0.586577] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful
[    0.586596] nvmap: nvmap_select_cache_ops() nvmap cache ops set to roc
[    0.586613] nvmap_page_pool_init: Total RAM pages: 974635
[    0.586625] nvmap_page_pool_init: nvmap page pool size: 121829 pages (475 MB)
[    0.586679] nvmap_background_zero_thread: PP zeroing thread starting.
[    0.587140] misc nvmap: created heap vpr base 0x00000000c6000000 size (688128KiB)
[    0.589111] tegra-gpcdma 2600000.dma: GPC DMA driver register 32 channels
[    0.594542] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type BCPU-therm
[    0.594749] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type MCPU-therm
[    0.595104] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
[    0.595193] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[    0.595343] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
[    0.595571] la/ptsa driver initialized.
[    0.595589] pre_t19x_iso_plat_init(): iso emc max clk=1600000KHz
[    0.595600] pre_t19x_iso_plat_init(): max_iso_bw=23040000KB
[    0.595894] NET: Registered protocol family 2
[    0.595975] IP idents hash table entries: 65536 (order: 7, 524288 bytes)
[    0.597603] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.597774] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.598080] TCP: Hash tables configured (established 32768 bind 32768)
[    0.598138] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.598207] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.598475] NET: Registered protocol family 1
[    0.598785] RPC: Registered named UNIX socket transport module.
[    0.598800] RPC: Registered udp transport module.
[    0.598810] RPC: Registered tcp transport module.
[    0.598820] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.598834] PCI: CLS 0 bytes, default 64
[    0.598947] Trying to unpack rootfs image as initramfs...
[    0.807885] Freeing initrd memory: 7068K
[    0.822429] host1x 13e10000.host1x: initialized
[    0.823745] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    0.825796] audit: initializing netlink subsys (disabled)
[    0.825843] audit: type=2000 audit(0.704:1): initialized
[    0.826236] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    0.832663] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.833659] ntfs: driver 2.1.32 [Flags: R/W].
[    0.834171] 9p: Installing v9fs 9p2000 file system support
[    0.836217] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 239)
[    0.836292] io scheduler noop registered
[    0.836503] io scheduler cfq registered (default)
[    0.839387] gic 2a41000.agic-controller: GIC IRQ controller registered
[    0.903185] iommu: Adding device aconnect@2a41000:adsp_audio to group 51
[    0.924182] iommu: Adding device 2993000.adsp to group 52
[    0.924749] tegra-aconnect aconnect@2a41000: Tegra ACONNECT bus registered
[    0.929538] tegra-pwm 3280000.pwm: PWM clk can sleep in ops
[    0.930429] tegra-pwm 3290000.pwm: PWM clk can sleep in ops
[    0.931232] tegra-pwm 32a0000.pwm: PWM clk can sleep in ops
[    0.932030] tegra-pwm c340000.pwm: PWM clk can sleep in ops
[    0.934022] tegra-pcie 10003000.pcie-controller: 2x1, 1x1, 1x1 configuration
[    0.934755] tegra-pcie 10003000.pcie-controller: PCIE: Enable power rails
[    0.935055] tegra-pcie 10003000.pcie-controller: probing port 0, using 2 lanes
[    0.935263] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[    0.935386] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=1500000, vi_iso_bw=1500000, max_bw=1500000
[    0.937148] tegra-pcie 10003000.pcie-controller: probing port 2, using 1 lanes
[    0.937441] tsec 15500000.tsec: initialized
[    0.938327] tsec 15100000.tsecb: initialized
[    0.940504] nvdec 15480000.nvdec: initialized
[    0.944311] falcon 15340000.vic: initialized
[    0.945438] falcon 154c0000.nvenc: initialized
[    0.946478] falcon 15380000.nvjpg: initialized
[    0.948238] iommu_context_dev 13e10000.host1x:ctx0: initialized (streamid=56)
[    0.949603] iommu_context_dev 13e10000.host1x:ctx1: initialized (streamid=57)
[    0.950939] iommu_context_dev 13e10000.host1x:ctx2: initialized (streamid=58)
[    0.952289] iommu_context_dev 13e10000.host1x:ctx3: initialized (streamid=59)
[    0.953692] iommu_context_dev 13e10000.host1x:ctx4: initialized (streamid=60)
[    0.955045] iommu_context_dev 13e10000.host1x:ctx5: initialized (streamid=61)
[    0.956387] iommu_context_dev 13e10000.host1x:ctx6: initialized (streamid=62)
[    0.957788] iommu_context_dev 13e10000.host1x:ctx7: initialized (streamid=63)
[    0.960399] tegradccommon 15200000.dc_common: host1x channel mapped
[    0.960421] tegradccommon 15200000.dc_common: dc_common syncpt # 1 allocated
[    0.960466] tegradccommon 15200000.dc_common: dma mapping done
[    0.961180] tegradc 15200000.nvdisplay: disp0 connected to head0->/host1x/sor1
[    0.961236] generic_infoframe_type: 0x87
[    0.961318] tegradc 15200000.nvdisplay: DT parsed successfully
[    0.961351] tegradc 15200000.nvdisplay: Display dc.ffffff800af50000 registered with id=0
[    0.967049] tegra_nvdisp_bandwidth_register_max_config: max config iso bw = 16727000 KB/s
[    0.967072] tegra_nvdisp_bandwidth_register_max_config: max config EMC floor = 665600000 Hz
[    0.967089] tegra_nvdisp_bandwidth_register_max_config: max config hubclk = 357620000 Hz
[    0.967250] tegradc 15200000.nvdisplay: vblank syncpt # 8 for dc 0
[    0.967267] tegradc 15200000.nvdisplay: vpulse3 syncpt # 9 for dc 0
[    0.968245] tegradc 15200000.nvdisplay: Bootloader disp_param detected. Detected mode: 1920x1080 (on 0x0mm) pclk=148350937
[    0.970241] tegradc 15200000.nvdisplay: hdmi: invalid prod list prod_list_hdmi_board
[    0.970262] tegradc 15200000.nvdisplay: hdmi: tegra_hdmi_tmds_range_read(bd) failed
[    0.972547] tegradc 15200000.nvdisplay: probed
[    0.973666] tegra-adma 2930000.adma: Tegra210 ADMA driver registered 32 channels
[    0.974322] tegra-fuse-burn 3820000.efuse:efuse-burn: shutdown limit check disabled
[    0.974360] tegra-fuse-burn 3820000.efuse:efuse-burn: Fuse burn driver initialized
[    0.974763] kfuse 3830000.kfuse: initialized
[    0.975977] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[    0.978849] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.980962] console [ttyS0] disabled
[    0.981010] 3100000.serial: ttyS0 at MMIO 0x3100000 (irq = 33, base_baud = 25500000) is a Tegra
[    1.362642] tegra-pcie 10003000.pcie-controller: link 2 down, retrying
[    1.766895] tegra-pcie 10003000.pcie-controller: link 2 down, retrying
[    2.171168] tegra-pcie 10003000.pcie-controller: link 2 down, retrying
[    2.173186] tegra-pcie 10003000.pcie-controller: link 2 down, ignoring
[    2.300045] tegra-pcie 10003000.pcie-controller: PCI host bridge to bus 0000:00
[    2.300049] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    2.300052] pci_bus 0000:00: root bus resource [mem 0x40100000-0x47ffffff]
[    2.300056] pci_bus 0000:00: root bus resource [mem 0x48000000-0x7fffffff pref]
[    2.300059] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.300089] pci 0000:00:01.0: [10de:10e5] type 01 class 0x060400
[    2.300204] pci 0000:00:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.300383] iommu: Adding device 0000:00:01.0 to group 53
[    2.300391] arm-smmu: forcing sodev map for 0000:00:01.0
[    2.300460] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    2.300632] pci 0000:01:00.0: [1d79:2263] type 00 class 0x010802
[    2.300712] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[    2.301390] iommu: Adding device 0000:01:00.0 to group 54
[    2.301395] arm-smmu: forcing sodev map for 0000:01:00.0
[    2.301440] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    2.301483] pci 0000:00:01.0: BAR 14: assigned [mem 0x40100000-0x401fffff]
[    2.301489] pci 0000:01:00.0: BAR 0: assigned [mem 0x40100000-0x40103fff 64bit]
[    2.301530] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.301538] pci 0000:00:01.0:   bridge window [mem 0x40100000-0x401fffff]
[    2.301550] PCIE: ASPM not enabled
[    2.301734] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    2.301737] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    2.301744] pcie_pme 0000:00:01.0:pcie001: service driver pcie_pme loaded
[    2.301828] aer 0000:00:01.0:pcie002: service driver aer loaded
[    3.299459] console [ttyS0] enabled
[    3.299779] Console: switching to colour frame buffer device 240x67
[    3.302075] 3110000.serial: ttyTHS1 at MMIO 0x3110000 (irq = 34, base_baud = 0) is a TEGRA_UART
[    3.304954] serial-tegra 3130000.serial: RX in PIO mode
[    3.305548] 3130000.serial: ttyTHS3 at MMIO 0x3130000 (irq = 35, base_baud = 0) is a TEGRA_UART
[    3.306503] [drm] Initialized
[    3.332750] brd: module loaded
[    3.338938] tegradc 15200000.nvdisplay: fb registered
[    3.344242] gpio tegra-gpio wake21 for gpio=121(P:1)
[    3.345434] loop: module loaded
[    3.345480] tegra_profiler: version: 1.145, samples/io: 49/28
[    3.345553] tegra_profiler: auth: init
[    3.346120] THERMAL EST: found 3 subdevs
[    3.346123] THERMAL EST num_resources: 0
[    3.346126] [THERMAL EST subdev 0]
[    3.346130] [THERMAL EST subdev 1]
[    3.346133] [THERMAL EST subdev 2]
[    3.346141] THERMAL EST: Found 2 profiles, default profile is quiet
[    3.346402] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type thermal-fan-est
[    3.346404] THERMAL EST: thz register success.
[    3.346491] THERMAL EST: end of probe, return err: 0
[    3.347066] sd: No Scsi addr parsed to reserve index
[    3.347087] hisi_sas: driver version v1.6
[    3.347693] nvme nvme0: pci function 0000:01:00.0
[    3.347725] nvme 0000:01:00.0: enabling device (0000 -> 0002)
[    3.424464] tegra_nvdisp_handle_pd_enable: Unpowergated Head0 pd
[    3.430566] tegra_nvdisp_handle_pd_enable: Unpowergated Head1 pd
[    3.437663] Parent Clock set for DC plld2
[    3.442916] tun: Universal TUN/TAP device driver, 1.6
[    3.447995] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    3.454845] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    3.460697] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    3.466666] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    3.473749] igb: Copyright (c) 2007-2014 Intel Corporation.
[    3.474198]  nvme0n1: p1
[    3.481926] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    3.489763] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    3.495721] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k
[    3.497967] tegradc 15200000.nvdisplay: hdmi: tmds rate:148351K prod-setting:prod_c_hdmi_111m_223m
[    3.498390] tegradc 15200000.nvdisplay: hdmi: get RGB quant from REG programmed by BL.
[    3.498399] tegradc 15200000.nvdisplay: hdmi: BL set VIC 0
[    3.498402] tegradc 15200000.nvdisplay: hdmi: get YCC quant from REG programmed by BL.
[    3.533651] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    3.780931] eqos 2490000.ether_qos: can't get pllrefe_vcoout clk (-2)
[    3.789367] eqos 2490000.ether_qos: failed to read eqos_auto_cal_config_0_reg
[    3.796943] eqos 2490000.ether_qos: Setting local MAC: 48 b0 2d 88 9a 32
[    3.803667] Using phyrst_lpmode = 1 from DT
[    3.809996] PPP generic driver version 2.4.2
[    3.814394] PPP BSD Compression module registered
[    3.819109] PPP Deflate Compression module registered
[    3.824176] PPP MPPE Compression module registered
[    3.828977] NET: Registered protocol family 24
[    3.833465] usbcore: registered new interface driver r8152
[    3.838997] usbcore: registered new interface driver asix
[    3.844431] usbcore: registered new interface driver ax88179_178a
[    3.850558] usbcore: registered new interface driver cdc_ether
[    3.856420] usbcore: registered new interface driver net1080
[    3.862112] usbcore: registered new interface driver cdc_subset
[    3.868064] usbcore: registered new interface driver zaurus
[    3.873681] usbcore: registered new interface driver cdc_ncm
[    3.879453] VFIO - User Level meta-driver version: 0.3
[    3.885432] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.891981] ehci-pci: EHCI PCI platform driver
[    3.896464] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.902654] ohci-pci: OHCI PCI platform driver
[    3.907136] ohci-platform: OHCI generic platform driver
[    3.915842] tegra-xusb 3530000.xhci: USB2 port 0 has OTG_CAP
[    3.922952] tegra-xusb 3530000.xhci: extcon 0: ffffffc0ef9ac400 id
[    3.929877] usbcore: registered new interface driver uas
[    3.935229] tegra-xusb 3530000.xhci: Firmware timestamp: 2020-07-06 13:39:28 UTC, Version: 55.18 release
[    3.935251] tegra-xusb 3530000.xhci: xHCI Host Controller
[    3.935264] tegra-xusb 3530000.xhci: new USB bus registered, assigned bus number 1
[    3.935994] tegra-xusb 3530000.xhci: hcc params 0x0184fd25 hci version 0x100 quirks 0x00050810
[    3.936026] tegra-xusb 3530000.xhci: irq 68, io mem 0x03530000
[    3.936155] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.936159] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.936162] usb usb1: Product: xHCI Host Controller
[    3.936165] usb usb1: Manufacturer: Linux 4.9.299-tegra xhci-hcd
[    3.936167] usb usb1: SerialNumber: 3530000.xhci
[    3.945933] hub 1-0:1.0: USB hub found
[    3.945977] hub 1-0:1.0: 4 ports detected
[    3.946332] tegra-xusb 3530000.xhci: xHCI Host Controller
[    3.946339] tegra-xusb 3530000.xhci: new USB bus registered, assigned bus number 2
[    3.946463] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    3.946467] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.946470] usb usb2: Product: xHCI Host Controller
[    3.946473] usb usb2: Manufacturer: Linux 4.9.299-tegra xhci-hcd
[    3.946475] usb usb2: SerialNumber: 3530000.xhci
[    3.946748] hub 2-0:1.0: USB hub found
[    3.946775] hub 2-0:1.0: 3 ports detected
[    3.947207] Wake76 for irq=199
[    3.947209] Wake77 for irq=199
[    3.947210] Wake78 for irq=199
[    3.947211] Wake79 for irq=199
[    3.947213] Wake80 for irq=199
[    3.947214] Wake81 for irq=199
[    3.947215] Wake82 for irq=199
[    3.947239] tegra-xusb 3530000.xhci: Upgrade port 0 to USB3.0
[    3.947243] tegra-xusb 3530000.xhci: Upgrade port 1 to USB3.0
[    3.968963] usb usb1: usb_suspend_both: status 0
[    4.049009] usb usb2: usb_suspend_both: status 0
[    4.102926] usbcore: registered new interface driver usb-storage
[    4.109000] usbcore: registered new interface driver usbserial
[    4.117891] tegra-xudc-new 3550000.xudc: device count: 1
[    4.124243] tegra-xudc-new 3550000.xudc: USB charger detection disabled
[    4.130874] tegra-xudc-new 3550000.xudc: vbus state: 1
[    4.136027] tegra-xudc-new 3550000.xudc: device mode on: 0
[    4.141649] tegra-xudc-new 3550000.xudc: active: 0 => 1
[    4.147297] mousedev: PS/2 mouse device common for all mice
[    4.152931] usbcore: registered new interface driver xpad
[    4.286374] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[    4.294752] Wake73 for irq=42
[    4.298909] rtc rtc1: alarm rtc device
[    4.302679] tegra_rtc c2a0000.rtc: rtc core: registered c2a0000.rtc as rtc1
[    4.309659] tegra_rtc c2a0000.rtc: Tegra internal Real Time Clock
[    4.315902] i2c /dev entries driver
[    4.320660] i2c i2c-2: Added multiplexed i2c bus 9
[    4.325709] i2c i2c-2: Added multiplexed i2c bus 10
[    4.330604] i2c-mux-gpio cam_i2cmux: 2 port mux on 3180000.i2c adapter
[    4.337539] imx219 9-0010: tegracam sensor driver:imx219_v2.0.6
[    4.366817] tegra-i2c 3180000.i2c: no acknowledge from address 0x10
[    4.373136] imx219 9-0010: imx219_board_setup: error during i2c read probe (-121)
[    4.380686] imx219 9-0010: board setup failed
[    4.385088] imx219: probe of 9-0010 failed with error -121
[    4.390865] imx219 10-0010: tegracam sensor driver:imx219_v2.0.6
[    4.420078] tegra-i2c 3180000.i2c: no acknowledge from address 0x10
[    4.426394] imx219 10-0010: imx219_board_setup: error during i2c read probe (-121)
[    4.434015] imx219 10-0010: board setup failed
[    4.438509] imx219: probe of 10-0010 failed with error -121
[    4.445004] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[    4.455838] parse_throttle_dt_data: Num cap clks = 4
[    4.460821] parse_throttle_dt_data: clk=mcpu type=1
[    4.465704] parse_throttle_dt_data: clk=bcpu type=2
[    4.470591] parse_throttle_dt_data: clk=gpu type=4
[    4.475388] parse_throttle_dt_data: clk=emc type=3
[    4.480862] tegra_throttle_probe: probe successful. #cdevs=4
[    4.487027] FAN dev name: pwm-fan
[    4.490402] FAN:gpio request success.
[    4.494077] FAN: can't find tach_gpio
[    4.497749] pwm_fan_driver pwm-fan: Found 2 profiles, default profile is quiet
[    4.504991] pwm_fan_driver pwm-fan: cap state:4, cap pwm:255
[    4.510830] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[    4.517454] pwm_fan_driver pwm-fan: tach period: 1000
[    4.522984] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, state:2
[    4.530560] pwm_fan_driver pwm-fan: index 1: pwm=130, rpm=1000, rru=2, rrd=2, state:2
[    4.538395] pwm_fan_driver pwm-fan: index 2: pwm=160, rpm=2000, rru=1, rrd=1, state:2
[    4.546224] pwm_fan_driver pwm-fan: index 3: pwm=200, rpm=3000, rru=1, rrd=1, state:2
[    4.554057] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1, state:3
[    4.561888] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1, state:3
[    4.569720] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1, state:3
[    4.577552] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1, state:4
[    4.585381] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1, state:4
[    4.593297] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1, state:4
[    4.601711] tegra-oc-event d280000.soctherm-oc-event: OC driver initialized
[    4.609618] device-mapper: uevent: version 1.0.3
[    4.614562] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    4.623247] CPU EMC frequency mapping table: from device tree
[    4.630748] cpufreq: platform driver Initialization: pass
[    4.636703] cpuidle: Initializing cpuidle driver init for Denver cluster
[    4.643528] cpuidle: Initializing cpuidle driver init for A57 cluster
[    4.650750] sdhci: Secure Digital Host Controller Interface driver
[    4.656934] sdhci: Copyright(c) Pierre Ossman
[    4.661293] sdhci-pltfm: SDHCI platform and OF driver helper
[    4.667922] sdhci-tegra 3460000.sdhci: Client registration for eMC Successful
[    4.676648] CMDQ: cmdq_platfm_init successful
[    4.681369] sdhci-tegra 3440000.sdhci: runtime pm disabled
[    4.687230] CQE: CMD_TIMING bit set for R1B DCMD
[    4.692143] sdhci-tegra 3440000.sdhci: Client registration for eMC Successful
[    4.732858] mmc0: SDHCI controller on 3460000.sdhci [3460000.sdhci] using ADMA 64-bit with 64 bit addr
[    4.744855] mmc1: SDHCI controller on 3440000.sdhci [3440000.sdhci] using ADMA 64-bit with 64 bit addr
[    4.760477] mmc1: error -110 whilst initialising SDIO card
[    4.787829] mmc0: mmc_decode_ext_csd: CMDQ supported: depth: 31, cmdq_support: 1
[    4.809782] mmc0: periodic cache flush enabled
[    4.814288] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    4.820952] mmcblk0: mmc0:0001 DG4016 14.7 GiB 
[    4.825649] mmcblk0boot0: mmc0:0001 DG4016 partition 1 4.00 MiB
[    4.831735] mmcblk0boot1: mmc0:0001 DG4016 partition 2 4.00 MiB
[    4.841855] mmcblk0rpmb: mmc0:0001 DG4016 partition 3 4.00 MiB
[    4.853445]  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
[    5.944867] tegra-xusb 3530000.xhci: entering ELPG
[    5.952237] tegra-xusb 3530000.xhci: entering ELPG done
[   13.656876] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   13.663239] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   13.669862] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   13.674915] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   13.681525] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   13.687008] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   13.692753] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   13.697889] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   13.703144] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   13.709905] extcon-disp-state external-connection:disp-state: cable 47 state 1
[   13.717126] Extcon AUX1(HDMI) enable
[   13.721057] tegradc 15210000.nvdisplay: disp1 connected to head1->/host1x/sor
[   13.728277] tegradc 15210000.nvdisplay: DT parsed successfully
[   13.734131] tegradc 15210000.nvdisplay: Display dc.ffffff800ba90000 registered with id=1
[   13.742371] tegradc 15210000.nvdisplay: vblank syncpt # 11 for dc 1
[   13.748644] tegradc 15210000.nvdisplay: vpulse3 syncpt # 12 for dc 1
[   13.761913] tegradc 15210000.nvdisplay: probed
[   13.766503] tegradc 15210000.nvdisplay: fb registered
[   13.774746] hpd: state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[   13.781921] hpd: switching from state 7 (Takeover from bootloader) to state 0 (Reset)
[   13.789764] hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
[   13.795260] tegradc 15210000.nvdisplay: blank - powerdown
[   13.800670] extcon-disp-state external-connection:disp-state: cable 44 state 0 already set.
[   13.809021] Extcon DP: HPD disabled
[   13.812509] hpd: hpd_switch 0
[   13.815486] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[   13.822160] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[   13.822217] tegra-se-nvhost 15810000.se: initialized
[   13.833079] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[   13.840029] tegra-se-nvhost 15810000.se: tegra_se_probe: complete
[   13.846651] tegra-se-nvhost 15820000.se: initialized
[   13.852587] tegra-se-nvhost 15820000.se: tegra_se_probe: complete
[   13.859170] tegra-se-nvhost 15830000.se: initialized
[   13.864960] tegra-se-nvhost 15830000.se: tegra_se_probe: complete
[   13.871530] tegra-se-nvhost 15840000.se: initialized
[   13.877431] tegra-se-nvhost 15840000.se: tegra_se_probe: complete
[   13.884276] tegra-se-elp 3ad0000.se_elp: tegra_se_elp_probe: complete
[   13.890857] hidraw: raw HID events driver (C) Jiri Kosina
[   13.897216] usbcore: registered new interface driver usbhid
[   13.902792] usbhid: USB HID core driver
[   13.909337] ashmem: initialized
[   13.914612] tegra186-cam-rtcpu b000000.rtcpu: Trace buffer configured at IOVA=0xbff00000
[   13.924377] tegra-ivc ivc-b000000.rtcpu: region 0: iova=0xbfef0000-0xbfefdb7f size=56192
[   13.932802] tegra-ivc ivc-b000000.rtcpu:echo@0: echo: ver=0 grp=1 RX[16x64]=0x1000-0x1480 TX[16x64]=0x1480-0x1900
[   13.943176] tegra-ivc ivc-b000000.rtcpu:vinotify@12c0: vinotify: ver=0 grp=1 RX[64x128]=0x1900-0x3980 TX[64x128]=0x3980-0x5a00
[   13.954624] tegra186-cam-rtcpu b000000.rtcpu: no priority specified, using 99 as default
[   13.963361] tegra-ivc ivc-b000000.rtcpu:mods@32c0: mods: ver=0 grp=1 RX[1x64]=0x5a00-0x5ac0 TX[1x64]=0x5ac0-0x5b80
[   13.973786] tegra-ivc ivc-b000000.rtcpu:ivccontrol@52c0: ivccontrol: ver=0 grp=1 RX[16x320]=0x5b80-0x7000 TX[16x320]=0x7000-0x8480
[   13.985558] tegra-capture-ivc ivc-b000000.rtcpu:ivccontrol@52c0: no priority specified, using 99 as default
[   13.995336] tegra-ivc ivc-b000000.rtcpu:ivccapture@72c0: ivccapture: ver=0 grp=1 RX[16x64]=0x8480-0x8900 TX[16x64]=0x8900-0x8d80
[   14.006933] tegra-capture-ivc ivc-b000000.rtcpu:ivccapture@72c0: no priority specified, using 99 as default
[   14.016710] tegra-ivc ivc-b000000.rtcpu:dbg@7c00: dbg: ver=0 grp=1 RX[1x384]=0x8d80-0x8f80 TX[1x384]=0x8f80-0x9180
[   14.027154] tegra-ivc ivc-b000000.rtcpu:dbg@7e00: dbg: ver=0 grp=1 RX[1x8192]=0x9180-0xb200 TX[1x8192]=0xb200-0xd280
[   14.037964] tegra186-cam-rtcpu b000000.rtcpu: using cam RTCPU IRQ (48)
[   14.044498] tegra186-cam-rtcpu b000000.rtcpu: tegra_camrtc_mon_create is successful
[   14.052734] tegra186-cam-rtcpu b000000.rtcpu: firmware version cpu=sce cmd=5 sha1=c73bbe92930645be44530c166eb578bfbb9499c3
[   14.065331] tegra_aon c1a0000.aon: tegra aon driver probe OK
[   14.071387] tegra186-aondbg aondbg: aondbg driver probe() OK
[   14.077442] register_ari_mca_banks: Registered MCA ROC:IOB
[   14.083244] register_ari_mca_banks: Registered MCA ROC:CCE
[   14.089473] tegra18-bridge 2390000.axi2apb: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.098255] tegra18-bridge 2390000.axi2apb: enabled timeout = 9894000
[   14.104695] tegra18-bridge 2390000.axi2apb: bridge probed OK
[   14.110396] tegra18-bridge 23a0000.axi2apb: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.119180] tegra18-bridge 23a0000.axi2apb: enabled timeout = 9894000
[   14.125615] tegra18-bridge 23a0000.axi2apb: bridge probed OK
[   14.131320] tegra18-bridge 23b0000.axi2apb: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.140100] tegra18-bridge 23b0000.axi2apb: enabled timeout = 9894000
[   14.146538] tegra18-bridge 23b0000.axi2apb: bridge probed OK
[   14.152236] tegra18-bridge 23c0000.axi2apb: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.161018] tegra18-bridge 23c0000.axi2apb: enabled timeout = 9894000
[   14.167455] tegra18-bridge 23c0000.axi2apb: bridge probed OK
[   14.173154] tegra18-bridge 23d0000.axi2apb: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.181934] tegra18-bridge 23d0000.axi2apb: enabled timeout = 9894000
[   14.188369] tegra18-bridge 23d0000.axi2apb: bridge probed OK
[   14.194065] tegra18-bridge 2100000.axip2p: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.202760] tegra18-bridge 2100000.axip2p: enabled timeout = 9894000
[   14.209109] tegra18-bridge 2100000.axip2p: bridge probed OK
[   14.214717] tegra18-bridge 2110000.axip2p: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.223413] tegra18-bridge 2110000.axip2p: enabled timeout = 9894000
[   14.229761] tegra18-bridge 2110000.axip2p: bridge probed OK
[   14.235377] tegra18-bridge 2120000.axip2p: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.244074] tegra18-bridge 2120000.axip2p: enabled timeout = 9894000
[   14.250424] tegra18-bridge 2120000.axip2p: bridge probed OK
[   14.256034] tegra18-bridge 2130000.axip2p: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.264730] tegra18-bridge 2130000.axip2p: enabled timeout = 9894000
[   14.271079] tegra18-bridge 2130000.axip2p: bridge probed OK
[   14.276687] tegra18-bridge 2140000.axip2p: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.285379] tegra18-bridge 2140000.axip2p: enabled timeout = 9894000
[   14.291728] tegra18-bridge 2140000.axip2p: bridge probed OK
[   14.297340] tegra18-bridge 2150000.axip2p: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.306039] tegra18-bridge 2150000.axip2p: enabled timeout = 9894000
[   14.312389] tegra18-bridge 2150000.axip2p: bridge probed OK
[   14.317999] tegra18-bridge 2160000.axip2p: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.326694] tegra18-bridge 2160000.axip2p: enabled timeout = 9894000
[   14.333044] tegra18-bridge 2160000.axip2p: bridge probed OK
[   14.338653] tegra18-bridge 2170000.axip2p: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.347347] tegra18-bridge 2170000.axip2p: enabled timeout = 9894000
[   14.353697] tegra18-bridge 2170000.axip2p: bridge probed OK
[   14.359307] tegra18-bridge 2180000.axip2p: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.368003] tegra18-bridge 2180000.axip2p: enabled timeout = 9894000
[   14.374353] tegra18-bridge 2180000.axip2p: bridge probed OK
[   14.379966] tegra18-bridge 2190000.axip2p: axi_cbb clk rate = 102 MHZ, timeout = 97000 useconds
[   14.388660] tegra18-bridge 2190000.axip2p: enabled timeout = 9894000
[   14.395010] tegra18-bridge 2190000.axip2p: bridge probed OK
[   14.400627] **** A57 ECC: Enabled
[   14.403935] tegra18_a57_serr_init: on CPU 5 a A57 Core
[   14.409133] tegra18x_actmon d230000.actmon: in actmon_register()...
[   14.415768] tegra18x_actmon d230000.actmon: initialization Completed for the device mc_all
[   14.424471] hw perfevents: enabled with denver15_uncore_pmu PMU driver, 3 counters available
[   14.433022] denver_knobs_init:MTS_VERSION:61650191
[   14.440176] nvpmodel: initialized successfully
[   14.445414] trusty-virtio trusty:virtio: initializing
[   14.450574] trusty_ipc virtio0: vring0: va(pa)  ffffffc0eaf3c000(0) qsz 32 notifyid 1
[   14.458428] trusty_ipc virtio0: vring1: va(pa)  ffffffc0eaf3e000(0) qsz 32 notifyid 2
[   14.466348] trusty-virtio trusty:virtio: initializing done
[   14.466434] trusty_ipc virtio0: is online
[   14.477068] usbcore: registered new interface driver snd-usb-audio
[   14.490629] input: tegra-hda HDMI/DP,pcm=3 as /devices/3510000.hda/sound/card0/input0
[   14.498688] input: tegra-hda HDMI/DP,pcm=7 as /devices/3510000.hda/sound/card0/input1
[   14.564837] OPE platform probe
[   14.567976] OPE platform probe successful
[   14.622808] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[   14.628652] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[   14.634471] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[   14.640330] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[   14.646171] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[   14.651985] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[   14.657830] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[   14.663666] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[   14.669479] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[   14.675294] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[   14.681306] tegra-asoc: sound: ADMAIF11 <-> ADMAIF11 mapping ok
[   14.687316] tegra-asoc: sound: ADMAIF12 <-> ADMAIF12 mapping ok
[   14.693311] tegra-asoc: sound: ADMAIF13 <-> ADMAIF13 mapping ok
[   14.699321] tegra-asoc: sound: ADMAIF14 <-> ADMAIF14 mapping ok
[   14.705333] tegra-asoc: sound: ADMAIF15 <-> ADMAIF15 mapping ok
[   14.711322] tegra-asoc: sound: ADMAIF16 <-> ADMAIF16 mapping ok
[   14.717334] tegra-asoc: sound: ADMAIF17 <-> ADMAIF17 mapping ok
[   14.723343] tegra-asoc: sound: ADMAIF18 <-> ADMAIF18 mapping ok
[   14.729334] tegra-asoc: sound: ADMAIF19 <-> ADMAIF19 mapping ok
[   14.735326] tegra-asoc: sound: ADMAIF20 <-> ADMAIF20 mapping ok
[   14.760265] u32 classifier
[   14.762995]     Actions configured
[   14.766455] Initializing XFRM netlink socket
[   14.771276] NET: Registered protocol family 10
[   14.776307] NET: Registered protocol family 17
[   14.780810] NET: Registered protocol family 15
[   14.785313] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   14.798292] Bluetooth: RFCOMM socket layer initialized
[   14.803442] Bluetooth: RFCOMM ver 1.11
[   14.807199] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   14.813118] Bluetooth: HIDP socket layer initialized
[   14.818093] 9pnet: Installing 9P2000 support
[   14.822395] Key type dns_resolver registered
[   14.826958] Registered cp15_barrier emulation handler
[   14.832026] Registered setend emulation handler
[   14.837450] registered taskstats version 1
[   14.844067] isp 15600000.isp: initialized
[   14.851223] nvcsi 150c0000.nvcsi: initialized
[   14.856517] tegra-vi4 15700000.vi: using default number of vi channels,15
[   14.859027] Wake83 for irq=51
[   14.859114] gpio tegra-gpio-aon wake29 for gpio=56(FF:0)
[   14.859255] input: gpio-keys as /devices/gpio-keys/input/input2
[   14.879541] tegra-vi4 15700000.vi: initialized
[   14.883989] tegra_rtc c2a0000.rtc: setting system clock to 2023-03-06 14:27:14 UTC (1678112834)
[   14.884764] mmcblk mmc0:0001: Card claimed for testing.
[   14.899033] tegra-vi4 15700000.vi: subdev 150c0000.nvcsi--2 bound
[   14.901390] bpmp: mounted debugfs mirror
[   14.902182] bwmgr: missing cdev-type property
[   14.905620] ALSA device list:
[   14.905623]   #0: tegra-hda at 0x3518000 irq 381
[   14.905624]   #1: tegra-snd-t186ref-mobile-rt565x
[   14.925958] tegra-vi4 15700000.vi: subdev 150c0000.nvcsi--1 bound
[   14.935434] Freeing unused kernel memory: 8832K
[   14.961496] Root device found: mmcblk0p1
[   14.966576] Found dev node: /dev/mmcblk0p1
[   15.073340] EXT4-fs (mmcblk0p1): 2 orphan inodes deleted
[   15.078689] EXT4-fs (mmcblk0p1): recovery complete
[   15.088100] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[   15.098094] Rootfs mounted over mmcblk0p1
[   15.117418] Switching from initrd to actual rootfs
[   15.237238] ip_tables: (C) 2000-2006 Netfilter Core Team
[   15.251468] cgroup: cgroup2: unknown option "nsdelegate"
[   15.261349] random: crng init done
[   15.269279] 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)
[   15.291499] systemd[1]: Detected architecture arm64.
[   15.318822] systemd[1]: Set hostname to <poc01>.
[   15.409788] 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.
[   15.426836] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[   15.553699] systemd[1]: Created slice User and Session Slice.
[   15.559755] systemd[1]: Reached target Swap.
[   15.564247] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   15.572004] systemd[1]: Reached target User and Group Name Lookups.
[   15.579133] systemd[1]: Created slice System Slice.
[   15.633840] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
[   15.834503] systemd-journald[2281]: Received request to flush runtime journal from PID 1
[   16.582516] using random self ethernet address
[   16.591198] using random host ethernet address
[   17.170605] Mass Storage Function, version: 2009/09/11
[   17.170611] LUN: removable file: (no medium)
[   17.178643] using random self ethernet address
[   17.184892] using random host ethernet address
[   17.221938] tpm_tis_spi spi0.0: 2.0 TPM (device-id 0x1B, rev-id 22)
[   17.231865] rndis0: HOST MAC c2:43:8b:13:60:60
[   17.232171] rndis0: MAC c2:43:8b:13:60:61
[   17.232570] usb0: HOST MAC c2:43:8b:13:60:62
[   17.232594] usb0: MAC c2:43:8b:13:60:63
[   17.232620] tegra-xudc-new 3550000.xudc: ep 0 (type: 0, dir: out) enabled
[   17.238617] l4tbr0: port 1(rndis0) entered blocking state
[   17.238622] l4tbr0: port 1(rndis0) entered disabled state
[   17.239225] device rndis0 entered promiscuous mode
[   17.247330] IPv6: ADDRCONF(NETDEV_UP): rndis0: link is not ready
[   17.253697] tpm tpm0: A TPM error (256) occurred continue selftest
[   17.259796] l4tbr0: port 2(usb0) entered blocking state
[   17.259798] l4tbr0: port 2(usb0) entered disabled state
[   17.262612] device usb0 entered promiscuous mode
[   17.292026] IPv6: ADDRCONF(NETDEV_UP): usb0: link is not ready
[   17.411336] android_work: did not send uevent (0 0           (null))
[   17.451287] android_work: sent uevent USB_STATE=CONNECTED
[   17.474195] configfs-gadget gadget: high-speed config #1: c
[   17.474231] tegra-xudc-new 3550000.xudc: ep 5 (type: 3, dir: in) enabled
[   17.474249] tegra-xudc-new 3550000.xudc: ep 3 (type: 2, dir: in) enabled
[   17.474265] tegra-xudc-new 3550000.xudc: ep 2 (type: 2, dir: out) enabled
[   17.474348] tegra-xudc-new 3550000.xudc: ep 9 (type: 3, dir: in) enabled
[   17.474365] tegra-xudc-new 3550000.xudc: ep 7 (type: 2, dir: in) enabled
[   17.474381] tegra-xudc-new 3550000.xudc: ep 4 (type: 2, dir: out) enabled
[   17.474413] tegra-xudc-new 3550000.xudc: ep 15 (type: 3, dir: in) enabled
[   17.474432] tegra-xudc-new 3550000.xudc: ep 11 (type: 2, dir: in) enabled
[   17.474456] tegra-xudc-new 3550000.xudc: ep 6 (type: 2, dir: out) enabled
[   17.474500] IPv6: ADDRCONF(NETDEV_CHANGE): rndis0: link becomes ready
[   17.474663] android_work: sent uevent USB_STATE=CONFIGURED
[   17.509977] CPU1: shutdown
[   17.513186] psci: CPU1 killed (polled 0 ms)
[   17.544599] tegra-xudc-new 3550000.xudc: setup request failed: -22
[   17.552270] tegra-xudc-new 3550000.xudc: ep 13 (type: 2, dir: in) enabled
[   17.552291] tegra-xudc-new 3550000.xudc: ep 8 (type: 2, dir: out) enabled
[   17.552436] IPv6: ADDRCONF(NETDEV_CHANGE): usb0: link becomes ready
[   17.560505] bcpu-throttle-alert cooling device registered.
[   17.561326] mcpu-throttle-alert cooling device registered.
[   17.561568] gpu-throttle-alert cooling device registered.
[   17.582300] CPU2: shutdown
[   17.585124] psci: CPU2 killed (polled 0 ms)
[   17.724301] configfs-gadget gadget: Wrong NDP SIGN
[   17.741757] configfs-gadget gadget: Wrong NDP SIGN
[   17.775868] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   17.777326] configfs-gadget gadget: Wrong NDP SIGN
[   17.777405] configfs-gadget gadget: Wrong NDP SIGN
[   17.787322] configfs-gadget gadget: Wrong NDP SIGN
[   17.787379] configfs-gadget gadget: Wrong NDP SIGN
[   17.825864] configfs-gadget gadget: Wrong NDP SIGN
[   17.833657] configfs-gadget gadget: Wrong NDP SIGN
[   17.925027] zram: Added device: zram0
[   17.929324] zram: Added device: zram1
[   17.932698] zram: Added device: zram2
[   17.933861] zram: Added device: zram3
[   17.948905] configfs-gadget gadget: Wrong NDP SIGN
[   17.985980] zram0: detected capacity change from 0 to 501051392
[   18.025185] configfs-gadget gadget: Wrong NDP SIGN
[   18.051073] Adding 489304k swap on /dev/zram0.  Priority:5 extents:1 across:489304k SS
[   18.055729] zram1: detected capacity change from 0 to 501051392
[   18.073495] Adding 489304k swap on /dev/zram1.  Priority:5 extents:1 across:489304k SS
[   18.094100] gpio tegra-gpio-aon wake51 for gpio=47(AA:7)
[   18.097500] net eth0: get_configure_l3v4_filter -->
[   18.098018] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   18.103241] zram2: detected capacity change from 0 to 501051392
[   18.122541] Adding 489304k swap on /dev/zram2.  Priority:5 extents:1 across:489304k SS
[   18.126853] zram3: detected capacity change from 0 to 501051392
[   18.171685] Adding 489304k swap on /dev/zram3.  Priority:5 extents:1 across:489304k SS
[   18.179585] configfs-gadget gadget: Wrong NDP SIGN
[   18.519986] configfs-gadget gadget: Wrong NDP SIGN
[   18.641929] configfs-gadget gadget: Wrong NDP SIGN
[   18.743665] configfs-gadget gadget: Wrong NDP SIGN
[   18.789572] Bridge firewalling registered
[   18.862948] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   19.015533] configfs-gadget gadget: Wrong NDP SIGN
[   19.015630] configfs-gadget gadget: Wrong NDP SIGN
[   19.015657] configfs-gadget gadget: Wrong NDP SIGN
[   19.029827] configfs-gadget gadget: Wrong NDP SIGN
[   19.039375] configfs-gadget gadget: Wrong NDP SIGN
[   19.043569] configfs-gadget gadget: Wrong NDP SIGN
[   19.185852] tegradc 15200000.nvdisplay: blank - powerdown
[   19.230537] extcon-disp-state external-connection:disp-state: cable 47 state 0
[   19.230539] Extcon AUX1(HDMI) disable
[   19.252194] tegra_nvdisp_handle_pd_disable: Powergated Head1 pd
[   19.252609] tegra_nvdisp_handle_pd_disable: Powergated Head0 pd
[   19.513826] configfs-gadget gadget: Wrong NDP SIGN
[   19.613499] Netfilter messages via NETLINK v0.30.
[   19.618619] ctnetlink v0.93: registering with nfnetlink.
[   19.950755] tegradc 15200000.nvdisplay: blank - powerdown
[   19.950765] tegradc 15200000.nvdisplay: unblank
[   19.951338] tegra_nvdisp_handle_pd_enable: Unpowergated Head0 pd
[   19.951402] tegra_nvdisp_handle_pd_enable: Unpowergated Head1 pd
[   19.952403] Parent Clock set for DC plld2
[   19.956680] edid invalid
[   19.957530] tegradc 15200000.nvdisplay: hdmi: tmds rate:148351K prod-setting:prod_c_hdmi_111m_223m
[   19.960064] tegradc 15200000.nvdisplay: hdmi: get YCC quant from EDID.
[   20.020358] configfs-gadget gadget: Wrong NDP SIGN
[   20.020400] configfs-gadget gadget: Wrong NDP SIGN
[   20.052237] IPv6: ADDRCONF(NETDEV_UP): docker0: link is not ready
[   20.756027] configfs-gadget gadget: Wrong NDP SIGN
[   21.023040] configfs-gadget gadget: Wrong NDP SIGN
[   21.030848] configfs-gadget gadget: Wrong NDP SIGN
[   21.030926] configfs-gadget gadget: Wrong NDP SIGN
[   21.030976] configfs-gadget gadget: Wrong NDP SIGN
[   21.031026] configfs-gadget gadget: Wrong NDP SIGN
[   21.091848] configfs-gadget gadget: Wrong NDP SIGN
[   21.091931] configfs-gadget gadget: Wrong NDP SIGN
[   21.091999] configfs-gadget gadget: Wrong NDP SIGN
[   21.096849] configfs-gadget gadget: Wrong NDP SIGN
[   21.097748] configfs-gadget gadget: Wrong NDP SIGN
[   21.131918] configfs-gadget gadget: Wrong NDP SIGN
[   21.148542] configfs-gadget gadget: Wrong NDP SIGN
[   21.501853] configfs-gadget gadget: Wrong NDP SIGN
[   21.502704] configfs-gadget gadget: Wrong NDP SIGN
[   21.503431] configfs-gadget gadget: Wrong NDP SIGN
[   21.503565] configfs-gadget gadget: Wrong NDP SIGN
[   21.504267] configfs-gadget gadget: Wrong NDP SIGN
[   21.505014] configfs-gadget gadget: Wrong NDP SIGN
[   21.505684] configfs-gadget gadget: Wrong NDP SIGN
[   21.516618] configfs-gadget gadget: Wrong NDP SIGN
[   21.516711] configfs-gadget gadget: Wrong NDP SIGN
[   21.516980] configfs-gadget gadget: Wrong NDP SIGN
[   21.517237] configfs-gadget gadget: Wrong NDP SIGN
[   21.883165] configfs-gadget gadget: Wrong NDP SIGN
[   22.104190] configfs-gadget gadget: Wrong NDP SIGN
[   22.105825] configfs-gadget gadget: Wrong NDP SIGN
[   22.106691] configfs-gadget gadget: Wrong NDP SIGN
[   22.106861] configfs-gadget gadget: Wrong NDP SIGN
[   22.107306] configfs-gadget gadget: Wrong NDP SIGN
[   22.107476] configfs-gadget gadget: Wrong NDP SIGN
[   22.107808] configfs-gadget gadget: Wrong NDP SIGN
[   22.107962] configfs-gadget gadget: Wrong NDP SIGN
[   22.108742] configfs-gadget gadget: Wrong NDP SIGN
[   22.109312] configfs-gadget gadget: Wrong NDP SIGN
[   22.110024] configfs-gadget gadget: Wrong NDP SIGN
[   22.332228] configfs-gadget gadget: Wrong NDP SIGN
[   22.514216] configfs-gadget gadget: Wrong NDP SIGN
[   22.514314] configfs-gadget gadget: Wrong NDP SIGN
[   22.575292] configfs-gadget gadget: Wrong NDP SIGN
[   22.647018] configfs-gadget gadget: Wrong NDP SIGN
[   22.726723] configfs-gadget gadget: Wrong NDP SIGN
[   22.726807] configfs-gadget gadget: Wrong NDP SIGN
[   23.022296] configfs-gadget gadget: Wrong NDP SIGN
[   23.400704] configfs-gadget gadget: Wrong NDP SIGN
[   23.582201] configfs-gadget gadget: Wrong NDP SIGN
[   23.732035] configfs-gadget gadget: Wrong NDP SIGN
[   23.750842] configfs-gadget gadget: Wrong NDP SIGN
[   23.896912] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   23.896923] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   23.896936] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   23.896948] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   23.896958] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   23.896970] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   23.896980] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   23.896991] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   23.897036] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   24.169420] configfs-gadget gadget: Wrong NDP SIGN
[   24.169578] configfs-gadget gadget: Wrong NDP SIGN
[   24.508639] configfs-gadget gadget: Wrong NDP SIGN
[   24.509377] configfs-gadget gadget: Wrong NDP SIGN
[   24.510350] configfs-gadget gadget: Wrong NDP SIGN
[   24.585453] configfs-gadget gadget: Wrong NDP SIGN
[   24.726784] configfs-gadget gadget: Wrong NDP SIGN
[   24.759479] configfs-gadget gadget: Wrong NDP SIGN
[   24.917073] configfs-gadget gadget: Wrong NDP SIGN
[   24.917145] configfs-gadget gadget: Wrong NDP SIGN
[   25.582074] configfs-gadget gadget: Wrong NDP SIGN
[   25.582150] configfs-gadget gadget: Wrong NDP SIGN
[   25.582784] configfs-gadget gadget: Wrong NDP SIGN
[   25.582851] configfs-gadget gadget: Wrong NDP SIGN
[   25.593433] configfs-gadget gadget: Wrong NDP SIGN
[   25.672069] configfs-gadget gadget: Wrong NDP SIGN
[   25.672220] configfs-gadget gadget: Wrong NDP SIGN
[   25.733418] configfs-gadget gadget: Wrong NDP SIGN
[   26.125532] configfs-gadget gadget: Wrong NDP SIGN
[   26.432790] configfs-gadget gadget: Wrong NDP SIGN
[   26.432861] configfs-gadget gadget: Wrong NDP SIGN
[   26.583404] configfs-gadget gadget: Wrong NDP SIGN
[   26.583538] configfs-gadget gadget: Wrong NDP SIGN
[   26.584204] configfs-gadget gadget: Wrong NDP SIGN
[   26.584322] configfs-gadget gadget: Wrong NDP SIGN
[   26.756503] configfs-gadget gadget: Wrong NDP SIGN
[   27.038650] configfs-gadget gadget: Wrong NDP SIGN
[   27.081916] configfs-gadget gadget: Wrong NDP SIGN
[   27.193074] configfs-gadget gadget: Wrong NDP SIGN
[   27.193245] configfs-gadget gadget: Wrong NDP SIGN
[   27.745848] configfs-gadget gadget: Wrong NDP SIGN
[   27.850010] configfs-gadget gadget: Wrong NDP SIGN
[   27.850590] configfs-gadget gadget: Wrong NDP SIGN
[   27.947693] configfs-gadget gadget: Wrong NDP SIGN
[   27.978898] configfs-gadget gadget: Wrong NDP SIGN
[   28.069515] configfs-gadget gadget: Wrong NDP SIGN
[   28.213398] configfs-gadget gadget: Wrong NDP SIGN
[   28.511079] configfs-gadget gadget: Wrong NDP SIGN
[   28.588310] configfs-gadget gadget: Wrong NDP SIGN
[   28.588383] configfs-gadget gadget: Wrong NDP SIGN
[   28.589042] configfs-gadget gadget: Wrong NDP SIGN
[   28.589105] configfs-gadget gadget: Wrong NDP SIGN
[   28.678433] configfs-gadget gadget: Wrong NDP SIGN
[   28.710736] configfs-gadget gadget: Wrong NDP SIGN
[   29.390447] configfs-gadget gadget: Wrong NDP SIGN
[   29.482763] configfs-gadget gadget: Wrong NDP SIGN
[   29.609136] configfs-gadget gadget: Wrong NDP SIGN
[   30.086281] configfs-gadget gadget: Wrong NDP SIGN
[   30.117102] configfs-gadget gadget: Wrong NDP SIGN
[   30.752837] configfs-gadget gadget: Wrong NDP SIGN
[   31.148114] configfs-gadget gadget: Wrong NDP SIGN
[   31.478155] configfs-gadget gadget: Wrong NDP SIGN
[   31.757246] configfs-gadget gadget: Wrong NDP SIGN
[   31.764338] configfs-gadget gadget: Wrong NDP SIGN
[   32.761377] configfs-gadget gadget: Wrong NDP SIGN
[   33.157595] configfs-gadget gadget: Wrong NDP SIGN
[   33.262178] configfs-gadget gadget: Wrong NDP SIGN
[   33.479236] configfs-gadget gadget: Wrong NDP SIGN
[   33.765927] configfs-gadget gadget: Wrong NDP SIGN
[   34.136971] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   34.136984] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   34.136997] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   34.137010] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   34.137021] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   34.137032] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   34.137044] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   34.137055] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   34.137101] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   34.137437] extcon-disp-state external-connection:disp-state: cable 47 state 1
[   34.137445] Extcon AUX1(HDMI) enable
[   34.141336] tegradc 15200000.nvdisplay: sync windows ret = 249
[   34.249664] tegradc 15200000.nvdisplay: unblank
[   34.249732] tegradc 15210000.nvdisplay: blank - powerdown
[   34.279254] configfs-gadget gadget: Wrong NDP SIGN
[   34.777836] configfs-gadget gadget: Wrong NDP SIGN
[   35.171129] configfs-gadget gadget: Wrong NDP SIGN
[   35.605587] fuse init (API version 7.26)
[   36.286336] configfs-gadget gadget: Wrong NDP SIGN
[   36.294964] configfs-gadget gadget: Wrong NDP SIGN
[   37.095512] l4tbr0: port 2(usb0) entered blocking state
[   37.095517] l4tbr0: port 2(usb0) entered forwarding state
[   37.095583] l4tbr0: port 1(rndis0) entered blocking state
[   37.095587] l4tbr0: port 1(rndis0) entered forwarding state
[   37.095650] IPv6: ADDRCONF(NETDEV_UP): l4tbr0: link is not ready
[   37.095664] IPv6: ADDRCONF(NETDEV_CHANGE): l4tbr0: link becomes ready
[   37.796106] configfs-gadget gadget: Wrong NDP SIGN
[   38.796975] configfs-gadget gadget: Wrong NDP SIGN
[   39.804549] configfs-gadget gadget: Wrong NDP SIGN
[   40.324343] configfs-gadget gadget: Wrong NDP SIGN
[   40.325000] configfs-gadget gadget: Wrong NDP SIGN
[   40.326197] configfs-gadget gadget: Wrong NDP SIGN
[   40.327443] configfs-gadget gadget: Wrong NDP SIGN
[   40.820481] configfs-gadget gadget: Wrong NDP SIGN
[   41.828606] configfs-gadget gadget: Wrong NDP SIGN
[   42.579559] configfs-gadget gadget: Wrong NDP SIGN
[   43.335230] configfs-gadget gadget: Wrong NDP SIGN
[   44.090932] configfs-gadget gadget: Wrong NDP SIGN
[   44.376892] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   44.383294] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   44.389983] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   44.395076] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   44.401744] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   44.407250] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   44.413003] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   44.418155] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   44.423433] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   44.856297] configfs-gadget gadget: Wrong NDP SIGN
[   45.612123] configfs-gadget gadget: Wrong NDP SIGN
[   46.169391] vdd-3v3-disp-cvb: disabling
[   46.169405] vdd-3v3-cvb: disabling
[   46.169415] vdd-1v8-cvb: disabling
[   46.169425] vdd-fan: disabling
[   46.169436] vdd_sys_en: disabling
[   46.169460] spmic-ldo1: disabling
[   46.169678] vddio-sdmmc1: disabling
[   46.169853] vdd-sys-bl: disabling
[   46.367081] configfs-gadget gadget: Wrong NDP SIGN
[   47.127067] configfs-gadget gadget: Wrong NDP SIGN
[   47.883901] configfs-gadget gadget: Wrong NDP SIGN
[   47.884187] configfs-gadget gadget: Wrong NDP SIGN
[   47.885137] configfs-gadget gadget: Wrong NDP SIGN
[   47.889580] configfs-gadget gadget: Wrong NDP SIGN
[   48.766214] configfs-gadget gadget: Wrong NDP SIGN
[   51.231302] configfs-gadget gadget: Wrong NDP SIGN
[   52.407393] configfs-gadget gadget: Wrong NDP SIGN
[   53.330176] configfs-gadget gadget: Wrong NDP SIGN
[   53.330490] configfs-gadget gadget: Wrong NDP SIGN
[   53.331148] configfs-gadget gadget: Wrong NDP SIGN
[   53.331648] configfs-gadget gadget: Wrong NDP SIGN
[   54.616978] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   54.623493] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   54.630264] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   54.635440] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   54.642225] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   54.647773] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   54.653572] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   54.658795] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   54.664082] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   64.856969] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   64.863475] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   64.870238] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   64.875668] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   64.882348] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   64.887885] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   64.893727] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   64.898899] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   64.904179] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   66.777173] configfs-gadget gadget: Wrong NDP SIGN
[   67.013675] configfs-gadget gadget: Wrong NDP SIGN
[   67.014157] configfs-gadget gadget: Wrong NDP SIGN
[   67.023384] configfs-gadget gadget: Wrong NDP SIGN
[   67.024027] configfs-gadget gadget: Wrong NDP SIGN
[   67.211866] configfs-gadget gadget: Wrong NDP SIGN
[   67.244147] configfs-gadget gadget: Wrong NDP SIGN
[   67.602941] configfs-gadget gadget: Wrong NDP SIGN
[   67.681772] configfs-gadget gadget: Wrong NDP SIGN
[   68.349353] configfs-gadget gadget: Wrong NDP SIGN
[   68.349577] configfs-gadget gadget: Wrong NDP SIGN
[   68.350240] configfs-gadget gadget: Wrong NDP SIGN
[   68.350791] configfs-gadget gadget: Wrong NDP SIGN
[   68.363633] configfs-gadget gadget: Wrong NDP SIGN
[   68.549943] configfs-gadget gadget: Wrong NDP SIGN
[   68.882272] configfs-gadget gadget: Wrong NDP SIGN
[   68.883381] configfs-gadget gadget: Wrong NDP SIGN
[   69.786706] configfs-gadget gadget: Wrong NDP SIGN
[   69.868021] configfs-gadget gadget: Wrong NDP SIGN
[   69.884506] configfs-gadget gadget: Wrong NDP SIGN
[   69.885264] configfs-gadget gadget: Wrong NDP SIGN
[   70.024049] configfs-gadget gadget: Wrong NDP SIGN
[   70.024390] configfs-gadget gadget: Wrong NDP SIGN
[   70.279705] configfs-gadget gadget: Wrong NDP SIGN
[   71.873458] configfs-gadget gadget: Wrong NDP SIGN
[   71.888508] configfs-gadget gadget: Wrong NDP SIGN
[   71.888671] configfs-gadget gadget: Wrong NDP SIGN
[   71.889488] configfs-gadget gadget: Wrong NDP SIGN
[   71.890206] configfs-gadget gadget: Wrong NDP SIGN
[   71.891218] configfs-gadget gadget: Wrong NDP SIGN
[   71.891405] configfs-gadget gadget: Wrong NDP SIGN
[   71.892406] configfs-gadget gadget: Wrong NDP SIGN
[   71.893094] configfs-gadget gadget: Wrong NDP SIGN
[   72.279983] configfs-gadget gadget: Wrong NDP SIGN
[   72.795986] configfs-gadget gadget: Wrong NDP SIGN
[   73.028123] configfs-gadget gadget: Wrong NDP SIGN
[   73.028464] configfs-gadget gadget: Wrong NDP SIGN
[   73.888640] configfs-gadget gadget: Wrong NDP SIGN
[   74.292356] configfs-gadget gadget: Wrong NDP SIGN
[   74.904054] configfs-gadget gadget: Wrong NDP SIGN
[   74.904328] configfs-gadget gadget: Wrong NDP SIGN
[   74.905166] configfs-gadget gadget: Wrong NDP SIGN
[   74.906005] configfs-gadget gadget: Wrong NDP SIGN
[   75.096992] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   75.103507] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   75.110268] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   75.115435] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   75.122198] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   75.127743] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   75.133539] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   75.138739] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   75.144066] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   75.801324] configfs-gadget gadget: Wrong NDP SIGN
[   77.913254] configfs-gadget gadget: Wrong NDP SIGN
[   77.913436] configfs-gadget gadget: Wrong NDP SIGN
[   77.914145] configfs-gadget gadget: Wrong NDP SIGN
[   77.915145] configfs-gadget gadget: Wrong NDP SIGN
[   77.915771] configfs-gadget gadget: Wrong NDP SIGN
[   77.916236] configfs-gadget gadget: Wrong NDP SIGN
[   77.917128] configfs-gadget gadget: Wrong NDP SIGN
[   77.918159] configfs-gadget gadget: Wrong NDP SIGN
[   78.803337] configfs-gadget gadget: Wrong NDP SIGN
[   80.779027] configfs-gadget gadget: Wrong NDP SIGN
[   80.933552] configfs-gadget gadget: Wrong NDP SIGN
[   80.934093] configfs-gadget gadget: Wrong NDP SIGN
[   80.934960] configfs-gadget gadget: Wrong NDP SIGN
[   80.935908] configfs-gadget gadget: Wrong NDP SIGN
[   81.804505] configfs-gadget gadget: Wrong NDP SIGN
[   84.146015] configfs-gadget gadget: Wrong NDP SIGN
[   84.146599] configfs-gadget gadget: Wrong NDP SIGN
[   84.147426] configfs-gadget gadget: Wrong NDP SIGN
[   84.148758] configfs-gadget gadget: Wrong NDP SIGN
[   84.149050] configfs-gadget gadget: Wrong NDP SIGN
[   84.149683] configfs-gadget gadget: Wrong NDP SIGN
[   84.150217] configfs-gadget gadget: Wrong NDP SIGN
[   84.150954] configfs-gadget gadget: Wrong NDP SIGN
[   84.210779] configfs-gadget gadget: Wrong NDP SIGN
[   85.336968] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   85.343472] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   85.350224] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   85.355384] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   85.362167] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   85.367707] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   85.373504] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   85.378733] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   85.384020] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   87.154038] configfs-gadget gadget: Wrong NDP SIGN
[   87.154587] configfs-gadget gadget: Wrong NDP SIGN
[   87.155492] configfs-gadget gadget: Wrong NDP SIGN
[   87.156190] configfs-gadget gadget: Wrong NDP SIGN
[   87.707630] configfs-gadget gadget: Wrong NDP SIGN
[   90.173426] configfs-gadget gadget: Wrong NDP SIGN
[   90.173827] configfs-gadget gadget: Wrong NDP SIGN
[   90.175055] configfs-gadget gadget: Wrong NDP SIGN
[   90.176839] configfs-gadget gadget: Wrong NDP SIGN
[   90.178172] configfs-gadget gadget: Wrong NDP SIGN
[   90.178516] configfs-gadget gadget: Wrong NDP SIGN
[   90.179546] configfs-gadget gadget: Wrong NDP SIGN
[   90.180574] configfs-gadget gadget: Wrong NDP SIGN
[   93.181041] configfs-gadget gadget: Wrong NDP SIGN
[   93.181321] configfs-gadget gadget: Wrong NDP SIGN
[   93.181876] configfs-gadget gadget: Wrong NDP SIGN
[   93.182480] configfs-gadget gadget: Wrong NDP SIGN
[   94.920304] configfs-gadget gadget: Wrong NDP SIGN
[   95.576963] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[   95.583532] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[   95.590300] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[   95.595479] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[   95.602203] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[   95.607869] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[   95.613663] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[   95.618847] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[   95.624148] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[   96.558129] configfs-gadget gadget: Wrong NDP SIGN
[   96.558226] configfs-gadget gadget: Wrong NDP SIGN
[   96.559683] configfs-gadget gadget: Wrong NDP SIGN
[   96.560771] configfs-gadget gadget: Wrong NDP SIGN
[   96.561900] configfs-gadget gadget: Wrong NDP SIGN
[   96.562473] configfs-gadget gadget: Wrong NDP SIGN
[   96.563354] configfs-gadget gadget: Wrong NDP SIGN
[   96.564201] configfs-gadget gadget: Wrong NDP SIGN
[   97.107853] configfs-gadget gadget: Wrong NDP SIGN
[   97.108175] configfs-gadget gadget: Wrong NDP SIGN
[   97.119153] configfs-gadget gadget: Wrong NDP SIGN
[   97.119723] configfs-gadget gadget: Wrong NDP SIGN
[   97.287757] configfs-gadget gadget: Wrong NDP SIGN
[   97.378766] configfs-gadget gadget: Wrong NDP SIGN
[   97.625368] configfs-gadget gadget: Wrong NDP SIGN
[   97.883176] configfs-gadget gadget: Wrong NDP SIGN
[   98.293320] configfs-gadget gadget: Wrong NDP SIGN
[   98.876229] configfs-gadget gadget: Wrong NDP SIGN
[   99.574401] configfs-gadget gadget: Wrong NDP SIGN
[   99.574495] configfs-gadget gadget: Wrong NDP SIGN
[   99.575557] configfs-gadget gadget: Wrong NDP SIGN
[   99.576315] configfs-gadget gadget: Wrong NDP SIGN
[   99.625491] configfs-gadget gadget: Wrong NDP SIGN
[  100.122310] configfs-gadget gadget: Wrong NDP SIGN
[  100.122585] configfs-gadget gadget: Wrong NDP SIGN
[  100.860975] configfs-gadget gadget: Wrong NDP SIGN
[  101.641297] configfs-gadget gadget: Wrong NDP SIGN
[  102.574275] configfs-gadget gadget: Wrong NDP SIGN
[  102.574452] configfs-gadget gadget: Wrong NDP SIGN
[  102.575201] configfs-gadget gadget: Wrong NDP SIGN
[  102.576031] configfs-gadget gadget: Wrong NDP SIGN
[  102.577055] configfs-gadget gadget: Wrong NDP SIGN
[  102.577135] configfs-gadget gadget: Wrong NDP SIGN
[  102.577777] configfs-gadget gadget: Wrong NDP SIGN
[  102.578586] configfs-gadget gadget: Wrong NDP SIGN
[  102.869504] configfs-gadget gadget: Wrong NDP SIGN
[  103.137165] configfs-gadget gadget: Wrong NDP SIGN
[  103.137509] configfs-gadget gadget: Wrong NDP SIGN
[  103.656560] configfs-gadget gadget: Wrong NDP SIGN
[  104.881531] configfs-gadget gadget: Wrong NDP SIGN
[  105.586005] configfs-gadget gadget: Wrong NDP SIGN
[  105.586182] configfs-gadget gadget: Wrong NDP SIGN
[  105.586879] configfs-gadget gadget: Wrong NDP SIGN
[  105.587566] configfs-gadget gadget: Wrong NDP SIGN
[  105.816960] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[  105.823458] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[  105.830238] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[  105.835404] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[  105.842168] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[  105.848008] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[  105.853844] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[  105.859013] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[  105.864294] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[  107.886645] configfs-gadget gadget: Wrong NDP SIGN
[  108.848567] configfs-gadget gadget: Wrong NDP SIGN
[  108.848849] configfs-gadget gadget: Wrong NDP SIGN
[  108.849607] configfs-gadget gadget: Wrong NDP SIGN
[  108.850381] configfs-gadget gadget: Wrong NDP SIGN
[  108.850838] configfs-gadget gadget: Wrong NDP SIGN
[  108.851329] configfs-gadget gadget: Wrong NDP SIGN
[  108.852134] configfs-gadget gadget: Wrong NDP SIGN
[  108.852806] configfs-gadget gadget: Wrong NDP SIGN
[  111.855111] configfs-gadget gadget: Wrong NDP SIGN
[  111.855437] configfs-gadget gadget: Wrong NDP SIGN
[  111.856370] configfs-gadget gadget: Wrong NDP SIGN
[  111.857300] configfs-gadget gadget: Wrong NDP SIGN
[  111.922717] configfs-gadget gadget: Wrong NDP SIGN
[  114.867455] configfs-gadget gadget: Wrong NDP SIGN
[  114.867935] configfs-gadget gadget: Wrong NDP SIGN
[  114.868763] configfs-gadget gadget: Wrong NDP SIGN
[  114.869619] configfs-gadget gadget: Wrong NDP SIGN
[  114.870134] configfs-gadget gadget: Wrong NDP SIGN
[  114.870604] configfs-gadget gadget: Wrong NDP SIGN
[  114.871215] configfs-gadget gadget: Wrong NDP SIGN
[  114.871831] configfs-gadget gadget: Wrong NDP SIGN
[  116.056953] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[  116.063449] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[  116.070212] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[  116.075378] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[  116.082144] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[  116.087688] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[  116.093486] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[  116.098683] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[  116.104009] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[  117.880936] configfs-gadget gadget: Wrong NDP SIGN
[  117.881410] configfs-gadget gadget: Wrong NDP SIGN
[  117.882128] configfs-gadget gadget: Wrong NDP SIGN
[  117.882721] configfs-gadget gadget: Wrong NDP SIGN
[  121.042678] configfs-gadget gadget: Wrong NDP SIGN
[  121.043168] configfs-gadget gadget: Wrong NDP SIGN
[  121.043895] configfs-gadget gadget: Wrong NDP SIGN
[  121.044683] configfs-gadget gadget: Wrong NDP SIGN
[  121.045235] configfs-gadget gadget: Wrong NDP SIGN
[  121.045505] configfs-gadget gadget: Wrong NDP SIGN
[  121.046382] configfs-gadget gadget: Wrong NDP SIGN
[  121.047054] configfs-gadget gadget: Wrong NDP SIGN
[  124.049214] configfs-gadget gadget: Wrong NDP SIGN
[  124.049555] configfs-gadget gadget: Wrong NDP SIGN
[  124.050033] configfs-gadget gadget: Wrong NDP SIGN
[  124.050832] configfs-gadget gadget: Wrong NDP SIGN
[  126.296959] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[  126.303463] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[  126.310223] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[  126.315389] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[  126.322185] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[  126.327714] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[  126.333500] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[  126.338674] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[  126.343993] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[  126.351344] tegradc 15200000.nvdisplay: hdmi: edid read failed
[  126.357725] tegradc 15200000.nvdisplay: hdmi: using fallback edid
[  126.357948] tegradc 15200000.nvdisplay: blank - powerdown
[  126.416492] extcon-disp-state external-connection:disp-state: cable 47 state 0
[  126.416494] Extcon AUX1(HDMI) disable
[  126.438084] tegra_nvdisp_handle_pd_disable: Powergated Head1 pd
[  126.438413] tegra_nvdisp_handle_pd_disable: Powergated Head0 pd
[  126.438664] tegradc 15200000.nvdisplay: unblank
[  126.439240] tegra_nvdisp_handle_pd_enable: Unpowergated Head0 pd
[  126.439305] tegra_nvdisp_handle_pd_enable: Unpowergated Head1 pd
[  126.440442] Parent Clock set for DC plld2
[  126.444039] tegradc 15200000.nvdisplay: hdmi: tmds rate:74250K prod-setting:prod_c_hdmi_54m_111m
[  126.445231] tegradc 15200000.nvdisplay: hdmi: get YCC quant from EDID.
[  127.061372] configfs-gadget gadget: Wrong NDP SIGN
[  127.061643] configfs-gadget gadget: Wrong NDP SIGN
[  127.062305] configfs-gadget gadget: Wrong NDP SIGN
[  127.063078] configfs-gadget gadget: Wrong NDP SIGN
[  127.063784] configfs-gadget gadget: Wrong NDP SIGN
[  127.064204] configfs-gadget gadget: Wrong NDP SIGN
[  127.064907] configfs-gadget gadget: Wrong NDP SIGN
[  127.065635] configfs-gadget gadget: Wrong NDP SIGN
[  130.077984] configfs-gadget gadget: Wrong NDP SIGN
[  130.078207] configfs-gadget gadget: Wrong NDP SIGN
[  130.078971] configfs-gadget gadget: Wrong NDP SIGN
[  130.079432] configfs-gadget gadget: Wrong NDP SIGN
[  133.240492] configfs-gadget gadget: Wrong NDP SIGN
[  133.240820] configfs-gadget gadget: Wrong NDP SIGN
[  133.242332] configfs-gadget gadget: Wrong NDP SIGN
[  133.243514] configfs-gadget gadget: Wrong NDP SIGN
[  133.244521] configfs-gadget gadget: Wrong NDP SIGN
[  133.244999] configfs-gadget gadget: Wrong NDP SIGN
[  133.245871] configfs-gadget gadget: Wrong NDP SIGN
[  133.246923] configfs-gadget gadget: Wrong NDP SIGN
[  136.258229] configfs-gadget gadget: Wrong NDP SIGN
[  136.258497] configfs-gadget gadget: Wrong NDP SIGN
[  136.259289] configfs-gadget gadget: Wrong NDP SIGN
[  136.260113] configfs-gadget gadget: Wrong NDP SIGN
[  136.536958] tegra-i2c 3190000.i2c: rx dma timeout txlen:28 rxlen:128
[  136.536970] tegra-i2c 3190000.i2c: --- register dump for debugging ----
[  136.536983] tegra-i2c 3190000.i2c: I2C_CNFG - 0x22c00
[  136.536995] tegra-i2c 3190000.i2c: I2C_PACKET_TRANSFER_STATUS - 0x10001
[  136.537006] tegra-i2c 3190000.i2c: I2C_FIFO_CONTROL - 0x1c
[  136.537017] tegra-i2c 3190000.i2c: I2C_FIFO_STATUS - 0x800040
[  136.537027] tegra-i2c 3190000.i2c: I2C_INT_MASK - 0x6c
[  136.537039] tegra-i2c 3190000.i2c: I2C_INT_STATUS - 0x2
[  136.537086] tegra-i2c 3190000.i2c: i2c transfer timed out addr: 0x50
[  136.541090] extcon-disp-state external-connection:disp-state: cable 47 state 1
[  136.541098] Extcon AUX1(HDMI) enable
[  136.594664] extcon-disp-state external-connection:disp-state: cable 51 state 1
[  136.594691] Extcon HDMI: HPD enabled
[  136.594768] tegradc 15200000.nvdisplay: hdmi: plugged
[  136.596686] tegradc 15200000.nvdisplay: blank - powerdown
[  136.662548] extcon-disp-state external-connection:disp-state: cable 47 state 0
[  136.662552] Extcon AUX1(HDMI) disable
[  136.683654] tegra_nvdisp_handle_pd_disable: Powergated Head1 pd
[  136.684014] tegra_nvdisp_handle_pd_disable: Powergated Head0 pd
[  136.684152] tegradc 15200000.nvdisplay: unblank
[  136.684807] tegra_nvdisp_handle_pd_enable: Unpowergated Head0 pd
[  136.685127] tegra_nvdisp_handle_pd_enable: Unpowergated Head1 pd
[  136.686101] Parent Clock set for DC plld2
[  136.689442] tegradc 15200000.nvdisplay: hdmi: tmds rate:148351K prod-setting:prod_c_hdmi_111m_223m
[  136.690608] tegradc 15200000.nvdisplay: hdmi: get YCC quant from EDID.
[  139.260794] configfs-gadget gadget: Wrong NDP SIGN
[  139.261001] configfs-gadget gadget: Wrong NDP SIGN

@WayneWWW
Should I provide more information or open a new thread with a more specific question?

Is this based on tx2-nx or TX2? If this is tx2-nx, then there would be brcm driver occupied the sdmmc3. You need to remove it too.

This is based on the TX2 NX. I have removed the brcm node in the file called tegra186-p3636-0001-a00-comms.dtsi. I also set the brcm to a module instead of a built-in driver, so the kernel config looks like this:

CONFIG_BCMDHD=m
CONFIG_BCMDHD_SDIO=y
CONFIG_BCMDHD_PCIE=y
# CONFIG_BCMDYNAMIC is not set
# CONFIG_BCM43241 is not set
CONFIG_BCM4354=y
CONFIG_BCMDHD_FW_PATH="/lib/firmware/brcm/fw_bcmdhd.bin"
CONFIG_BCMDHD_NVRAM_PATH="/lib/firmware/brcm/nvram.txt"
CONFIG_BCMDHD_HW_OOB=y

I assumed that the SDIO driver wouldn’t be loaded if the underlying BCMDHD is not present, so I will try removing the lines CONFIG_BCMDHD_SDIO=y as well as CONFIG_BCMDHD_PCIE=y and check whether that changes anything.

For future references / people ending up on this thread: I found the following threads also quite useful, even though the didn’t quiet get me there.

I have tried the steps discussed in the above thread (e.g. setting a dummy regulator and applying nvidia,vmmc-always-on and nvidia,vqmmc-always-on). I have also tried to
updating the drivers in the Linux Kernel to more recent ones, but to not avail.

I also added MMC_DEBUG to the kernel configuration. This helped in noticing that when loading the bus, it tries to scan at different frequencies. However, none match the configuration that are specified in the device tree.

One other thing that I found interesting is the output of mmc1/ios

root@poc01:/home/dev# sudo cat /sys/kernel/debug/mmc1/ios
clock:          0 Hz
actual clock:   99221 Hz
vdd:            0 (invalid)
bus mode:       2 (push-pull)
chip select:    0 (don't care)
power mode:     0 (off)
bus width:      0 (1 bits)
timing spec:    0 (legacy)
signal voltage: 1 (1.80 V)
driver type:    0 (driver type B)

Update:
I have removed the BCMDHD lines from the kernel config file, but the result is the same.

Things that might be interesting from the below pasted log:

  • The Jetson tries to scan at multiple frequencies
  • Interrupt are thrown for an unknown reason
  • I think the error -19 came only after setting the regulator (tegra_sdhci_signal_voltage_switch_post: error -19 in comp drvup settings at 1.8v) but would have to double check
  • I get an error mmc1: req done (CMD52): -110:
root@poc01:/home/dev# [ 3223.821469] sdhci: =========== REGISTER DUMP (mmc1)===========
[ 3223.827915] sdhci: Sys addr: 0x00000000 | Version:  0x00000404
[ 3223.833842] sdhci: Blk size: 0x00000000 | Blk cnt:  0x00000000
[ 3223.839706] sdhci: Argument: 0x00000000 | Trn mode: 0x00000000
[ 3223.845549] sdhci: Present:  0x01fb00f0 | Host ctl: 0x00000000
[ 3223.851477] sdhci: Power:    0x00000000 | Blk gap:  0x00000000
[ 3223.857323] sdhci: Wake-up:  0x00000000 | Clock:    0x00000000
[ 3223.863164] sdhci: Timeout:  0x00000000 | Int stat: 0x00000000
[ 3223.869012] sdhci: Int enab: 0x00ff1003 | Sig enab: 0x00fc1003
[ 3223.874853] sdhci: AC12 err: 0x00000000 | Slot int: 0x00000000
[ 3223.880693] sdhci: Caps:     0x3f6cd08c | Caps_1:   0x18006f73
[ 3223.886533] sdhci: Cmd:      0x00000000 | Max curr: 0x00000000
[ 3223.892368] sdhci: Host ctl2: 0x00003000
[ 3223.896315] sdhci: ADMA Err: 0x00000000 | ADMA Ptr: 0x0000000000000000
[ 3223.903068] sdhci: ===========================================
[ 3223.953646] sdhci-tegra 3440000.sdhci: Failed to create debugfs
^C
root@poc01:/home/dev# dmesg | tail -n 300
[ 3224.018577] sdhci-tegra 3440000.sdhci: Setting clk limit 200000
[ 3224.018584] sdhci-tegra 3440000.sdhci: Enabling clk 200000, clk enabled 1
[ 3224.018594] sdhci-tegra 3440000.sdhci: chosen clk parent pll_p, parent rate 408000000
[ 3224.018778] sdhci-tegra 3440000.sdhci: req clk 200000, set clk 3175098
[ 3224.020912] sdhci-tegra 3440000.sdhci: tegra_sdhci_signal_voltage_switch_post: error -19 in comp drvup settings at 1.8v
[ 3224.021960] sdhci-tegra 3440000.sdhci: Initial signal voltage of 1.8v
[ 3224.041644] mmc1: clock 200000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
[ 3224.061706] mmc1: starting CMD52 arg 00000c00 flags 00000195
[ 3224.062392] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00018001
[ 3224.062481] mmc1: req done (CMD52): -110: 00000000 00000000 00000000 00000000
[ 3224.062507] mmc1: starting CMD52 arg 80000c08 flags 00000195
[ 3224.063186] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00018001
[ 3224.063265] mmc1: req done (CMD52): -110: 00000000 00000000 00000000 00000000
[ 3224.063290] mmc1: clock 200000Hz busmode 2 powermode 2 cs 1 Vdd 7 width 1 timing 0
[ 3224.064357] mmc1: starting CMD0 arg 00000000 flags 000000c0
[ 3224.064685] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00000001
[ 3224.064710] mmc1: req done (CMD0): 0: 00000000 00000000 00000000 00000000
[ 3224.065733] mmc1: clock 200000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
[ 3224.066803] mmc1: starting CMD5 arg 00000000 flags 000002e1
[ 3224.067469] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00018001
[ 3224.067545] mmc1: req failed (CMD5): -110, retrying...
[ 3224.068205] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00018001
[ 3224.068283] mmc1: req failed (CMD5): -110, retrying...
[ 3224.068944] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00018001
[ 3224.069015] mmc1: req failed (CMD5): -110, retrying...
[ 3224.069684] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00018001
[ 3224.069761] mmc1: req done (CMD5): -110: 00000000 00000000 00000000 00000000
[ 3224.069787] mmc1: clock 0Hz busmode 2 powermode 0 cs 0 Vdd 0 width 1 timing 0
[ 3224.070938] mmc1: mmc_rescan_try_freq: trying to init card at 101661 Hz
[ 3224.070946] mmc1: clock 101661Hz busmode 2 powermode 1 cs 0 Vdd 7 width 1 timing 0
[ 3224.070957] sdhci-tegra 3440000.sdhci: Setting clk limit 101661
[ 3224.070965] sdhci-tegra 3440000.sdhci: Enabling clk 101661, clk enabled 1
[ 3224.070976] sdhci-tegra 3440000.sdhci: chosen clk parent pll_p, parent rate 408000000
[ 3224.071249] sdhci-tegra 3440000.sdhci: req clk 101661, set clk 3175098
[ 3224.073381] sdhci-tegra 3440000.sdhci: tegra_sdhci_signal_voltage_switch_post: error -19 in comp drvup settings at 1.8v
[ 3224.074428] sdhci-tegra 3440000.sdhci: Initial signal voltage of 1.8v
[ 3224.093624] mmc1: clock 101661Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
[ 3224.113707] mmc1: starting CMD52 arg 00000c00 flags 00000195
[ 3224.115034] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00018001
[ 3224.115179] mmc1: req done (CMD52): -110: 00000000 00000000 00000000 00000000
[ 3224.115224] mmc1: starting CMD52 arg 80000c08 flags 00000195
[ 3224.116540] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00018001
[ 3224.116669] mmc1: req done (CMD52): -110: 00000000 00000000 00000000 00000000
[ 3224.116710] mmc1: clock 101661Hz busmode 2 powermode 2 cs 1 Vdd 7 width 1 timing 0
[ 3224.120482] mmc1: starting CMD0 arg 00000000 flags 000000c0
[ 3224.121113] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00000001
[ 3224.121149] mmc1: req done (CMD0): 0: 00000000 00000000 00000000 00000000
[ 3224.122194] mmc1: clock 101661Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
[ 3224.123275] mmc1: starting CMD5 arg 00000000 flags 000002e1
[ 3224.124594] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00018001
[ 3224.124735] mmc1: req failed (CMD5): -110, retrying...
[ 3224.126049] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00018001
[ 3224.126209] mmc1: req failed (CMD5): -110, retrying...
[ 3224.127516] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00018001
[ 3224.127657] mmc1: req failed (CMD5): -110, retrying...
[ 3224.128965] sdhci [sdhci_irq()]: *** mmc1 got interrupt: 0x00018001
[ 3224.129095] mmc1: req done (CMD5): -110: 00000000 00000000 00000000 00000000
[ 3224.129135] mmc1: clock 0Hz busmode 2 powermode 0 cs 0 Vdd 0 width 1 timing 0
[ 3224.914431] sdhci-tegra 3460000.sdhci: Setting clk limit 196249804
[ 3224.914453] sdhci-tegra 3460000.sdhci: Enabling clk 200000000, clk enabled 0
[ 3224.914851] sdhci-tegra 3460000.sdhci: req clk 196249804, set clk 196249804
[ 3224.914892] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220200 req: 0xffffffc0e3e17c80 mqrq: 0xffffffc0eb220000 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2201f8 card-addr: 0x00001010 dir(r-1/w-0): 0
[ 3224.914911] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.914940] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x1010, intr: 1
[ 3224.914973] cmdq_prep_tran_desc: req: 0xffffffc0e3e17c80 tag: 0 calc-link_desc: 0xffffff800a8b1000, sg-cnt: 1
[ 3224.915014] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220578 req: 0xffffffc0e3e16480 mqrq: 0xffffffc0eb220378 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220570 card-addr: 0x00401060 dir(r-1/w-0): 0
[ 3224.915030] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.915051] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x401060, intr: 1
[ 3224.915069] cmdq_prep_tran_desc: req: 0xffffffc0e3e16480 tag: 1 calc-link_desc: 0xffffff800a8b1800, sg-cnt: 1
[ 3224.915100] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb2208f0 req: 0xffffffc0e3e16600 mqrq: 0xffffffc0eb2206f0 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2208e8 card-addr: 0x00401120 dir(r-1/w-0): 0
[ 3224.915114] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.915134] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x401120, intr: 1
[ 3224.915152] cmdq_prep_tran_desc: req: 0xffffffc0e3e16600 tag: 2 calc-link_desc: 0xffffff800a8b2000, sg-cnt: 1
[ 3224.915181] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220c68 req: 0xffffffc0e3e16000 mqrq: 0xffffffc0eb220a68 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220c60 card-addr: 0x00401130 dir(r-1/w-0): 0
[ 3224.915195] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.915214] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x401130, intr: 1
[ 3224.915230] cmdq_prep_tran_desc: req: 0xffffffc0e3e16000 tag: 3 calc-link_desc: 0xffffff800a8b2800, sg-cnt: 1
[ 3224.915260] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220fe0 req: 0xffffffc0e3e17b00 mqrq: 0xffffffc0eb220de0 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220fd8 card-addr: 0x00401140 dir(r-1/w-0): 0
[ 3224.915273] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.915292] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x401140, intr: 1
[ 3224.915309] cmdq_prep_tran_desc: req: 0xffffffc0e3e17b00 tag: 4 calc-link_desc: 0xffffff800a8b3000, sg-cnt: 1
[ 3224.915339] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb221358 req: 0xffffffc0e3e16300 mqrq: 0xffffffc0eb221158 bytes to xf: 8192mmc_cmdq_req: 0xffffffc0eb221350 card-addr: 0x00401158 dir(r-1/w-0): 0
[ 3224.915352] mmc0:     blksz 512 blocks 16 flags 00000100 tsac 400 ms nsac 0
[ 3224.915373] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000010 - addr: 0x401158, intr: 1
[ 3224.915392] cmdq_prep_tran_desc: req: 0xffffffc0e3e16300 tag: 5 calc-link_desc: 0xffffff800a8b3800, sg-cnt: 1
[ 3224.915420] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb2216d0 req: 0xffffffc0e3e16180 mqrq: 0xffffffc0eb2214d0 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2216c8 card-addr: 0x00401368 dir(r-1/w-0): 0
[ 3224.915433] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.915453] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x401368, intr: 1
[ 3224.915468] cmdq_prep_tran_desc: req: 0xffffffc0e3e16180 tag: 6 calc-link_desc: 0xffffff800a8b4000, sg-cnt: 1
[ 3224.915499] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb221a48 req: 0xffffffc0e3e17080 mqrq: 0xffffffc0eb221848 bytes to xf: 28672mmc_cmdq_req: 0xffffffc0eb221a40 card-addr: 0x004019c0 dir(r-1/w-0): 0
[ 3224.915512] mmc0:     blksz 512 blocks 56 flags 00000100 tsac 400 ms nsac 0
[ 3224.915531] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000038 - addr: 0x4019c0, intr: 1
[ 3224.915573] cmdq_prep_tran_desc: req: 0xffffffc0e3e17080 tag: 7 calc-link_desc: 0xffffff800a8b4800, sg-cnt: 1
[ 3224.915604] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb221dc0 req: 0xffffffc0e3e17200 mqrq: 0xffffffc0eb221bc0 bytes to xf: 32768mmc_cmdq_req: 0xffffffc0eb221db8 card-addr: 0x00401a00 dir(r-1/w-0): 0
[ 3224.915617] mmc0:     blksz 512 blocks 64 flags 00000100 tsac 400 ms nsac 0
[ 3224.915637] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000040 - addr: 0x401a00, intr: 1
[ 3224.915673] cmdq_prep_tran_desc: req: 0xffffffc0e3e17200 tag: 8 calc-link_desc: 0xffffff800a8b5000, sg-cnt: 1
[ 3224.915702] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb222138 req: 0xffffffc0e58a4c00 mqrq: 0xffffffc0eb221f38 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb222130 card-addr: 0x00403330 dir(r-1/w-0): 0
[ 3224.915715] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.915733] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x403330, intr: 1
[ 3224.915750] cmdq_prep_tran_desc: req: 0xffffffc0e58a4c00 tag: 9 calc-link_desc: 0xffffff800a8b5800, sg-cnt: 1
[ 3224.915778] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb2224b0 req: 0xffffffc0e58a4a80 mqrq: 0xffffffc0eb2222b0 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2224a8 card-addr: 0x004033d8 dir(r-1/w-0): 0
[ 3224.915790] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.915810] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x4033d8, intr: 1
[ 3224.915826] cmdq_prep_tran_desc: req: 0xffffffc0e58a4a80 tag: 10 calc-link_desc: 0xffffff800a8b6000, sg-cnt: 1
[ 3224.915853] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb222828 req: 0xffffffc0e58a5980 mqrq: 0xffffffc0eb222628 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb222820 card-addr: 0x00801108 dir(r-1/w-0): 0
[ 3224.915866] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.915884] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x801108, intr: 1
[ 3224.915901] cmdq_prep_tran_desc: req: 0xffffffc0e58a5980 tag: 11 calc-link_desc: 0xffffff800a8b6800, sg-cnt: 1
[ 3224.915929] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb222ba0 req: 0xffffffc0e58a5800 mqrq: 0xffffffc0eb2229a0 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb222b98 card-addr: 0x00802138 dir(r-1/w-0): 0
[ 3224.915941] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.915956] *** mmc0: cmdq intr: 0x00004000
[ 3224.915974] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.916067] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x802138, intr: 1
[ 3224.916087] cmdq_prep_tran_desc: req: 0xffffffc0e58a5800 tag: 12 calc-link_desc: 0xffffff800a8b7000, sg-cnt: 1
[ 3224.916120] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220200 req: 0xffffffc0e58a5380 mqrq: 0xffffffc0eb220000 bytes to xf: 8192mmc_cmdq_req: 0xffffffc0eb2201f8 card-addr: 0x00802150 dir(r-1/w-0): 0
[ 3224.916133] mmc0:     blksz 512 blocks 16 flags 00000100 tsac 400 ms nsac 0
[ 3224.916152] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000010 - addr: 0x802150, intr: 1
[ 3224.916172] cmdq_prep_tran_desc: req: 0xffffffc0e58a5380 tag: 0 calc-link_desc: 0xffffff800a8b1000, sg-cnt: 1
[ 3224.916198] *** mmc0: cmdq intr: 0x00004000
[ 3224.916213] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.916236] *** mmc0: cmdq intr: 0x00004000
[ 3224.916251] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.916271] *** mmc0: cmdq intr: 0x00004000
[ 3224.916286] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.916307] *** mmc0: cmdq intr: 0x00004000
[ 3224.916323] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.916363] *** mmc0: cmdq intr: 0x00004000
[ 3224.916378] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.916431] *** mmc0: cmdq intr: 0x00004000
[ 3224.916447] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.916561] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb222f18 req: 0xffffffc0e58a4000 mqrq: 0xffffffc0eb222d18 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb222f10 card-addr: 0x00803c20 dir(r-1/w-0): 0
[ 3224.916572] *** mmc0: cmdq intr: 0x00004000
[ 3224.916585] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.916712] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.916723] *** mmc0: cmdq intr: 0x00004000
[ 3224.916739] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.916832] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x803c20, intr: 1
[ 3224.916852] cmdq_prep_tran_desc: req: 0xffffffc0e58a4000 tag: 13 calc-link_desc: 0xffffff800a8b7800, sg-cnt: 1
[ 3224.916869] *** mmc0: cmdq intr: 0x00004000
[ 3224.916884] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.916917] *** mmc0: cmdq intr: 0x00004000
[ 3224.916932] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.916957] *** mmc0: cmdq intr: 0x00004000
[ 3224.916972] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.917079] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220578 req: 0xffffffc0e58a5b00 mqrq: 0xffffffc0eb220378 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220570 card-addr: 0x00804e88 dir(r-1/w-0): 0
[ 3224.917092] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.917112] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x804e88, intr: 1
[ 3224.917132] cmdq_prep_tran_desc: req: 0xffffffc0e58a5b00 tag: 1 calc-link_desc: 0xffffff800a8b1800, sg-cnt: 1
[ 3224.917161] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb2208f0 req: 0xffffffc0e58a5680 mqrq: 0xffffffc0eb2206f0 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2208e8 card-addr: 0x00804ec0 dir(r-1/w-0): 0
[ 3224.917174] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.917192] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x804ec0, intr: 1
[ 3224.917209] cmdq_prep_tran_desc: req: 0xffffffc0e58a5680 tag: 2 calc-link_desc: 0xffffff800a8b2000, sg-cnt: 1
[ 3224.917228] *** mmc0: cmdq intr: 0x00004000
[ 3224.917243] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.917275] *** mmc0: cmdq intr: 0x00004000
[ 3224.917290] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.917330] *** mmc0: cmdq intr: 0x00004000
[ 3224.917346] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.917429] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220200 req: 0xffffffc0e58a4480 mqrq: 0xffffffc0eb220000 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2201f8 card-addr: 0x00804f48 dir(r-1/w-0): 0
[ 3224.917442] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.917462] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x804f48, intr: 1
[ 3224.917481] cmdq_prep_tran_desc: req: 0xffffffc0e58a4480 tag: 0 calc-link_desc: 0xffffff800a8b1000, sg-cnt: 1
[ 3224.917510] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220578 req: 0xffffffc0e58a5500 mqrq: 0xffffffc0eb220378 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220570 card-addr: 0x00804f68 dir(r-1/w-0): 0
[ 3224.917523] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.917541] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x804f68, intr: 1
[ 3224.917558] cmdq_prep_tran_desc: req: 0xffffffc0e58a5500 tag: 1 calc-link_desc: 0xffffff800a8b1800, sg-cnt: 1
[ 3224.917586] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220c68 req: 0xffffffc0e58a4900 mqrq: 0xffffffc0eb220a68 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220c60 card-addr: 0x00805038 dir(r-1/w-0): 0
[ 3224.917686] *** mmc0: cmdq intr: 0x00004000
[ 3224.917705] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.917807] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.917834] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x805038, intr: 1
[ 3224.917859] cmdq_prep_tran_desc: req: 0xffffffc0e58a4900 tag: 3 calc-link_desc: 0xffffff800a8b2800, sg-cnt: 1
[ 3224.917905] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220200 req: 0xffffffc0e58a4600 mqrq: 0xffffffc0eb220000 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2201f8 card-addr: 0x00805090 dir(r-1/w-0): 0
[ 3224.917916] *** mmc0: cmdq intr: 0x00004000
[ 3224.917938] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.918008] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.918031] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x805090, intr: 1
[ 3224.918061] cmdq_prep_tran_desc: req: 0xffffffc0e58a4600 tag: 0 calc-link_desc: 0xffffff800a8b1000, sg-cnt: 1
[ 3224.918101] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220578 req: 0xffffffc0e58a4780 mqrq: 0xffffffc0eb220378 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220570 card-addr: 0x00c01108 dir(r-1/w-0): 0
[ 3224.918122] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.918144] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc01108, intr: 1
[ 3224.918165] cmdq_prep_tran_desc: req: 0xffffffc0e58a4780 tag: 1 calc-link_desc: 0xffffff800a8b1800, sg-cnt: 1
[ 3224.918193] *** mmc0: cmdq intr: 0x00004000
[ 3224.918214] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.918305] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220200 req: 0xffffffc0e47d3980 mqrq: 0xffffffc0eb220000 bytes to xf: 8192mmc_cmdq_req: 0xffffffc0eb2201f8 card-addr: 0x00c01130 dir(r-1/w-0): 0
[ 3224.918327] mmc0:     blksz 512 blocks 16 flags 00000100 tsac 400 ms nsac 0
[ 3224.918351] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000010 - addr: 0xc01130, intr: 1
[ 3224.918380] cmdq_prep_tran_desc: req: 0xffffffc0e47d3980 tag: 0 calc-link_desc: 0xffffff800a8b1000, sg-cnt: 1
[ 3224.918413] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb2208f0 req: 0xffffffc0e47d3080 mqrq: 0xffffffc0eb2206f0 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2208e8 card-addr: 0x00c011a8 dir(r-1/w-0): 0
[ 3224.918433] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.918455] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc011a8, intr: 1
[ 3224.918476] cmdq_prep_tran_desc: req: 0xffffffc0e47d3080 tag: 2 calc-link_desc: 0xffffff800a8b2000, sg-cnt: 1
[ 3224.918495] *** mmc0: cmdq intr: 0x00004000
[ 3224.918510] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.918580] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220578 req: 0xffffffc0e47d2180 mqrq: 0xffffffc0eb220378 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220570 card-addr: 0x00c01218 dir(r-1/w-0): 0
[ 3224.918594] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.918613] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc01218, intr: 1
[ 3224.918632] cmdq_prep_tran_desc: req: 0xffffffc0e47d2180 tag: 1 calc-link_desc: 0xffffff800a8b1800, sg-cnt: 1
[ 3224.918660] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220c68 req: 0xffffffc0e47d3200 mqrq: 0xffffffc0eb220a68 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220c60 card-addr: 0x00c012b0 dir(r-1/w-0): 0
[ 3224.918673] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.918691] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc012b0, intr: 1
[ 3224.918709] cmdq_prep_tran_desc: req: 0xffffffc0e47d3200 tag: 3 calc-link_desc: 0xffffff800a8b2800, sg-cnt: 1
[ 3224.918739] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220fe0 req: 0xffffffc0e47d3680 mqrq: 0xffffffc0eb220de0 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220fd8 card-addr: 0x00c01390 dir(r-1/w-0): 0
[ 3224.918752] *** mmc0: cmdq intr: 0x00004000
[ 3224.918765] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.918824] *** mmc0: cmdq intr: 0x00004000
[ 3224.918837] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.918886] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.918906] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc01390, intr: 1
[ 3224.918924] cmdq_prep_tran_desc: req: 0xffffffc0e47d3680 tag: 4 calc-link_desc: 0xffffff800a8b3000, sg-cnt: 1
[ 3224.918958] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220200 req: 0xffffffc0e47d3500 mqrq: 0xffffffc0eb220000 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2201f8 card-addr: 0x00c013c0 dir(r-1/w-0): 0
[ 3224.918970] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.918989] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc013c0, intr: 1
[ 3224.919006] cmdq_prep_tran_desc: req: 0xffffffc0e47d3500 tag: 0 calc-link_desc: 0xffffff800a8b1000, sg-cnt: 1
[ 3224.919036] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb2208f0 req: 0xffffffc0e47d2000 mqrq: 0xffffffc0eb2206f0 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2208e8 card-addr: 0x00c013d0 dir(r-1/w-0): 0
[ 3224.919049] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.919067] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc013d0, intr: 1
[ 3224.919084] cmdq_prep_tran_desc: req: 0xffffffc0e47d2000 tag: 2 calc-link_desc: 0xffffff800a8b2000, sg-cnt: 1
[ 3224.919103] *** mmc0: cmdq intr: 0x00004000
[ 3224.919118] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.919148] *** mmc0: cmdq intr: 0x00004000
[ 3224.919164] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.919265] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220578 req: 0xffffffc0e47d2f00 mqrq: 0xffffffc0eb220378 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220570 card-addr: 0x00c01458 dir(r-1/w-0): 0
[ 3224.919278] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.919297] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc01458, intr: 1
[ 3224.919317] cmdq_prep_tran_desc: req: 0xffffffc0e47d2f00 tag: 1 calc-link_desc: 0xffffff800a8b1800, sg-cnt: 1
[ 3224.919346] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220c68 req: 0xffffffc0e47d3800 mqrq: 0xffffffc0eb220a68 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220c60 card-addr: 0x00c014e8 dir(r-1/w-0): 0
[ 3224.919358] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.919377] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc014e8, intr: 1
[ 3224.919394] cmdq_prep_tran_desc: req: 0xffffffc0e47d3800 tag: 3 calc-link_desc: 0xffffff800a8b2800, sg-cnt: 1
[ 3224.919413] *** mmc0: cmdq intr: 0x00004000
[ 3224.919428] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.919488] *** mmc0: cmdq intr: 0x00004000
[ 3224.919504] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.919525] *** mmc0: cmdq intr: 0x00004000
[ 3224.919540] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.919616] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220200 req: 0xffffffc0e9378000 mqrq: 0xffffffc0eb220000 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2201f8 card-addr: 0x00c01528 dir(r-1/w-0): 0
[ 3224.919629] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.919648] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc01528, intr: 1
[ 3224.919666] cmdq_prep_tran_desc: req: 0xffffffc0e9378000 tag: 0 calc-link_desc: 0xffffff800a8b1000, sg-cnt: 1
[ 3224.919698] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220578 req: 0xffffffc0e9379680 mqrq: 0xffffffc0eb220378 bytes to xf: 20480mmc_cmdq_req: 0xffffffc0eb220570 card-addr: 0x00c015b8 dir(r-1/w-0): 0
[ 3224.919711] mmc0:     blksz 512 blocks 40 flags 00000100 tsac 400 ms nsac 0
[ 3224.919730] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000028 - addr: 0xc015b8, intr: 1
[ 3224.919772] cmdq_prep_tran_desc: req: 0xffffffc0e9379680 tag: 1 calc-link_desc: 0xffffff800a8b1800, sg-cnt: 1
[ 3224.919799] *** mmc0: cmdq intr: 0x00004000
[ 3224.919818] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.919843] *** mmc0: cmdq intr: 0x00004000
[ 3224.919863] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.919974] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220200 req: 0xffffffc0e2b4bb00 mqrq: 0xffffffc0eb220000 bytes to xf: 8192mmc_cmdq_req: 0xffffffc0eb2201f8 card-addr: 0x00c01680 dir(r-1/w-0): 0
[ 3224.919995] mmc0:     blksz 512 blocks 16 flags 00000100 tsac 400 ms nsac 0
[ 3224.920020] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000010 - addr: 0xc01680, intr: 1
[ 3224.920047] cmdq_prep_tran_desc: req: 0xffffffc0e2b4bb00 tag: 0 calc-link_desc: 0xffffff800a8b1000, sg-cnt: 1
[ 3224.920081] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb2208f0 req: 0xffffffc0e2b4a780 mqrq: 0xffffffc0eb2206f0 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2208e8 card-addr: 0x00c07d98 dir(r-1/w-0): 0
[ 3224.920101] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.920124] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc07d98, intr: 1
[ 3224.920145] cmdq_prep_tran_desc: req: 0xffffffc0e2b4a780 tag: 2 calc-link_desc: 0xffffff800a8b2000, sg-cnt: 1
[ 3224.920170] *** mmc0: cmdq intr: 0x00004000
[ 3224.920190] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.920291] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220578 req: 0xffffffc0e2b4a180 mqrq: 0xffffffc0eb220378 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220570 card-addr: 0x00c08020 dir(r-1/w-0): 0
[ 3224.920311] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.920335] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc08020, intr: 1
[ 3224.920358] cmdq_prep_tran_desc: req: 0xffffffc0e2b4a180 tag: 1 calc-link_desc: 0xffffff800a8b1800, sg-cnt: 1
[ 3224.920391] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220c68 req: 0xffffffc0e2b4b200 mqrq: 0xffffffc0eb220a68 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb220c60 card-addr: 0x01006908 dir(r-1/w-0): 0
[ 3224.920412] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.920423] *** mmc0: cmdq intr: 0x00004000
[ 3224.920443] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.920522] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x1006908, intr: 1
[ 3224.920547] cmdq_prep_tran_desc: req: 0xffffffc0e2b4b200 tag: 3 calc-link_desc: 0xffffff800a8b2800, sg-cnt: 1
[ 3224.920565] *** mmc0: cmdq intr: 0x00004000
[ 3224.920581] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.920647] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220200 req: 0xffffffc0e2b4b080 mqrq: 0xffffffc0eb220000 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2201f8 card-addr: 0x01801200 dir(r-1/w-0): 0
[ 3224.920660] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3224.920679] mmc0: cmdq_prep_task_desc: data-tag: 0x00000001 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0x1801200, intr: 1
[ 3224.920699] cmdq_prep_tran_desc: req: 0xffffffc0e2b4b080 tag: 0 calc-link_desc: 0xffffff800a8b1000, sg-cnt: 1
[ 3224.920825] *** mmc0: cmdq intr: 0x00004000
[ 3224.920842] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.920870] *** mmc0: cmdq intr: 0x00004000
[ 3224.920882] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3224.933617] sdhci-tegra 3460000.sdhci: Setting clk limit 0
[ 3224.933623] sdhci-tegra 3460000.sdhci: Disabling clk 0, clk enabled 1
[ 3229.010405] sdhci-tegra 3460000.sdhci: Setting clk limit 196249804
[ 3229.010436] sdhci-tegra 3460000.sdhci: Enabling clk 200000000, clk enabled 0
[ 3229.013766] sdhci-tegra 3460000.sdhci: req clk 196249804, set clk 196249804
[ 3229.013834] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220200 req: 0xffffffc0e2b4ad80 mqrq: 0xffffffc0eb220000 bytes to xf: 8192mmc_cmdq_req: 0xffffffc0eb2201f8 card-addr: 0x00c61300 dir(r-1/w-0): 0
[ 3229.013854] mmc0:     blksz 512 blocks 16 flags 00000100 tsac 400 ms nsac 0
[ 3229.013882] mmc0: cmdq_prep_task_desc: data-tag: 0x00000000 - dir: 0 - prio: 0 - cnt: 0x00000010 - addr: 0xc61300, intr: 1
[ 3229.013923] cmdq_prep_tran_desc: req: 0xffffffc0e2b4ad80 tag: 0 calc-link_desc: 0xffffff800a8b1000, sg-cnt: 1
[ 3229.014909] *** mmc0: cmdq intr: 0x00004000
[ 3229.014927] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3229.015908] *** mmc0: cmdq intr: 0x00004000
[ 3229.015916] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3229.015983] mmc0: mmc_blk_cmdq_rw_prep: mrq: 0xffffffc0eb220200 req: 0xffffffc0e92b2f00 mqrq: 0xffffffc0eb220000 bytes to xf: 4096mmc_cmdq_req: 0xffffffc0eb2201f8 card-addr: 0x00c61310 dir(r-1/w-0): 0
[ 3229.015989] mmc0:     blksz 512 blocks 8 flags 00000100 tsac 400 ms nsac 0
[ 3229.016001] mmc0: cmdq_prep_task_desc: data-tag: 0x00000000 - dir: 0 - prio: 0 - cnt: 0x00000008 - addr: 0xc61310, intr: 1
[ 3229.016017] cmdq_prep_tran_desc: req: 0xffffffc0e92b2f00 tag: 0 calc-link_desc: 0xffffff800a8b1000, sg-cnt: 1
[ 3229.016774] *** mmc0: cmdq intr: 0x00004000
[ 3229.016783] mmc0: cmdq_irq: CQIS: 2, intmask: 4000
[ 3229.029717] sdhci-tegra 3460000.sdhci: Setting clk limit 0
[ 3229.029736] sdhci-tegra 3460000.sdhci: Disabling clk 0, clk enabled 1

The latest device tree for the above error messages:

	fixed-regulators {
		dummy_regulator_sdmmc3: regulator@19 {
			compatible = "regulator-fixed";
			reg = <19>;
			regulator-name = "dummy_regulator_sdmmc3";
			regulator-min-microvolt = <1800000>;
			regulator-max-microvolt = <1800000>;
			regulator-always-on;
		};
	};

	sdhci@3440000 {
		nvidia,is-sdio;
		cap-sdio-irq;
		no-sd;
		no-mmc;
		only-1-8-v;
		wakeup-source;
		nvidia,disable-rtpm;
		uhs-mask = <0x7F>; // Enables only SDR25 mode
		max-clk-limit = <50000000>;
		force-non-removable-rescan;
		nvidia,vmmc-always-on;
		vmmc-supply = <&spmic_sd2>;
		nvidia,vqmmc-always-on;
		vqmcc-supply = <&spmic_sd2>;

		/delete-property/ ddr-clk-limit;
		/delete-property/ no-sdio;
		// /delete-property/ iommus;

		status = "okay";

		#address-cells = <1>;
		#size-cells = <0>;

		/* Probably not needed as we do not have a cd/wp*/
		nvidia,en-periodic-calib;
		cd-inverted;
		wp-inverted;
		pwrdet-support;
		wilc1000: wilc_wlan@1 {
			compatible = "microchip,wilc1000", "microchip,wilc3000";
			status = "okay";
			reg = <1>;
			pwr-retry-cnt = <4>;
			sdhci-host = <&sdmmc3>;
			irq-gpios = <&tegra_main_gpio TEGRA_MAIN_GPIO(C, 2) GPIO_ACTIVE_LOW>;
			reset-gpio = <&tegra_main_gpio TEGRA_MAIN_GPIO(X, 4) GPIO_ACTIVE_LOW>;
			chip_en-gpios = <&tegra_main_gpio TEGRA_AON_GPIO(U, 5) GPIO_ACTIVE_HIGH>;
		};
	};

Thanks in advance for your help!

What is the content of your spmic_sd2?

Also, are you sure you want to set max-clk?

	max-clk-limit = <50000000>;

spmic_sd2 is a pre-defined regulator:

// in tegra186-p3636-0001-a00-spmic.dtsi
spmic_sd2: sd2 {
	regulator-name = "vdd-1v8";
	regulator-min-microvolt = <1800000>;
	regulator-max-microvolt = <1800000>;
	regulator-always-on;
	regulator-boot-on;
	regulator-init-mode = <REGULATOR_MODE_NORMAL>;
	maxim,active-fps-source = <MAX77620_FPS_SRC_DEF>;
};

I have also tried the same device tree with the dummy regulator posted previously.

I have set that to 50 MHz because the used WiFi-Module (ATWILC3000) defined it as the max clock.

The ATWILC3000-MR110xA module SDIO Client is a full speed interface. This interface supports the 1-bit/4-bit SD
transfer mode at the clock range of 0-50 MHz

I have also tried a smaller max-clk, but it does not seem to make a difference. Confirmed the changes were transmitted by decompiling the dtb using dtc on /proc/device-tree and looking at the resulting dts.

Hi,

As our previous discussion, could you directly attach the current log without doing any parsing? We really don’t want you to grep or tail.

Hello,

after enabling the MMC DEBUG flag, the logs became very verbose, especially mmc0. Since the logs in /var/log/syslog and /var/log/kern.logdo not start at boot time, I rebooted the device and also copied the logs from the UART connection. I have attached those logs.

This is the output of modprobe, in case it helps:

dev@poc01:~$ sudo modprobe -vvv wilc-sdio
modprobe: INFO: ../libkmod/libkmod.c:364 kmod_set_log_fn() custom logging function 0x555ce24458 registered
modprobe: DEBUG: ../libkmod/libkmod-index.c:755 index_mm_open() file=/lib/modules/4.9.299-tegra/modules.dep.                                     bin
modprobe: DEBUG: ../libkmod/libkmod-index.c:755 index_mm_open() file=/lib/modules/4.9.299-tegra/modules.alia                                     s.bin
modprobe: DEBUG: ../libkmod/libkmod-index.c:755 index_mm_open() file=/lib/modules/4.9.299-tegra/modules.symb                                     ols.bin
modprobe: DEBUG: ../libkmod/libkmod-index.c:755 index_mm_open() file=/lib/modules/4.9.299-tegra/modules.buil                                     tin.bin
modprobe: DEBUG: ../libkmod/libkmod-module.c:556 kmod_module_new_from_lookup() input alias=wilc-sdio, normal                                     ized=wilc_sdio
modprobe: DEBUG: ../libkmod/libkmod-module.c:562 kmod_module_new_from_lookup() lookup modules.dep wilc_sdio
modprobe: DEBUG: ../libkmod/libkmod.c:574 kmod_search_moddep() use mmaped index 'modules.dep' modname=wilc_s                                     dio
modprobe: DEBUG: ../libkmod/libkmod.c:402 kmod_pool_get_module() get module name='wilc_sdio' found=(nil)
modprobe: DEBUG: ../libkmod/libkmod.c:410 kmod_pool_add_module() add 0x559ce09f20 key='wilc_sdio'
modprobe: DEBUG: ../libkmod/libkmod.c:402 kmod_pool_get_module() get module name='cfg80211' found=(nil)
modprobe: DEBUG: ../libkmod/libkmod.c:402 kmod_pool_get_module() get module name='cfg80211' found=(nil)
modprobe: DEBUG: ../libkmod/libkmod.c:410 kmod_pool_add_module() add 0x559ce0a0f0 key='cfg80211'
modprobe: DEBUG: ../libkmod/libkmod-module.c:196 kmod_module_parse_depline() add dep: /lib/modules/4.9.299-t                                     egra/kernel/net/wireless/cfg80211.ko
modprobe: DEBUG: ../libkmod/libkmod-module.c:202 kmod_module_parse_depline() 1 dependencies for wilc_sdio
modprobe: DEBUG: ../libkmod/libkmod-module.c:583 kmod_module_new_from_lookup() lookup wilc_sdio=0, list=0x55                                     9ce0a030
modprobe: DEBUG: ../libkmod/libkmod.c:501 lookup_builtin_file() use mmaped index 'modules.builtin' modname=w                                     ilc_sdio
modprobe: DEBUG: ../libkmod/libkmod-module.c:1750 kmod_module_get_initstate() could not open '/sys/module/wi                                     lc_sdio/initstate': No such file or directory
modprobe: DEBUG: ../libkmod/libkmod-module.c:1760 kmod_module_get_initstate() could not open '/sys/module/wi                                     lc_sdio': No such file or directory
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_pcsp mod->name=cfg80                                     211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_audio mod->name=                                     cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=cx88_alsa mod->name=cfg8                                     0211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_atiixp_modem mod->na                                     me=cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_intel8x0m mod->name=                                     cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_via82xx_modem mod->n                                     ame=cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=bt87x mod->name=cfg80211                                      mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=cx88_alsa mod->name=cfg8                                     0211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=saa7134_alsa mod->name=c                                     fg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_atiixp_modem mod->na                                     me=cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_intel8x0m mod->name=                                     cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_via82xx_modem mod->n                                     ame=cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_audio mod->name=                                     cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_caiaq mod->name=                                     cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_ua101 mod->name=                                     cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_us122l mod->name                                     =cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_usx2y mod->name=                                     cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_cmipci mod->name=cfg                                     80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_pcsp mod->name=cfg80                                     211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_audio mod->name=                                     cfg80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=bonding mod->name=cfg802                                     11 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=dummy mod->name=cfg80211                                      mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=net mod->name=cfg80211 m                                     od->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=rootfs mod->name=cfg8021                                     1 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=usbcore mod->name=cfg802                                     11 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=boot mod->name=cfg80211                                      mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=boot mod->name=cfg80211                                      mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=sdhci_tegra mod->name=cf                                     g80211 mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=net mod->name=cfg80211 m                                     od->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod.c:501 lookup_builtin_file() use mmaped index 'modules.builtin' modname=c                                     fg80211
modprobe: DEBUG: ../libkmod/libkmod-module.c:1306 kmod_module_probe_insert_module() Ignoring module 'cfg8021                                     1': already loaded
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_pcsp mod->name=wilc_                                     sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_audio mod->name=                                     wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=cx88_alsa mod->name=wilc                                     _sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_atiixp_modem mod->na                                     me=wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_intel8x0m mod->name=                                     wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_via82xx_modem mod->n                                     ame=wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=bt87x mod->name=wilc_sdi                                     o mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=cx88_alsa mod->name=wilc                                     _sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=saa7134_alsa mod->name=w                                     ilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_atiixp_modem mod->na                                     me=wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_intel8x0m mod->name=                                     wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_via82xx_modem mod->n                                     ame=wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_audio mod->name=                                     wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-mo[  166.919482] wilc_sdio: module is from the staging directory, the qu                                     ality is unknown, you have been warned.
dule.c:1393 kmod_module_get_options() modname=snd_usb_caiaq mod->name=wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_ua101 mod->name=                                     wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_us122l mod->name                                     =wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_usx2y mod->name=                                     wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_cmipci mod->name=wil                                     c_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_pcsp mod->name=wilc_                                     sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=snd_usb_audio mod->name=                                     wilc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=bonding mod->name=wilc_s                                     dio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=dummy mod->name=wilc_sdi                                     o mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=net mod->name=wilc_sdio                                      mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=rootfs mod->name=wilc_sd                                     io mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=usbcore mod->name=wilc_s                                     dio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=boot mod->name=wilc_sdio                                      mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=boot mod->name=wilc_sdio                                      mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=sdhci_tegra mod->name=wi                                     lc_sdio mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1393 kmod_module_get_options() modname=net mod->name=wilc_sdio                                      mod->alias=(null)
modprobe: DEBUG: ../libkmod/libkmod-module.c:1750 kmod_module_get_initstate() could not open '/sys/module/wi                                     lc_sdio/initstate': No such file or directory
modprobe: DEBUG: ../libkmod/libkmod-module.c:1760 kmod_module_get_initstate() could not open '/sys/module/wi                                     lc_sdio': No such file or directory
modprobe: DEBUG: ../libkmod/libkmod-module.c:744 kmod_module_get_path() name='wilc_sdio' path='/lib/modules/                                     4.9.299-tegra/kernel/drivers/staging/wilc1000/wilc-sdio.ko'
modprobe: DEBUG: ../libkmod/libkmod-module.c:744 kmod_module_get_path() name='wilc_sdio' path='/lib/modules/                                     4.9.299-tegra/kernel/drivers/staging/wilc1000/wilc-sdio.ko'
insmod /lib/modules/4.9.299-tegra/kernel/drivers/staging/wilc1000/wilc-sdio.ko
modprobe: DEBUG: ../libkmod/libkmod-module.c:744 kmod_module_get_path() name='wilc_sdio' path='/lib/modules/                                     4.9.299-tegra/kernel/drivers/staging/wilc1000/wilc-sdio.ko'
modprobe: DEBUG: ../libkmod/libkmod-module.c:468 kmod_module_unref() kmod_module 0x559ce09f20 released
modprobe: DEBUG: ../libkmod/libkmod.c:418 kmod_pool_del_module() del 0x559ce09f20 key='wilc_sdio'
modprobe: DEBUG: ../libkmod/libkmod-module.c:468 kmod_module_unref() kmod_module 0x559ce0a0f0 released
modprobe: DEBUG: ../libkmod/libkmod.c:418 kmod_pool_del_module() del 0x559ce0a0f0 key='cfg80211'
modprobe: INFO: ../libkmod/libkmod.c:331 kmod_unref() context 0x559ce09450 released

uart.log (79.6 KB)
syslog (47.8 MB)

@WayneWWW Did you have a chance to look at the logs yet?

Sorry for the late response, have you managed to get issue resolved or still need the support? Thanks

Hello kayccc,
thanks for your response.

Still need help with this. I would appreciate your input.