[TX2] MIPI DSI registers is not read

Hello All,

I’m trying to bringup a LCD panel(1280*720) using dsi2GMSL.

I was enable nvdisplay@15200000 status to “okay” and dsi status to “okay”.
dsi driver probed but MIPI dsi register is not read and watchdog occured.

  1. Here is call stack
    tegra_dsi_init_hw > tegra_dsi_pad_calibration > tegra_dsi_mipi_calibration_21x > tegra_dsi_readl

  2. git diff
    unsigned long tegra_dsi_readl(struct tegra_dc_dsi_data *dsi, u32 reg)
    {
    unsigned long ret;

  •   if (likely(tegra_platform_is_silicon())) {
    
  •           BUG_ON(!nvhost_module_powered_ext(dsi->dc->ndev));
    
  •           if (WARN(!tegra_dc_is_clk_enabled(dsi->dsi_clk[DSI_INSTANCE_0]),
    
  •           "DSI is clock gated!")) {
    
  •                   pr_err("jiwon, %s:DSI is clock gated!\n", __func__);
    
  •                   return 0;
    
  •           }
    
  •   }
    
  •   pr_err("[test], %s: 11\n", __func__);
      BUG_ON(!nvhost_module_powered_ext(dsi->dc->ndev));
    
  •   pr_err("[test], %s: dsi->base[%d] = %p, GET_BYTE_OFFSET(reg) = %d\n", __func__, DSI_INSTANCE_0 ,(void*)dsi->base[DSI_INSTANCE_0], GET_BYTE_OFFSET(reg));
      ret = readl(dsi->base[DSI_INSTANCE_0] + GET_BYTE_OFFSET(reg));
    
  •   pr_err("[test], %s: 22\n", __func__);
      trace_display_readl(dsi->dc, ret,
              (char *)dsi->base[DSI_INSTANCE_0] + GET_BYTE_OFFSET(reg));
    
  •   pr_err("[test], %s: 33\n", __func__);
      return ret;
    

}

@@ -445,6 +461,7 @@ void tegra_dsi_writel(struct tegra_dc_dsi_data *dsi, u32 val, u32 reg)
trace_display_writel(dsi->dc, val,
(char *)dsi->base[i] + GET_BYTE_OFFSET(reg));
writel(val, dsi->base[i] + GET_BYTE_OFFSET(reg));

  •   pr_err("[test], %s:i = %d, dsi->base[index] = %p, GET_BYTE_OFFSET(reg) = %d, \n", __func__, i, (void*)dsi->base[i], GET_BYTE_OFFSET(reg));
      }
    

}

  1. logs
    [ 4.245095] PD DISP0 index2 UP
    [ 4.250330] PD DISP1 index3 UP
    [ 4.258471] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00e0
    [ 4.266202] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e0004
    [ 4.273899] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00a0
    [ 4.281571] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00e8
    [ 4.289211] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00ec
    [ 4.296803] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00e4
    [ 4.304355] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00e0

[ 4.605201] tegradc 15200000.nvdisplay: DSI: HS clock rate is 192500
[ 4.617788] [test] enable dsi
[ 4.621294] [test], tegra_dsi_writel:i = 0, dsi->base[index] = ffffff8002600000, GET_BYTE_OFFSET(reg) = 48,
[ 4.632011] [test], tegra_dsi_writel:i = 0, dsi->base[index] = ffffff8002600000, GET_BYTE_OFFSET(reg) = 320,
[ 4.642516] [test], tegra_dsi_writel:i = 0, dsi->base[index] = ffffff8002600000, GET_BYTE_OFFSET(reg) = 324,
[ 4.653027] [test], tegra_dsi_readl: 11
[ 4.657487] [test], tegra_dsi_readl: dsi->base[0] = ffffff8002600000, GET_BYTE_OFFSET(reg) = 328

[ 12.294088] random: nonblocking pool is initialized
[ 27.678060] INFO: rcu_preempt detected stalls on CPUs/tasks:
[ 27.684902] 1-…: (1 GPs behind) idle=699/140000000000000/0 softirq=85/87 fqs=522
[ 27.693885] (detected by 0, t=5253 jiffies, g=-259, c=-260, q=7)
[ 27.701314] Task dump for CPU 1:
[ 27.705805] kworker/u12:0 R running task 0 6 2 0x00000002
[ 27.714234] Workqueue: events_unbound async_run_entry_fn
[ 27.720884] Call trace:
[ 27.724615] [] __switch_to+0xa4/0xb0
[ 27.731092] [<6666203d205d305b>] 0x6666203d205d305b
[ 36.050064] Watchdog detected hard LOCKUP on cpu 1
[ 36.054729] ------------[ cut here ]------------
[ 36.062103] WARNING: at ffffffc00013288c [verbose debug info unavailable]
[ 36.070269] Modules linked in:
[ 36.074725]
[ 36.077549] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.4.38-tegra #24
[ 36.085491] Hardware name: quill (DT)
[ 36.090595] task: ffffffc0010c9dc0 ti: ffffffc0010b8000 task.ti: ffffffc0010b8000
[ 36.099610] PC is at watchdog_timer_fn+0x230/0x33c
[ 36.105953] LR is at watchdog_timer_fn+0x230/0x33c
[ 36.112302] pc : [] lr : [] pstate: 600001c5
[ 36.121328] sp : ffffffc0010bbb30
[ 36.126292] x29: ffffffc0010bbb30 x28: 0000000000000001
[ 36.133321] x27: ffffffc0010c1b30 x26: ffffffc1f5fa2278
[ 36.140366] x25: ffffffc0010932d8 x24: ffffffc0010bbdd0
[ 36.147416] x23: 0000000000000000 x22: 0000000000000000
[ 36.154457] x21: ffffffc0010c1000 x20: ffffffc001093000
[ 36.161487] x19: ffffffc001093260 x18: ffffffc000ae3fe8
[ 36.168498] x17: ffffffc000a76890 x16: ffffffc000a76890
[ 36.175545] x15: ffffffc000a76890 x14: 0000000000000008
[ 36.182552] x13: ffffffc1ec6de940 x12: 0000000000000001
[ 36.189571] x11: 00000000ffffffff x10: 0000000000aaaaaa
[ 36.196599] x9 : 00000000000002b4 x8 : 0000000000000000
[ 36.203593] x7 : ffffffc0010e51d0 x6 : ffffffc0010d5fd8
[ 36.210570] x5 : 0000000000000000 x4 : 0000000000000000
[ 36.217502] x3 : 0000000000000000 x2 : 0000000000010001
[ 36.224432] x1 : ffffffc0010b8000 x0 : 0000000000000026
[ 36.231378]
[ 36.234726] —[ end trace e15d1c1651c82d56 ]—
[ 36.240917] Call trace:
[ 36.244935] [] watchdog_timer_fn+0x230/0x33c
[ 36.252323] [] __hrtimer_run_queues+0xf8/0x17c
[ 36.259838] [] hrtimer_interrupt+0x9c/0x1e0
[ 36.267064] [] tegra186_timer_isr+0x24/0x30
[ 36.274267] [] handle_irq_event_percpu+0x60/0x140
[ 36.281987] [] handle_irq_event+0x44/0x74
[ 36.288973] [] handle_fasteoi_irq+0xb4/0x188
[ 36.296210] [] generic_handle_irq+0x24/0x38
[ 36.303344] [] __handle_domain_irq+0x60/0xb4
[ 36.310613] [] gic_handle_irq+0x5c/0xb4
[ 36.317387] [] el1_irq+0x80/0xf8
[ 36.323539] [] default_idle_call+0x1c/0x2c
[ 36.330546] [] cpu_startup_entry+0x190/0x21c
[ 36.337706] [] rest_init+0x84/0x8c
[ 36.344003] [] start_kernel+0x39c/0x3b0
[ 36.350718] [<0000000080a6c000>] 0x80a6c000

Hi,

Maybe you could refer to panel-s-wuxga-8-0.dtsi first. I notice you didn’t mention any panel dtsi file here.

You should program the parameters of your panel to the dtsi file first.

Also, maybe you could use “preformatted text” button in forum if you want to paste any code.

Thank you for your reply.

I have already checked with reference dtsi (panels-wuxga-8-0.dtsi).
MIPI DSI register was still not read.

Here is out panel.dtsi.
#include <dt-bindings/display/tegra-dc.h>
#include <dt-bindings/display/tegra-panel.h>

