Head1::vdd_hdmi_5v0-supply configuration is ovveride by head0::vdd_hdmi_5v0-supply

Hi,

At our custom board there are 2 hdmi outputs sor0 and sor2.
Those 2 outputs are connected to different vdd_hdmi_5v0-supply which calls:
p2822_vdd_hdmi2_5v0 which is define at head 2
p2822_vdd_hdmi_5v0 which is define at head 0
while the whole config file is :

#include <dt-bindings/display/tegra-dc.h>
#include <dt-bindings/display/tegra-panel.h>
#include <t19x-common-platforms/tegra194-hdmi.dtsi>
#include <t19x-common-platforms/tegra194-dp.dtsi>
#include "tegra194-fixed-regulator-p2822-1000.dtsi"
#include "tegra194-spmic-p2888-0001.dtsi"

&head0 {
	status = "okay";
	nvidia,fb-bpp = <32>;
	nvidia,fbmem-size = <265420800>; /* 8K (7680*4320) 32bpp double buffered */
	nvidia,fb-flags = <TEGRA_FB_FLIP_ON_PROBE>;
	win-mask = <0x3>;
	nvidia,fb-win = <0>;
	nvidia,dc-connector = <&sor2>;
	nvidia,dc-flags = <TEGRA_DC_FLAG_ENABLED>;
	avdd_hdmi-supply = <&p2888_spmic_sd0>; /* 1v0 */
	avdd_hdmi_pll-supply = <&p2888_spmic_sd1>; /* 1v8 */
	vdd_hdmi_5v0-supply = <&p2822_vdd_hdmi_5v0>; /* 5v0 */
};

&head1 {
	status = "okay";
	nvidia,fb-bpp = <32>;
	nvidia,fbmem-size = <265420800>; /* 8K (7680*4320) 32bpp double buffered */
	nvidia,fb-flags = <TEGRA_FB_FLIP_ON_PROBE>;
	win-mask = <0xC>;
	nvidia,fb-win = <2>;
	nvidia,dc-connector = <&sor0>;
	nvidia,dc-flags = <TEGRA_DC_FLAG_ENABLED>;
	avdd_hdmi-supply = <&p2888_spmic_sd0>;
	avdd_hdmi_pll-supply = <&p2888_spmic_sd1>;
	vdd_hdmi_5v0-supply = <&p2822_vdd_hdmi2_5v0>;
};

&head2 {
	status = "disabled";
	nvidia,fb-bpp = <32>;
	nvidia,fbmem-size = <265420800>; /* 8K (7680*4320) 32bpp double buffered */
	nvidia,fb-flags = <TEGRA_FB_FLIP_ON_PROBE>;
	win-mask = <0x30>;
	nvidia,fb-win = <4>;
	nvidia,dc-connector = <&sor1>;
	nvidia,dc-flags = <TEGRA_DC_FLAG_ENABLED>;
	vdd-dp-pwr-supply = <&p2888_spmic_sd0>;
	avdd-dp-pll-supply = <&p2888_spmic_sd1>;
/*	vdd-edp-sec-mode-supply = <&battery_reg>;
	vdd-dp-pad-supply = <&battery_reg>;*/
	vdd_hdmi_5v0-supply = <&p2822_vdd_hdmi2_5v0>;
};


&sor0 {
	status = "okay";
	nvidia,active-panel = <&sor0_hdmi_display>;
};

&sor0_hdmi_display {
		status = "okay";
		disp-default-out {
			nvidia,out-flags = <TEGRA_DC_OUT_HOTPLUG_LOW>;
  };
};

&sor1 {
	status = "disabled";
	nvidia,active-panel = <&sor1_dp_display>;
};

&sor1_dp_display {
	status = "disabled";
	nvidia,is_ext_dp_panel = <1>;
};

&sor2 {
	status = "okay";
	nvidia,active-panel = <&sor2_hdmi_display>;
};

&sor2_hdmi_display {
	status = "okay";
	disp-default-out {
		nvidia,out-flags = <TEGRA_DC_OUT_HOTPLUG_LOW>;
	};
};

&dpaux0 {
	status = "okay";
};

&dpaux1 {
	status = "disabled";
};

&dpaux2 {
	status = "okay";
};

&tegra_cec {
	status = "okay";
};

During board startup head0::vdd_hdmi_5v0-supply overrides head1::vdd_hdmi_5v0-supply
If I disable head0 and sor2 head 1 is not overrides.

What cause to that issue and how can I solve it?

I don’t quite understand your comment here.

p2822_vdd_hdmi2_5v0 which is define at head 2

Why should it set in head2? Isn’t head2 being disabled? Is it a typo here?

Also, what is your method to know “head0::vdd_hdmi_5v0-supply overrides head1::vdd_hdmi_5v0-supply”?

Sorry it was a typo p2822_vdd_hdmi2_5v0 which is define at head 1

What is your method to tell that it is getting overridre?

We figure it out by elimination
1.disable head 0 and enable only head 1
2.swiytching between two heads.

From that we figure out that head 0 ovverides head 1 and disable p2822_vdd_hdmi2_5v0 as we can see from dmesg:

[   36.188991] vdd-1v8-cvb: disabling
[   36.189010] vdd-1v8-pwm-en: disabling
[   36.189018] vdd-epb-1v0: disabling
[   36.189025] avdd-cam-2v8: disabling
[   36.189031] vdd-sata-1v5: disabling
[   36.189037] vdd-1v8-slt: disabling
[   36.189042] vdd-3v3-slt: disabling
[   36.189047] vdd-fan: disabling
[   36.189054] vdd-hdmi2-5v0: disabling
[   36.189060] vdd_sys_en: disabling

Please use /proc/device-tree node on your device to see what is the device tree setting.

Your method to check “vdd-hdmi2-5v0: disabling” is not a meaningful method… it just tells us that this regulator is not in use. It has lots of possibilities to see such log… it does not represent “head0 overwrites head1”.

Hi

Can you give me an hint what to looking for at device tree?

/proc/device-tree is just the dts file loaded on the board.

Check if head0 and head1 really set the correct regulator as your expectation.

After using grep to looking for the power supply it looks like that only vdd_hdmi_5v0-supply exists
root@nvidia-desktop:/proc/device-tree/host1x# grep -r head1
Binary file nvdisplay@15210000/reset-names matches
root@nvidia-desktop:/proc/device-tree/host1x# grep -r head0
Binary file nvdisplay@15200000/reset-names matches

I am not sure how you can come up with that conclusion with the result you pasted…

You should go to each nvdisplay and use command “xxd” to dump the content of vdd_hdmi_5v0-supply.

Sorry for the misunderstanding I new with those issues

xxd gives me following info :

root@nvidia-desktop:/proc/device-tree/host1x/nvdisplay@15200000# xxd vdd_hdmi_5v0-supply
00000000: 0000 0075 …u

root@nvidia-desktop:/proc/device-tree/host1x/nvdisplay@15210000# xxd vdd_hdmi_5v0-supply
00000000: 0000 0077

root@nvidia-desktop:/proc/device-tree/host1x/nvdisplay@15220000# xxd vdd_hdmi_5v0-supply
00000000: 0000 0077 …w

What does it means??

You can check the phandle under p2822_vdd_hdmi_5v0 and p2822_vdd_hdmi2_5v0. It will tell the id of these regulators.

If it is no error, I guess one is 0x75 while another one is 0x77.

You can check that first. If this is as expectation, then the issue is something else, you should share the full dmesg as attachment.

The full dmesg is :

root@nvidia-desktop:/sys/class/backlight/backlight#
root@nvidia-desktop:/sys/class/backlight/backlight# cat brightness
10000
root@nvidia-desktop:/sys/class/backlight/backlight# echo 1000000 > brightness
root@nvidia-desktop:/sys/class/backlight/backlight# cat brightness
1000000
root@nvidia-desktop:/sys/class/backlight/backlight# dmesg
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.201 (user@Yehoubu15221) (gcc version 7.5.0 (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) ) #35 SMP PREEMPT Wed Aug 18 17:31:21 IDT 2021
[    0.000000] Boot CPU: AArch64 Processor [4e0f0040]
[    0.000000] OF: fdt:memory scan node memory, reg size 48,
[    0.000000] OF: fdt: - 80000000 ,  2c000000
[    0.000000] OF: fdt: - ac200000 ,  44800000
[    0.000000] OF: fdt: - 100000000 ,  780000000
[    0.000000] earlycon: tegra_comb_uart0 at MMIO32 0x000000000c168000 (options '')
[    0.000000] bootconsole [tegra_comb_uart0] enabled
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb0_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb0_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb1_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb1_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb2_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb2_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb3_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb3_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: reserved mem: initialized node ramoops_carveout, compatible id nvidia,ramoops
[    0.000000] OF: reserved mem: initialized node vpr-carveout, compatible id nvidia,vpr-carveout
[    0.000000] OF: reserved mem: initialized node grid-of-semaphores, compatible id nvidia,gosmem
[    0.000000] cma: Reserved 64 MiB at 0x00000000c2000000
[    0.000000] On node 0 totalpages: 8324608
[    0.000000]   DMA zone: 7192 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 460288 pages, LIFO batch:31
[    0.000000]   Normal zone: 122880 pages used for memmap
[    0.000000]   Normal zone: 7864320 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 s57560 r8192 d32552 u98304
[    0.000000] pcpu-alloc: s57560 r8192 d32552 u98304 alloc=24*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7
[    0.000000] Speculative Store Bypass Disable mitigation not required
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 8194536
[    0.000000] Kernel command line: console=ttyTCU0,115200 video=tegrafb no_console_suspend=1 earlycon=tegra_comb_uart,mmio32,0x0c168000 gpt rootfs.slot_suffix= usbcore.old_scheme_first=1 tegraid=19.1.2.0.0 maxcpus=8 boot.slot_suffix= boot.ratchetvalues=0.4.2 vpr_resize sdhci_tegra.en_boot_part_access=1    quiet root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyTCU0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 rootfstype=ext4
[    0.000000] log_buf_len individual max cpu contribution: 32768 bytes
[    0.000000] log_buf_len total cpu_extra contributions: 229376 bytes
[    0.000000] log_buf_len min size: 32768 bytes
[    0.000000] log_buf_len: 262144 bytes
[    0.000000] early log buf free: 29140(88%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.000000] Memory: 31925552K/33298432K available (15294K kernel code, 2942K rwdata, 7068K rodata, 8576K init, 609K bss, 619216K 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 - 0xffffff8008f70000   ( 15296 KB)
[    0.000000]     .rodata : 0xffffff8008f70000 - 0xffffff8009660000   (  7104 KB)
[    0.000000]       .init : 0xffffff8009660000 - 0xffffff8009ec0000   (  8576 KB)
[    0.000000]       .data : 0xffffff8009ec0000 - 0xffffff800a19f808   (  2943 KB)
[    0.000000]        .bss : 0xffffff800a19f808 - 0xffffff800a237cbc   (   610 KB)
[    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 KB)
[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)
[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)
[    0.000000]               0xffffffbf00000000 - 0xffffffbf20000000   (   512 MB actual)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc800000000   ( 32768 MB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 64.
[    0.000000]  RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
[    0.000000] NR_IRQS:64 nr_irqs:64 0
[    0.000000] GIC: Using split EOI/Deactivate mode
[    0.000000] arm_arch_timer: Architected cp15 timer(s) running at 31.25MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xe6a171046, max_idle_ns: 881590405314 ns
[    0.000004] sched_clock: 56 bits at 31MHz, resolution 32ns, wraps every 4398046511088ns
[    0.000704] Console: colour dummy device 80x25
[    0.000717] console [tty0] enabled
[    0.000724] bootconsole [tegra_comb_uart0] disabled
[    0.000739] kmemleak: Kernel memory leak detector disabled
[    0.000758] Calibrating delay loop (skipped), value calculated using timer frequency.. 62.50 BogoMIPS (lpj=125000)
[    0.000774] pid_max: default: 32768 minimum: 301
[    0.001875] Security Framework initialized
[    0.002450] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.002462] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.004523] ftrace: allocating 47210 entries in 185 pages
[    0.400469] sched-energy: Sched-energy-costs installed from DT
[    0.400510] ASID allocator initialised with 65536 entries
[    0.438404] tegra-id: chipid=21917.
[    0.438417] tegra-id: opt_subrevision=1.
[    0.438446] Tegra Revision: A02p SKU: 0xd0 CPU Process: 0 SoC Process: 0
[    0.438474] DTS File Name: /home/user/work/testSomBuildFromGit/somkernel/Linux_for_Tegra/sources/kernel/kernel_src/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t19x/galen/kernel-dts/common/tegra194-p2888-0001-p2822-0000-common.dtsi
[    0.438489] DTB Build time: Aug 18 2021 17:59:38
[    0.486306] CPU1: Booted secondary processor [4e0f0040]
[    0.518373] CPU2: Booted secondary processor [4e0f0040]
[    0.550557] CPU3: Booted secondary processor [4e0f0040]
[    0.582798] CPU4: Booted secondary processor [4e0f0040]
[    0.614915] CPU5: Booted secondary processor [4e0f0040]
[    0.647350] CPU6: Booted secondary processor [4e0f0040]
[    0.679316] CPU7: Booted secondary processor [4e0f0040]
[    0.679565] Brought up 8 CPUs
[    0.679613] SMP: Total of 8 processors activated.
[    0.679631] CPU features: detected feature: Privileged Access Never
[    0.679639] CPU features: detected feature: LSE atomic instructions
[    0.679646] CPU features: detected feature: User Access Override
[    0.679653] CPU features: detected feature: 32-bit EL0 Support
[    0.681483] CPU: All CPU(s) started at EL2
[    0.681554] alternatives: patching kernel code
[    0.690816] devtmpfs: initialized
[    0.750609] Initilizing CustomIPI irq domain
[    0.750936] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.750956] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.760796] pinctrl core: initialized pinctrl subsystem
[    0.761074] OS set in device tree is not L4T.
[    0.761482] regulator-dummy: no parameters
[    0.761798] Initializing plugin-manager
[    0.761855] Plugin module not found
[    0.761892] Plugin-manager status disabled
[    0.763093] NET: Registered protocol family 16
[    0.764685] pstore: using zlib compression
[    0.764708] console [pstore-1] enabled
[    0.764717] pstore: Registered ramoops as persistent store backend
[    0.764726] ramoops: attached 0x200000@0xf0800000, ecc: 0/0
[    0.778674] cpuidle: using governor menu
[    0.779832] bpmp: waiting for handshake
[    0.779843] bpmp: handshake completed
[    0.779874] bpmp: synchronizing channels
[    0.779887] bpmp: channels synchronized
[    0.779895] bpmp: mail init ok
[    0.783007] t19x-arm-smmu 12000000.iommu: found 3 SMMUs and ISO SMMU id is 2
[    0.783197] t19x-arm-smmu 12000000.iommu: probing hardware configuration...
[    0.783203] t19x-arm-smmu 12000000.iommu: SMMUv2 with:
[    0.783211] t19x-arm-smmu 12000000.iommu:    stage 1 translation
[    0.783241] t19x-arm-smmu 12000000.iommu:    stage 2 translation
[    0.783246] t19x-arm-smmu 12000000.iommu:    nested translation
[    0.783255] t19x-arm-smmu 12000000.iommu:    stream matching with 128 register groups, mask 0x7f80
[    0.783263] t19x-arm-smmu 12000000.iommu: SMMU address space size (0x800000) differs from mapped region size (0x1000000)!
[    0.783270] t19x-arm-smmu 12000000.iommu:    64 context banks (0 stage-2 only)
[    0.783277] t19x-arm-smmu 12000000.iommu:    Stage-1: 39-bit VA -> 48-bit IPA
[    0.783284] t19x-arm-smmu 12000000.iommu:    Stage-2: 39-bit IPA -> 48-bit PA
[    0.787475] vdso: 2 pages (1 code @ ffffff8008f77000, 1 data @ ffffff8009ec4000)
[    0.787503] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.790094] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[    0.791966] tegra_aon_clk_init: ok
[    0.791979] Registering BPMP clocks...
[    0.792088] tegra_bpmp_clk_init: clock init ok (400 clks)
[    0.792859] Serial: AMBA PL011 UART driver
[    0.792989] tegra_powergate_init: DONE
[    0.793097] DTS File Name: /home/user/work/testSomBuildFromGit/somkernel/Linux_for_Tegra/sources/kernel/kernel_src/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t19x/galen/kernel-dts/common/tegra194-p2888-0001-p2822-0000-common.dtsi
[    0.793112] DTB Build time: Aug 18 2021 17:59:38
[    0.796625] Tegra reboot handler registered.
[    0.805182] iommu: Adding device 14180000.pcie to group 0
[    0.805945] iommu: Adding device 14100000.pcie to group 1
[    0.806623] iommu: Adding device 14140000.pcie to group 2
[    0.807415] iommu: Adding device 141a0000.pcie to group 3
[    0.809019] iommu: Adding device 2490000.ether_qos to group 4
[    0.809704] iommu: Adding device 3100000.serial to group 5
[    0.810386] iommu: Adding device 3110000.serial to group 6
[    0.810837] iommu: Adding device 3140000.serial to group 7
[    0.811441] tegra-pmc c360000.pmc: scratch reg offset dts data not present
[    0.811746] tegra-pmc: get_secure_pmc_setting: done secure_pmc=0
[    0.811763] tegra-pmc: ### PMC reset source: TEGRA_POWER_ON_RESET
[    0.811768] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_L0
[    0.811773] tegra-pmc: ### PMC reset status reg: 0x0
[    0.811818] tegra-pmc: PMC Prod config success
[    0.812041] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[    0.812055] tegra-pmc c360000.pmc: IO padctrl driver initialized
[    0.812391] iommu: Adding device 3460000.sdhci to group 8
[    0.812945] iommu: Adding device 3210000.spi to group 9
[    0.813519] iommu: Adding device c260000.spi to group 10
[    0.814419] iommu: Adding device 3160000.i2c to group 11
[    0.814823] iommu: Adding device c240000.i2c to group 12
[    0.815262] iommu: Adding device 3180000.i2c to group 13
[    0.815757] iommu: Adding device 3190000.i2c to group 14
[    0.816294] iommu: Adding device 31b0000.i2c to group 15
[    0.816729] iommu: Adding device 31c0000.i2c to group 16
[    0.817121] iommu: Adding device c250000.i2c to group 17
[    0.817530] iommu: Adding device 31e0000.i2c to group 18
[    0.818000] iommu: Adding device bc00000.rtcpu to group 19
[    0.820076] iommu: Adding device 13e10000.host1x to group 20
[    0.820531] iommu: Adding device 13e10000.host1x:ctx0 to group 21
[    0.821022] iommu: Adding device 13e10000.host1x:ctx1 to group 22
[    0.821418] iommu: Adding device 13e10000.host1x:ctx2 to group 23
[    0.821845] iommu: Adding device 13e10000.host1x:ctx3 to group 24
[    0.822350] iommu: Adding device 13e10000.host1x:ctx4 to group 25
[    0.822750] iommu: Adding device 13e10000.host1x:ctx5 to group 26
[    0.823349] iommu: Adding device 13e10000.host1x:ctx6 to group 27
[    0.823870] iommu: Adding device 13e10000.host1x:ctx7 to group 28
[    0.824411] iommu: Adding device 15340000.vic to group 29
[    0.824908] iommu: Adding device 15380000.nvjpg to group 30
[    0.825267] iommu: Adding device 15500000.tsec to group 31
[    0.825596] iommu: Adding device 15100000.tsecb to group 32
[    0.825904] iommu: Adding device 15480000.nvdec to group 33
[    0.826233] iommu: Adding device 15140000.nvdec1 to group 34
[    0.826578] iommu: Adding device 154c0000.nvenc to group 35
[    0.826862] iommu: Adding device 15a80000.nvenc1 to group 36
[    0.827290] iommu: Adding device 15880000.nvdla0 to group 37
[    0.827902] iommu: Adding device 158c0000.nvdla1 to group 38
[    0.828507] iommu: Adding device 15200000.nvdisplay to group 39
[    0.832577] platform 15200000.nvdisplay: IOVA linear map 0x00000000c6000000(2a000000)
[    0.832652] t19x-arm-smmu: Adding 15200000.nvdisplay to ISO SMMU client
[    0.833308] iommu: Adding device 15210000.nvdisplay to group 40
[    0.833358] t19x-arm-smmu: Adding 15210000.nvdisplay to ISO SMMU client
[    0.834678] iommu: Adding device 15c10000.vi to group 41
[    0.834851] t19x-arm-smmu: Adding 15c10000.vi to ISO SMMU client
[    0.835243] iommu: Adding device 14800000.isp to group 42
[    0.836261] iommu: Adding device 16000000.pva0 to group 43
[    0.836920] iommu: Adding device 16800000.pva1 to group 44
[    0.837370] iommu: Adding device 15810000.se to group 45
[    0.837832] iommu: Adding device 15820000.se to group 46
[    0.838156] iommu: Adding device 15830000.se to group 47
[    0.838477] iommu: Adding device 15840000.se to group 48
[    0.838789] iommu: Adding device c1a0000.aon to group 49
[    0.840569] iommu: Adding device d000000.bpmp to group 50
[    0.840983] bpmp: ping status is 0
[    0.841110] bpmp d000000.bpmp: firmware tag is e73a758761f0c6d24a1e69a2ac6b5035
[    0.844357] bpmp d000000.bpmp: probe ok
[    0.846122] tegra-reset 0.bpmp_reset: registered 190 resets.
[    0.846664] iommu: Adding device smmu_test to group 51
[    0.847667] mc: mapped MMIO address: 0xffffff800a7b0000 -> 0x2c10000
[    0.847726] mc: mapped MMIO address: 0xffffff800a7d0000 -> 0x2c20000
[    0.847748] mc: mapped MMIO address: 0xffffff800b010000 -> 0x2c30000
[    0.847766] mc: mapped MMIO address: 0xffffff800b030000 -> 0x2c40000
[    0.847783] mc: mapped MMIO address: 0xffffff800b050000 -> 0x2c50000
[    0.847799] mc: mapped MMIO address: 0xffffff800b070000 -> 0x2b80000
[    0.847816] mc: mapped MMIO address: 0xffffff800b090000 -> 0x2b90000
[    0.847833] mc: mapped MMIO address: 0xffffff800b0b0000 -> 0x2ba0000
[    0.847849] mc: mapped MMIO address: 0xffffff800b0d0000 -> 0x2bb0000
[    0.847866] mc: mapped MMIO address: 0xffffff800b0f0000 -> 0x1700000
[    0.847883] mc: mapped MMIO address: 0xffffff800b110000 -> 0x1710000
[    0.847899] mc: mapped MMIO address: 0xffffff800b130000 -> 0x1720000
[    0.847916] mc: mapped MMIO address: 0xffffff800b150000 -> 0x1730000
[    0.847932] mc: mapped MMIO address: 0xffffff800b170000 -> 0x1740000
[    0.847966] mc: mapped MMIO address: 0xffffff800b190000 -> 0x1750000
[    0.847983] mc: mapped MMIO address: 0xffffff800b1b0000 -> 0x1760000
[    0.848004] mc: mapped MMIO address: 0xffffff800b1d0000 -> 0x1770000
[    0.848070] mc-err: mcerr ops are set to t19x
[    0.853892] iommu: Adding device 2600000.dma to group 52
[    0.859262] gpio gpiochip0: gpio-line-names specifies 210 line names but there are 224 lines on the chip
[    0.860439] GPIO line 490 (pcie-reg-enable) hogged as output/high
[    0.860499] GPIO line 289 (pcie-reg-enable) hogged as output/high
[    0.860542] GPIO line 339 (wifi-enable) hogged as output/high
[    0.860581] GPIO line 347 (camera-control-output-low) hogged as output/low
[    0.860617] GPIO line 350 (camera-control-output-low) hogged as output/low
[    0.860653] GPIO line 446 (camera-control-output-low) hogged as output/low
[    0.860687] GPIO line 445 (camera-control-output-low) hogged as output/low
[    0.860729] GPIO line 481 (camera-control-output-low) hogged as output/low
[    0.861020] gpiochip_setup_dev: registered GPIOs 288 to 511 on device: gpiochip0 (tegra-gpio)
[    0.869198] gpio gpiochip1: gpio-line-names specifies 30 line names but there are 40 lines on the chip
[    0.869280] GPIO line 253 (pex-refclk-sel-low) hogged as output/low
[    0.869589] gpiochip_setup_dev: registered GPIOs 248 to 287 on device: gpiochip1 (tegra-gpio-aon)
[    0.872176] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CNTRL_83 = 0x10a
[    0.872187] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CTRL_0 = 3
[    0.872198] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CNTRL_24(PMU_INT) = 256
[    0.873233] iommu: Adding device 3610000.xhci to group 53
[    0.875666] arm64_ras arm64_ras: probed
[    0.876158] ras_fhi_enable: FHI 470 enabled on CPU0
[    0.876236] ras_fhi_enable: FHI 471 enabled on CPU1
[    0.876316] ras_fhi_enable: FHI 472 enabled on CPU2
[    0.876383] ras_fhi_enable: FHI 473 enabled on CPU3
[    0.876481] ras_fhi_enable: FHI 474 enabled on CPU4
[    0.876534] ras_fhi_enable: FHI 475 enabled on CPU5
[    0.876623] ras_fhi_enable: FHI 476 enabled on CPU6
[    0.876673] ras_fhi_enable: FHI 477 enabled on CPU7
[    0.876871] carmel_ras_enable: RAS enabled on cpu0
[    0.877059] carmel_ras_enable: RAS enabled on cpu1
[    0.877262] carmel_ras_enable: RAS enabled on cpu2
[    0.877467] carmel_ras_enable: RAS enabled on cpu3
[    0.877640] carmel_ras_enable: RAS enabled on cpu4
[    0.877829] carmel_ras_enable: RAS enabled on cpu5
[    0.878013] carmel_ras_enable: RAS enabled on cpu6
[    0.878188] carmel_ras_enable: RAS enabled on cpu7
[    0.878290] carmel_ras carmel_ras: probed
[    0.879688] tegra-cbb 2300000.cbb-noc: noc_secure_irq = 479, noc_nonsecure_irq = 478>
[    0.880249] tegra-cbb c600000.aon-noc: noc_secure_irq = 481, noc_nonsecure_irq = 480>
[    0.881142] tegra-cbb d600000.bpmp-noc: noc_secure_irq = 483, noc_nonsecure_irq = 482>
[    0.882080] tegra-cbb be00000.rce-noc: noc_secure_irq = 485, noc_nonsecure_irq = 484>
[    0.882960] tegra-cbb b600000.sce-noc: noc_secure_irq = 487, noc_nonsecure_irq = 486>
[    0.883350] tegra-cbb 14040000.cv-noc: defer probe as CV-NOC not probed yet
[    0.886816] vdd-3v3-cvb: 3300 mV
[    0.887205] vdd-1v8-cvb: 1800 mV
[    0.887518] vdd-1v8-pwm-en: 1800 mV
[    0.887891] vdd-epb-1v0: supplied by vdd-3v3-cvb
[    0.887933] vdd-epb-1v0: 1000 mV
[    0.888349] avdd-cam-2v8: 2800 mV
[    0.888660] vdd-sata-1v5: 1500 mV
[    0.888945] vdd-1v8-slt: 1800 mV
[    0.889250] vdd-3v3-slt: 3300 mV
[    0.889584] vdd-fan: 5000 mV
[    0.889945] vdd-hdmi2-5v0: 5000 mV
[    0.890289] vdd-hdmi-5v0: 5000 mV
[    0.890731] vdd_sys_en: 1200 mV
[    0.891203] vdd-5v-sata: 5000 mV
[    0.891526] vdd-ac-bat: 5000 mV
[    0.891716] vdd-5v-sata: supplied by vdd-ac-bat
[    0.923954] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.928334] eventlib_kernel: keventlib is initialized, test id: 0
[    0.928683] SCSI subsystem initialized
[    0.928930] libata version 3.00 loaded.
[    0.929198] usbcore: registered new interface driver usbfs
[    0.929260] usbcore: registered new interface driver hub
[    0.929377] usbcore: registered new device driver usb
[    0.940897] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[    0.943710] max77620 4-003c: PMIC Version OTP:0x51 and ES:0x1
[    0.955534] vdd-1v0: at 1000 mV
[    0.963190] vdd-1v8-hs: at 1800 mV
[    0.971192] vdd-1v8-ls: at 1800 mV
[    0.979255] vdd-1v8-ao: at 1800 mV
[    0.987585] vddio-ddr-1v1: at 1100 mV
[    0.992480] vdd-rtc: at 800 mV
[    0.993739] spmic-ldo1: at 2375 mV
[    1.000508] vdd-ao-3v3: at 3300 mV
[    1.008554] vddio-emmc-3v3: at 3300 mV
[    1.009867] spmic-ldo4: at 1587 mV
[    1.016630] vdd-usb-3v3: at 3300 mV
[    1.024660] vddio-sdmmc1-3v3: at 3300 mV
[    1.028719] vdd-csi-1v2: at 1200 mV
[    1.030284] spmic-ldo8: at 1800 mV
[    1.035142] GPIO line 246 (gpio_default) hogged as output/high
[    1.036523] GPIO line 247 (gpio_default) hogged as output/high
[    1.036942] gpiochip_setup_dev: registered GPIOs 240 to 247 on device: gpiochip2 (max77620-gpio)
[    1.037224] max77620 4-003c: max77620 probe successful
[    1.037884] media: Linux media interface: v0.10
[    1.038007] Linux video capture interface: v2.00
[    1.039578] pps_core: LinuxPPS API ver. 1 registered
[    1.039585] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.039609] PTP clock support registered
[    1.039905] tegra_wdt_t18x 30c0000.watchdog: Expiry count is deprecated
[    1.040223] tegra_wdt_t18x 30c0000.watchdog: Tegra WDT init timeout = 120 sec
[    1.040251] tegra_wdt_t18x 30c0000.watchdog: Registered successfully
[    1.042846] trusty trusty: trusty version: Built: 14:49:44 Jan 15 2021
[    1.042911] trusty trusty: selected api version: 3 (requested 3)
[    1.044061] Advanced Linux Sound Architecture Driver Initialized.
[    1.044563] Bluetooth: Core ver 2.22
[    1.044607] NET: Registered protocol family 31
[    1.044613] Bluetooth: HCI device and connection manager initialized
[    1.044622] Bluetooth: HCI socket layer initialized
[    1.044630] Bluetooth: L2CAP socket layer initialized
[    1.044651] Bluetooth: SCO socket layer initialized
[    1.047262] camchar: rtcpu character device driver loaded
[    1.048505] clocksource: Switched to clocksource arch_sys_counter
[    1.091051] VFS: Disk quotas dquot_6.6.0
[    1.091167] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.091474] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    1.093026] tegra-carveouts tegra-carveouts: assigned reserved memory node grid-of-semaphores
[    1.093089] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000c6000000, size=0x2a000000
[    1.093343] cma: enabled page replacement for spfn=c6000, epfn=f0000
[    1.093350] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful
[    1.093363] nvmap: nvmap_select_cache_ops() nvmap cache ops set to scf
[    1.093371] nvmap_page_pool_init: Total RAM pages: 8169804
[    1.093376] nvmap_page_pool_init: nvmap page pool size: 1021225 pages (3989 MB)
[    1.093585] nvmap_background_zero_thread: PP zeroing thread starting.
[    1.094149] misc nvmap: created heap vpr base 0x00000000c6000000 size (688128KiB)
[    1.095922] tegra-gpcdma 2600000.dma: GPC DMA driver register 31 channels
[    1.109303] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type CPU-therm
[    1.109557] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type GPU-therm
[    1.109799] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type AUX-therm
[    1.109988] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type AO-therm
[    1.110179] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
[    1.110298] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type Tboard_tegra
[    1.110426] thermal thermal_zone6: Registering thermal zone thermal_zone6 for type Tdiode_tegra
[    1.111571] la/ptsa driver initialized.
[    1.111859] NET: Registered protocol family 2
[    1.112631] TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
[    1.113905] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.114473] TCP: Hash tables configured (established 262144 bind 65536)
[    1.114524] UDP hash table entries: 16384 (order: 7, 524288 bytes)
[    1.114982] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes)
[    1.115678] NET: Registered protocol family 1
[    1.116373] RPC: Registered named UNIX socket transport module.
[    1.116379] RPC: Registered udp transport module.
[    1.116384] RPC: Registered tcp transport module.
[    1.116388] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.116398] PCI: CLS 0 bytes, default 64
[    1.116646] Trying to unpack rootfs image as initramfs...
[    1.343111] Freeing initrd memory: 7064K
[    1.362976] random: fast init done
[    1.367304] host1x 13e10000.host1x: initialized
[    1.369725] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    1.374575] audit: initializing netlink subsys (disabled)
[    1.374626] audit: type=2000 audit(0.992:1): initialized
[    1.375535] workingset: timestamp_bits=46 max_order=23 bucket_order=0
[    1.386032] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.387391] ntfs: driver 2.1.32 [Flags: R/W].
[    1.388045] 9p: Installing v9fs 9p2000 file system support
[    1.393374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)
[    1.393612] io scheduler noop registered
[    1.393901] io scheduler cfq registered (default)
[    1.406662] tegra-pwm 3280000.pwm: PWM clk can sleep in ops
[    1.407211] tegra-pwm 32c0000.pwm: PWM clk can sleep in ops
[    1.407746] tegra-pwm 32f0000.pwm: PWM clk can sleep in ops
[    1.410897] no avaiable target backlight node
[    1.410946] Node path /chosen/display-board not found
[    1.410975] pwm_bl_ops are not required
[    1.428159] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[    1.428409] misc tegra_camera_ctrl: tegra_camera_isomgr_register tpg_max_iso = 3916800KBs
[    1.428420] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=4687500, vi_iso_bw=1500000, max_bw=4687500
[    1.431436] tsec 15500000.tsec: initialized
[    1.433110] tsec 15100000.tsecb: initialized
[    1.437382] nvdec 15480000.nvdec: initialized
[    1.440044] nvdec 15140000.nvdec1: initialized
[    1.447418] falcon 15340000.vic: initialized
[    1.449958] falcon 15380000.nvjpg: initialized
[    1.452080] falcon 154c0000.nvenc: initialized
[    1.454117] falcon 15a80000.nvenc1: initialized
[    1.458032] iommu_context_dev 13e10000.host1x:ctx0: initialized (streamid=56)
[    1.459601] iommu_context_dev 13e10000.host1x:ctx1: initialized (streamid=57)
[    1.461440] iommu_context_dev 13e10000.host1x:ctx2: initialized (streamid=58)
[    1.463120] iommu_context_dev 13e10000.host1x:ctx3: initialized (streamid=59)
[    1.464737] iommu_context_dev 13e10000.host1x:ctx4: initialized (streamid=60)
[    1.466373] iommu_context_dev 13e10000.host1x:ctx5: initialized (streamid=61)
[    1.468265] iommu_context_dev 13e10000.host1x:ctx6: initialized (streamid=62)
[    1.469949] iommu_context_dev 13e10000.host1x:ctx7: initialized (streamid=63)
[    1.473938] t194-nvcsi 15a00000.nvcsi: initialized
[    1.479632] scare-pigeon 13e10000.host1x:vi-thi@15f00000: initialized
[    1.480126] scare-pigeon 14b00000.isp-thi: initialized
[    1.490066] pva 16000000.pva0: initialized
[    1.520904] pva 16800000.pva1: initialized
[    1.551049] nvdla 15880000.nvdla0: initialized
[    1.581475] nvdla 158c0000.nvdla1: initialized
[    1.583162] tegradccommon 15200000.dc_common: host1x channel mapped
[    1.583177] tegradccommon 15200000.dc_common: dc_common syncpt # 1 allocated
[    1.583259] tegradccommon 15200000.dc_common: dma mapping done
[    1.584319] tegradc 15200000.nvdisplay: disp0 connected to head0->/host1x/sor2
[    1.584361] generic_infoframe_type: 0x87
[    1.584434] tegradc 15200000.nvdisplay: DT parsed successfully
[    1.584536] tegradc 15200000.nvdisplay: Display dc.ffffff800bd10000 registered with id=0
[    1.588358] tegra_nvdisp_bandwidth_register_max_config: max config iso bw = 15681600 KB/s
[    1.588366] tegra_nvdisp_bandwidth_register_max_config: max config EMC floor = 1066500000 Hz
[    1.588371] tegra_nvdisp_bandwidth_register_max_config: max config hubclk = 358400000 Hz
[    1.588598] tegradc 15200000.nvdisplay: vblank syncpt # 8 for dc 0
[    1.588636] tegradc 15200000.nvdisplay: vpulse3 syncpt # 9 for dc 0
[    1.591857] tegradc 15200000.nvdisplay: hdmi: invalid prod list prod_list_hdmi_board
[    1.591867] tegradc 15200000.nvdisplay: hdmi: tegra_hdmi_tmds_range_read(bd) failed
[    1.597344] tegradc 15200000.nvdisplay: probed
[    1.598014] Console: switching to colour frame buffer device 128x48
[    1.598087] tegradc 15200000.nvdisplay: fb registered
[    1.598396] gpio tegra-gpio wake71 for gpio=98(M:2)
[    1.598839] tegradc 15210000.nvdisplay: disp1 connected to head1->/host1x/sor
[    1.598878] generic_infoframe_type: 0x87
[    1.598943] tegradc 15210000.nvdisplay: DT parsed successfully
[    1.598973] tegradc 15210000.nvdisplay: Display dc.ffffff800be10000 registered with id=1
[    1.599182] tegradc 15210000.nvdisplay: vblank syncpt # 11 for dc 1
[    1.599193] tegradc 15210000.nvdisplay: vpulse3 syncpt # 12 for dc 1
[    1.601979] tegradc 15210000.nvdisplay: hdmi: invalid prod list prod_list_hdmi_board
[    1.601989] tegradc 15210000.nvdisplay: hdmi: tegra_hdmi_tmds_range_read(bd) failed
[    1.606079] tegradc 15210000.nvdisplay: probed
[    1.606435] tegradc 15210000.nvdisplay: fb registered
[    1.606689] gpio tegra-gpio wake60 for gpio=96(M:0)
[    1.606953] tegra_cec 3960000.tegra_cec: dt=1 start=0x03960000 end=0x03960FFF irq=77
[    1.607692] tegra_cec 3960000.tegra_cec: Unpowergate DISP: 0.
[    1.607904] tegra_cec 3960000.tegra_cec: Enable clock result: 0.
[    1.608054] tegra_cec 3960000.tegra_cec: tegra_cec_init started
[    1.608194] tegra_cec 3960000.tegra_cec: cec_add_sysfs ret=0
[    1.608202] tegra_cec 3960000.tegra_cec: probed
[    1.611452] tegra-fuse-burn 3820000.efuse:efuse-burn: shutdown limit check disabled
[    1.611490] tegra-fuse-burn 3820000.efuse:efuse-burn: Fuse burn driver initialized
[    1.611789] kfuse 3830000.kfuse: initialized
[    1.617564] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.620294] 3100000.serial: ttyTHS0 at MMIO 0x3100000 (irq = 51, base_baud = 0) is a TEGRA_UART
[    1.621589] 3110000.serial: ttyTHS1 at MMIO 0x3110000 (irq = 52, base_baud = 0) is a TEGRA_UART
[    1.622556] 3140000.serial: ttyTHS4 at MMIO 0x3140000 (irq = 53, base_baud = 0) is a TEGRA_UART
[    1.623986] console [ttyTCU0] enabled
[    1.624311] [drm] Initialized
[    1.638523] brd: module loaded
[    1.644742] loop: module loaded
[    1.645110] tegra_profiler: version: 1.143, samples/io: 48/28
[    1.645281] tegra_profiler: auth: init
[    1.645752] nct1008_nct72 4-004c: starting parse dt
[    1.645881] nct1008_nct72 4-004c: !!!Found deprecated property!!!
[    1.645894] nct1008_nct72 4-004c: success parsing dt
[    1.646001] nct1008_nct72 4-004c: success in enabling tmp451 VDD rail
[    1.646127] THERMAL EST: found 3 subdevs
[    1.646134] THERMAL EST num_resources: 0
[    1.646141] [THERMAL EST subdev 0]
[    1.646148] [THERMAL EST subdev 1]
[    1.646153] [THERMAL EST subdev 2]
[    1.646165] THERMAL EST: Found 2 profiles, default profile is quiet
[    1.646582] thermal thermal_zone7: Registering thermal zone thermal_zone7 for type thermal-fan-est
[    1.646587] THERMAL EST: thz register success.
[    1.646752] THERMAL EST: end of probe, return err: 0
[    1.647421] sd: No Scsi addr parsed to reserve index
[    1.647458] hisi_sas: driver version v1.6
[    1.653850] libphy: Fixed MDIO Bus: probed
[    1.655582] tun: Universal TUN/TAP device driver, 1.6
[    1.655589] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.656398] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.656404] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.656454] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    1.656458] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.656590] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    1.656596] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.656646] Intel(R) 10GbE PCI Express Linux Network Driver - version 4.6.4
[    1.656651] Copyright(c) 1999 - 2017 Intel Corporation.
[    1.671739] eqos 2490000.ether_qos: failed to read eqos_auto_cal_config_0_reg
[    1.672344] eqos 2490000.ether_qos: Setting local MAC: 48 b0 2d 3c 8d c9
[    1.672467] libphy: dwc_phy: probed
[    1.675023] PPP generic driver version 2.4.2
[    1.675193] PPP BSD Compression module registered
[    1.675199] PPP Deflate Compression module registered
[    1.675216] PPP MPPE Compression module registered
[    1.675222] NET: Registered protocol family 24
[    1.675274] usbcore: registered new interface driver r8152
[    1.675316] usbcore: registered new interface driver asix
[    1.675360] usbcore: registered new interface driver ax88179_178a
[    1.675402] usbcore: registered new interface driver cdc_ether
[    1.675435] usbcore: registered new interface driver net1080
[    1.675468] usbcore: registered new interface driver cdc_subset
[    1.675501] usbcore: registered new interface driver zaurus
[    1.675543] usbcore: registered new interface driver cdc_ncm
[    1.675769] VFIO - User Level meta-driver version: 0.3
[    1.677002] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.677017] ehci-pci: EHCI PCI platform driver
[    1.677057] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.677066] ohci-pci: OHCI PCI platform driver
[    1.677100] ohci-platform: OHCI generic platform driver
[    1.678590] nct1008_nct72 4-004c: LOC shutdown limit 107
[    1.679636] nct1008_nct72 4-004c: EXT shutdown limit 109
[    1.682714] tegra-xusb 3610000.xhci: No USB port has OTG_CAP
[    1.685112] usbcore: registered new interface driver uas
[    1.685157] usbcore: registered new interface driver usb-storage
[    1.685236] usbcore: registered new interface driver usbserial
[    1.686894] tegra-xusb 3610000.xhci: Firmware timestamp: 2019-07-24 05:47:34 UTC, Version: 60.06 release
[    1.686956] tegra-xusb 3610000.xhci: xHCI Host Controller
[    1.686983] tegra-xusb 3610000.xhci: new USB bus registered, assigned bus number 1
[    1.687699] tegra-xusb 3610000.xhci: hcc params 0x0184ff25 hci version 0x110 quirks 0x00050810
[    1.687762] tegra-xusb 3610000.xhci: irq 465, io mem 0x03610000
[    1.688011] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.688018] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.688025] usb usb1: Product: xHCI Host Controller
[    1.688031] usb usb1: Manufacturer: Linux 4.9.201 xhci-hcd
[    1.688060] usb usb1: SerialNumber: 3610000.xhci
[    1.688637] hub 1-0:1.0: USB hub found
[    1.688712] hub 1-0:1.0: 4 ports detected
[    1.689250] tegra-xusb 3610000.xhci: xHCI Host Controller
[    1.689263] tegra-xusb 3610000.xhci: new USB bus registered, assigned bus number 2
[    1.689273] tegra-xusb 3610000.xhci: Host supports USB 3.1 Enhanced SuperSpeed
[    1.689521] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.689528] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.689535] usb usb2: Product: xHCI Host Controller
[    1.689541] usb usb2: Manufacturer: Linux 4.9.201 xhci-hcd
[    1.689547] usb usb2: SerialNumber: 3610000.xhci
[    1.690117] hub 2-0:1.0: USB hub found
[    1.690184] hub 2-0:1.0: 4 ports detected
[    1.691053] tegra-i2c c240000.i2c: no acknowledge from address 0x8
[    1.691101] ucsi_ccg 1-0008: read version failed
[    1.691224] ucsi_ccg 1-0008: get_fw_info fail,, err=-121
[    1.691340] Wake76 for irq=199
[    1.691346] Wake77 for irq=199
[    1.691351] Wake78 for irq=199
[    1.691355] Wake79 for irq=199
[    1.691359] Wake80 for irq=199
[    1.691363] Wake81 for irq=199
[    1.691367] Wake82 for irq=199
[    1.691375] ucsi_ccg: probe of 1-0008 failed with error -121
[    1.691425] tegra-xusb 3610000.xhci: Upgrade port 0 to USB3.0
[    1.691433] tegra-xusb 3610000.xhci: Upgrade port 1 to USB3.0
[    1.691910] mousedev: PS/2 mouse device common for all mice
[    1.691980] usbcore: registered new interface driver xpad
[    1.712814] nct1008_nct72 4-004c: initial LOC temp: 20000
[    1.713289] nct1008_nct72 4-004c: initial EXT temp: 32500
[    1.714285] nct1008_nct72 4-004c: hi_b:-10, lo_b:128
[    1.715227] nct1008_nct72 4-004c: nct1008_probe: initialized
[    1.793274] usb usb2: usb_suspend_both: status 0
[    1.810132] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[    1.811725] Wake73 for irq=42
[    1.813008] rtc rtc1: alarm rtc device
[    1.813027] tegra_rtc c2a0000.rtc: rtc core: registered c2a0000.rtc as rtc1
[    1.813065] tegra_rtc c2a0000.rtc: Tegra internal Real Time Clock
[    1.813232] i2c /dev entries driver
[    1.816454] max77620-power max20024-power: Event recorder REG_NVERC : 0x40
[    1.824982] tegra-thermal-throttle bthrot_cdev: cpufreq policy is not ready defer
[    1.825426] FAN dev name: pwm-fan
[    1.825479] FAN:gpio request success.
[    1.825488] FAN: can't find tach_gpio
[    1.825522] pwm_fan_driver pwm-fan: Found 2 profiles, default profile is quiet
[    1.825551] pwm_fan_driver pwm-fan: cap state:4, cap pwm:255
[    1.826563] tegra-oc-event d280000.soctherm-oc-event: OC driver initialized
[    1.827726] device-mapper: uevent: version 1.0.3
[    1.828137] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    1.841119] tegra194_cpufreq_probe: platform driver Initialization: pass
[    1.842649] cpuidle: Initializing cpuidle driver
[    1.843778] sdhci: Secure Digital Host Controller Interface driver
[    1.843781] sdhci: Copyright(c) Pierre Ossman
[    1.843784] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.845229] sdhci-tegra 3460000.sdhci: Client registration for eMC Successful
[    1.847036] CMDQ: cmdq_platfm_init successful
[    1.851237] tegra-se-elp 3ad0000.se_elp: tegra_se_elp_probe: complete
[    1.852153] tegra-se-nvhost 15810000.se: initialized
[    1.853185] tegra-se-nvhost 15810000.se: tegra_se_probe: complete
[    1.854062] tegra-se-nvhost 15820000.se: initialized
[    1.855203] tegra-se-nvhost 15820000.se: tegra_se_probe: complete
[    1.856014] tegra-se-nvhost 15830000.se: initialized
[    1.856639] tegra-se-nvhost 15830000.se: tegra_se_probe: complete
[    1.857524] tegra-se-nvhost 15840000.se: initialized
[    1.858356] tegra-se-nvhost 15840000.se: tegra_se_probe: complete
[    1.858554] hidraw: raw HID events driver (C) Jiri Kosina
[    1.859747] usbcore: registered new interface driver usbhid
[    1.859750] usbhid: USB HID core driver
[    1.865312] tegra186-cam-rtcpu bc00000.rtcpu: deferring, 14800000.isp is not probed
[    1.866233] tegra_aon c1a0000.aon: tegra aon driver probe OK
[    1.866627] tegra186-aondbg aondbg: aondbg driver probe() OK
[    1.867294] denver_knobs_init:MTS_VERSION:51035886
[    1.867510] tegra19x_actmon d230000.actmon: in actmon_register()...
[    1.868299] tegra19x_actmon d230000.actmon: initialization Completed for the device mc_all
[    1.868694] t19x_cache tegra-cache: probed
[    1.876104] misc nvmap: cvsram :dma coherent mem declare 0x0000000050000000,4194304
[    1.876111] misc nvmap: created heap cvsram base 0x0000000050000000 size (4096KiB)
[    1.876565] carmel-pmu-drv carmel-pmu: Registered Carmel PMU
[    1.876980] PLL_AON clock registered
[    1.878858] Clocks initialized successfully
[    1.880695] nvpmodel: initialized successfully
[    1.881854] trusty-virtio trusty:virtio: initializing
[    1.882074] trusty_ipc virtio0: vring0: va(pa)  ffffffc7d7b82000(0) qsz 32 notifyid 1
[    1.882087] trusty_ipc virtio0: vring1: va(pa)  ffffffc7d7b88000(0) qsz 32 notifyid 2
[    1.882212] trusty-virtio trusty:virtio: initializing done
[    1.882413] trusty_ipc virtio0: is online
[    1.882815] usbcore: registered new interface driver snd-usb-audio
[    1.886191] u32 classifier
[    1.886199]     Actions configured
[    1.886260] Initializing XFRM netlink socket
[    1.886805] NET: Registered protocol family 10
[    1.887541] NET: Registered protocol family 17
[    1.887554] NET: Registered protocol family 15
[    1.887601] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    1.887692] Bluetooth: RFCOMM socket layer initialized
[    1.887711] Bluetooth: RFCOMM ver 1.11
[    1.887715] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    1.887721] Bluetooth: HIDP socket layer initialized
[    1.887735] 9pnet: Installing 9P2000 support
[    1.887768] Key type dns_resolver registered
[    1.888008] Registered cp15_barrier emulation handler
[    1.888032] Registered setend emulation handler
[    1.888557] mmc0: SDHCI controller on 3460000.sdhci [3460000.sdhci] using ADMA 64-bit with 64 bit addr
[    1.893027] registered taskstats version 1
[    1.893400] tegra-pcie-dw 14180000.pcie: Setting init speed to max speed
[    1.894560] OF: PCI: host bridge /pcie@14180000 ranges:
[    1.894576] OF: PCI:    IO 0x38100000..0x381fffff -> 0x38100000
[    1.894586] OF: PCI:   MEM 0x1b40000000..0x1bffffffff -> 0x40000000
[    1.894606] OF: PCI:   MEM 0x1800000000..0x1b3fffffff -> 0x1800000000
[    1.974276] mmc0: mmc_decode_ext_csd: CMDQ supported: depth: 31, cmdq_support: 1
[    1.986353] mmc0: periodic cache flush enabled
[    1.986368] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    1.986879] mmcblk0: mmc0:0001 HBG4a2 29.1 GiB
[    1.987115] mmcblk0boot0: mmc0:0001 HBG4a2 partition 1 8.00 MiB
[    1.987320] mmcblk0boot1: mmc0:0001 HBG4a2 partition 2 8.00 MiB
[    1.991598] mmcblk0rpmb: mmc0:0001 HBG4a2 partition 3 4.00 MiB
[    1.995720]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42
[    2.020547] usb 1-2: new full-speed USB device number 2 using tegra-xusb
[    2.046061] usb 1-2: New USB device found, idVendor=0eef, idProduct=c002
[    2.046082] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.046087] usb 1-2: Product: eGalaxTouch P80H32 3221 v104004V1PA k4.10.142
[    2.046090] usb 1-2: Manufacturer: eGalax Inc.
[    2.050082] input: eGalax Inc. eGalaxTouch P80H32 3221 v104004V1PA k4.10.142 as /devices/3610000.xhci/usb1/1-2/1-2:1.0/0003:0EEF:C002.0001/input/input0
[    2.050405] hid-multitouch 0003:0EEF:C002.0001: input,hidraw0: USB HID v1.11 Pointer [eGalax Inc. eGalaxTouch P80H32 3221 v104004V1PA k4.10.142] on usb-3610000.xhci-2/input0
[    2.407059] tegra-pcie-dw 14180000.pcie: link is down
[    2.407184] tegra-pcie-dw 14180000.pcie: PCI host bridge to bus 0000:00
[    2.407191] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.407199] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0x38100000-0x381fffff])
[    2.407204] pci_bus 0000:00: root bus resource [mem 0x1b40000000-0x1bffffffff] (bus address [0x40000000-0xffffffff])
[    2.407208] pci_bus 0000:00: root bus resource [mem 0x1800000000-0x1b3fffffff pref]
[    2.407233] pci 0000:00:00.0: [10de:1ad0] type 01 class 0x060400
[    2.407370] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    2.407589] iommu: Adding device 0000:00:00.0 to group 54
[    2.407789] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[    2.407811] pci 0000:00:00.0: Max Payload Size set to  256/ 256 (was  256), Max Read Rq  512
[    2.408000] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt
[    2.408006] pcie_pme 0000:00:00.0:pcie001: service driver pcie_pme loaded
[    2.408091] aer 0000:00:00.0:pcie002: service driver aer loaded
[    2.408217] pcie_pme 0000:00:00.0:pcie001: unloading service driver pcie_pme
[    2.408252] aer 0000:00:00.0:pcie002: unloading service driver aer
[    2.408315] pci_bus 0000:01: busn_res: [bus 01-ff] is released
[    2.408373] iommu: Removing device 0000:00:00.0 from group 54
[    2.408394] pci_bus 0000:00: busn_res: [bus 00-ff] is released
[    2.409739] tegra-pcie-dw 14180000.pcie: PCIe link is not up...!
[    2.410443] tegra-pcie-dw 14100000.pcie: Setting init speed to max speed
[    2.411534] OF: PCI: host bridge /pcie@14100000 ranges:
[    2.411550] OF: PCI:    IO 0x30100000..0x301fffff -> 0x30100000
[    2.411558] OF: PCI:   MEM 0x1230000000..0x123fffffff -> 0x40000000
[    2.411563] OF: PCI:   MEM 0x1200000000..0x122fffffff -> 0x1200000000
[    2.620558] tegra_cec 3960000.tegra_cec: Can't find physical addresse.
[    2.620565] tegra_cec 3960000.tegra_cec: tegra_cec_init Done.
[    2.924039] tegra-pcie-dw 14100000.pcie: link is down
[    2.924250] tegra-pcie-dw 14100000.pcie: PCI host bridge to bus 0001:00
[    2.924258] pci_bus 0001:00: root bus resource [bus 00-ff]
[    2.924264] pci_bus 0001:00: root bus resource [io  0x100000-0x1fffff] (bus address [0x30100000-0x301fffff])
[    2.924269] pci_bus 0001:00: root bus resource [mem 0x1230000000-0x123fffffff] (bus address [0x40000000-0x4fffffff])
[    2.924273] pci_bus 0001:00: root bus resource [mem 0x1200000000-0x122fffffff pref]
[    2.924297] pci 0001:00:00.0: [10de:1ad2] type 01 class 0x060400
[    2.924426] pci 0001:00:00.0: PME# supported from D0 D3hot D3cold
[    2.924685] iommu: Adding device 0001:00:00.0 to group 54
[    2.924887] pci 0001:00:00.0: PCI bridge to [bus 01-ff]
[    2.924924] pci 0001:00:00.0: Max Payload Size set to  256/ 256 (was  256), Max Read Rq  512
[    2.925106] pcieport 0001:00:00.0: Signaling PME through PCIe PME interrupt
[    2.925113] pcie_pme 0001:00:00.0:pcie001: service driver pcie_pme loaded
[    2.925205] aer 0001:00:00.0:pcie002: service driver aer loaded
[    2.925381] pcie_pme 0001:00:00.0:pcie001: unloading service driver pcie_pme
[    2.925493] aer 0001:00:00.0:pcie002: unloading service driver aer
[    2.925569] pci_bus 0001:01: busn_res: [bus 01-ff] is released
[    2.925682] iommu: Removing device 0001:00:00.0 from group 54
[    2.925749] pci_bus 0001:00: busn_res: [bus 00-ff] is released
[    2.927563] tegra-pcie-dw 14100000.pcie: PCIe link is not up...!
[    2.928008] tegra-pcie-dw 14140000.pcie: Setting init speed to max speed
[    2.929592] OF: PCI: host bridge /pcie@14140000 ranges:
[    2.929604] OF: PCI:    IO 0x34100000..0x341fffff -> 0x34100000
[    2.929611] OF: PCI:   MEM 0x12b0000000..0x12bfffffff -> 0x40000000
[    2.929616] OF: PCI:   MEM 0x1280000000..0x12afffffff -> 0x1280000000
[    3.443888] tegra-pcie-dw 14140000.pcie: link is down
[    3.444057] tegra-pcie-dw 14140000.pcie: PCI host bridge to bus 0003:00
[    3.444064] pci_bus 0003:00: root bus resource [bus 00-ff]
[    3.444070] pci_bus 0003:00: root bus resource [io  0x200000-0x2fffff] (bus address [0x34100000-0x341fffff])
[    3.444075] pci_bus 0003:00: root bus resource [mem 0x12b0000000-0x12bfffffff] (bus address [0x40000000-0x4fffffff])
[    3.444079] pci_bus 0003:00: root bus resource [mem 0x1280000000-0x12afffffff pref]
[    3.444119] pci 0003:00:00.0: [10de:1ad2] type 01 class 0x060400
[    3.444263] pci 0003:00:00.0: PME# supported from D0 D3hot D3cold
[    3.444463] iommu: Adding device 0003:00:00.0 to group 54
[    3.444737] pci 0003:00:00.0: PCI bridge to [bus 01-ff]
[    3.444773] pci 0003:00:00.0: Max Payload Size set to  256/ 256 (was  256), Max Read Rq  512
[    3.444933] pcieport 0003:00:00.0: Signaling PME through PCIe PME interrupt
[    3.444939] pcie_pme 0003:00:00.0:pcie001: service driver pcie_pme loaded
[    3.445046] aer 0003:00:00.0:pcie002: service driver aer loaded
[    3.445215] pcie_pme 0003:00:00.0:pcie001: unloading service driver pcie_pme
[    3.445316] aer 0003:00:00.0:pcie002: unloading service driver aer
[    3.445375] pci_bus 0003:01: busn_res: [bus 01-ff] is released
[    3.445453] iommu: Removing device 0003:00:00.0 from group 54
[    3.445521] pci_bus 0003:00: busn_res: [bus 00-ff] is released
[    3.447018] tegra-pcie-dw 14140000.pcie: PCIe link is not up...!
[    3.447668] tegra-pcie-dw 141a0000.pcie: Setting init speed to max speed
[    3.449252] OF: PCI: host bridge /pcie@141a0000 ranges:
[    3.449268] OF: PCI:    IO 0x3a100000..0x3a1fffff -> 0x3a100000
[    3.449277] OF: PCI:   MEM 0x1f40000000..0x1fffffffff -> 0x40000000
[    3.449301] OF: PCI:   MEM 0x1c00000000..0x1f3fffffff -> 0x1c00000000
[    3.964533] tegra-pcie-dw 141a0000.pcie: link is down
[    3.964722] tegra-pcie-dw 141a0000.pcie: PCI host bridge to bus 0005:00
[    3.964729] pci_bus 0005:00: root bus resource [bus 00-ff]
[    3.964735] pci_bus 0005:00: root bus resource [io  0x300000-0x3fffff] (bus address [0x3a100000-0x3a1fffff])
[    3.964740] pci_bus 0005:00: root bus resource [mem 0x1f40000000-0x1fffffffff] (bus address [0x40000000-0xffffffff])
[    3.964745] pci_bus 0005:00: root bus resource [mem 0x1c00000000-0x1f3fffffff pref]
[    3.964767] pci 0005:00:00.0: [10de:1ad0] type 01 class 0x060400
[    3.964911] pci 0005:00:00.0: PME# supported from D0 D3hot D3cold
[    3.965122] iommu: Adding device 0005:00:00.0 to group 54
[    3.965388] pci 0005:00:00.0: PCI bridge to [bus 01-ff]
[    3.965408] pci 0005:00:00.0: Max Payload Size set to  256/ 256 (was  256), Max Read Rq  512
[    3.965614] pcieport 0005:00:00.0: Signaling PME through PCIe PME interrupt
[    3.965621] pcie_pme 0005:00:00.0:pcie001: service driver pcie_pme loaded
[    3.965720] aer 0005:00:00.0:pcie002: service driver aer loaded
[    3.965879] pcie_pme 0005:00:00.0:pcie001: unloading service driver pcie_pme
[    3.965922] aer 0005:00:00.0:pcie002: unloading service driver aer
[    3.965978] pci_bus 0005:01: busn_res: [bus 01-ff] is released
[    3.966068] iommu: Removing device 0005:00:00.0 from group 54
[    3.966096] pci_bus 0005:00: busn_res: [bus 00-ff] is released
[    3.967530] tegra-pcie-dw 141a0000.pcie: PCIe link is not up...!
[    3.980145] tegra-cbb 14040000.cv-noc: noc_secure_irq = 92, noc_nonsecure_irq = 91>
[    3.980285] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[    3.982866] tegra194-isp5 14800000.isp: initialized
[    3.989301] tegra194-vi5 15c10000.vi: using default number of vi channels, 36
[    3.994587] tegra194-vi5 15c10000.vi: initialized
[    3.998770] tegra194-vi5 15c10000.vi: ep of_device is not enabled /host1x/vi@15c10000/ports/port@0/endpoint.
[    3.998957] tegra-thermal-throttle bthrot_cdev: clk:cpu max:2265600000, min:115200000 steps:28
[    4.052854] tegra-thermal-throttle bthrot_cdev: clk:gpu max:1377000000, min:114750000 steps:13
[    4.052891] tegra-thermal-throttle bthrot_cdev: cdev:skin-balanced clk:0:cpu off:0 slope-adj:200
[    4.052895] tegra-thermal-throttle bthrot_cdev: cdev:skin-balanced clk:1:gpu off:0 slope-adj:400
[    4.052981] tegra-thermal-throttle bthrot_cdev: cdev:skin-balanced max_state:56 cutoff:0
[    4.053011] tegra-thermal-throttle bthrot_cdev: cdev:gpu-balanced clk:0:cpu off:0 slope-adj:400
[    4.053014] tegra-thermal-throttle bthrot_cdev: cdev:gpu-balanced clk:1:gpu off:0 slope-adj:400
[    4.057997] tegra-thermal-throttle bthrot_cdev: cdev:gpu-balanced max_state:52 cutoff:1
[    4.058026] tegra-thermal-throttle bthrot_cdev: cdev:cpu-balanced clk:0:cpu off:0 slope-adj:200
[    4.058030] tegra-thermal-throttle bthrot_cdev: cdev:cpu-balanced clk:1:gpu off:365500000 slope-adj:300
[    4.058367] tegra-thermal-throttle bthrot_cdev: cdev:cpu-balanced max_state:56 cutoff:0
[    4.058406] tegra-thermal-throttle bthrot_cdev: cdev:emergency-balanced clk:0:cpu off:38400000 slope-adj:10
[    4.058410] tegra-thermal-throttle bthrot_cdev: cdev:emergency-balanced clk:1:gpu off:25500000 slope-adj:10
[    4.058743] tegra-thermal-throttle bthrot_cdev: cdev:emergency-balanced max_state:2 cutoff:0
[    4.058768] tegra-thermal-throttle bthrot_cdev: cdev:aux-balanced clk:0:cpu off:0 slope-adj:400
[    4.058773] tegra-thermal-throttle bthrot_cdev: cdev:aux-balanced clk:1:gpu off:0 slope-adj:400
[    4.059018] tegra-thermal-throttle bthrot_cdev: cdev:aux-balanced max_state:52 cutoff:1
[    4.059321] FAN dev name: pwm-fan
[    4.059358] FAN:gpio request success.
[    4.059364] FAN: can't find tach_gpio
[    4.059390] pwm_fan_driver pwm-fan: Found 2 profiles, default profile is quiet
[    4.059438] pwm_fan_driver pwm-fan: cap state:4, cap pwm:255
[    4.060354] tegra186-cam-rtcpu bc00000.rtcpu: Trace buffer configured at IOVA=0xbff00000
[    4.133192] tegra-ivc ivc-bc00000.rtcpu: region 0: iova=0xbfee0000-0xbfefffff size=131072
[    4.133452] tegra-ivc ivc-bc00000.rtcpu:echo@0: echo: ver=0 grp=1 RX[16x64]=0x1000-0x1480 TX[16x64]=0x1480-0x1900
[    4.133688] tegra-ivc ivc-bc00000.rtcpu:dbg@1: dbg: ver=0 grp=1 RX[1x384]=0x1900-0x1b00 TX[1x384]=0x1b00-0x1d00
[    4.133869] tegra-ivc ivc-bc00000.rtcpu:dbg@2: dbg: ver=0 grp=1 RX[1x8192]=0x1d00-0x3d80 TX[1x8192]=0x3d80-0x5e00
[    4.134232] tegra-ivc ivc-bc00000.rtcpu:ivccontrol@3: ivccontrol: ver=0 grp=1 RX[64x320]=0x5e00-0xae80 TX[64x320]=0xae80-0xff00
[    4.134346] tegra-ivc ivc-bc00000.rtcpu:ivccapture@4: ivccapture: ver=0 grp=1 RX[512x64]=0xff00-0x17f80 TX[512x64]=0x17f80-0x20000
[    4.134550] tegra186-cam-rtcpu bc00000.rtcpu: using cam RTCPU IRQ (66)
[    4.134554] tegra186-cam-rtcpu bc00000.rtcpu: tegra_camrtc_mon_create is successful
[    4.135524] tegra186-cam-rtcpu bc00000.rtcpu: firmware version cpu=rce cmd=5 sha1=cf2bef3ad10e437272857b76308abef8ffb80bda
[    4.135583] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[    4.135954] FAN dev name: pwm-fan
[    4.135988] FAN:gpio request success.
[    4.135994] FAN: can't find tach_gpio
[    4.136012] pwm_fan_driver pwm-fan: Found 2 profiles, default profile is quiet
[    4.136052] pwm_fan_driver pwm-fan: cap state:4, cap pwm:255
[    4.136713] Wake83 for irq=211
[    4.136783] gpio tegra-gpio wake67 for gpio=48(G:0)
[    4.136858] gpio tegra-gpio-aon wake29 for gpio=36(EE:4)
[    4.136998] input: gpio-keys as /devices/gpio-keys/input/input2
[    4.137378] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[    4.137750] FAN dev name: pwm-fan
[    4.137783] FAN:gpio request success.
[    4.137788] FAN: can't find tach_gpio
[    4.137805] pwm_fan_driver pwm-fan: Found 2 profiles, default profile is quiet
[    4.137830] pwm_fan_driver pwm-fan: cap state:4, cap pwm:255
[    4.169629] tegra_rtc c2a0000.rtc: setting system clock to 2000-01-01 01:00:13 UTC (946688413)
[    4.170120] mmcblk mmc0:0001: Card claimed for testing.
[    4.213721] bpmp: mounted debugfs mirror
[    4.218648] ALSA device list:
[    4.218654]   No soundcards found.
[    4.220347] Freeing unused kernel memory: 8576K
[    4.253634] Root device found: mmcblk0p1
[    4.255144] Found dev node: /dev/mmcblk0p1
[    4.383926] EXT4-fs (mmcblk0p1): 3 orphan inodes deleted
[    4.383933] EXT4-fs (mmcblk0p1): recovery complete
[    4.391854] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[    4.394473] Rootfs mounted over mmcblk0p1
[    4.410458] Switching from initrd to actual rootfs
[    4.494757] systemd[1]: System time before build time, advancing clock.
[    4.519059] ip_tables: (C) 2000-2006 Netfilter Core Team
[    4.521622] cgroup: cgroup2: unknown option "nsdelegate"
[    4.527167] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[    4.527722] systemd[1]: Detected architecture arm64.
[    4.533654] systemd[1]: Set hostname to <nvidia-desktop>.
[    4.628756] systemd[1]: File /lib/systemd/system/systemd-journald.service:36 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[    4.628768] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[    4.766312] random: systemd: uninitialized urandom read (16 bytes read)
[    4.766712] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.766812] random: systemd: uninitialized urandom read (16 bytes read)
[    4.766830] systemd[1]: Reached target Swap.
[    4.766877] random: systemd: uninitialized urandom read (16 bytes read)
[    4.769652] systemd[1]: Created slice System Slice.
[    4.769941] systemd[1]: Listening on RPCbind Server Activation Socket.
[    4.770122] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.807916] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
[    4.823472] gpio tegra-gpio wake44 for gpio=192(Y:0)
[    4.823639] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[    4.824129] FAN dev name: pwm-fan
[    4.824166] FAN:gpio request success.
[    4.824173] FAN: can't find tach_gpio
[    4.824191] pwm_fan_driver pwm-fan: Found 2 profiles, default profile is quiet
[    4.824221] pwm_fan_driver pwm-fan: cap state:4, cap pwm:255
[    5.019810] systemd-journald[2268]: Received request to flush runtime journal from PID 1
[    5.294377] nvgpu: 17000000.gv11b          nvgpu_nvhost_syncpt_init:291  [INFO]  syncpt_unit_base 60000000 syncpt_unit_size 400000 size 1000