/ {
	host1x {
		dsi {
			panel-dsi2gmsl-720p {
				status = "okay";
				compatible = "dsi2gmsl,720p";
				nvidia,dsi-instance = <DSI_INSTANCE_0>;
				lge,dsi-gmsl-bridge = <1>;
				nvidia,dsi-n-data-lanes = <4>;
				nvidia,dsi-pixel-format = <TEGRA_DSI_PIXEL_FORMAT_24BIT_P>;
				nvidia,dsi-refresh-rate = <60>;
				nvidia,dsi-video-data-type = <TEGRA_DSI_VIDEO_TYPE_VIDEO_MODE>;
				nvidia,dsi-video-clock-mode = <TEGRA_DSI_VIDEO_CLOCK_CONTINUOUS>;
				nvidia,dsi-video-burst-mode = <TEGRA_DSI_VIDEO_NONE_BURST_MODE_WITH_SYNC_END>;//<TEGRA_DSI_VIDEO_NONE_BURST_MODE>;
//				nvidia,dsi-ganged-type = <TEGRA_DSI_GANGED_SYMMETRIC_LEFT_RIGHT>;
//				nvidia,dsi-ganged-swap-links = <1>;
//				nvidia,dsi-ganged-write-to-all-links = <1>;
				nvidia,dsi-controller-vs = <DSI_VS_1>;
				nvidia,dsi-virtual-channel = <TEGRA_DSI_VIRTUAL_CHANNEL_0>;
				nvidia,dsi-panel-reset = <TEGRA_DSI_DISABLE>;
				nvidia,dsi-ulpm-not-support = <TEGRA_DSI_DISABLE>;
				nvidia,dsi-suspend-stop-stream-late = <TEGRA_DSI_DISABLE>;
				nvidia,dsi-power-saving-suspend = <TEGRA_DSI_DISABLE>;
//				nvidia,default_color_space = <1>;	/*default color profile:adobeRGB*/
				disp-default-out {
					nvidia,out-type = <TEGRA_DC_OUT_DSI>;
					nvidia,out-width = <230>;
					nvidia,out-height = <143>;
					nvidia,out-flags = <TEGRA_DC_OUT_CONTINUOUS_MODE>;
					//nvidia,out-parent-clk = "pll_d_out0";
					nvidia,out-parent-clk = "pll_d";
					nvidia,out-xres = <1280>;
					nvidia,out-yres = <720>;
				};
				display-timings {
					720P-32-60Hz {
						clock-frequency = <64022400>;/* (1280 + 48 + 80 + 32) * (720 + 3 + 13 + 5) * 60 */
						hactive = <1280>;
						vactive = <720>;
						hfront-porch = <48>;
						hback-porch = <80>;
						hsync-len = <32>;
						vfront-porch = <3>;
						vback-porch = <13>;
						vsync-len = <5>;
						nvidia,h-ref-to-sync = <1>; // exact value?
						nvidia,v-ref-to-sync = <1>; // exact value?
					};
				};
				smartdimmer {
					status = "disable";
				};

Dear WayneWWW,

Here is full log

[    0.000000] Booting Linux on physical CPU 0x100
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.4.38-tegra  (gcc version 4.8.5 (GCC) ) #24 SMP PREEMPT Wed Jun 17 16:23:04 KST 2020
[    0.000000] Boot CPU: AArch64 Processor [411fd073]
[    0.000000] earlycon: Early serial console at MMIO32 0x3100000 (options '')
[    0.000000] bootconsole [uart0] enabled
[    0.000000] Reserved memory: initialized node ramoops_carveout, compatible id nvidia,ramoops
[    0.000000] cma: Reserved 64 MiB at 0x00000000fc000000
[    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] PERCPU: Embedded 16 pages/cpu @ffffffc1f5fa0000 s27264 r8192 d30080 u65536
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2019936
[    0.000000] Kernel command line: root=/dev/mmcblk0p1 rw rootwait console=ttyS0,115200n8 console=tty0 OS=l4t fbcon=map:0 net.ifnames=0 memtype=0 video=tegrafb no_console_suspend=1 earlycon=uart8250,mmio32,0x03100000 nvdumper_reserved=0x2772e0000 gpt tegraid=18.1.2.0.0 tegra_keep_boot_clocks maxcpus=6 boot.slot_suffix= boot.ratchetvalues=0.2.1 androidboot.serialno=1424319078671 bl_prof_dataptr=0x10000@0x277040000 sdhci_tegra.en_boot_part_access=1 root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Memory: 7978212K/8208384K available (10200K kernel code, 1407K rwdata, 5268K rodata, 1008K init, 681K bss, 164636K reserved, 65536K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vmalloc : 0xffffff8000000000 - 0xffffffbdbfff0000   (   246 GB)
[    0.000000]     vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000   (     8 GB maximum)
[    0.000000]               0xffffffbdc2000000 - 0xffffffbdc9da0000   (   125 MB actual)
[    0.000000]     fixed   : 0xffffffbffa7fd000 - 0xffffffbffac00000   (  4108 KB)
[    0.000000]     PCI I/O : 0xffffffbffae00000 - 0xffffffbffbe00000   (    16 MB)
[    0.000000]     modules : 0xffffffbffc000000 - 0xffffffc000000000   (    64 MB)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc1f6800000   (  8040 MB)
[    0.000000]       .init : 0xffffffc000f9c000 - 0xffffffc001098000   (  1008 KB)
[    0.000000]       .text : 0xffffffc000080000 - 0xffffffc000f9c000   ( 15472 KB)
[    0.000000]       .data : 0xffffffc0010b8000 - 0xffffffc001217c40   (  1408 KB)
[    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] 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.009957] Console: colour dummy device 80x25
[    0.014620] console [tty0] enabled
[    0.018177] bootconsole [uart0] disabled
[    0.000000] Booting Linux on physical CPU 0x100
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.4.38-tegra  (gcc version 4.8.5 (GCC) ) #24 SMP PREEMPT Wed Jun 17 16:23:04 KST 2020
[    0.000000] Boot CPU: AArch64 Processor [411fd073]
[    0.000000] earlycon: Early serial console at MMIO32 0x3100000 (options '')
[    0.000000] bootconsole [uart0] enabled
[    0.000000] Reserved memory: initialized node ramoops_carveout, compatible id nvidia,ramoops
[    0.000000] cma: Reserved 64 MiB at 0x00000000fc000000
[    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] PERCPU: Embedded 16 pages/cpu @ffffffc1f5fa0000 s27264 r8192 d30080 u65536
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2019936
[    0.000000] Kernel command line: root=/dev/mmcblk0p1 rw rootwait console=ttyS0,115200n8 console=tty0 OS=l4t fbcon=map:0 net.ifnames=0 memtype=0 video=tegrafb no_console_suspend=1 earlycon=uart8250,mmio32,0x03100000 nvdumper_reserved=0x2772e0000 gpt tegraid=18.1.2.0.0 tegra_keep_boot_clocks maxcpus=6 boot.slot_suffix= boot.ratchetvalues=0.2.1 androidboot.serialno=1424319078671 bl_prof_dataptr=0x10000@0x277040000 sdhci_tegra.en_boot_part_access=1 root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Memory: 7978212K/8208384K available (10200K kernel code, 1407K rwdata, 5268K rodata, 1008K init, 681K bss, 164636K reserved, 65536K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vmalloc : 0xffffff8000000000 - 0xffffffbdbfff0000   (   246 GB)
[    0.000000]     vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000   (     8 GB maximum)
[    0.000000]               0xffffffbdc2000000 - 0xffffffbdc9da0000   (   125 MB actual)
[    0.000000]     fixed   : 0xffffffbffa7fd000 - 0xffffffbffac00000   (  4108 KB)
[    0.000000]     PCI I/O : 0xffffffbffae00000 - 0xffffffbffbe00000   (    16 MB)
[    0.000000]     modules : 0xffffffbffc000000 - 0xffffffc000000000   (    64 MB)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc1f6800000   (  8040 MB)
[    0.000000]       .init : 0xffffffc000f9c000 - 0xffffffc001098000   (  1008 KB)
[    0.000000]       .text : 0xffffffc000080000 - 0xffffffc000f9c000   ( 15472 KB)
[    0.000000]       .data : 0xffffffc0010b8000 - 0xffffffc001217c40   (  1408 KB)
[    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] 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.009957] Console: colour dummy device 80x25
[    0.014620] console [tty0] enabled
[    0.018177] bootconsole [uart0] disabled
[    0.022281] kmemleak: Kernel memory leak detector disabled
[    0.022295] Calibrating delay loop (skipped), value calculated using timer frequency.. 62.50 BogoMIPS (lpj=125000)
[    0.022308] pid_max: default: 32768 minimum: 301
[    0.022363] Security Framework initialized
[    0.022398] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.022409] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.022795] Initializing cgroup subsys io
[    0.022809] Initializing cgroup subsys memory
[    0.022830] Initializing cgroup subsys devices
[    0.022841] Initializing cgroup subsys freezer
[    0.022851] Initializing cgroup subsys net_cls
[    0.022860] Initializing cgroup subsys perf_event
[    0.022870] Initializing cgroup subsys net_prio
[    0.022883] Initializing cgroup subsys pids
[    0.022892] Initializing cgroup subsys debug
[    0.023047] CPU0 ipc=752
[    0.023060] CPU1 ipc=1024
[    0.023068] CPU2 ipc=1024
[    0.023077] CPU3 ipc=752
[    0.023087] CPU4 ipc=752
[    0.023098] CPU5 ipc=752
[    0.023130] ASID allocator initialised with 65536 entries
[    0.046953] tegra-id: chipid=21817.
[    0.046975] tegra-id: opt_subrevision=1.
[    0.046989] Tegra Revision: A02p SKU: 0xdc CPU Process: 0 SoC Process: 0
[    0.047688] DTS File Name: ../arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t18x/quill/kernel-dts/tegra186-quill-p3310-1000-c03-00-base.dts
[    0.047711] DTB Build time: Jun 17 2020 16:22:30
[    0.062553] CPU1: Booted secondary processor [4e0f0030]
[    0.074030] CPU2: Booted secondary processor [4e0f0030]
[    0.085664] CPU3: Booted secondary processor [411fd073]
[    0.097666] CPU4: Booted secondary processor [411fd073]
[    0.109666] CPU5: Booted secondary processor [411fd073]
[    0.109734] Brought up 6 CPUs
[    0.109794] SMP: Total of 6 processors activated.
[    0.109809] CPU: All CPU(s) started at EL2
[    0.110241] devtmpfs: initialized
[    0.137506] Initilizing CustomIPI irq domain
[    0.137729] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.138546] pinctrl core: initialized pinctrl subsystem
[    0.138747] OS set in device tree is not L4T.
[    0.138960] regulator-dummy: no parameters
[    0.139077] Initializing plugin-manager
[    0.139138] Plugin module not found
[    0.139552] node /plugin-manager/soc-prod-a02-fragment match with chip-id A02P
[    0.139905] node /plugin-manager/fragement@0 match with odm-data enable-denver-wdt
[    0.140529] node /plugin-manager/fragement@4 match with odm-data enable-denver-wdt
[    0.141711] node /plugin-manager/fragment-sdwake-p3310-1000-300 match with board >=3310-1000-300
[    0.142096] node /plugin-manager/fragement-pmon-p3310-1000-300 match with board >=3310-1000-300
[    0.142361] node /plugin-manager/fragement-pmon-p3310-1000-800 match with board >=3310-1000-800
[    0.142580] node /plugin-manager/fragment-devslp@0 match with board >=3310-1000-200
[    0.143004] node /plugin-manager/fragment-500-pcie-config match with board >=3310-1000-500
[    0.143455] node /plugin-manager/fragment-500-xusb-config match with board >=3310-1000-500
[    0.143736] node /plugin-manager/fragment-500-e3325-pcie match with board >=3310-1000-500
[    0.144114] node /plugin-manager/fragment-p3310-c00-comm match with board >=3310-1000-800
[    0.144367] node /plugin-manager/fragment-p3310-c00-pmic match with board >=3310-1000-800
[    0.144590] node /plugin-manager/fragment-p3310-c01 match with board >=3310-1000-900
[    0.144856] node /plugin-manager/fragment-p3310-c03 match with board >=3310-1000-B00
[    0.146806] node /plugin-manager/fragment-p3310-c00-camera match with board >=3310-1000-800
[    0.148741] Adding domain adsp-pd to PM domain ape-pd
[    0.151261] NET: Registered protocol family 16
[    0.152162] console [pstore-1] enabled
[    0.152176] pstore: Registered ramoops as persistent store backend
[    0.152190] ramoops: attached 0x200000@0x277080000, ecc: 0/0
[    0.157664] cpuidle: using governor ladder
[    0.165662] cpuidle: using governor menu
[    0.167003] bpmp: waiting for handshake
[    0.167019] bpmp: handshake completed
[    0.167066] bpmp: synchronizing channels
[    0.167084] bpmp: channels synchronized
[    0.167095] bpmp: mail init ok
[    0.167414] vdso: 2 pages (1 code @ ffffffc0010bd000, 1 data @ ffffffc0010bc000)
[    0.167448] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.168384] atomic_pool_init():526: DMA: preallocated 1024 KiB pool for atomic allocations
[    0.169898] tegra_powergate_init: DONE
[    0.169924] DTS File Name: ../arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t18x/quill/kernel-dts/tegra186-quill-p3310-1000-c03-00-base.dts
[    0.169946] DTB Build time: Jun 17 2020 16:22:30
[    0.171065] Tegra reboot handler registered.
[    0.172365] Registering Tegra186 clocks (this may take a while)...done
[    0.174093] arm-smmu 12000000.iommu: probing hardware configuration...
[    0.174115] arm-smmu 12000000.iommu: SMMUv2 with:
[    0.174129] arm-smmu 12000000.iommu:         stage 1 translation
[    0.174142] arm-smmu 12000000.iommu:         stage 2 translation
[    0.174155] arm-smmu 12000000.iommu:         nested translation
[    0.174171] arm-smmu 12000000.iommu:         stream matching with 128 register groups, mask 0x7f80
[    0.174191] arm-smmu 12000000.iommu: SMMU address space size (0x800000) differs from mapped region size (0x1000000)!
[    0.174210] arm-smmu 12000000.iommu:         64 context banks (0 stage-2 only)
[    0.174225] arm-smmu 12000000.iommu:         Stage-1: 39-bit VA -> 48-bit IPA
[    0.174239] arm-smmu 12000000.iommu:         Stage-2: 39-bit IPA -> 48-bit PA
[    0.223744] arm-smmu 12000000.iommu: registered 67 master devices
[    0.229026] iommu: Adding device 3460000.sdhci to group 0
[    0.229968] iommu: Adding device 3400000.sdhci to group 1
[    0.233684] iommu: Adding device 3507000.ahci-sata to group 2
[    0.234166] iommu: Adding device 3160000.i2c to group 3
[    0.234598] iommu: Adding device c240000.i2c to group 4
[    0.235004] iommu: Adding device 3180000.i2c to group 5
[    0.235434] iommu: Adding device 3190000.i2c to group 6
[    0.235883] iommu: Adding device 31b0000.i2c to group 7
[    0.236218] iommu: Adding device 31c0000.i2c to group 8
[    0.236544] iommu: Adding device c250000.i2c to group 9
[    0.236868] iommu: Adding device 31e0000.i2c to group 10
[    0.238879] iommu: Adding device 3210000.spi to group 11
[    0.239251] iommu: Adding device c260000.spi to group 12
[    0.239597] iommu: Adding device 3240000.spi to group 13
[    0.240392] iommu: Adding device 3100000.serial to group 14
[    0.240700] iommu: Adding device 3110000.serial to group 15
[    0.241025] iommu: Adding device c280000.serial to group 16
[    0.241321] iommu: Adding device 3130000.serial to group 17
[    0.242646] iommu: Adding device 2490000.ether_qos to group 18
[    0.243312] iommu: Adding device b000000.rtcpu to group 19
[    0.243833] iommu: Adding device c1a0000.aon to group 20
[    0.244786] Wake73 for irq=42
[    0.245149] iommu: Adding device smmu_test to group 21
[    0.245700] mc: mapped MMIO address: 0xffffff8000560000 -> 0x2c10000
[    0.245742] mc: mapped MMIO address: 0xffffff8000640000 -> 0x2c20000
[    0.245779] mc: mapped MMIO address: 0xffffff8000660000 -> 0x2c30000
[    0.245816] mc: mapped MMIO address: 0xffffff8000fa0000 -> 0x2c40000
[    0.245867] mc: mapped MMIO address: 0xffffff8000fc0000 -> 0x2c50000
[    0.245927] mc-err: Set intmask: 0xf3140
[    0.246171] ecc-err: dram ecc disabled-MC_ECC_CONTROL:0x0000000c
[    0.247077] Wake76 for irq=199
[    0.247101] Wake77 for irq=199
[    0.247151] Wake78 for irq=199
[    0.247171] Wake79 for irq=199
[    0.247191] Wake80 for irq=199
[    0.247210] Wake81 for irq=199
[    0.247229] Wake82 for irq=199
[    0.247356] iommu: Adding device 3530000.xhci to group 22
[    0.247742] iommu: Adding device 3550000.xudc to group 23
[    0.248565] tegra-pmc c360000.pmc: scratch reg offset dts data not present
[    0.248597] tegra-pmc: ### PMC reset source: Power on reset
[    0.248621] tegra-pmc: ### PMC reset level: L0
[    0.248661] tegra-pmc: ### PMC reset status reg: 0x0
[    0.248919] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[    0.248957] tegra-pmc c360000.pmc: IO padctrl driver initialized
[    0.249158] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CTRL_0 = 3
[    0.249188] tegra186-aowake c370000.pmc: WAKE_AOWAKE_CNTRL_24(PMU_INT) = 320
[    0.249681] iommu: Adding device 13e10000.host1x to group 24
[    0.249982] iommu: Adding device 13e10000.host1x:ctx0 to group 25
[    0.250230] iommu: Adding device 13e10000.host1x:ctx1 to group 26
[    0.250484] iommu: Adding device 13e10000.host1x:ctx2 to group 27
[    0.250764] iommu: Adding device 13e10000.host1x:ctx3 to group 28
[    0.251034] iommu: Adding device 13e10000.host1x:ctx4 to group 29
[    0.251272] iommu: Adding device 13e10000.host1x:ctx5 to group 30
[    0.251545] iommu: Adding device 13e10000.host1x:ctx6 to group 31
[    0.251808] iommu: Adding device 13e10000.host1x:ctx7 to group 32
[    0.252227] iommu: Adding device 150c0000.nvcsi to group 33
[    0.252800] iommu: Adding device 15700000.vi to group 34
[    0.253141] iommu: Adding device 15600000.isp to group 35
[    0.253555] iommu: Adding device 15200000.nvdisplay to group 36
[    0.253891] iommu: Adding device 15210000.nvdisplay to group 37
[    0.254266] iommu: Adding device 15340000.vic to group 38
[    0.254516] iommu: Adding device 154c0000.nvenc to group 39
[    0.254763] iommu: Adding device 15480000.nvdec to group 40
[    0.255084] iommu: Adding device 15380000.nvjpg to group 41
[    0.255321] iommu: Adding device 15500000.tsec to group 42
[    0.255575] iommu: Adding device 15100000.tsecb to group 43
[    0.256284] iommu: Adding device 15810000.se to group 44
[    0.256502] iommu: Adding device 15820000.se to group 45
[    0.256735] iommu: Adding device 15830000.se to group 46
[    0.256924] iommu: Adding device 15840000.se to group 47
[    0.257488] iommu: Adding device 17000000.gp10b to group 48
[    0.259020] tegra-reset 5000000.clock: registered 193 resets.
[    0.261188] iommu: Adding device d000000.bpmp to group 49
[    0.261425] bpmp: ping status is 0
[    0.261624] bpmp d000000.bpmp: firmware tag is 83385b61e34297b2f37e76e0cd1ff81e
[    0.262002] bpmp d000000.bpmp: probe ok
[    0.264938] iommu: Adding device 2600000.dma to group 50
[    0.266083] GPIO line 461 (cam0-rst) hogged as output/low
[    0.266146] GPIO line 456 (cam0-pwdn) hogged as output/low
[    0.266229] GPIO line 457 (cam1-rst) hogged as output/low
[    0.266284] GPIO line 426 (cam1-pwdn) hogged as output/low
[    0.266343] GPIO line 424 (wifi-enable) hogged as output/high
[    0.266399] GPIO line 445 (sdmmc-wake-input) hogged as input
[    0.266475] GPIO line 446 (sdmmc-wake-output) hogged as output/low
[    0.266618] gpiochip_add_data: registered GPIOs 320 to 511 on device: tegra-gpio
[    0.268607] GPIO line 315 (wifi-wake-ap) hogged as input
[    0.268734] gpiochip_add_data: registered GPIOs 256 to 319 on device: tegra-gpio-aon
[    0.269689] iommu: Adding device 10003000.pcie-controller to group 51
[    0.269965] iommu: Adding device sound to group 52
[    0.271751] iommu: Adding device 3510000.hda to group 53
[    0.272932] iommu: Adding device adsp_audio to group 54
[    0.274395] iommu: Adding device 2993000.adsp to group 55
[    0.284240] vdd-ac-bat: 5000 mV
[    0.286461] vdd-1v8-ap: 1800 mV
[    0.303870] max96755_i2c_client_init: called
[    0.304732] SCSI subsystem initialized
[    0.305087] usbcore: registered new interface driver usbfs
[    0.305154] usbcore: registered new interface driver hub
[    0.305286] usbcore: registered new device driver usb
[    0.307492] lcd_driver 0-0040: of_dsi2gmsl_parse_platform_data: gpio number not provided
[    0.307557] max96755_i2c_probe: returning 0
[    0.307864] lcd_driver 0-0040: success to i2c comm, addr : 40 CMD[0x000d] ret:2
[    0.307902] lcd_i2c_initial_set des chip id : 0x71
[    0.308195] lcd_driver 0-0040: success to i2c comm, addr : 40 CMD[0x0013] ret:2
[    0.308232] lcd_i2c_initial_set ser lock check : 71, result : 2
[    0.308261] lcd_i2c_initial_set GMSL2 link failed
[    0.308317] i2c i2c-0: Failed to register i2c client ina3221x at 0x40 (-16)
[    0.308343] i2c i2c-0: of_i2c: Failure registering /i2c@3160000/ina3221x@40
[    0.308937] tegra-i2c 3160000.i2c: no acknowledge from address 0x74
[    0.309136] pca953x 0-0074: failed reading register
[    0.309243] pca953x: probe of 0-0074 failed with error -121
[    0.309642] tegra-i2c 3160000.i2c: no acknowledge from address 0x77
[    0.309865] pca953x 0-0077: failed reading register
[    0.309955] pca953x: probe of 0-0077 failed with error -121
[    0.320957] media: Linux media interface: v0.10
[    0.321086] Linux video capture interface: v2.00
[    0.321151] pps_core: LinuxPPS API ver. 1 registered
[    0.321197] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.321262] PTP clock support registered
[    0.322250] tegra_wdt_t18x 30c0000.watchdog: Tegra WDT init timeout = 25 sec
[    0.322328] tegra_wdt_t18x 30c0000.watchdog: Registered successfully
[    0.323895] max77620 4-003c: PMIC Version OTP:0x45 and ES:0x8
[    0.326021] GPIO line 253 (spmic_gpio_input_5) hogged as input
[    0.326207] GPIO line 254 (spmic_gpio_input_6) hogged as input
[    0.326304] gpiochip_add_data: registered GPIOs 248 to 255 on device: max77620-gpio
[    0.330721] vddio-ddr: at 1125 mV
[    0.334554] avdd_dsi_csi: 1200 mV
[    0.338560] vdd-1v8: 1800 mV
[    0.342554] vdd-3v3-sys: 3300 mV
[    0.343627] spmic-ldo0: at 1800 mV
[    0.344417] spmic-ldo1: at 800 mV
[    0.346556] vddio-3v3: 3300 mV
[    0.347208] vddio-sdmmc1: 1800 <--> 3300 mV at 3300 mV
[    0.350558] vdd-rtc: at 800 mV
[    0.351363] avdd-ts-hv: 1800 <--> 3300 mV at 1800 mV
[    0.354556] spmic-ldo6: at 1500 mV
[    0.358556] vdd-pex-1v05: 1000 mV
[    0.359182] dvdd-pex: 1000 mV
[    0.359500] max77620 4-003c: max77620 probe successful
[    0.359789] Advanced Linux Sound Architecture Driver Initialized.
[    0.360898] en-vdd-sd: 3300 mV
[    0.361210] vdd-usb0-5v: 5000 mV
[    0.361392] vdd-usb1-5v: 5000 mV
[    0.361785] vdd-3v3: 3300 mV
[    0.361944] en-vdd-vcm-2v8: 2800 mV
[    0.362094] vdd-sys-bl: 3300 mV
[    0.365674] extcon-gpio-states external-connection:extcon@1: Cable state 1
[    0.366097] clocksource: Switched to clocksource arch_sys_counter
[    0.366383] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    0.366562] nvmap: nvmap_override_cache_ops() set roc flush ops to replace cache ops by set/ways
[    0.367036] nvmap_page_pool_init: Total RAM pages: 2010937
[    0.367054] nvmap_page_pool_init: nvmap page pool size: 251367 pages (981 MB)
[    0.367209] nvmap_background_zero_thread: PP zeroing thread starting.
[    0.371861] Wake76 for irq=199
[    0.371875] Wake77 for irq=199
[    0.371886] Wake78 for irq=199
[    0.371896] Wake79 for irq=199
[    0.371907] Wake80 for irq=199
[    0.371916] Wake81 for irq=199
[    0.371926] Wake82 for irq=199
[    0.372764] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type BCPU-therm
[    0.372982] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type MCPU-therm
[    0.373385] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
[    0.373467] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[    0.373619] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type Tboard_tegra
[    0.373763] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type Tdiode_tegra
[    0.373926] thermal thermal_zone6: Registering thermal zone thermal_zone6 for type PMIC-Die
[    0.374247] isomgr_init(): iso emc max clk=1866000KHz
[    0.374261] isomgr_init(): max_iso_bw=26870400KB
[    0.374357] NET: Registered protocol family 2
[    0.374720] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.374928] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.375246] TCP: Hash tables configured (established 65536 bind 65536)
[    0.375308] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.375364] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.375527] NET: Registered protocol family 1
[    0.375722] RPC: Registered named UNIX socket transport module.
[    0.375741] RPC: Registered udp transport module.
[    0.375752] RPC: Registered tcp transport module.
[    0.375764] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.375895] Trying to unpack rootfs image as initramfs...
[    0.390412] host1x 13e10000.host1x: initialized
[    0.391285] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    0.393168] futex hash table entries: 2048 (order: 6, 262144 bytes)
[    0.393279] audit: initializing netlink subsys (disabled)
[    0.393312] audit: type=2000 audit(0.380:1): initialized
[    0.400272] io scheduler noop registered
[    0.400386] io scheduler cfq registered (default)
[    0.403358] tegra-pwm 3280000.pwm: PWM clk can sleep in ops
[    0.404600] tegra-pwm 3290000.pwm: PWM clk can sleep in ops
[    0.405666] tegra-pwm 32a0000.pwm: PWM clk can sleep in ops
[    0.406724] tegra-pwm c340000.pwm: PWM clk can sleep in ops
[    0.410526] tsec 15500000.tsec: initialized
[    0.411725] tsec 15100000.tsecb: initialized
[    0.414252] nvdec 15480000.nvdec: initialized
[    0.418074] falcon 15340000.vic: initialized
[    0.419131] falcon 154c0000.nvenc: initialized
[    0.420158] falcon 15380000.nvjpg: initialized
[    0.420920] iommu_context_dev 13e10000.host1x:ctx0: initialized (streamid=56)
[    0.421420] iommu_context_dev 13e10000.host1x:ctx1: initialized (streamid=57)
[    0.421915] iommu_context_dev 13e10000.host1x:ctx2: initialized (streamid=58)
[    0.422432] iommu_context_dev 13e10000.host1x:ctx3: initialized (streamid=59)
[    0.422930] iommu_context_dev 13e10000.host1x:ctx4: initialized (streamid=60)
[    0.423428] iommu_context_dev 13e10000.host1x:ctx5: initialized (streamid=61)
[    0.423928] iommu_context_dev 13e10000.host1x:ctx6: initialized (streamid=62)
[    0.424426] iommu_context_dev 13e10000.host1x:ctx7: initialized (streamid=63)
[    0.425909] OF_DC_LOG: dc or node /host1x/dsi
[    0.425924] DC OR NODE connected to /host1x/dsi
[    0.425987] [test] nvdisp_stub
[    0.426007] OF_DC_LOG: fb bpp 32
[    0.426018] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[    0.426036] OF_DC_LOG: fb flip on probe
[    0.426101] [test] nvdisp_stub
[    0.426117] OF_DC_LOG: dsi controller vs DSI_VS_1
[    0.426129] OF_DC_LOG: Enable hs clock in lp mode 1
[    0.426139] misc tegra_camera_ctrl: tegra_camera_isomgr_register tpg_max_iso = 3916800KBs
[    0.426144] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=4687500, vi_iso_bw=1500000, max_bw=4687500
[    0.426173] OF_DC_LOG: n data lanes 4
[    0.426184] OF_DC_LOG: dsi video NONE_BURST_MODE_WITH_SYNC_END
[    0.426196] OF_DC_LOG: dsi pixel format 24BIT_P
[    0.426207] OF_DC_LOG: dsi refresh rate 60
[    0.426222] OF_DC_LOG: dsi virtual channel 0
[    0.426232] OF_DC_LOG: dsi instance 0
[    0.426244] OF_DC_LOG: dsi panel reset 0
[    0.426271] OF_DC_LOG: dsi2gmsl_bridge_enable 1
[    0.426286] OF_DC_LOG: dsi power saving suspend 0
[    0.426297] OF_DC_LOG: dsi ulpm_not_supported 0
[    0.426308] OF_DC_LOG: dsi video type VIDEO_MODE
[    0.426319] OF_DC_LOG: dsi video clock mode CONTINUOUS
[    0.426340] OF_DC_LOG: suspend stop stream late 0
[    0.426375] OF_DC_LOG: boardinfo platform_boardid = 0                                         platform_boardversion = 0                                       display_boardid = 0                                     display_boardversion = 0
[    0.426419] OF_DC_LOG: out_width 230
[    0.426432] OF_DC_LOG: out_height 143
[    0.426453] OF_DC_LOG: default_out flag 0
[    0.426469] OF_DC_LOG: parent clk pll_d
[    0.426483] OF_DC_LOG: framebuffer xres 1280
[    0.426494] OF_DC_LOG: framebuffer yres 720
[    0.426534] OF_DC_LOG: nvidia,sd-enable 0
[    0.426575] OF_DC_LOG: nvidia,coeff 0 0 0
[    0.426586] OF_DC_LOG: nvidia,fc 0 0
[    0.426596] OF_DC_LOG: nvidia,blp 0 0
[    0.426607] OF_DC_LOG: nvidia,bias0 default
[    0.426618] OF_DC_LOG: of pclk 64022400
[    0.426734] OF_DC_LOG: panel csc 0xd581
[    0.426745] OF_DC_LOG: panel csc 0x2979
[    0.426754] OF_DC_LOG: panel csc 0xc5
[    0.426764] OF_DC_LOG: panel csc 0x0
[    0.426775] OF_DC_LOG: panel csc 0x831
[    0.426785] OF_DC_LOG: panel csc 0xcac1
[    0.426796] OF_DC_LOG: panel csc 0x20c
[    0.426806] OF_DC_LOG: panel csc 0x0
[    0.426816] OF_DC_LOG: panel csc 0x189
[    0.426826] OF_DC_LOG: panel csc 0x625
[    0.426836] OF_DC_LOG: panel csc 0xcc4a
[    0.426846] OF_DC_LOG: panel csc 0x0
[    0.426859] OF_DC_LOG: dc flag 1
[    0.426869] OF_DC_LOG: dc controller index 0
[    0.426882] OF_DC_LOG: fb window Index 0
[    0.426893] OF_DC_LOG: win mask 0x7
[    0.426904] OF_DC_LOG: cmu enable 1
[    0.426918] tegradc 15200000.nvdisplay: DT parsed successfully
[    0.426948] tegradc 15200000.nvdisplay: Display dc.ffffff80025e0000 registered with id=0
[    0.433451] tegra-adma 2930000.adma: Tegra ADMA driver register 10 channels
[    0.434928] tegra_nvdisp_bandwidth_register_max_config: max config iso bw = 16727000 KB/s
[    0.434952] tegra_nvdisp_bandwidth_register_max_config: max config EMC floor = 665600000 Hz
[    0.434969] tegra_nvdisp_bandwidth_register_max_config: max config hubclk = 357620000 Hz
[    0.435021] tegradc 15200000.nvdisplay: vblank syncpt # 7 for dc 0
[    0.435037] tegradc 15200000.nvdisplay: vpulse3 syncpt # 8 for dc 0
[    0.435380] tegradc 15200000.nvdisplay: tegra_dc_set_out, out->type : 2
[    0.435396] tegradc 15200000.nvdisplay: dsi: tegra_dc_dsi_init
[    0.435442] tegradc 15200000.nvdisplay: dsi: _tegra_dc_dsi_init
[    0.436113] tegra-fuse-burn 3820000.efuse:efuse-burn: Fuse burn driver initialized
[    0.436433] tegradc 15200000.nvdisplay: dsi: __tegra_dc_dsi_init
[    0.436518] tegradc 15200000.nvdisplay: dsi: init tegra_dsi2gmsl_ops
[    0.436661] kfuse 3830000.kfuse: initialized
[    0.438168] tegradc 15200000.nvdisplay: probed
[    0.438471] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[    0.438958] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.440959] console [ttyS0] disabled
[    0.441015] 3100000.serial: ttyS0 at MMIO 0x3100000 (irq = 37, base_baud = 25500000) is a Tegra
[    2.765240] console [ttyS0] enabled
[    2.767300] 3110000.serial: ttyTHS1 at MMIO 0x3110000 (irq = 38, base_baud = 0) is a TEGRA_UART
[    2.768371] c280000.serial: ttyTHS2 at MMIO 0xc280000 (irq = 39, base_baud = 0) is a TEGRA_UART
[    2.768574] serial-tegra 3130000.serial: RX in PIO mode
[    2.769469] 3130000.serial: ttyTHS3 at MMIO 0x3130000 (irq = 40, base_baud = 0) is a TEGRA_UART
[    2.771604] Console: switching to colour frame buffer device 160x45
[    2.779311] brd: module loaded
[    2.783660] loop: module loaded
[    2.783895] nct1008_nct72 7-004c: find device tree node, parsing dt
[    2.783900] nct1008_nct72 7-004c: starting parse dt
[    2.783992] nct1008_nct72 7-004c: success parsing dt
[    2.784118] nct1008_nct72 7-004c: success in enabling tmp451 VDD rail
[    2.797477] gk20a 17000000.gp10b: failed to allocate secure buffer -12
[    2.820858] tmp451: Enabled overheat logging at 104.00C
[    2.821004] nct1008_nct72 7-004c: nct1008_probe: initialized
[    2.823385] THERMAL EST: found 3 subdevs
[    2.823390] THERMAL EST num_resources: 0
[    2.823394] [THERMAL EST subdev 0]
[    2.823398] [THERMAL EST subdev 1]
[    2.823402] [THERMAL EST subdev 2]
[    2.823702] thermal thermal_zone7: Registering thermal zone thermal_zone7 for type thermal-fan-est
[    2.823705] THERMAL EST: thz register success.
[    2.823811] THERMAL EST: end of probe, return err: 0
[    2.823861] tegra_profiler: Branch: Dev
[    2.823864] tegra_profiler: Version: 1.117
[    2.823866] tegra_profiler: Samples version: 41
[    2.823867] tegra_profiler: IO version: 22
[    2.823875] armv8_pmu: imp: 0x41, idcode: 0x1
[    2.823881] armv8_pmu: [0] arch: AA64 PmuV3 ARM CORTEX-A57, type: 5, ver: 0, pmu ver: 0x1
[    2.823885] armv8_pmu: imp: 0x4e, idcode: 0x1
[    2.823889] armv8_pmu: [1] arch: AA64 PmuV3 NVIDIA (Denver), type: 6, ver: 2, pmu ver: 0x1
[    2.823893] armv8_pmu: imp: 0x4e, idcode: 0x1
[    2.823896] armv8_pmu: [2] arch: AA64 PmuV3 NVIDIA (Denver), type: 6, ver: 2, pmu ver: 0x1
[    2.823900] armv8_pmu: imp: 0x41, idcode: 0x1
[    2.823903] armv8_pmu: [3] arch: AA64 PmuV3 ARM CORTEX-A57, type: 5, ver: 0, pmu ver: 0x1
[    2.823906] armv8_pmu: imp: 0x41, idcode: 0x1
[    2.823910] armv8_pmu: [4] arch: AA64 PmuV3 ARM CORTEX-A57, type: 5, ver: 0, pmu ver: 0x1
[    2.823913] armv8_pmu: imp: 0x41, idcode: 0x1
[    2.823917] armv8_pmu: [5] arch: AA64 PmuV3 ARM CORTEX-A57, type: 5, ver: 0, pmu ver: 0x1
[    2.824092] tegra_profiler: auth: init
[    2.827491] tegra-ahci 3507000.ahci-sata: AHCI 0001.0301 32 slots 2 ports 3 Gbps 0x1 impl platform mode
[    2.827502] tegra-ahci 3507000.ahci-sata: flags: 64bit ncq sntf pm led pmp pio slum part deso sadm apst
[    2.828427] scsi host0: tegra_ahci
[    2.828782] scsi host1: tegra_ahci
[    2.828911] ata1: SATA max UDMA/133 mmio [mem 0x03507000-0x03508fff] port 0x100 irq 25
[    2.828914] ata2: DUMMY
[    2.829779] spi-tegra114 3210000.spi: Static pin configuration used
[    2.830252] spi-tegra114 c260000.spi: Static pin configuration used
[    2.830653] spi-tegra114 3240000.spi: Static pin configuration used
[    2.831481] tun: Universal TUN/TAP device driver, 1.6
[    2.831483] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    2.831660] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    2.831662] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    2.831701] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.3.0-k
[    2.831703] igb: Copyright (c) 2007-2014 Intel Corporation.
[    2.832752] PPP generic driver version 2.4.2
[    2.832881] PPP BSD Compression module registered
[    2.832890] PPP Deflate Compression module registered
[    2.832915] PPP MPPE Compression module registered
[    2.832930] NET: Registered protocol family 24
[    2.832993] usbcore: registered new interface driver r8152
[    2.833028] usbcore: registered new interface driver asix
[    2.833056] usbcore: registered new interface driver ax88179_178a
[    2.833080] usbcore: registered new interface driver cdc_ether
[    2.833114] usbcore: registered new interface driver smsc75xx
[    2.833143] usbcore: registered new interface driver net1080
[    2.833168] usbcore: registered new interface driver cdc_subset
[    2.833193] usbcore: registered new interface driver zaurus
[    2.833237] usbcore: registered new interface driver cdc_ncm
[    2.833461] Wake76 for irq=199
[    2.833464] Wake77 for irq=199
[    2.833468] Wake78 for irq=199
[    2.833470] Wake79 for irq=199
[    2.833471] Wake80 for irq=199
[    2.833473] Wake81 for irq=199
[    2.833475] Wake82 for irq=199
[    2.833531] tegra-xotg xotg: usb2 phy is not available yet
[    2.834324] usbcore: registered new interface driver cdc_acm
[    2.834327] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    2.834366] usbcore: registered new interface driver usb-storage
[    2.834426] usbcore: registered new interface driver usbserial
[    2.834449] usbcore: registered new interface driver cp210x
[    2.834473] usbserial: USB Serial support registered for cp210x
[    2.834495] usbcore: registered new interface driver ftdi_sio
[    2.834515] usbserial: USB Serial support registered for FTDI USB Serial Device
[    2.834537] usbcore: registered new interface driver option
[    2.834555] usbserial: USB Serial support registered for GSM modem (1-port)
[    2.834580] usbcore: registered new interface driver pl2303
[    2.834598] usbserial: USB Serial support registered for pl2303
[    2.834805] tegra-usb-cd usb_cd: otg phy is not available yet
[    2.853535] eqos 2490000.ether_qos: Setting local MAC: 0 4 4b f7 18 b3
[    2.854109] libphy: dwc_phy: probed
[    2.854933] tegra-xudc-new 3550000.xudc: usb2 phy is not available yet
[    2.919249] bcm54xx_low_power_mode(): put phy in iddq-lp mode
[    2.987280] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[    2.989411] tegra_rtc c2a0000.rtc: rtc core: registered c2a0000.rtc as rtc1
[    2.989424] tegra_rtc c2a0000.rtc: Tegra internal Real Time Clock
[    2.989565] i2c /dev entries driver
[    2.990380] gspca_main: v2.14.0 registered
[    2.990427] usbcore: registered new interface driver gspca_zc3xx
[    2.990675] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[    2.992583] FAN: coudln't get the regulator
[    2.993311] device-mapper: uevent: version 1.0.3
[    2.993504] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[    2.993902] sdhci: Secure Digital Host Controller Interface driver
[    2.993903] sdhci: Copyright(c) Pierre Ossman
[    2.993908] sdhci-pltfm: SDHCI platform and OF driver helper
[    3.012068] sdhci-tegra 3460000.sdhci: Parent select= pll_p rate=408000000
[    3.012466] sdhci-tegra 3460000.sdhci: Parent select= pll_c4_out0 rate=196249804
[    3.012704] sdhci-tegra 3460000.sdhci: Client registration for eMC Successful
[    3.012769] tegra-se-elp 3ad0000.se_elp: tegra_se_elp_probe: complete
[    3.012976] hidraw: raw HID events driver (C) Jiri Kosina
[    3.014465] usbcore: registered new interface driver usbhid
[    3.014466] usbhid: USB HID core driver
[    3.017539] tegra-i2c 3160000.i2c: no acknowledge from address 0x43
[    3.017913] ina3221x 0-0043: ina3221 reset failure status: 0xffffff87
[    3.018082] ina3221x: probe of 0-0043 failed with error -121
[    3.018645] nvadsp 2993000.adsp: in probe()...
[    3.020027] nvadsp 2993000.adsp: Registering AMC Error Interrupt
[    3.020065] nvadsp 2993000.adsp: AMC/ARAM initialized.
[    3.020313] nvadsp 2993000.adsp: nvadsp_app_module_probe
[    3.032759] Denver: backdoor interface is NOT available.
[    3.034161] Module initialized successfully
[    3.038274] tegra186-cam-rtcpu b000000.rtcpu: Trace buffer configured at IOVA=0xa0000000
[    3.039984] tegra186-cam-rtcpu b000000.rtcpu: already unhalted
[    3.040250] tegra-ivc ivc-b000000.rtcpu: region 0: iova=0xa0110000-0xa011957f size=38272
[    3.040638] tegra-ivc ivc-b000000.rtcpu:echo@0: echo: ver=0 grp=1 RX[16x64]=0x1000-0x1480 TX[16x64]=0x1480-0x1900
[    3.040690] tegra-ivc ivc-b000000.rtcpu:vinotify@12c0: vinotify: ver=0 grp=1 RX[64x128]=0x1900-0x3980 TX[64x128]=0x3980-0x5a00
[    3.040738] tegra-ivc ivc-b000000.rtcpu:mods@32c0: mods: ver=0 grp=1 RX[1x64]=0x5a00-0x5ac0 TX[1x64]=0x5ac0-0x5b80
[    3.040778] tegra-ivc ivc-b000000.rtcpu:ivccontrol@52c0: ivccontrol: ver=0 grp=1 RX[16x320]=0x5b80-0x7000 TX[16x320]=0x7000-0x8480
[    3.040827] tegra-ivc ivc-b000000.rtcpu:ivccapture@72c0: ivccapture: ver=0 grp=1 RX[16x64]=0x8480-0x8900 TX[16x64]=0x8900-0x8d80
[    3.040867] tegra-ivc ivc-b000000.rtcpu:dbg@7c00: dbg: ver=0 grp=1 RX[1x384]=0x8d80-0x8f80 TX[1x384]=0x8f80-0x9180
[    3.040907] tegra-ivc ivc-b000000.rtcpu:dbg@7e00: dbg: ver=0 grp=1 RX[1x384]=0x9180-0x9380 TX[1x384]=0x9380-0x9580
[    3.041076] tegra186-cam-rtcpu b000000.rtcpu: using cam RTCPU IRQ (52)
[    3.041078] tegra186-cam-rtcpu b000000.rtcpu: tegra_camrtc_mon_create is successful
[    3.041778] tegra-ivc ivc-b000000.rtcpu:echo@0: ivc channel driver missing
[    3.041781] tegra-ivc ivc-b000000.rtcpu:vinotify@12c0: ivc channel driver missing
[    3.041784] tegra-ivc ivc-b000000.rtcpu:mods@32c0: ivc channel driver missing
[    3.041786] tegra-ivc ivc-b000000.rtcpu:ivccontrol@52c0: ivc channel driver missing
[    3.041788] tegra-ivc ivc-b000000.rtcpu:ivccapture@72c0: ivc channel driver missing
[    3.041791] tegra-ivc ivc-b000000.rtcpu:dbg@7c00: ivc channel driver missing
[    3.041793] tegra-ivc ivc-b000000.rtcpu:dbg@7e00: ivc channel driver missing
[    3.041831] tegra186-cam-rtcpu b000000.rtcpu: firmware version cpu=sce cmd=4 sha1=a8b1ecdd9615cd817a56df035be363fce3b0b88f
[    3.046634] tegra-ivc-cdev ivc-b000000.rtcpu:echo@0: probing /dev/camchar-echo
[    3.047507] tegra-ivc-cdev ivc-b000000.rtcpu:dbg@7c00: probing /dev/camchar-dbg
[    3.047632] camchar: rtcpu character device driver loaded
[    3.052837] tegra186-aondbg aondbg: aondbg driver probe() OK
[    3.053275] register_ari_mca_banks: Registered MCA ROC:IOB
[    3.053540] register_ari_mca_banks: Registered MCA ROC:CCE
[    3.054100] mmc0: SDHCI controller on 3460000.sdhci [3460000.sdhci] using ADMA 64-bit with 64 bit addr
[    3.054394] tegra18-bridge 2390000.axi2apb: bridge probed OK
[    3.054428] sdhci-tegra 3440000.sdhci: Parent select= pll_p rate=408000000
[    3.054469] tegra18-bridge 23a0000.axi2apb: bridge probed OK
[    3.054526] tegra18-bridge 23b0000.axi2apb: bridge probed OK
[    3.054555] tegra18-bridge 23c0000.axi2apb: bridge probed OK
[    3.054587] tegra18-bridge 23d0000.axi2apb: bridge probed OK
[    3.054613] tegra18-bridge 2100000.axip2p: bridge probed OK
[    3.054639] tegra18-bridge 2110000.axip2p: bridge probed OK
[    3.054666] tegra18-bridge 2120000.axip2p: bridge probed OK
[    3.054697] tegra18-bridge 2130000.axip2p: bridge probed OK
[    3.054720] tegra18-bridge 2140000.axip2p: bridge probed OK
[    3.054747] tegra18-bridge 2150000.axip2p: bridge probed OK
[    3.054749] sdhci-tegra 3440000.sdhci: Client registration for eMC Successful
[    3.054841] tegra18-bridge 2160000.axip2p: bridge probed OK
[    3.054872] tegra18-bridge 2170000.axip2p: bridge probed OK
[    3.054917] tegra18-bridge 2180000.axip2p: bridge probed OK
[    3.054947] tegra18-bridge 2190000.axip2p: bridge probed OK
[    3.055014] **** A57 ECC: Enabled
[    3.055017] tegra18_a57_serr_init: on CPU 4 a A57 Core
[    3.055190] parse_throttle_dt_data: Num cap clks = 4
[    3.055193] parse_throttle_dt_data: clk=mcpu type=1
[    3.055195] parse_throttle_dt_data: clk=bcpu type=2
[    3.055204] parse_throttle_dt_data: clk=gpu type=4
[    3.055206] parse_throttle_dt_data: clk=emc type=3
[    3.056027] tegra_throttle_probe: probe successful. #cdevs=4
[    3.056154] tegra18x_actmon d230000.actmon: in actmon_register()...
[    3.061563] tegra18x_actmon d230000.actmon: initialization Completed for the device mc_all
[    3.063556] hw perfevents: enabled with denver15_uncore_pmu PMU driver, 3 counters available
[    3.094078] mmc1: SDHCI controller on 3440000.sdhci [3440000.sdhci] using ADMA 64-bit with 64 bit addr
[    3.094375] sdhci-tegra 3400000.sdhci: Got CD GPIO
[    3.094432] sdhci-tegra 3400000.sdhci: Got WP GPIO
[    3.094515] sdhci-tegra 3400000.sdhci: Parent select= pll_p rate=408000000
[    3.094546] sdhci-tegra 3400000.sdhci: wakeup init done, cd_irq: 257
[    3.094785] sdhci-tegra 3400000.sdhci: Client registration for eMC Successful
[    3.100388] mmc0: MAN_BKOPS_EN bit is not set
[    3.110028] mmc0: Skipping tuning since strobe enabled
[    3.118023] mmc0: periodic cache flush enabled
[    3.118030] mmc0: new HS400 MMC card at address 0001
[    3.118378] mmcblk0: mmc0:0001 DG4032 29.1 GiB
[    3.118565] mmcblk0boot0: mmc0:0001 DG4032 partition 1 4.00 MiB
[    3.118720] mmcblk0boot1: mmc0:0001 DG4032 partition 2 4.00 MiB
[    3.118879] mmcblk0rpmb: mmc0:0001 DG4032 partition 3 4.00 MiB
[    3.120309]  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
[    3.138162] mmc2: SDHCI controller on 3400000.sdhci [3400000.sdhci] using ADMA 64-bit with 64 bit addr
[    3.150103] ata1: SATA link down (SStatus 0 SControl 300)
[    3.162498] mmc1: queuing unknown CIS tuple 0x80 (5 bytes)
[    3.360295] mmc1 tuning done saved tap delay=63
[    3.360299] mmc1: hw tuning done ...
[    3.360308] mmc1: tuning_window[0]: 0xffffffff
[    3.360314] mmc1: tuning_window[1]: 0xfffff8ff
[    3.360320] mmc1: tuning_window[2]: 0xff8fffff
[    3.360325] mmc1: tuning_window[3]: 0x7fffffff
[    3.360330] mmc1: tuning_window[4]: 0x0
[    3.360336] mmc1: tuning_window[5]: 0x0
[    3.360341] mmc1: tuning_window[6]: 0x0
[    3.360346] mmc1: tuning_window[7]: 0x0
[    3.360350] sdhci: Tap value: 63 | Trim value: 5
[    3.360354] sdhci: SDMMC_VENDOR_INTR_STATUS[0x108]: 0x40000
[    3.366517] mmc1: queuing unknown CIS tuple 0x91 (3 bytes)
[    3.366551] mmc1: new ultra high speed SDR104 SDIO card at address 0001
[    4.238723] tegradc 15200000.nvdisplay: fb registered
[    4.245095] PD DISP0 index2 UP
[    4.250330] PD DISP1 index3 UP
[    4.258471] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00e0
[    4.266202] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e0004
[    4.273899] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00a0
[    4.281571] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00e8
[    4.289211] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00ec
[    4.296803] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00e4
[    4.304355] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00e0
[    4.311904] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e0100
[    4.319445] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e1390
[    4.326986] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e101c
[    4.334492] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e1020
[    4.341972] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e1028
[    4.349433] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e1024
[    4.356873] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e1394
[    4.364299] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e13bc
[    4.371715] [test] tegra_dc_readl: dc->base + reg * 4 = ffffff80025e0140
[    4.379042] [test] tegra_dc_readl: dc->base + reg * 4 = ffffff80025e10d0
[    4.386366] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e10d0
[    4.393783] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e0104
[    4.401140] [test] tegra_dc_readl: dc->base + reg * 4 = ffffff80025e0104
[    4.408409] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e0104
[    4.415715] [test] tegra_dc_readl: dc->base + reg * 4 = ffffff80025e0104
[    4.422929] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e1014
[    4.430222] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e0104
[    4.437526] [test] tegra_dc_readl: dc->base + reg * 4 = ffffff80025e0104
[    4.444734] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e10c0
[    4.452049] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e1000
[    4.459353] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e0104
[    4.466683] [test] tegra_dc_readl: dc->base + reg * 4 = ffffff80025e0104
[    4.473921] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e1144
[    4.481264] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e114c
[    4.488610] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e0e08
[    4.495960] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e0e0c
[    4.503290] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e1140
[    4.510608] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e1148
[    4.517907] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e10c8
[    4.525181] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e10cc
[    4.532428] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e10c4
[    4.539653] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e10c0
[    4.546878] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e0104
[    4.554077] [test] tegra_dc_readl: dc->base + reg * 4 = ffffff80025e0104
[    4.561209] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e0104
[    4.568449] [test] tegra_dc_readl: dc->base + reg * 4 = ffffff80025e0104
[    4.575649] [test] tegra_dc_readl: dc->base + reg * 4 = ffffff80025e0104
[    4.582892] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e00c8
[    4.590164] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e1008
[    4.597428] [test] tegra_dc_writel: dc->base + reg * 4 = ffffff80025e0104
[    4.605201] tegradc 15200000.nvdisplay: DSI: HS clock rate is 192500
[    4.617788] [test] enable dsi
[    4.621294] [test], tegra_dsi_writel:i = 0, dsi->base[index] = ffffff8002600000, GET_BYTE_OFFSET(reg) = 48,
[    4.632011] [test], tegra_dsi_writel:i = 0, dsi->base[index] = ffffff8002600000, GET_BYTE_OFFSET(reg) = 320,
[    4.642516] [test], tegra_dsi_writel:i = 0, dsi->base[index] = ffffff8002600000, GET_BYTE_OFFSET(reg) = 324,
[    4.653027] [test], tegra_dsi_readl: 11
[    4.657487] [test], tegra_dsi_readl: dsi->base[0] = ffffff8002600000, GET_BYTE_OFFSET(reg) = 328
[   12.294088] random: nonblocking pool is initialized
[   27.678060] INFO: rcu_preempt detected stalls on CPUs/tasks:
[   27.684902]  1-...: (1 GPs behind) idle=699/140000000000000/0 softirq=85/87 fqs=522
[   27.693885]  (detected by 0, t=5253 jiffies, g=-259, c=-260, q=7)
[   27.701314] Task dump for CPU 1:
[   27.705805] kworker/u12:0   R  running task        0     6      2 0x00000002
[   27.714234] Workqueue: events_unbound async_run_entry_fn
[   27.720884] Call trace:
[   27.724615] [<ffffffc000086450>] __switch_to+0xa4/0xb0
[   27.731092] [<6666203d205d305b>] 0x6666203d205d305b
[   36.050064] Watchdog detected hard LOCKUP on cpu 1
[   36.054729] ------------[ cut here ]------------
[   36.062103] WARNING: at ffffffc00013288c [verbose debug info unavailable]
[   36.070269] Modules linked in:
[   36.074725]
[   36.077549] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.4.38-tegra #24
[   36.085491] Hardware name: quill (DT)
[   36.090595] task: ffffffc0010c9dc0 ti: ffffffc0010b8000 task.ti: ffffffc0010b8000
[   36.099610] PC is at watchdog_timer_fn+0x230/0x33c
[   36.105953] LR is at watchdog_timer_fn+0x230/0x33c
[   36.112302] pc : [<ffffffc00013288c>] lr : [<ffffffc00013288c>] pstate: 600001c5
[   36.121328] sp : ffffffc0010bbb30
[   36.126292] x29: ffffffc0010bbb30 x28: 0000000000000001
[   36.133321] x27: ffffffc0010c1b30 x26: ffffffc1f5fa2278
[   36.140366] x25: ffffffc0010932d8 x24: ffffffc0010bbdd0
[   36.147416] x23: 0000000000000000 x22: 0000000000000000
[   36.154457] x21: ffffffc0010c1000 x20: ffffffc001093000
[   36.161487] x19: ffffffc001093260 x18: ffffffc000ae3fe8
[   36.168498] x17: ffffffc000a76890 x16: ffffffc000a76890
[   36.175545] x15: ffffffc000a76890 x14: 0000000000000008
[   36.182552] x13: ffffffc1ec6de940 x12: 0000000000000001
[   36.189571] x11: 00000000ffffffff x10: 0000000000aaaaaa
[   36.196599] x9 : 00000000000002b4 x8 : 0000000000000000
[   36.203593] x7 : ffffffc0010e51d0 x6 : ffffffc0010d5fd8
[   36.210570] x5 : 0000000000000000 x4 : 0000000000000000
[   36.217502] x3 : 0000000000000000 x2 : 0000000000010001
[   36.224432] x1 : ffffffc0010b8000 x0 : 0000000000000026
[   36.231378]
[   36.234726] ---[ end trace e15d1c1651c82d56 ]---
[   36.240917] Call trace:
[   36.244935] [<ffffffc00013288c>] watchdog_timer_fn+0x230/0x33c
[   36.252323] [<ffffffc0000fd0c8>] __hrtimer_run_queues+0xf8/0x17c
[   36.259838] [<ffffffc0000fd6b8>] hrtimer_interrupt+0x9c/0x1e0
[   36.267064] [<ffffffc00084ac9c>] tegra186_timer_isr+0x24/0x30
[   36.274267] [<ffffffc0000ecc1c>] handle_irq_event_percpu+0x60/0x140
[   36.281987] [<ffffffc0000ecd40>] handle_irq_event+0x44/0x74
[   36.288973] [<ffffffc0000f003c>] handle_fasteoi_irq+0xb4/0x188
[   36.296210] [<ffffffc0000ec268>] generic_handle_irq+0x24/0x38
[   36.303344] [<ffffffc0000ec56c>] __handle_domain_irq+0x60/0xb4
[   36.310613] [<ffffffc000081774>] gic_handle_irq+0x5c/0xb4
[   36.317387] [<ffffffc000084740>] el1_irq+0x80/0xf8
[   36.323539] [<ffffffc0000e0b88>] default_idle_call+0x1c/0x2c
[   36.330546] [<ffffffc0000e0d78>] cpu_startup_entry+0x190/0x21c
[   36.337706] [<ffffffc000a65d48>] rest_init+0x84/0x8c
[   36.344003] [<ffffffc000f9c97c>] start_kernel+0x39c/0x3b0
[   36.350718] [<0000000080a6c000>] 0x80a6c000

I don’t see any error from dsi driver. The watchdog timer just suddenly reboot the device.

Why there is a tegra_dsi_mipi_calibration_21x function call there? I don’t see it in my code.
Which release are you using?

Dear WayneWWW

We use L4T R28.2.1.
Do I need latest L4T version to support DSI driver?

I cannot guarantee. Actually, I don’t use rel-28.2 for long time.

Also, maybe some known issue has been fixed on rel-32 too.
It would be better for debugging, if you could move to rel-32.4.

Dear WayneWWW,

I’m co-worker of burning.choi.

we’ll check we can move to rel-32.4.

Thanks.