[    5.357062] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[    5.357574] FAN dev name: pwm-fan
[    5.357613] FAN:gpio request success.
[    5.357618] FAN: can't find tach_gpio
[    5.357644] pwm_fan_driver pwm-fan: Found 2 profiles, default profile is quiet
[    5.357684] pwm_fan_driver pwm-fan: cap state:4, cap pwm:255
[    5.364763] cpu-throttle-alert cooling device registered.
[    5.364955] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[    5.365490] FAN dev name: pwm-fan
[    5.365528] FAN:gpio request success.
[    5.365534] FAN: can't find tach_gpio
[    5.365556] pwm_fan_driver pwm-fan: Found 2 profiles, default profile is quiet
[    5.365592] pwm_fan_driver pwm-fan: cap state:4, cap pwm:255
[    5.366332] gpu-throttle-alert cooling device registered.
[    5.366457] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[    5.366964] FAN dev name: pwm-fan
[    5.367015] FAN:gpio request success.
[    5.367021] FAN: can't find tach_gpio
[    5.367042] pwm_fan_driver pwm-fan: Found 2 profiles, default profile is quiet
[    5.367096] pwm_fan_driver pwm-fan: cap state:4, cap pwm:255
[    5.368145] aux-throttle-alert cooling device registered.
[    5.368234] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[    5.368721] FAN dev name: pwm-fan
[    5.368766] FAN:gpio request success.
[    5.368772] FAN: can't find tach_gpio
[    5.368793] pwm_fan_driver pwm-fan: Found 2 profiles, default profile is quiet
[    5.368819] pwm_fan_driver pwm-fan: cap state:4, cap pwm:255
[    5.782656] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[    5.783245] FAN dev name: pwm-fan
[    5.783290] FAN:gpio request success.
[    5.783296] FAN: can't find tach_gpio
[    5.783327] pwm_fan_driver pwm-fan: Found 2 profiles, default profile is quiet
[    5.783361] pwm_fan_driver pwm-fan: cap state:4, cap pwm:255
[    5.840021] random: crng init done
[    5.840135] random: 7 urandom warning(s) missed due to ratelimiting
[    6.673126] ras_fhi_disable: FHI 474 disabled
[    6.673729] CPU4: shutdown
[    6.673833] psci: CPU4 killed.
[    6.725350] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    6.746398] ras_fhi_disable: FHI 475 disabled
[    6.753816] CPU5: shutdown
[    6.772702] psci: Retrying again to check for CPU kill
[    6.772721] psci: CPU5 killed.
[    6.813590] gpio tegra-gpio wake20 for gpio=52(G:4)
[    6.818009] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    6.829101] ras_fhi_disable: FHI 476 disabled
[    6.829762] CPU6: shutdown
[    6.829865] psci: CPU6 killed.
[    6.874094] ras_fhi_disable: FHI 477 disabled
[    6.878551] CPU7: shutdown
[    6.896584] psci: Retrying again to check for CPU kill
[    6.896602] psci: CPU7 killed.
[    6.898155] nvgpu: 17000000.gv11b                 tpc_pg_mask_store:843  [INFO]  no value change, same mask already set
[    8.275468] zram: Added device: zram0
[    8.276006] zram: Added device: zram1
[    8.276939] zram: Added device: zram2
[    8.277473] zram: Added device: zram3
[    8.306595] zram0: detected capacity change from 0 to 4184944640
[    8.351246] Adding 4086856k swap on /dev/zram0.  Priority:5 extents:1 across:4086856k SS
[    8.357313] zram1: detected capacity change from 0 to 4184944640
[    8.373258] Adding 4086856k swap on /dev/zram1.  Priority:5 extents:1 across:4086856k SS
[    8.384849] zram2: detected capacity change from 0 to 4184944640
[    8.396318] Adding 4086856k swap on /dev/zram2.  Priority:5 extents:1 across:4086856k SS
[    8.402386] zram3: detected capacity change from 0 to 4184944640
[    8.414854] Adding 4086856k swap on /dev/zram3.  Priority:5 extents:1 across:4086856k SS
[    9.163451] tegradc 15200000.nvdisplay: blank - powerdown
[    9.163466] tegradc 15210000.nvdisplay: blank - powerdown
[    9.793463] fuse init (API version 7.26)
[   10.134122] eqos 2490000.ether_qos eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[   10.135224] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   11.318970] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   11.318990] Bluetooth: BNEP socket layer initialized
[   36.188991] vdd-1v8-cvb: disabling
[   36.189010] vdd-1v8-pwm-en: disabling
[   36.189018] vdd-epb-1v0: disabling
[   36.189025] avdd-cam-2v8: disabling
[   36.189031] vdd-sata-1v5: disabling
[   36.189037] vdd-1v8-slt: disabling
[   36.189042] vdd-3v3-slt: disabling
[   36.189047] vdd-fan: disabling
[   36.189054] vdd-hdmi2-5v0: disabling
[   36.189060] vdd_sys_en: disabling

I see no monitor is connected on both of your display head. Can you connect it and see if vdd-hdmi2-5v0 will not get disabled?

The dmesg when screen has been concected is :

and when check phandle at xxd I got the same hex values.
From that it seems that you corcect and the head using the correct regulator.

dmseg4Debug.txt (123.6 KB)

vdd-hdmi-5v0root@nvidia-desktop:/proc/device-tree/fixed-regulators/regulator@112# xxd phandle
00000000: 0000 0075 …u
root@nvidia-desktop:/proc/device-tree/fixed-regulators/regulator@112# cd …/regulator@106
root@nvidia-desktop:/proc/device-tree/fixed-regulators/regulator@106# xxd phandle
00000000: 0000 0077 …w

Now I more confused why when head0 is active the regulator of head1 is disable?

Hi,

Can you just tell me what did you do in your test?

Actually, from that log, I still see no log triggered from display driver.

Also, I still have no idea about what is your exact problem. If you are just wondering why you see “vdd-hdmi2-5v0: disabling” log. Then I need to say this question is a little pointless.

But if you are trying to ask the monitor is not able to get detected, then it is worth debugging.

Hi

The problem is that we are 2 HDMI connections on our board. each HDMI has it’s own regulator.
Our purpose is to make both display connections operational.
The problem is that the 5V pin at HDMI connector which controlled by p2822_vdd_hdmi2_5v0 is not active this is cause to that the connector is always inactive and if we connect a monitor there is not going to be monitor detection.
During our debugging process we tried to figure out why this HDMI is not working and we figure out that the 5V pin is 0.
Because of that we began to debug the regulator and its related HW and we found that the tegra does not enable the regulator even though the display is active which cause to detection malfunction.
In order to verify that this is the problem we forced the regulator to always active what cause to the HDMI to be functional.
After verfiy that the inactive regulator cause the issue we decided to disable head0 and to debug only head 1.
After that the regulator was active which cause to the display to be active.
After that we reactive head0 and again the display which was related to head1 was not functional beacuse the regulator output was which cause to the HDMI 5v pin to be 0 which indicates to inactive HDMI.

In order to verify that the regulator is ok we crossed between the 2 regulators while the 2 displayes were active and then we got that opposite results.
This indicated us that the regulator ok but there is some issue with the display configuration which cause to head0 regulator to be active head1 regulators not active which cause to issue with SOR2 display

Can you directly convert your dtb back to dts and attach it here?

Just want to confirm the status of your issue.

  1. disable head0, enable head 1 → head1 is working fine

  2. Enable both heads → only head0 can work.

Also, is this a typo again? SOR1 is not in use if I understand your case correctly.

head1 regulator is not active which cause to issue with SOR1 display

Ye you are correct
I am using Sor0 and sor2 while sor1 is disable