Jetson FastBoot using Driver Asynchronous Probe

HI, I am developing the FastBoot to boot the Jetson Nano DevKit within 3 seconds.

I am applying the contents from the “Kernel Boot Time Optimization” section in the official NVIDIA documentation,
NVIDIA Docs
and while I understand the other items, I’m having difficulty comprehending the “Asynchronous Probe” item.

This section advises moving the driver to a different thread.
However, I am unable to determine “which driver” needs to be moved to a different thread
and where the source code of that driver is located.
Which drivers are eligible to be moved to an asynchronous thread and where is the source code of those drivers located?

Furthermore, are there any methods other than those mentioned in this document that can significantly reduce boot time?

Hi holee1,

Are you using the devkit or custom board for Jetson Nano?
What’s your Jetpack version in use?

Have you downloaded the current kernel source and you could build it successfully?
Please help to provide current serial console log.

HI, I use Jetson Nano Devkit
but, i made my custom L4T by referring NVIDIA Documantation
NVIDIA Docs

I have made modifications to the kernel and U-Boot, and the changes are as follows:

  • U-Boot
    1. Disabling USB Support
    2. CONFIG_BOOTDELAY = 0
  • Kernel
    1. Disable Real-time Clock
    2. Audio codec OFF (CONFIG_SND_SOC_TEGRA_ALT, CONFIG_SND_SOC …)
    3. Disable Console over UART (configuration file p3448-0000.conf to remove the specification console=ttyS0)

Jetson has successfully booted up, but the boot time has only decreased to around 1 second

Serial console log refers to the output of “dmesg”? I am attaching the output below.

May 31 18:03:46 ati-desktop kernel: [    0.000000] Booting Linux on physical CPU 0x0
May 31 18:03:46 ati-desktop kernel: [    0.000000] Linux version 4.9.253-tegra (root@haoun-900X3L) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #3 SMP PREEMPT Wed May 31 13:53:31 KST 2023
May 31 18:03:46 ati-desktop kernel: [    0.000000] Boot CPU: AArch64 Processor [411fd071]
May 31 18:03:46 ati-desktop kernel: [    0.000000] OF: fdt:memory scan node memory@80000000, reg size 48,
May 31 18:03:46 ati-desktop kernel: [    0.000000] OF: fdt: - 80000000 ,  3f800000
May 31 18:03:46 ati-desktop kernel: [    0.000000] OF: fdt: - bfa00000 ,  3fe00000
May 31 18:03:46 ati-desktop kernel: [    0.000000] OF: fdt: - ffa00000 ,  600000
May 31 18:03:46 ati-desktop kernel: [    0.000000] Found tegra_fbmem: 00800000@92ca9000
May 31 18:03:46 ati-desktop kernel: [    0.000000] earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
May 31 18:03:46 ati-desktop kernel: [    0.000000] bootconsole [uart8250] enabled
May 31 18:03:46 ati-desktop kernel: [    0.000000] OF: reserved mem: initialized node iram-carveout, compatible id nvidia,iram-carveout
May 31 18:03:46 ati-desktop kernel: [    0.000000] OF: reserved mem: initialized node ramoops_carveout, compatible id nvidia,ramoops
May 31 18:03:46 ati-desktop kernel: [    0.000000] cma: Reserved 64 MiB at 0x00000000fb800000
May 31 18:03:46 ati-desktop kernel: [    0.000000] On node 0 totalpages: 522752
May 31 18:03:46 ati-desktop kernel: [    0.000000]   DMA zone: 8192 pages used for memmap
May 31 18:03:46 ati-desktop kernel: [    0.000000]   DMA zone: 0 pages reserved
May 31 18:03:46 ati-desktop kernel: [    0.000000]   DMA zone: 522752 pages, LIFO batch:31
May 31 18:03:46 ati-desktop kernel: [    0.000000] psci: probing for conduit method from DT.
May 31 18:03:46 ati-desktop kernel: [    0.000000] psci: PSCIv1.0 detected in firmware.
May 31 18:03:46 ati-desktop kernel: [    0.000000] psci: Using standard PSCI v0.2 function IDs
May 31 18:03:46 ati-desktop kernel: [    0.000000] psci: MIGRATE_INFO_TYPE not supported.
May 31 18:03:46 ati-desktop kernel: [    0.000000] psci: SMC Calling Convention v1.1
May 31 18:03:46 ati-desktop kernel: [    0.000000] percpu: Embedded 24 pages/cpu s57624 r8192 d32488 u98304
May 31 18:03:46 ati-desktop kernel: [    0.000000] pcpu-alloc: s57624 r8192 d32488 u98304 alloc=24*4096
May 31 18:03:46 ati-desktop kernel: [    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
May 31 18:03:46 ati-desktop kernel: [    0.000000] CPU features: enabling workaround for ARM erratum 832075
May 31 18:03:46 ati-desktop kernel: [    0.000000] Speculative Store Bypass Disable mitigation not required
May 31 18:03:46 ati-desktop kernel: [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 514560
May 31 18:03:46 ati-desktop kernel: [    0.000000] Kernel command line: tegraid=21.1.2.0.0 ddr_die=2048M@2048M section=256M memtype=0 vpr_resize usb_port_owner_info=0 lane_owner_info=0 emc_max_dvfs=0 touch_id=0@63 video=tegrafb no_console_suspend=1 console=ttyS0,115200n8 debug_uartport=lsport,4 earlyprintk=uart8250-32bit,0x70006000 maxcpus=4 usbcore.old_scheme_first=1 core_edp_mv=1125 core_edp_ma=4000 gpt tegra_fbmem=0x800000@0x92ca9000 is_hdmi_initialised=1  earlycon=uart8250,mmio32,0x70006000  root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 quiet root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 
May 31 18:03:46 ati-desktop kernel: [    0.000000] log_buf_len individual max cpu contribution: 32768 bytes
May 31 18:03:46 ati-desktop kernel: [    0.000000] log_buf_len total cpu_extra contributions: 98304 bytes
May 31 18:03:46 ati-desktop kernel: [    0.000000] log_buf_len min size: 32768 bytes
May 31 18:03:46 ati-desktop kernel: [    0.000000] log_buf_len: 131072 bytes
May 31 18:03:46 ati-desktop kernel: [    0.000000] early log buf free: 30100(91%)
May 31 18:03:46 ati-desktop kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
May 31 18:03:46 ati-desktop kernel: [    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
May 31 18:03:46 ati-desktop kernel: [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
May 31 18:03:46 ati-desktop kernel: [    0.000000] Memory: 1940576K/2091008K available (15102K kernel code, 2664K rwdata, 5756K rodata, 7616K init, 610K bss, 84896K reserved, 65536K cma-reserved)
May 31 18:03:46 ati-desktop kernel: [    0.000000] Virtual kernel memory layout:
May 31 18:03:46 ati-desktop kernel: [    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)
May 31 18:03:46 ati-desktop kernel: [    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)
May 31 18:03:46 ati-desktop kernel: [    0.000000]       .text : 0xffffff8008080000 - 0xffffff8008f40000   ( 15104 KB)
May 31 18:03:46 ati-desktop kernel: [    0.000000]     .rodata : 0xffffff8008f40000 - 0xffffff80094f0000   (  5824 KB)
May 31 18:03:46 ati-desktop kernel: [    0.000000]       .init : 0xffffff80094f0000 - 0xffffff8009c60000   (  7616 KB)
May 31 18:03:46 ati-desktop kernel: [    0.000000]       .data : 0xffffff8009c60000 - 0xffffff8009efa008   (  2665 KB)
May 31 18:03:46 ati-desktop kernel: [    0.000000]        .bss : 0xffffff8009efa008 - 0xffffff8009f92874   (   611 KB)
May 31 18:03:46 ati-desktop kernel: [    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 KB)
May 31 18:03:46 ati-desktop kernel: [    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)
May 31 18:03:46 ati-desktop kernel: [    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)
May 31 18:03:46 ati-desktop kernel: [    0.000000]               0xffffffbf00000000 - 0xffffffbf02000000   (    32 MB actual)
May 31 18:03:46 ati-desktop kernel: [    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc080000000   (  2048 MB)
May 31 18:03:46 ati-desktop kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
May 31 18:03:46 ati-desktop kernel: [    0.000000] Preemptible hierarchical RCU implementation.
May 31 18:03:46 ati-desktop kernel: [    0.000000] 	Build-time adjustment of leaf fanout to 64.
May 31 18:03:46 ati-desktop kernel: [    0.000000] 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
May 31 18:03:46 ati-desktop kernel: [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
May 31 18:03:46 ati-desktop kernel: [    0.000000] NR_IRQS:64 nr_irqs:64 0
May 31 18:03:46 ati-desktop kernel: [    0.000000] /interrupt-controller@60004000: 192 interrupts forwarded to /interrupt-controller
May 31 18:03:46 ati-desktop kernel: [    0.000000] t210 clock and reset probe
May 31 18:03:46 ati-desktop kernel: [    0.000000] tegra-pmc: get_secure_pmc_setting: done secure_pmc=1
May 31 18:03:46 ati-desktop kernel: [    0.000000] clk_cbus_recalc_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    0.000000] clk_cbus_recalc_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    0.000000] clk_cbus_recalc_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    0.000000] clk_cbus_recalc_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    0.000000] clk_cbus_recalc_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    0.000000] arm_arch_timer: Architected cp15 timer(s) running at 19.20MHz (phys).
May 31 18:03:46 ati-desktop kernel: [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
May 31 18:03:46 ati-desktop kernel: [    0.000006] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
May 31 18:03:46 ati-desktop kernel: [    0.001504] Console: colour dummy device 80x25
May 31 18:03:46 ati-desktop kernel: [    0.001524] kmemleak: Kernel memory leak detector disabled
May 31 18:03:46 ati-desktop kernel: [    0.001542] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
May 31 18:03:46 ati-desktop kernel: [    0.001555] pid_max: default: 32768 minimum: 301
May 31 18:03:46 ati-desktop kernel: [    0.002007] Security Framework initialized
May 31 18:03:46 ati-desktop kernel: [    0.002230] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
May 31 18:03:46 ati-desktop kernel: [    0.002237] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
May 31 18:03:46 ati-desktop kernel: [    0.003364] ftrace: allocating 46198 entries in 181 pages
May 31 18:03:46 ati-desktop kernel: [    0.169843] sched-energy: CPU device node has no sched-energy-costs
May 31 18:03:46 ati-desktop kernel: [    0.169878] ASID allocator initialised with 65536 entries
May 31 18:03:46 ati-desktop kernel: [    0.207770] tegra-id: chipid=22117.
May 31 18:03:46 ati-desktop kernel: [    0.207784] tegra-id: opt_subrevision=0.
May 31 18:03:46 ati-desktop kernel: [    0.207802] Tegra Speedo/IDDQ fuse revision 4
May 31 18:03:46 ati-desktop kernel: [    0.207807] Tegra: CPU Speedo ID 9, SoC Speedo ID 0, GPU Speedo ID 2
May 31 18:03:46 ati-desktop kernel: [    0.207811] Tegra: CPU Process ID 0, SoC Process ID 0, GPU Process ID 0
May 31 18:03:46 ati-desktop kernel: [    0.207815] Tegra: CPU Speedo Value 2017, SoC Speedo Value 1927, GPU Speedo Value 2022
May 31 18:03:46 ati-desktop kernel: [    0.207819] Tegra: CPU IDDQ Value 1660, SoC IDDQ Value 1844, GPU IDDQ Value 2220
May 31 18:03:46 ati-desktop kernel: [    0.207841] Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 0
May 31 18:03:46 ati-desktop kernel: [    0.207855] DTS File Name: /home/haoun/Linux_for_Tegra/sources/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/batuu/kernel-dts/tegra210-p3448-0003-p3542-0000.dts
May 31 18:03:46 ati-desktop kernel: [    0.207862] DTB Build time: May 31 2023 14:14:54
May 31 18:03:46 ati-desktop kernel: [    0.257113] CPU1: Booted secondary processor [411fd071]
May 31 18:03:46 ati-desktop kernel: [    0.289016] CPU2: Booted secondary processor [411fd071]
May 31 18:03:46 ati-desktop kernel: [    0.320973] CPU3: Booted secondary processor [411fd071]
May 31 18:03:46 ati-desktop kernel: [    0.321064] Brought up 4 CPUs
May 31 18:03:46 ati-desktop kernel: [    0.321071] SMP: Total of 4 processors activated.
May 31 18:03:46 ati-desktop kernel: [    0.321080] CPU features: detected feature: 32-bit EL0 Support
May 31 18:03:46 ati-desktop kernel: [    0.321342] CPU: All CPU(s) started at EL2
May 31 18:03:46 ati-desktop kernel: [    0.321359] alternatives: patching kernel code
May 31 18:03:46 ati-desktop kernel: [    0.329042] devtmpfs: initialized
May 31 18:03:46 ati-desktop kernel: [    0.365995] Initilizing CustomIPI irq domain
May 31 18:03:46 ati-desktop kernel: [    0.366324] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
May 31 18:03:46 ati-desktop kernel: [    0.366345] futex hash table entries: 1024 (order: 4, 65536 bytes)
May 31 18:03:46 ati-desktop kernel: [    0.368130] pinctrl core: initialized pinctrl subsystem
May 31 18:03:46 ati-desktop kernel: [    0.368597] OS set in device tree is not L4T.
May 31 18:03:46 ati-desktop kernel: [    0.369011] regulator-dummy: no parameters
May 31 18:03:46 ati-desktop kernel: [    0.369325] Initializing plugin-manager
May 31 18:03:46 ati-desktop kernel: [    0.369462] Plugin module not found
May 31 18:03:46 ati-desktop kernel: [    0.369804] node /plugin-manager/fragment@1 match with board >=3448-0003-400
May 31 18:03:46 ati-desktop kernel: [    0.371000] node /plugin-manager/fragement@7 match with odm-data enable-pmic-wdt
May 31 18:03:46 ati-desktop kernel: [    0.371216] node /plugin-manager/fragement@8 match with odm-data enable-pmic-wdt
May 31 18:03:46 ati-desktop kernel: [    0.371688] node /plugin-manager/fragment@12 match with board >=3448-0003-400
May 31 18:03:46 ati-desktop kernel: [    0.371957] node /plugin-manager/fragement@13 match with board >=3448-0003-400
May 31 18:03:46 ati-desktop kernel: [    0.375627] NET: Registered protocol family 16
May 31 18:03:46 ati-desktop kernel: [    0.376827] pstore: using zlib compression
May 31 18:03:46 ati-desktop kernel: [    0.376861] console [pstore-1] enabled
May 31 18:03:46 ati-desktop kernel: [    0.376865] pstore: Registered ramoops as persistent store backend
May 31 18:03:46 ati-desktop kernel: [    0.376871] ramoops: attached 0x200000@0xb0000000, ecc: 0/0
May 31 18:03:46 ati-desktop kernel: [    0.393132] cpuidle: using governor menu
May 31 18:03:46 ati-desktop kernel: [    0.396102] tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
May 31 18:03:46 ati-desktop kernel: [    0.397697] vdso: 2 pages (1 code @ ffffff8008f47000, 1 data @ ffffff8009c64000)
May 31 18:03:46 ati-desktop kernel: [    0.397717] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
May 31 18:03:46 ati-desktop kernel: [    0.401634] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
May 31 18:03:46 ati-desktop kernel: [    0.403890] Serial: AMBA PL011 UART driver
May 31 18:03:46 ati-desktop kernel: [    0.404446] tegra_powergate_init: DONE
May 31 18:03:46 ati-desktop kernel: [    0.404463] DTS File Name: /home/haoun/Linux_for_Tegra/sources/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/batuu/kernel-dts/tegra210-p3448-0003-p3542-0000.dts
May 31 18:03:46 ati-desktop kernel: [    0.404470] DTB Build time: May 31 2023 14:14:54
May 31 18:03:46 ati-desktop kernel: [    0.406226] Tegra reboot handler registered.
May 31 18:03:46 ati-desktop kernel: [    0.410726] iommu: Adding device tegra-carveouts to group 0
May 31 18:03:46 ati-desktop kernel: [    0.410836] platform tegra-carveouts: domain=ffffffc078ae2258 allocates as[0]=ffffffc0784080a8
May 31 18:03:46 ati-desktop kernel: [    0.411196] iommu: Adding device smmu_test to group 1
May 31 18:03:46 ati-desktop kernel: [    0.411244] platform smmu_test: domain=ffffffc078ae2498 allocates as[0]=ffffffc078408110
May 31 18:03:46 ati-desktop kernel: [    0.412081] mc: mapped MMIO address: 0xffffff8008041000 -> 0x70019000
May 31 18:03:46 ati-desktop kernel: [    0.412145] mc: mapped MMIO address: 0xffffff8008067000 -> 0x7001c000
May 31 18:03:46 ati-desktop kernel: [    0.412197] mc: mapped MMIO address: 0xffffff800807b000 -> 0x7001d000
May 31 18:03:46 ati-desktop kernel: [    0.412206] nv-tegra-mc 70019000.mc: No mssnvlink node
May 31 18:03:46 ati-desktop kernel: [    0.412239] mc-err: mcerr ops are set to t21x
May 31 18:03:46 ati-desktop kernel: [    0.422983] iommu: Adding device 70090000.xusb to group 2
May 31 18:03:46 ati-desktop kernel: [    0.423265] iommu: Adding device 70006000.serial to group 3
May 31 18:03:46 ati-desktop kernel: [    0.423325] platform 70006000.serial: domain=ffffffc078492498 allocates as[0]=ffffffc078408178
May 31 18:03:46 ati-desktop kernel: [    0.423772] iommu: Adding device 70006040.serial to group 4
May 31 18:03:46 ati-desktop kernel: [    0.424038] iommu: Adding device 70006200.serial to group 5
May 31 18:03:46 ati-desktop kernel: [    0.424252] iommu: Adding device sound to group 6
May 31 18:03:46 ati-desktop kernel: [    0.424301] platform sound: domain=ffffffc0784929d8 allocates as[0]=ffffffc0784081e0
May 31 18:03:46 ati-desktop kernel: [    0.424866] iommu: Adding device 7000d400.spi to group 7
May 31 18:03:46 ati-desktop kernel: [    0.425169] iommu: Adding device 7000d600.spi to group 8
May 31 18:03:46 ati-desktop kernel: [    0.425450] iommu: Adding device 70410000.spi to group 9
May 31 18:03:46 ati-desktop kernel: [    0.425770] iommu: Adding device 50000000.host1x to group 10
May 31 18:03:46 ati-desktop kernel: [    0.426040] iommu: Adding device 54080000.vi to group 11
May 31 18:03:46 ati-desktop kernel: [    0.426425] iommu: Adding device 54600000.isp to group 12
May 31 18:03:46 ati-desktop kernel: [    0.426718] iommu: Adding device 54680000.isp to group 13
May 31 18:03:46 ati-desktop kernel: [    0.427002] iommu: Adding device tegradc.0 to group 14
May 31 18:03:46 ati-desktop kernel: [    0.427054] platform tegradc.0: domain=ffffffc07849f918 allocates as[0]=ffffffc078408248
May 31 18:03:46 ati-desktop kernel: [    0.431244] platform tegradc.0: IOVA linear map 0x0000000092ca9000(800000)
May 31 18:03:46 ati-desktop kernel: [    0.431506] iommu: Adding device 54340000.vic to group 15
May 31 18:03:46 ati-desktop kernel: [    0.431706] iommu: Adding device 544c0000.nvenc to group 16
May 31 18:03:46 ati-desktop kernel: [    0.431902] iommu: Adding device 54500000.tsec to group 17
May 31 18:03:46 ati-desktop kernel: [    0.432106] iommu: Adding device 54100000.tsecb to group 18
May 31 18:03:46 ati-desktop kernel: [    0.432335] iommu: Adding device 54480000.nvdec to group 19
May 31 18:03:46 ati-desktop kernel: [    0.432536] iommu: Adding device 54380000.nvjpg to group 20
May 31 18:03:46 ati-desktop kernel: [    0.433318] iommu: Adding device 546c0000.i2c to group 21
May 31 18:03:46 ati-desktop kernel: [    0.433657] iommu: Adding device 57000000.gpu to group 22
May 31 18:03:46 ati-desktop kernel: [    0.433707] platform 57000000.gpu: domain=ffffffc0784ad798 allocates as[0]=ffffffc0784082b0
May 31 18:03:46 ati-desktop kernel: [    0.433745] platform 57000000.gpu: domain=ffffffc0784ad798 allocates as[1]=ffffffc078408318
May 31 18:03:46 ati-desktop kernel: [    0.433784] platform 57000000.gpu: domain=ffffffc0784ad798 allocates as[2]=ffffffc078408380
May 31 18:03:46 ati-desktop kernel: [    0.433825] platform 57000000.gpu: domain=ffffffc0784ad798 allocates as[3]=ffffffc0784083e8
May 31 18:03:46 ati-desktop kernel: [    0.434717] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency thermal reset disabled.
May 31 18:03:46 ati-desktop kernel: [    0.434728] tegra-pmc 7000e400.pmc: scratch reg offset dts data not present
May 31 18:03:46 ati-desktop kernel: [    0.434740] tegra-pmc: ### PMC reset source: TEGRA_POWER_ON_RESET
May 31 18:03:46 ati-desktop kernel: [    0.434744] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_WARM
May 31 18:03:46 ati-desktop kernel: [    0.434750] tegra-pmc: ### PMC reset status reg: 0x0
May 31 18:03:46 ati-desktop kernel: [    0.485193] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
May 31 18:03:46 ati-desktop kernel: [    0.485204] tegra-pmc: Clear bootloader IO dpd settings
May 31 18:03:46 ati-desktop kernel: [    0.485222] tegra-pmc 7000e400.pmc: IO padctrl driver initialized
May 31 18:03:46 ati-desktop kernel: [    0.485281] tegra-pmc 7000e400.pmc: PMC: Successfully configure bootrom reset commands
May 31 18:03:46 ati-desktop kernel: [    0.485566] iommu: Adding device 70012000.se to group 23
May 31 18:03:46 ati-desktop kernel: [    0.486140] iommu: Adding device 1003000.pcie to group 24
May 31 18:03:46 ati-desktop kernel: [    0.486197] platform 1003000.pcie: domain=ffffffc0784adf18 allocates as[0]=ffffffc078408450
May 31 18:03:46 ati-desktop kernel: [    0.486649] iommu: Adding device 7000c000.i2c to group 25
May 31 18:03:46 ati-desktop kernel: [    0.486909] iommu: Adding device 7000c400.i2c to group 26
May 31 18:03:46 ati-desktop kernel: [    0.487199] iommu: Adding device 7000c500.i2c to group 27
May 31 18:03:46 ati-desktop kernel: [    0.487460] iommu: Adding device 7000c700.i2c to group 28
May 31 18:03:46 ati-desktop kernel: [    0.487713] iommu: Adding device 7000d000.i2c to group 29
May 31 18:03:46 ati-desktop kernel: [    0.487960] iommu: Adding device 7000d100.i2c to group 30
May 31 18:03:46 ati-desktop kernel: [    0.488256] iommu: Adding device sdhci-tegra.0 to group 31
May 31 18:03:46 ati-desktop kernel: [    0.488302] platform sdhci-tegra.0: domain=ffffffc078526a98 allocates as[0]=ffffffc0784084b8
May 31 18:03:46 ati-desktop kernel: [    0.489184] iommu: Adding device 700d0000.xudc to group 32
May 31 18:03:46 ati-desktop kernel: [    0.492419] vdd-ac-bat: 5000 mV 
May 31 18:03:46 ati-desktop kernel: [    0.492842] vdd-5v0-sys: 5000 mV 
May 31 18:03:46 ati-desktop kernel: [    0.493548] vdd-5v0-hdmi: 5000 mV 
May 31 18:03:46 ati-desktop kernel: [    0.493989] vdd-5v0-hdmi: supplied by vdd-5v0-sys
May 31 18:03:46 ati-desktop kernel: [    0.494239] vdd-1v8-sys: 1800 mV 
May 31 18:03:46 ati-desktop kernel: [    0.494613] vdd-fan: 5000 mV 
May 31 18:03:46 ati-desktop kernel: [    0.494826] vdd-fan: supplied by vdd-5v0-sys
May 31 18:03:46 ati-desktop kernel: [    0.495082] vdd-usb-vbus: 5000 mV 
May 31 18:03:46 ati-desktop kernel: [    0.495310] vdd-usb-vbus: supplied by vdd-5v0-sys
May 31 18:03:46 ati-desktop kernel: [    0.495662] vdd-usb-vbus2: 5000 mV 
May 31 18:03:46 ati-desktop kernel: [    0.525909] HugeTLB registered 2 MB page size, pre-allocated 0 pages
May 31 18:03:46 ati-desktop kernel: [    0.528104] gpio gpiochip0: gpio-line-names specifies 240 line names but there are 256 lines on the chip
May 31 18:03:46 ati-desktop kernel: [    0.529487] GPIO line 6 (system-suspend-gpio) hogged as output/high
May 31 18:03:46 ati-desktop kernel: [    0.529527] GPIO line 151 (camera-control-output-low) hogged as output/low
May 31 18:03:46 ati-desktop kernel: [    0.529930] gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip0 (tegra-gpio)
May 31 18:03:46 ati-desktop kernel: [    0.538132] eventlib_kernel: keventlib is initialized, test id: 0
May 31 18:03:46 ati-desktop kernel: [    0.538486] SCSI subsystem initialized
May 31 18:03:46 ati-desktop kernel: [    0.538697] libata version 3.00 loaded.
May 31 18:03:46 ati-desktop kernel: [    0.538996] usbcore: registered new interface driver usbfs
May 31 18:03:46 ati-desktop kernel: [    0.539058] usbcore: registered new interface driver hub
May 31 18:03:46 ati-desktop kernel: [    0.539100] usbcore: registered new device driver usb
May 31 18:03:46 ati-desktop kernel: [    0.543278] max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
May 31 18:03:46 ati-desktop kernel: [    0.549353] vdd-core: 600 <--> 1162 mV at 1125 mV 
May 31 18:03:46 ati-desktop kernel: [    0.550445] vdd-ddr-1v1: Bringing 1125000uV into 1150000-1150000uV
May 31 18:03:46 ati-desktop kernel: [    0.550542] random: fast init done
May 31 18:03:46 ati-desktop kernel: [    0.552328] vdd-ddr-1v1: 1150 mV 
May 31 18:03:46 ati-desktop kernel: [    0.556227] vdd-pre-reg-1v35: 1350 mV 
May 31 18:03:46 ati-desktop kernel: [    0.560232] vdd-1v8: 1800 mV 
May 31 18:03:46 ati-desktop kernel: [    0.564231] avdd-sys-1v2: 1200 mV 
May 31 18:03:46 ati-desktop kernel: [    0.568230] vdd-pex-1v0: 1050 mV 
May 31 18:03:46 ati-desktop kernel: [    0.568861] vddio-sdmmc-ap: 1800 <--> 3300 mV at 3300 mV 
May 31 18:03:46 ati-desktop kernel: [    0.569406] max77620-ldo3: at 3100 mV 
May 31 18:03:46 ati-desktop kernel: [    0.572231] vdd-rtc: 850 <--> 1100 mV at 1000 mV 
May 31 18:03:46 ati-desktop kernel: [    0.572805] max77620-ldo5: at 3100 mV 
May 31 18:03:46 ati-desktop kernel: [    0.576235] vddio-sdmmc3-ap: 1800 <--> 3300 mV at 2800 mV 
May 31 18:03:46 ati-desktop kernel: [    0.580227] avdd-1v05-pll: 1050 mV 
May 31 18:03:46 ati-desktop kernel: [    0.584231] avdd-io-hdmi-dp: 1050 mV 
May 31 18:03:46 ati-desktop kernel: [    0.586964] GPIO line 505 (spmic-default-output-high) hogged as output/high
May 31 18:03:46 ati-desktop kernel: [    0.587251] gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpiochip1 (max77620-gpio)
May 31 18:03:46 ati-desktop kernel: [    0.587537] max77620 4-003c: max77620 probe successful
May 31 18:03:46 ati-desktop kernel: [    0.590273] media: Linux media interface: v0.10
May 31 18:03:46 ati-desktop kernel: [    0.590332] Linux video capture interface: v2.00
May 31 18:03:46 ati-desktop kernel: [    0.591250] pps_core: LinuxPPS API ver. 1 registered
May 31 18:03:46 ati-desktop kernel: [    0.591255] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
May 31 18:03:46 ati-desktop kernel: [    0.591286] PTP clock support registered
May 31 18:03:46 ati-desktop kernel: [    0.594551] tegra210-emc 7001b000.external-memory-controller: validated EMC DFS table
May 31 18:03:46 ati-desktop kernel: [    0.595468] Advanced Linux Sound Architecture Driver Initialized.
May 31 18:03:46 ati-desktop kernel: [    0.596134] Bluetooth: Core ver 2.22
May 31 18:03:46 ati-desktop kernel: [    0.596190] NET: Registered protocol family 31
May 31 18:03:46 ati-desktop kernel: [    0.596194] Bluetooth: HCI device and connection manager initialized
May 31 18:03:46 ati-desktop kernel: [    0.596264] Bluetooth: HCI socket layer initialized
May 31 18:03:46 ati-desktop kernel: [    0.596272] Bluetooth: L2CAP socket layer initialized
May 31 18:03:46 ati-desktop kernel: [    0.596302] Bluetooth: SCO socket layer initialized
May 31 18:03:46 ati-desktop kernel: [    0.598074] tegra210_dvfs: no clock found for sdmmc2_ddr
May 31 18:03:46 ati-desktop kernel: [    0.598090] tegra210_dvfs: no clock found for sdmmc4_ddr
May 31 18:03:46 ati-desktop kernel: [    0.598143] tegra210_dvfs: no clock found for sdmmc1_ddr
May 31 18:03:46 ati-desktop kernel: [    0.598156] tegra210_dvfs: no clock found for sdmmc3_ddr
May 31 18:03:46 ati-desktop kernel: [    0.601455] tegra_dvfs: Unable to get vdd-cpu rail for step info, defering probe
May 31 18:03:46 ati-desktop kernel: [    0.602589] vdd-3v3-sys: 3300 mV 
May 31 18:03:46 ati-desktop kernel: [    0.602962] vdd-3v3-sys: supplied by vdd-5v0-sys
May 31 18:03:46 ati-desktop kernel: [    0.603014] vdd-1v8-sys: supplied by vdd-3v3-sys
May 31 18:03:46 ati-desktop kernel: [    0.604312] vdd-usb-vbus2: supplied by vdd-3v3-sys
May 31 18:03:46 ati-desktop kernel: [    0.604711] vdd-3v3-sd: 3300 mV 
May 31 18:03:46 ati-desktop kernel: [    0.605079] vdd-3v3-sd: supplied by vdd-3v3-sys
May 31 18:03:46 ati-desktop kernel: [    0.605831] avdd-io-edp-1v05: 1050 mV 
May 31 18:03:46 ati-desktop kernel: [    0.606178] avdd-io-edp-1v05: supplied by avdd-1v05-pll
May 31 18:03:46 ati-desktop kernel: [    0.606345] vdd-usb-hub-en: 5000 mV 
May 31 18:03:46 ati-desktop kernel: [    0.606702] vdd-usb-hub-en: supplied by vdd-1v8-sys
May 31 18:03:46 ati-desktop kernel: [    0.607803] camchar: rtcpu character device driver loaded
May 31 18:03:46 ati-desktop kernel: [    0.608541] extcon-gpio-states extcon:extcon@1: Cable state:0, cable id:0
May 31 18:03:46 ati-desktop kernel: [    0.610026] clocksource: Switched to clocksource arch_sys_counter
May 31 18:03:46 ati-desktop kernel: [    0.650640] VFS: Disk quotas dquot_6.6.0
May 31 18:03:46 ati-desktop kernel: [    0.650766] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 31 18:03:46 ati-desktop kernel: [    0.651268] nvmap_heap_init: nvmap_heap_init: created heap block cache
May 31 18:03:46 ati-desktop kernel: [    0.651756] nvmap: nvmap_select_cache_ops() nvmap cache ops set to set/ways
May 31 18:03:46 ati-desktop kernel: [    0.651767] nvmap_page_pool_init: Total RAM pages: 501528
May 31 18:03:46 ati-desktop kernel: [    0.651773] nvmap_page_pool_init: nvmap page pool size: 62691 pages (244 MB)
May 31 18:03:46 ati-desktop kernel: [    0.651902] nvmap_background_zero_thread: PP zeroing thread starting.
May 31 18:03:46 ati-desktop kernel: [    0.652259] misc nvmap: iram :dma coherent mem declare 0x0000000040001000,258048
May 31 18:03:46 ati-desktop kernel: [    0.652463] misc nvmap: created heap iram base 0x0000000040001000 size (252KiB)
May 31 18:03:46 ati-desktop kernel: [    0.661599] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type AO-therm
May 31 18:03:46 ati-desktop kernel: [    0.662140] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type CPU-therm
May 31 18:03:46 ati-desktop kernel: [    0.662560] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
May 31 18:03:46 ati-desktop kernel: [    0.662857] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
May 31 18:03:46 ati-desktop kernel: [    0.663057] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
May 31 18:03:46 ati-desktop kernel: [    0.663349] pre_t19x_iso_plat_init(): iso emc max clk=1600000KHz
May 31 18:03:46 ati-desktop kernel: [    0.663353] pre_t19x_iso_plat_init(): max_iso_bw=11520000KB
May 31 18:03:46 ati-desktop kernel: [    0.663796] NET: Registered protocol family 2
May 31 18:03:46 ati-desktop kernel: [    0.663970] IP idents hash table entries: 32768 (order: 6, 262144 bytes)
May 31 18:03:46 ati-desktop kernel: [    0.665553] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
May 31 18:03:46 ati-desktop kernel: [    0.665665] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
May 31 18:03:46 ati-desktop kernel: [    0.665935] TCP: Hash tables configured (established 16384 bind 16384)
May 31 18:03:46 ati-desktop kernel: [    0.666166] UDP hash table entries: 1024 (order: 3, 32768 bytes)
May 31 18:03:46 ati-desktop kernel: [    0.666215] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
May 31 18:03:46 ati-desktop kernel: [    0.666593] NET: Registered protocol family 1
May 31 18:03:46 ati-desktop kernel: [    0.667224] RPC: Registered named UNIX socket transport module.
May 31 18:03:46 ati-desktop kernel: [    0.667229] RPC: Registered udp transport module.
May 31 18:03:46 ati-desktop kernel: [    0.667232] RPC: Registered tcp transport module.
May 31 18:03:46 ati-desktop kernel: [    0.667236] RPC: Registered tcp NFSv4.1 backchannel transport module.
May 31 18:03:46 ati-desktop kernel: [    0.667249] PCI: CLS 0 bytes, default 64
May 31 18:03:46 ati-desktop kernel: [    0.667493] Trying to unpack rootfs image as initramfs...
May 31 18:03:46 ati-desktop kernel: [    0.972683] Freeing initrd memory: 6988K
May 31 18:03:46 ati-desktop kernel: [    0.982719] host1x 50000000.host1x: initialized
May 31 18:03:46 ati-desktop kernel: [    0.984434] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
May 31 18:03:46 ati-desktop kernel: [    0.987802] audit: initializing netlink subsys (disabled)
May 31 18:03:46 ati-desktop kernel: [    0.987901] audit: type=2000 audit(0.839:1): initialized
May 31 18:03:46 ati-desktop kernel: [    0.988691] workingset: timestamp_bits=46 max_order=19 bucket_order=0
May 31 18:03:46 ati-desktop kernel: [    0.999041] squashfs: version 4.0 (2009/01/31) Phillip Lougher
May 31 18:03:46 ati-desktop kernel: [    1.000502] ntfs: driver 2.1.32 [Flags: R/W].
May 31 18:03:46 ati-desktop kernel: [    1.001318] 9p: Installing v9fs 9p2000 file system support
May 31 18:03:46 ati-desktop kernel: [    1.004877] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)
May 31 18:03:46 ati-desktop kernel: [    1.004997] io scheduler noop registered
May 31 18:03:46 ati-desktop kernel: [    1.005304] io scheduler cfq registered (default)
May 31 18:03:46 ati-desktop kernel: [    1.008146] gic 702f9000.agic: GIC IRQ controller registered
May 31 18:03:46 ati-desktop kernel: [    1.011444] iommu: Adding device 702ef000.adsp to group 33
May 31 18:03:46 ati-desktop kernel: [    1.020417] iommu: Adding device aconnect@702c0000:adsp_audio to group 34
May 31 18:03:46 ati-desktop kernel: [    1.020566] tegra-aconnect aconnect@702c0000: Tegra ACONNECT bus registered
May 31 18:03:46 ati-desktop kernel: [    1.021204] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 = 0x7969411
May 31 18:03:46 ati-desktop kernel: [    1.021213] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_0 = 0x4
May 31 18:03:46 ati-desktop kernel: [    1.022924] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane = usb2-0, function = xusb
May 31 18:03:46 ati-desktop kernel: [    1.023027] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.1, lane = usb2-1, function = xusb
May 31 18:03:46 ati-desktop kernel: [    1.023129] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.2, lane = usb2-2, function = xusb
May 31 18:03:46 ati-desktop kernel: [    1.023320] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane = pcie-0, function = pcie-x1
May 31 18:03:46 ati-desktop kernel: [    1.023411] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane = pcie-1, function = pcie-x4
May 31 18:03:46 ati-desktop kernel: [    1.023504] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane = pcie-2, function = pcie-x4
May 31 18:03:46 ati-desktop kernel: [    1.023592] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane = pcie-3, function = pcie-x4
May 31 18:03:46 ati-desktop kernel: [    1.023688] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane = pcie-4, function = pcie-x4
May 31 18:03:46 ati-desktop kernel: [    1.023774] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.8, lane = pcie-5, function = xusb
May 31 18:03:46 ati-desktop kernel: [    1.023865] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.9, lane = pcie-6, function = xusb
May 31 18:03:46 ati-desktop kernel: [    1.024450] tegra-xusb-padctl 7009f000.xusb_padctl: failed to setup XUSB ports: -517
May 31 18:03:46 ati-desktop kernel: [    1.030839] tegra-pwm 7000a000.pwm: PWM clk cannot sleep in ops
May 31 18:03:46 ati-desktop kernel: [    1.032502] tegra-dfll-pwm 70110000.pwm: DFLL pwm-rate: 12800000
May 31 18:03:46 ati-desktop kernel: [    1.034446] tegra-pcie 1003000.pcie: 4x1, 1x1 configuration
May 31 18:03:46 ati-desktop kernel: [    1.034481] tegra-pcie 1003000.pcie: PHY get deferred: -517
May 31 18:03:46 ati-desktop kernel: [    1.034487] tegra-pcie 1003000.pcie: failed to get PHYs: -517
May 31 18:03:46 ati-desktop kernel: [    1.035869] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
May 31 18:03:46 ati-desktop kernel: [    1.036086] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=1500000, vi_iso_bw=750000, max_bw=1500000
May 31 18:03:46 ati-desktop kernel: [    1.036330] Adding domain tsec-pd to PM domain host1x-pd
May 31 18:03:46 ati-desktop kernel: [    1.039091] tsec 54500000.tsec: initialized
May 31 18:03:46 ati-desktop kernel: [    1.040466] tsec 54100000.tsecb: initialized
May 31 18:03:46 ati-desktop kernel: [    1.041152] Adding domain nvdec-pd to PM domain host1x-pd
May 31 18:03:46 ati-desktop kernel: [    1.044375] nvdec 54480000.nvdec: initialized
May 31 18:03:46 ati-desktop kernel: [    1.045432] Adding domain vic03-pd to PM domain host1x-pd
May 31 18:03:46 ati-desktop kernel: [    1.045622] Adding domain msenc-pd to PM domain host1x-pd
May 31 18:03:46 ati-desktop kernel: [    1.045779] Adding domain nvjpg-pd to PM domain host1x-pd
May 31 18:03:46 ati-desktop kernel: [    1.049647] falcon 54340000.vic: initialized
May 31 18:03:46 ati-desktop kernel: [    1.050904] falcon 544c0000.nvenc: initialized
May 31 18:03:46 ati-desktop kernel: [    1.052204] falcon 54380000.nvjpg: initialized
May 31 18:03:46 ati-desktop kernel: [    1.056566] tegra_cec 70015000.tegra_cec: dt=1 start=0x70015000 end=0x70015FFF irq=95
May 31 18:03:46 ati-desktop kernel: [    1.056618] tegra_cec 70015000.tegra_cec: Enable clock result: 0.
May 31 18:03:46 ati-desktop kernel: [    1.056653] tegradc tegradc.0: disp0 connected to head0->/host1x/sor1
May 31 18:03:46 ati-desktop kernel: [    1.056656] tegra_cec 70015000.tegra_cec: tegra_cec_init started
May 31 18:03:46 ati-desktop kernel: [    1.056747] display board info: id 0x0, fab 0x0
May 31 18:03:46 ati-desktop kernel: [    1.056804] generic_infoframe_type: 0x87
May 31 18:03:46 ati-desktop kernel: [    1.056936] tegradc tegradc.0: DT parsed successfully
May 31 18:03:46 ati-desktop kernel: [    1.056954] tegra_cec 70015000.tegra_cec: cec_add_sysfs ret=0
May 31 18:03:46 ati-desktop kernel: [    1.056960] tegra_cec 70015000.tegra_cec: probed
May 31 18:03:46 ati-desktop kernel: [    1.056980] tegradc tegradc.0: Display dc.ffffff800a940000 registered with id=0
May 31 18:03:46 ati-desktop kernel: [    1.057551] tegradc tegradc.0: Bootloader disp_param detected. Detected mode: 1920x1080 (on 0x0mm) pclk=148350781
May 31 18:03:46 ati-desktop kernel: [    1.064790] tegra-apbdma 60020000.dma: Tegra20 APB DMA driver register 32 channels
May 31 18:03:46 ati-desktop kernel: [    1.065800] tegradc tegradc.0: probed
May 31 18:03:46 ati-desktop kernel: [    1.071495] tegra-adma 702e2000.adma: Tegra210 ADMA driver registered 22 channels
May 31 18:03:46 ati-desktop kernel: [    1.073019] tegra-fuse-burn 7000f800.efuse:efuse-burn: shutdown limit check disabled
May 31 18:03:46 ati-desktop kernel: [    1.073028] tegra-fuse-burn 7000f800.efuse:efuse-burn: Fuse burn driver initialized
May 31 18:03:46 ati-desktop kernel: [    1.073480] kfuse 7000fc00.kfuse: initialized
May 31 18:03:46 ati-desktop kernel: [    1.075125] tegra-pmc-iopower pmc-iopower: Regulator supply iopower-dbg-supply not available
May 31 18:03:46 ati-desktop kernel: [    1.076060] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
May 31 18:03:46 ati-desktop kernel: [    1.077636] tegra-dfll-pwm 70110000.pwm: DFLL_PWM regulator is available now
May 31 18:03:46 ati-desktop kernel: [    1.077657] vdd-cpu: 708 <--> 1322 mV at 708 mV 
May 31 18:03:46 ati-desktop kernel: [    1.078282] pwm-regulator pwm_regulators:pwm-regulator@0: PWM regulator registration passed
May 31 18:03:46 ati-desktop kernel: [    1.080042] vdd-gpu: applied init 1000000uV constraint
May 31 18:03:46 ati-desktop kernel: [    1.080052] vdd-gpu: 708 <--> 1323 mV at 997 mV 
May 31 18:03:46 ati-desktop kernel: [    1.080498] pwm-regulator pwm_regulators:pwm-regulator@1: PWM regulator registration passed
May 31 18:03:46 ati-desktop kernel: [    1.085444] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
May 31 18:03:46 ati-desktop kernel: [    1.085610] No Device Node present for smmu client: serial8250 !!
May 31 18:03:46 ati-desktop kernel: [    1.085623] platform serial8250: No iommus property found in DT node, got swgids from fixup(101004000)
May 31 18:03:46 ati-desktop kernel: [    1.085690] iommu: Adding device serial8250 to group 35
May 31 18:03:46 ati-desktop kernel: [    1.089530] console [ttyS0] disabled
May 31 18:03:46 ati-desktop kernel: [    1.089691] 70006000.serial: ttyS0 at MMIO 0x70006000 (irq = 63, base_baud = 25500000) is a Tegra
May 31 18:03:46 ati-desktop kernel: [    1.089769] console [ttyS0] enabled
May 31 18:03:46 ati-desktop kernel: [    1.089776] bootconsole [uart8250] disabled
May 31 18:03:46 ati-desktop kernel: [    1.091102] 70006040.serial: ttyTHS1 at MMIO 0x70006040 (irq = 64, base_baud = 0) is a TEGRA_UART
May 31 18:03:46 ati-desktop kernel: [    1.091544] serial-tegra 70006200.serial: RX in PIO mode
May 31 18:03:46 ati-desktop kernel: [    1.091641] 70006200.serial: ttyTHS2 at MMIO 0x70006200 (irq = 65, base_baud = 0) is a TEGRA_UART
May 31 18:03:46 ati-desktop kernel: [    1.092629] [drm] Initialized
May 31 18:03:46 ati-desktop kernel: [    1.097660] Console: switching to colour frame buffer device 240x67
May 31 18:03:46 ati-desktop kernel: [    1.097788] tegradc tegradc.0: fb registered
May 31 18:03:46 ati-desktop kernel: [    1.104030] brd: module loaded
May 31 18:03:46 ati-desktop kernel: [    1.105302] tegradc tegradc.0: DC initialized, skipping tegra_dc_program_mode.
May 31 18:03:46 ati-desktop kernel: [    1.105358] tegradc tegradc.0: hdmi: tmds rate:148351K prod-setting:prod_c_hdmi_75m_150m
May 31 18:03:46 ati-desktop kernel: [    1.105905] tegradc tegradc.0: hdmi: get RGB quant from REG programmed by BL.
May 31 18:03:46 ati-desktop kernel: [    1.105916] tegradc tegradc.0: hdmi: get YCC quant from REG programmed by BL.
May 31 18:03:46 ati-desktop kernel: [    1.109887] loop: module loaded
May 31 18:03:46 ati-desktop kernel: [    1.109981] tegra_profiler: version: 1.145, samples/io: 49/28
May 31 18:03:46 ati-desktop kernel: [    1.110168] tegra_profiler: auth: init
May 31 18:03:46 ati-desktop kernel: [    1.111523] THERMAL EST: found 2 subdevs
May 31 18:03:46 ati-desktop kernel: [    1.111535] THERMAL EST num_resources: 0
May 31 18:03:46 ati-desktop kernel: [    1.111543] [THERMAL EST subdev 0]
May 31 18:03:46 ati-desktop kernel: [    1.111551] [THERMAL EST subdev 1]
May 31 18:03:46 ati-desktop kernel: [    1.112019] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type thermal-fan-est
May 31 18:03:46 ati-desktop kernel: [    1.112022] THERMAL EST: thz register success.
May 31 18:03:46 ati-desktop kernel: [    1.112202] THERMAL EST: end of probe, return err: 0
May 31 18:03:46 ati-desktop kernel: [    1.113440] sd: No Scsi addr parsed to reserve index
May 31 18:03:46 ati-desktop kernel: [    1.113487] hisi_sas: driver version v1.6
May 31 18:03:46 ati-desktop kernel: [    1.118530] tegra-qspi 70410000.spi: Prod settings list not found
May 31 18:03:46 ati-desktop kernel: [    1.119761] qspi_mtd spi32766.0: MX25U3235F (4096 Kbytes)
May 31 18:03:46 ati-desktop kernel: [    1.119772] qspi_mtd spi32766.0: mtd .name = spi32766.0, .size = 0x400000 (4MiB) .erasesize = 0x00001000 (4KiB) .numeraseregions = 0
May 31 18:03:46 ati-desktop kernel: [    1.122942] libphy: Fixed MDIO Bus: probed
May 31 18:03:46 ati-desktop kernel: [    1.123722] tun: Universal TUN/TAP device driver, 1.6
May 31 18:03:46 ati-desktop kernel: [    1.123728] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
May 31 18:03:46 ati-desktop kernel: [    1.124722] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
May 31 18:03:46 ati-desktop kernel: [    1.124732] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
May 31 18:03:46 ati-desktop kernel: [    1.124793] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
May 31 18:03:46 ati-desktop kernel: [    1.124798] igb: Copyright (c) 2007-2014 Intel Corporation.
May 31 18:03:46 ati-desktop kernel: [    1.124847] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
May 31 18:03:46 ati-desktop kernel: [    1.124852] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
May 31 18:03:46 ati-desktop kernel: [    1.124901] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k
May 31 18:03:46 ati-desktop kernel: [    1.124904] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
May 31 18:03:46 ati-desktop kernel: [    1.126337] PPP generic driver version 2.4.2
May 31 18:03:46 ati-desktop kernel: [    1.126838] PPP BSD Compression module registered
May 31 18:03:46 ati-desktop kernel: [    1.126848] PPP Deflate Compression module registered
May 31 18:03:46 ati-desktop kernel: [    1.126890] PPP MPPE Compression module registered
May 31 18:03:46 ati-desktop kernel: [    1.126898] NET: Registered protocol family 24
May 31 18:03:46 ati-desktop kernel: [    1.126994] usbcore: registered new interface driver r8152
May 31 18:03:46 ati-desktop kernel: [    1.127043] usbcore: registered new interface driver asix
May 31 18:03:46 ati-desktop kernel: [    1.127102] usbcore: registered new interface driver ax88179_178a
May 31 18:03:46 ati-desktop kernel: [    1.127146] usbcore: registered new interface driver cdc_ether
May 31 18:03:46 ati-desktop kernel: [    1.127193] usbcore: registered new interface driver net1080
May 31 18:03:46 ati-desktop kernel: [    1.127243] usbcore: registered new interface driver cdc_subset
May 31 18:03:46 ati-desktop kernel: [    1.127283] usbcore: registered new interface driver zaurus
May 31 18:03:46 ati-desktop kernel: [    1.127339] usbcore: registered new interface driver cdc_ncm
May 31 18:03:46 ati-desktop kernel: [    1.127516] VFIO - User Level meta-driver version: 0.3
May 31 18:03:46 ati-desktop kernel: [    1.128908] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
May 31 18:03:46 ati-desktop kernel: [    1.128937] ehci-pci: EHCI PCI platform driver
May 31 18:03:46 ati-desktop kernel: [    1.128987] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
May 31 18:03:46 ati-desktop kernel: [    1.129000] ohci-pci: OHCI PCI platform driver
May 31 18:03:46 ati-desktop kernel: [    1.129043] ohci-platform: OHCI generic platform driver
May 31 18:03:46 ati-desktop kernel: [    1.130981] usbcore: registered new interface driver uas
May 31 18:03:46 ati-desktop kernel: [    1.131114] usbcore: registered new interface driver usb-storage
May 31 18:03:46 ati-desktop kernel: [    1.131242] usbcore: registered new interface driver usbserial
May 31 18:03:46 ati-desktop kernel: [    1.132292] extcon-disp-state extcon:disp-state: cable 47 state 1
May 31 18:03:46 ati-desktop kernel: [    1.132302] Extcon AUX1(HDMI) enable
May 31 18:03:46 ati-desktop kernel: [    1.135443] mousedev: PS/2 mouse device common for all mice
May 31 18:03:46 ati-desktop kernel: [    1.135535] usbcore: registered new interface driver xpad
May 31 18:03:46 ati-desktop kernel: [    1.138222] tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
May 31 18:03:46 ati-desktop kernel: [    1.138260] tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
May 31 18:03:46 ati-desktop kernel: [    1.138755] i2c /dev entries driver
May 31 18:03:46 ati-desktop kernel: [    1.140618] imx219 6-0010: tegracam sensor driver:imx219_v2.0.6
May 31 18:03:46 ati-desktop kernel: [    1.163968] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x10
May 31 18:03:46 ati-desktop kernel: [    1.164048] imx219 6-0010: imx219_board_setup: error during i2c read probe (-121)
May 31 18:03:46 ati-desktop kernel: [    1.171710] imx219 6-0010: board setup failed
May 31 18:03:46 ati-desktop kernel: [    1.176164] imx219: probe of 6-0010 failed with error -121
May 31 18:03:46 ati-desktop kernel: [    1.177431] tegradc tegradc.0: nominal-pclk:148351648 parent:148350781 div:1.0 pclk:148350781 146868084~161703244
May 31 18:03:46 ati-desktop kernel: [    1.177489] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
May 31 18:03:46 ati-desktop kernel: [    1.179787] tegra_soctherm 700e2000.soctherm: pllx_offset tz:0 max:14, min:2
May 31 18:03:46 ati-desktop kernel: [    1.179792] tegra_soctherm 700e2000.soctherm: pllx_offset tz:2 max:8, min:4
May 31 18:03:46 ati-desktop kernel: [    1.180103] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
May 31 18:03:46 ati-desktop kernel: [    1.180116] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when cpu reaches 102500 mC
May 31 18:03:46 ati-desktop kernel: [    1.180125] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when cpu reaches 100500 mC
May 31 18:03:46 ati-desktop kernel: [    1.180258] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
May 31 18:03:46 ati-desktop kernel: [    1.180269] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when gpu reaches 103000 mC
May 31 18:03:46 ati-desktop kernel: [    1.180276] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when gpu reaches 101000 mC
May 31 18:03:46 ati-desktop kernel: [    1.180425] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
May 31 18:03:46 ati-desktop kernel: [    1.180435] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when pll reaches 127000 mC
May 31 18:03:46 ati-desktop kernel: [    1.180441] tegra_soctherm 700e2000.soctherm: throttrip: pll: missing hot temperature
May 31 18:03:46 ati-desktop kernel: [    1.180633] tegra_soctherm 700e2000.soctherm: failed to register sensor: -19
May 31 18:03:46 ati-desktop kernel: [    1.181229] tegra_aotag tegra-aotag: Registering sensor 0
May 31 18:03:46 ati-desktop kernel: [    1.181276] tegra_aotag tegra-aotag: Invalid temp readout
May 31 18:03:46 ati-desktop kernel: [    1.181297] tegra_aotag tegra-aotag: Invalid temp readout
May 31 18:03:46 ati-desktop kernel: [    1.181314] tegra_aotag tegra-aotag: Bound to TZ : ID 0
May 31 18:03:46 ati-desktop kernel: [    1.181323] tegra_aotag tegra-aotag: Probe done [SUCCESS]:0
May 31 18:03:46 ati-desktop kernel: [    1.182265] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
May 31 18:03:46 ati-desktop kernel: [    1.182281] tegra_dfll_action dfll-cdev-cap: Tegra DFLL 'cap cooling device' registered
May 31 18:03:46 ati-desktop kernel: [    1.182437] tegra_aotag tegra-aotag: Invalid temp readout
May 31 18:03:46 ati-desktop kernel: [    1.182460] tegra_dfll_action dfll-cdev-floor: Tegra DFLL 'floor cooling device' registered
May 31 18:03:46 ati-desktop kernel: [    1.182876] parse_throttle_dt_data: Num cap clks = 6
May 31 18:03:46 ati-desktop kernel: [    1.182881] parse_throttle_dt_data: clk=cclk_g type=2
May 31 18:03:46 ati-desktop kernel: [    1.182889] parse_throttle_dt_data: clk=gpu type=4
May 31 18:03:46 ati-desktop kernel: [    1.182913] parse_throttle_dt_data: clk=cap.throttle.c2bus type=0
May 31 18:03:46 ati-desktop kernel: [    1.182935] parse_throttle_dt_data: clk=cap.throttle.c3bus type=0
May 31 18:03:46 ati-desktop kernel: [    1.182960] parse_throttle_dt_data: clk=cap.throttle.sclk type=0
May 31 18:03:46 ati-desktop kernel: [    1.182964] parse_throttle_dt_data: clk=emc type=3
May 31 18:03:46 ati-desktop kernel: [    1.183291] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
May 31 18:03:46 ati-desktop kernel: [    1.183384] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
May 31 18:03:46 ati-desktop kernel: [    1.183505] tegra_throttle_probe: probe successful. #cdevs=4
May 31 18:03:46 ati-desktop kernel: [    1.184156] FAN dev name: pwm-fan
May 31 18:03:46 ati-desktop kernel: [    1.184202] FAN:gpio request success.
May 31 18:03:46 ati-desktop kernel: [    1.184251] pwm_fan_driver pwm-fan: cap state:7, cap pwm:255
May 31 18:03:46 ati-desktop kernel: [    1.184493] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
May 31 18:03:46 ati-desktop kernel: [    1.184614] pwm_fan_driver pwm-fan: fan tach request irq success
May 31 18:03:46 ati-desktop kernel: [    1.184622] pwm_fan_driver pwm-fan: tach period: 1000
May 31 18:03:46 ati-desktop kernel: [    1.184702] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, state:2
May 31 18:03:46 ati-desktop kernel: [    1.184707] pwm_fan_driver pwm-fan: index 1: pwm=80, rpm=1000, rru=2, rrd=2, state:2
May 31 18:03:46 ati-desktop kernel: [    1.184712] pwm_fan_driver pwm-fan: index 2: pwm=120, rpm=2000, rru=1, rrd=1, state:2
May 31 18:03:46 ati-desktop kernel: [    1.184717] pwm_fan_driver pwm-fan: index 3: pwm=160, rpm=3000, rru=1, rrd=1, state:2
May 31 18:03:46 ati-desktop kernel: [    1.184722] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1, state:3
May 31 18:03:46 ati-desktop kernel: [    1.184727] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1, state:3
May 31 18:03:46 ati-desktop kernel: [    1.184732] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1, state:3
May 31 18:03:46 ati-desktop kernel: [    1.184737] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1, state:4
May 31 18:03:46 ati-desktop kernel: [    1.184741] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1, state:4
May 31 18:03:46 ati-desktop kernel: [    1.184746] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1, state:4
May 31 18:03:46 ati-desktop kernel: [    1.187275] device-mapper: uevent: version 1.0.3
May 31 18:03:46 ati-desktop kernel: [    1.187661] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
May 31 18:03:46 ati-desktop kernel: [    1.190256] tegra210-cpufreq cpufreq: probe()...completed
May 31 18:03:46 ati-desktop kernel: [    1.190976] sdhci: Secure Digital Host Controller Interface driver
May 31 18:03:46 ati-desktop kernel: [    1.190979] sdhci: Copyright(c) Pierre Ossman
May 31 18:03:46 ati-desktop kernel: [    1.190981] sdhci-pltfm: SDHCI platform and OF driver helper
May 31 18:03:46 ati-desktop kernel: [    1.191452] sdhci-tegra sdhci-tegra.0: Got CD GPIO
May 31 18:03:46 ati-desktop kernel: [    1.191815] sdhci-tegra sdhci-tegra.0: Client registration for eMC Successful
May 31 18:03:46 ati-desktop kernel: [    1.191942] sdhci-tegra sdhci-tegra.0: wakeup init done, cdirq 298
May 31 18:03:46 ati-desktop kernel: [    1.196847] tegra-se 70012000.se: tegra_se_probe: complete
May 31 18:03:46 ati-desktop kernel: [    1.197327] hidraw: raw HID events driver (C) Jiri Kosina
May 31 18:03:46 ati-desktop kernel: [    1.198471] usbcore: registered new interface driver usbhid
May 31 18:03:46 ati-desktop kernel: [    1.198473] usbhid: USB HID core driver
May 31 18:03:46 ati-desktop kernel: [    1.199411] tegra21x_actmon 6000c800.actmon: in actmon_register()...
May 31 18:03:46 ati-desktop kernel: [    1.199626] tegra21x_actmon 6000c800.actmon: initialization Completed for the device mc_all
May 31 18:03:46 ati-desktop kernel: [    1.201590] nvpmodel: initialized successfully
May 31 18:03:46 ati-desktop kernel: [    1.202695] usbcore: registered new interface driver snd-usb-audio
May 31 18:03:46 ati-desktop kernel: [    1.202722] u32 classifier
May 31 18:03:46 ati-desktop kernel: [    1.202724]     Actions configured
May 31 18:03:46 ati-desktop kernel: [    1.202798] Initializing XFRM netlink socket
May 31 18:03:46 ati-desktop kernel: [    1.203511] NET: Registered protocol family 10
May 31 18:03:46 ati-desktop kernel: [    1.204197] NET: Registered protocol family 17
May 31 18:03:46 ati-desktop kernel: [    1.204209] NET: Registered protocol family 15
May 31 18:03:46 ati-desktop kernel: [    1.204284] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
May 31 18:03:46 ati-desktop kernel: [    1.204326] Bluetooth: RFCOMM socket layer initialized
May 31 18:03:46 ati-desktop kernel: [    1.204335] Bluetooth: RFCOMM ver 1.11
May 31 18:03:46 ati-desktop kernel: [    1.204341] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
May 31 18:03:46 ati-desktop kernel: [    1.204346] Bluetooth: HIDP socket layer initialized
May 31 18:03:46 ati-desktop kernel: [    1.204365] 9pnet: Installing 9P2000 support
May 31 18:03:46 ati-desktop kernel: [    1.204401] Key type dns_resolver registered
May 31 18:03:46 ati-desktop kernel: [    1.204724] Registered cp15_barrier emulation handler
May 31 18:03:46 ati-desktop kernel: [    1.204731] Registered setend emulation handler
May 31 18:03:46 ati-desktop kernel: [    1.208383] input: tegra-hda HDMI/DP,pcm=3 as /devices/70030000.hda/sound/card0/input0
May 31 18:03:46 ati-desktop kernel: [    1.208508] registered taskstats version 1
May 31 18:03:46 ati-desktop kernel: [    1.209011] Adding domain ve2-pd to PM domain host1x-pd
May 31 18:03:46 ati-desktop kernel: [    1.209261] Adding domain ve-pd to PM domain host1x-pd
May 31 18:03:46 ati-desktop kernel: [    1.211308] isp 54600000.isp: initialized
May 31 18:03:46 ati-desktop kernel: [    1.212269] isp 54680000.isp: initialized
May 31 18:03:46 ati-desktop kernel: [    1.222483] last reset is due to power on reset
May 31 18:03:46 ati-desktop kernel: [    1.222487] KERNEL: PMC reset status reg: 0x0
May 31 18:03:46 ati-desktop kernel: [    1.222544] BL: PMC reset status reg: 0x0
May 31 18:03:46 ati-desktop kernel: [    1.222547] BL: PMIC poweroff Event Recorder: 0x40
May 31 18:03:46 ati-desktop kernel: [    1.223039] vdd-usb-vbus-en: 5000 mV 
May 31 18:03:46 ati-desktop kernel: [    1.223385] vdd-usb-vbus-en: supplied by vdd-5v0-sys
May 31 18:03:46 ati-desktop kernel: [    1.224324] clk_cbus_recalc_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    1.224329] clk_cbus_round_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    1.224332] clk_cbus_round_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    1.224339] clk_cbus_recalc_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    1.224434] clk_cbus_recalc_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    1.224438] clk_cbus_round_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    1.224440] clk_cbus_round_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    1.224444] clk_cbus_recalc_rate: no gbus parent
May 31 18:03:46 ati-desktop kernel: [    1.225109] tegra_dvfs: GPU-cap: registered
May 31 18:03:46 ati-desktop kernel: [    1.225174] tegra dvfs: vdd-cpu: nominal 1168mV, offset 708000uV, step 19200uV, scaling enabled
May 31 18:03:46 ati-desktop kernel: [    1.225177] tegra dvfs: vdd-core: nominal 1125mV, offset 600000uV, step 12500uV, scaling enabled
May 31 18:03:46 ati-desktop kernel: [    1.225180] tegra dvfs: vdd-gpu: nominal 1078mV, offset 708000uV, step 10000uV, scaling enabled
May 31 18:03:46 ati-desktop kernel: [    1.226857] tegra_dvfs: vdd-gpu-vts: registered
May 31 18:03:46 ati-desktop kernel: [    1.227002] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 = 0x7969411
May 31 18:03:46 ati-desktop kernel: [    1.227006] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_0 = 0x4
May 31 18:03:46 ati-desktop kernel: [    1.227714] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane = usb2-0, function = xusb
May 31 18:03:46 ati-desktop kernel: [    1.227775] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.1, lane = usb2-1, function = xusb
May 31 18:03:46 ati-desktop kernel: [    1.227840] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.2, lane = usb2-2, function = xusb
May 31 18:03:46 ati-desktop kernel: [    1.227944] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane = pcie-0, function = pcie-x1
May 31 18:03:46 ati-desktop kernel: [    1.228002] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane = pcie-1, function = pcie-x4
May 31 18:03:46 ati-desktop kernel: [    1.228058] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane = pcie-2, function = pcie-x4
May 31 18:03:46 ati-desktop kernel: [    1.228116] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane = pcie-3, function = pcie-x4
May 31 18:03:46 ati-desktop kernel: [    1.228170] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane = pcie-4, function = pcie-x4
May 31 18:03:46 ati-desktop kernel: [    1.228226] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.8, lane = pcie-5, function = xusb
May 31 18:03:46 ati-desktop kernel: [    1.228281] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.9, lane = pcie-6, function = xusb
May 31 18:03:46 ati-desktop kernel: [    1.229582] tegra-pcie 1003000.pcie: 4x1, 1x1 configuration
May 31 18:03:46 ati-desktop kernel: [    1.231602] tegra-xusb 70090000.xusb: USB2 port 0 has OTG_CAP
May 31 18:03:46 ati-desktop kernel: [    1.231723] tegra-pcie 1003000.pcie: PCIE: Enable power rails
May 31 18:03:46 ati-desktop kernel: [    1.232369] tegra-pcie 1003000.pcie: probing port 0, using 4 lanes
May 31 18:03:46 ati-desktop kernel: [    1.232384] tegra-xusb-padctl 7009f000.xusb_padctl: enabled OTG on UTMI pad 0
May 31 18:03:46 ati-desktop kernel: [    1.233407] tegra-xusb 70090000.xusb: extcon 0: ffffffc078b56c00 id
May 31 18:03:46 ati-desktop kernel: [    1.234092] tegra-pcie 1003000.pcie: probing port 1, using 1 lanes
May 31 18:03:46 ati-desktop kernel: [    1.234890] tegra-xudc-new 700d0000.xudc: device count: 1
May 31 18:03:46 ati-desktop kernel: [    1.235901] tegra-xudc-new 700d0000.xudc: USB charger detection disabled
May 31 18:03:46 ati-desktop kernel: [    1.235908] tegra-xudc-new 700d0000.xudc: vbus state: 0
May 31 18:03:46 ati-desktop kernel: [    1.236343] tegra-xudc-new 700d0000.xudc: entering ELPG
May 31 18:03:46 ati-desktop kernel: [    1.236605] tegra_core_action core_dvfs_cdev_floor: Tegra CORE DVFS 'floor cooling device' registered
May 31 18:03:46 ati-desktop kernel: [    1.236794] tegra-xusb 70090000.xusb: Firmware timestamp: 2020-07-31 09:33:12 UTC, Version: 50.26 release
May 31 18:03:46 ati-desktop kernel: [    1.236819] tegra-xusb 70090000.xusb: xHCI Host Controller
May 31 18:03:46 ati-desktop kernel: [    1.236831] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 1
May 31 18:03:46 ati-desktop kernel: [    1.237546] tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100 quirks 0x00050010
May 31 18:03:46 ati-desktop kernel: [    1.237572] tegra-xusb 70090000.xusb: irq 61, io mem 0x70090000
May 31 18:03:46 ati-desktop kernel: [    1.237817] tegra-xudc-new 700d0000.xudc: entering ELPG done
May 31 18:03:46 ati-desktop kernel: [    1.238360] tegra_core_action core_dvfs_cdev_cap: Tegra CORE DVFS 'cap cooling device' registered
May 31 18:03:46 ati-desktop kernel: [    1.238450] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
May 31 18:03:46 ati-desktop kernel: [    1.238454] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 31 18:03:46 ati-desktop kernel: [    1.238458] usb usb1: Product: xHCI Host Controller
May 31 18:03:46 ati-desktop kernel: [    1.238461] usb usb1: Manufacturer: Linux 4.9.253-tegra xhci-hcd
May 31 18:03:46 ati-desktop kernel: [    1.238464] usb usb1: SerialNumber: 70090000.xusb
May 31 18:03:46 ati-desktop kernel: [    1.238850] hub 1-0:1.0: USB hub found
May 31 18:03:46 ati-desktop kernel: [    1.238877] hub 1-0:1.0: 5 ports detected
May 31 18:03:46 ati-desktop kernel: [    1.238919] input: gpio-keys as /devices/gpio-keys/input/input1
May 31 18:03:46 ati-desktop kernel: [    1.239670] tegra-xusb 70090000.xusb: xHCI Host Controller
May 31 18:03:46 ati-desktop kernel: [    1.239679] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 2
May 31 18:03:46 ati-desktop kernel: [    1.239790] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
May 31 18:03:46 ati-desktop kernel: [    1.239849] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
May 31 18:03:46 ati-desktop kernel: [    1.239854] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 31 18:03:46 ati-desktop kernel: [    1.239857] usb usb2: Product: xHCI Host Controller
May 31 18:03:46 ati-desktop kernel: [    1.239860] usb usb2: Manufacturer: Linux 4.9.253-tegra xhci-hcd
May 31 18:03:46 ati-desktop kernel: [    1.239863] usb usb2: SerialNumber: 70090000.xusb
May 31 18:03:46 ati-desktop kernel: [    1.240107] vi 54080000.vi: vi_probe: ++
May 31 18:03:46 ati-desktop kernel: [    1.240161] hub 2-0:1.0: USB hub found
May 31 18:03:46 ati-desktop kernel: [    1.240186] hub 2-0:1.0: 4 ports detected
May 31 18:03:46 ati-desktop kernel: [    1.240676] tegra-xusb 70090000.xusb: Upgrade port 0 to USB3.0
May 31 18:03:46 ati-desktop kernel: [    1.240681] tegra-xusb 70090000.xusb: Upgrade port 1 to USB3.0
May 31 18:03:46 ati-desktop kernel: [    1.243146] vi 54080000.vi: initialized
May 31 18:03:46 ati-desktop kernel: [    1.245107] vi 54080000.vi: subdev nvcsi--1 bound
May 31 18:03:46 ati-desktop kernel: [    1.245851] Disable partitions left on by BL
May 31 18:03:46 ati-desktop kernel: [    1.245855]   disb
May 31 18:03:46 ati-desktop kernel: [    1.245896] bwmgr: missing cdev-type property
May 31 18:03:46 ati-desktop kernel: [    1.245989] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
May 31 18:03:46 ati-desktop kernel: [    1.245996] DRAM derating cdev registered.
May 31 18:03:46 ati-desktop kernel: [    1.246137] mmc0: SDHCI controller on sdhci-tegra.0 [sdhci-tegra.0] using ADMA 64-bit with 64 bit addr
May 31 18:03:46 ati-desktop kernel: [    1.246951] ALSA device list:
May 31 18:03:46 ati-desktop kernel: [    1.246955]   #0: tegra-hda at 0x70038000 irq 81
May 31 18:03:46 ati-desktop kernel: [    1.250001] Freeing unused kernel memory: 7616K
May 31 18:03:46 ati-desktop kernel: [    1.265690] tegradc tegradc.0: blank - powerdown
May 31 18:03:46 ati-desktop kernel: [    1.315212] extcon-disp-state extcon:disp-state: cable 47 state 0
May 31 18:03:46 ati-desktop kernel: [    1.315214] Extcon AUX1(HDMI) disable
May 31 18:03:46 ati-desktop kernel: [    1.343671] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 1
May 31 18:03:46 ati-desktop kernel: [    1.343727] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 2
May 31 18:03:46 ati-desktop kernel: [    1.344948] usb usb2: usb_suspend_both: status 0
May 31 18:03:46 ati-desktop kernel: [    1.355163] tegradc tegradc.0: unblank
May 31 18:03:46 ati-desktop kernel: [    1.366883] tegradc tegradc.0: nominal-pclk:181250000 parent:181248750 div:1.0 pclk:181248750 179437500~197562500
May 31 18:03:46 ati-desktop kernel: [    1.366935] tegradc tegradc.0: hdmi: tmds rate:181250K prod-setting:prod_c_hdmi_150m_300m
May 31 18:03:46 ati-desktop kernel: [    1.367946] tegradc tegradc.0: hdmi: get YCC quant from EDID.
May 31 18:03:46 ati-desktop kernel: [    1.403021] extcon-disp-state extcon:disp-state: cable 47 state 1
May 31 18:03:46 ati-desktop kernel: [    1.403023] Extcon AUX1(HDMI) enable
May 31 18:03:46 ati-desktop kernel: [    1.419236] tegradc tegradc.0: sync windows ret = 246
May 31 18:03:46 ati-desktop kernel: [    1.445081] extcon-disp-state extcon:disp-state: cable 51 state 1
May 31 18:03:46 ati-desktop kernel: [    1.445084] Extcon HDMI: HPD enabled
May 31 18:03:46 ati-desktop kernel: [    1.445095] tegradc tegradc.0: hdmi: plugged
May 31 18:03:46 ati-desktop kernel: [    1.456106] mmc0: hw tuning done ...
May 31 18:03:46 ati-desktop kernel: [    1.456142] mmc0: new ultra high speed SDR104 SDXC card at address aaaa
May 31 18:03:46 ati-desktop kernel: [    1.456595] mmcblk0: mmc0:aaaa SD64G 59.5 GiB 
May 31 18:03:46 ati-desktop kernel: [    1.462374]  mmcblk0: p1
May 31 18:03:46 ati-desktop kernel: [    1.519695] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
May 31 18:03:46 ati-desktop kernel: [    1.670705] tegra-pcie 1003000.pcie: link 0 down, retrying
May 31 18:03:46 ati-desktop kernel: [    1.746345] ip_tables: (C) 2000-2006 Netfilter Core Team
May 31 18:03:46 ati-desktop kernel: [    1.758745] cgroup: cgroup2: unknown option "nsdelegate"
May 31 18:03:46 ati-desktop kernel: [    2.040305] random: systemd: uninitialized urandom read (16 bytes read)
May 31 18:03:46 ati-desktop kernel: [    2.040556] random: systemd: uninitialized urandom read (16 bytes read)
May 31 18:03:46 ati-desktop kernel: [    2.042180] random: systemd: uninitialized urandom read (16 bytes read)
May 31 18:03:46 ati-desktop kernel: [    2.066170] tegra_cec 70015000.tegra_cec: physical address: 20:00.
May 31 18:03:46 ati-desktop kernel: [    2.088127] tegra-pcie 1003000.pcie: link 0 down, retrying
May 31 18:03:46 ati-desktop kernel: [    2.105521] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
May 31 18:03:46 ati-desktop kernel: [    2.268919] nvgpu: 57000000.gpu           gm20b_init_clk_setup_sw:1268 [INFO]  GPCPLL initial settings: NA mode, M=1, N=34, P=3 (id = 1)
May 31 18:03:46 ati-desktop kernel: [    2.318515] usb 2-1: new SuperSpeed USB device number 2 using tegra-xusb
May 31 18:03:46 ati-desktop kernel: [    2.339220] usb 2-1: New USB device found, idVendor=0bc2, idProduct=ab18
May 31 18:03:46 ati-desktop kernel: [    2.339227] usb 2-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
May 31 18:03:46 ati-desktop kernel: [    2.339231] usb 2-1: Product: PS4 Game Drive
May 31 18:03:46 ati-desktop kernel: [    2.339235] usb 2-1: Manufacturer: Seagate
May 31 18:03:46 ati-desktop kernel: [    2.339238] usb 2-1: SerialNumber: NZ0LY4LF
May 31 18:03:46 ati-desktop kernel: [    2.347803] scsi host0: uas
May 31 18:03:46 ati-desktop kernel: [    2.349268] scsi 0:0:0:0: Direct-Access     Seagate  PS4 Game Drive   0304 PQ: 0 ANSI: 6
May 31 18:03:46 ati-desktop kernel: [    2.393373] sd 0:0:0:0: [sda] 3907029167 512-byte logical blocks: (2.00 TB/1.82 TiB)
May 31 18:03:46 ati-desktop kernel: [    2.401251] sd 0:0:0:0: [sda] 2048-byte physical blocks
May 31 18:03:46 ati-desktop kernel: [    2.458065] usb 1-3: new high-speed USB device number 3 using tegra-xusb
May 31 18:03:46 ati-desktop kernel: [    2.478483] usb 1-3: New USB device found, idVendor=1a40, idProduct=0801
May 31 18:03:46 ati-desktop kernel: [    2.478489] usb 1-3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
May 31 18:03:46 ati-desktop kernel: [    2.478493] usb 1-3: Product: USB 2.0 Hub
May 31 18:03:46 ati-desktop kernel: [    2.479408] hub 1-3:1.0: USB hub found
May 31 18:03:46 ati-desktop kernel: [    2.479485] hub 1-3:1.0: 4 ports detected
May 31 18:03:46 ati-desktop kernel: [    2.480450] tegra-xusb-padctl 7009f000.xusb_padctl: power down UTMI pad 1
May 31 18:03:46 ati-desktop kernel: [    2.524054] tegra-pcie 1003000.pcie: link 0 down, retrying
May 31 18:03:46 ati-desktop kernel: [    2.526048] tegra-pcie 1003000.pcie: link 0 down, ignoring
May 31 18:03:46 ati-desktop kernel: [    2.552582] Adding 4194300k swap on /swapfile.  Priority:-1 extents:6 across:6258684k SS
May 31 18:03:46 ati-desktop kernel: [    2.631487] tegra-pcie 1003000.pcie: PCI host bridge to bus 0000:00
May 31 18:03:46 ati-desktop kernel: [    2.631494] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
May 31 18:03:46 ati-desktop kernel: [    2.631498] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
May 31 18:03:46 ati-desktop kernel: [    2.631503] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pref]
May 31 18:03:46 ati-desktop kernel: [    2.631508] pci_bus 0000:00: root bus resource [bus 00-ff]
May 31 18:03:46 ati-desktop kernel: [    2.631532] pci 0000:00:02.0: [10de:0faf] type 01 class 0x060400
May 31 18:03:46 ati-desktop kernel: [    2.631609] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
May 31 18:03:46 ati-desktop kernel: [    2.631760] iommu: Adding device 0000:00:02.0 to group 36
May 31 18:03:46 ati-desktop kernel: [    2.631840] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
May 31 18:03:46 ati-desktop kernel: [    2.631968] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
May 31 18:03:46 ati-desktop kernel: [    2.631993] pci 0000:01:00.0: reg 0x10: [io  0x0000-0x00ff]
May 31 18:03:46 ati-desktop kernel: [    2.632023] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
May 31 18:03:46 ati-desktop kernel: [    2.632043] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
May 31 18:03:46 ati-desktop kernel: [    2.632206] pci 0000:01:00.0: supports D1 D2
May 31 18:03:46 ati-desktop kernel: [    2.632209] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
May 31 18:03:46 ati-desktop kernel: [    2.632382] iommu: Adding device 0000:01:00.0 to group 37
May 31 18:03:46 ati-desktop kernel: [    2.642130] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
May 31 18:03:46 ati-desktop kernel: [    2.642161] pci 0000:00:02.0: BAR 14: assigned [mem 0x13000000-0x130fffff]
May 31 18:03:46 ati-desktop kernel: [    2.642166] pci 0000:00:02.0: BAR 13: assigned [io  0x1000-0x1fff]
May 31 18:03:46 ati-desktop kernel: [    2.642174] pci 0000:01:00.0: BAR 4: assigned [mem 0x13000000-0x13003fff 64bit]
May 31 18:03:46 ati-desktop kernel: [    2.642192] pci 0000:01:00.0: BAR 2: assigned [mem 0x13004000-0x13004fff 64bit]
May 31 18:03:46 ati-desktop kernel: [    2.642209] pci 0000:01:00.0: BAR 0: assigned [io  0x1000-0x10ff]
May 31 18:03:46 ati-desktop kernel: [    2.642217] pci 0000:00:02.0: PCI bridge to [bus 01]
May 31 18:03:46 ati-desktop kernel: [    2.642221] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
May 31 18:03:46 ati-desktop kernel: [    2.642227] pci 0000:00:02.0:   bridge window [mem 0x13000000-0x130fffff]
May 31 18:03:46 ati-desktop kernel: [    2.642540] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
May 31 18:03:46 ati-desktop kernel: [    2.642545] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
May 31 18:03:46 ati-desktop kernel: [    2.642550] pcie_pme 0000:00:02.0:pcie001: service driver pcie_pme loaded
May 31 18:03:46 ati-desktop kernel: [    2.642641] aer 0000:00:02.0:pcie002: service driver aer loaded
May 31 18:03:46 ati-desktop kernel: [    2.642832] r8168 0000:01:00.0: enabling device (0000 -> 0003)
May 31 18:03:46 ati-desktop kernel: [    2.642849] r8168 Gigabit Ethernet driver 8.045.08-NAPI loaded
May 31 18:03:46 ati-desktop kernel: [    2.656892] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Invalid ethernet address 00:00:00:00:00:00, trying device tree node
May 31 18:03:46 ati-desktop kernel: [    2.656963] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Found valid ethernet address 48:b0:2d:2e:1f:f3 from device tree
May 31 18:03:46 ati-desktop kernel: [    2.657457] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
May 31 18:03:46 ati-desktop kernel: [    2.657474] r8168  Copyright (C) 2017  Realtek NIC software team <nicfae@realtek.com> 
May 31 18:03:46 ati-desktop kernel: [    2.657474]  This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>. 
May 31 18:03:46 ati-desktop kernel: [    2.657474]  This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>. 
May 31 18:03:46 ati-desktop kernel: [    2.766147] usb 1-3.2: new high-speed USB device number 4 using tegra-xusb
May 31 18:03:46 ati-desktop kernel: [    2.801682] usb 1-3.2: New USB device found, idVendor=0e8d, idProduct=7610
May 31 18:03:46 ati-desktop kernel: [    2.801690] usb 1-3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 31 18:03:46 ati-desktop kernel: [    2.801694] usb 1-3.2: Product: WiFi
May 31 18:03:46 ati-desktop kernel: [    2.801698] usb 1-3.2: Manufacturer: MediaTek
May 31 18:03:46 ati-desktop kernel: [    2.801701] usb 1-3.2: SerialNumber: 1.0
May 31 18:03:47 ati-desktop kernel: [    2.943252] using random self ethernet address
May 31 18:03:47 ati-desktop kernel: [    2.949007] using random host ethernet address
May 31 18:03:47 ati-desktop kernel: [    3.278032] random: crng init done
May 31 18:03:47 ati-desktop kernel: [    3.281431] random: 7 urandom warning(s) missed due to ratelimiting
May 31 18:03:47 ati-desktop kernel: [    3.377369] sd 0:0:0:0: [sda] Write Protect is off
May 31 18:03:47 ati-desktop kernel: [    3.382270] sd 0:0:0:0: [sda] Mode Sense: 4f 00 00 00
May 31 18:03:47 ati-desktop kernel: [    3.382659] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
May 31 18:03:47 ati-desktop kernel: [    3.392373] sd 0:0:0:0: [sda] Optimal transfer size 33553920 bytes not a multiple of physical block size (2048 bytes)
May 31 18:03:47 ati-desktop kernel: [    3.476922]  sda: sda1 sda2
May 31 18:03:47 ati-desktop kernel: [    3.479114] sd 0:0:0:0: [sda] Attached SCSI disk
May 31 18:03:47 ati-desktop kernel: [    3.722057] usb 1-3.1: new high-speed USB device number 5 using tegra-xusb
May 31 18:03:47 ati-desktop kernel: [    3.743821] usb 1-3.1: New USB device found, idVendor=2109, idProduct=2817
May 31 18:03:47 ati-desktop kernel: [    3.743827] usb 1-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 31 18:03:47 ati-desktop kernel: [    3.743831] usb 1-3.1: Product: USB2.0 Hub             
May 31 18:03:47 ati-desktop kernel: [    3.743835] usb 1-3.1: Manufacturer: VIA Labs, Inc.         
May 31 18:03:47 ati-desktop kernel: [    3.744856] hub 1-3.1:1.0: USB hub found
May 31 18:03:47 ati-desktop kernel: [    3.745057] hub 1-3.1:1.0: 4 ports detected
May 31 18:03:47 ati-desktop kernel: [    3.842236] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
May 31 18:03:47 ati-desktop kernel: [    3.842259] cpu-throttle-alert cooling device registered.
May 31 18:03:47 ati-desktop kernel: [    3.842665] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
May 31 18:03:47 ati-desktop kernel: [    3.842683] gpu-throttle-alert cooling device registered.
May 31 18:03:47 ati-desktop kernel: [    3.842993] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
May 31 18:03:47 ati-desktop kernel: [    3.843007] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
May 31 18:03:47 ati-desktop kernel: [    3.843024] hot-surface-alert cooling device registered.
May 31 18:03:48 ati-desktop kernel: [    4.069086] Mass Storage Function, version: 2009/09/11
May 31 18:03:48 ati-desktop kernel: [    4.069091] LUN: removable file: (no medium)
May 31 18:03:48 ati-desktop kernel: [    4.076397] using random self ethernet address
May 31 18:03:48 ati-desktop kernel: [    4.081070] using random host ethernet address
May 31 18:03:48 ati-desktop kernel: [    4.210064] tegra_cec 70015000.tegra_cec: timeout in tegra_cec_native_write_l:172.
May 31 18:03:48 ati-desktop kernel: [    4.217867] tegra_cec 70015000.tegra_cec: Sent <Text View On> res: -62.
May 31 18:03:48 ati-desktop kernel: [    4.226886] tegra_cec 70015000.tegra_cec: tegra_cec_init Done.
May 31 18:03:48 ati-desktop kernel: [    4.228803] rndis0: HOST MAC 46:7a:d0:5f:5c:80
May 31 18:03:48 ati-desktop kernel: [    4.229184] rndis0: MAC 46:7a:d0:5f:5c:81
May 31 18:03:48 ati-desktop kernel: [    4.229778] usb0: HOST MAC 46:7a:d0:5f:5c:82
May 31 18:03:48 ati-desktop kernel: [    4.229804] usb0: MAC 46:7a:d0:5f:5c:83
May 31 18:03:48 ati-desktop kernel: [    4.229823] tegra-xudc-new 700d0000.xudc: exiting ELPG
May 31 18:03:48 ati-desktop kernel: [    4.233261] tegra-xudc-new 700d0000.xudc: exiting ELPG done
May 31 18:03:48 ati-desktop kernel: [    4.233274] tegra-xudc-new 700d0000.xudc: ep 0 (type: 0, dir: out) enabled
May 31 18:03:48 ati-desktop kernel: [    4.236309] tegra-xudc-new 700d0000.xudc: entering ELPG
May 31 18:03:48 ati-desktop kernel: [    4.236561] tegra-xudc-new 700d0000.xudc: entering ELPG done
May 31 18:03:48 ati-desktop kernel: [    4.236569] tegra-xudc-new 700d0000.xudc: exiting ELPG
May 31 18:03:48 ati-desktop kernel: [    4.237100] tegra-xudc-new 700d0000.xudc: exiting ELPG done
May 31 18:03:48 ati-desktop kernel: [    4.237113] tegra-xudc-new 700d0000.xudc: entering ELPG
May 31 18:03:48 ati-desktop kernel: [    4.237323] tegra-xudc-new 700d0000.xudc: entering ELPG done
May 31 18:03:48 ati-desktop kernel: [    4.237653] l4tbr0: port 1(rndis0) entered blocking state
May 31 18:03:48 ati-desktop kernel: [    4.237657] l4tbr0: port 1(rndis0) entered disabled state
May 31 18:03:48 ati-desktop kernel: [    4.237819] device rndis0 entered promiscuous mode
May 31 18:03:48 ati-desktop kernel: [    4.244022] IPv6: ADDRCONF(NETDEV_UP): rndis0: link is not ready
May 31 18:03:48 ati-desktop kernel: [    4.249384] l4tbr0: port 2(usb0) entered blocking state
May 31 18:03:48 ati-desktop kernel: [    4.249388] l4tbr0: port 2(usb0) entered disabled state
May 31 18:03:48 ati-desktop kernel: [    4.249844] device usb0 entered promiscuous mode
May 31 18:03:48 ati-desktop kernel: [    4.255648] IPv6: ADDRCONF(NETDEV_UP): usb0: link is not ready
May 31 18:03:48 ati-desktop kernel: [    4.594768] r8168 0000:01:00.0 enp1s0: renamed from eth0
May 31 18:03:48 ati-desktop kernel: [    4.622068] usb 1-3.1.3: new low-speed USB device number 6 using tegra-xusb
May 31 18:03:48 ati-desktop kernel: [    4.648793] usb 1-3.1.3: New USB device found, idVendor=0e6a, idProduct=02c0
May 31 18:03:48 ati-desktop kernel: [    4.648798] usb 1-3.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 31 18:03:48 ati-desktop kernel: [    4.648801] usb 1-3.1.3: Product: PS/2+USB Keyboard
May 31 18:03:48 ati-desktop kernel: [    4.648803] usb 1-3.1.3: Manufacturer: dakai
May 31 18:03:48 ati-desktop kernel: [    4.653608] input: dakai PS/2+USB Keyboard as /devices/70090000.xusb/usb1/1-3/1-3.1/1-3.1.3/1-3.1.3:1.0/0003:0E6A:02C0.0001/input/input2
May 31 18:03:48 ati-desktop kernel: [    4.710787] hid-generic 0003:0E6A:02C0.0001: input,hidraw0: USB HID v1.11 Keyboard [dakai PS/2+USB Keyboard] on usb-70090000.xusb-3.1.3/input0
May 31 18:03:48 ati-desktop kernel: [    4.717638] input: dakai PS/2+USB Keyboard as /devices/70090000.xusb/usb1/1-3/1-3.1/1-3.1.3/1-3.1.3:1.1/0003:0E6A:02C0.0002/input/input3
May 31 18:03:48 ati-desktop kernel: [    4.774341] hid-generic 0003:0E6A:02C0.0002: input,hidraw1: USB HID v1.11 Keyboard [dakai PS/2+USB Keyboard] on usb-70090000.xusb-3.1.3/input1
May 31 18:03:48 ati-desktop kernel: [    4.902058] usb 1-3.1.4: new high-speed USB device number 7 using tegra-xusb
May 31 18:03:48 ati-desktop kernel: [    4.925354] usb 1-3.1.4: New USB device found, idVendor=05e3, idProduct=0749
May 31 18:03:48 ati-desktop kernel: [    4.925361] usb 1-3.1.4: New USB device strings: Mfr=3, Product=4, SerialNumber=2
May 31 18:03:48 ati-desktop kernel: [    4.925365] usb 1-3.1.4: Product: USB3.0 Card Reader
May 31 18:03:48 ati-desktop kernel: [    4.925368] usb 1-3.1.4: Manufacturer: Generic
May 31 18:03:48 ati-desktop kernel: [    4.925372] usb 1-3.1.4: SerialNumber: 000000001532
May 31 18:03:48 ati-desktop kernel: [    4.926525] usb-storage 1-3.1.4:1.0: USB Mass Storage device detected
May 31 18:03:48 ati-desktop kernel: [    4.934601] scsi host1: usb-storage 1-3.1.4:1.0
May 31 18:03:49 ati-desktop kernel: [    5.048165] IPv6: ADDRCONF(NETDEV_UP): enp1s0: link is not ready
May 31 18:03:49 ati-desktop kernel: [    5.058509] enp1s0: 0xffffff800d3a5000, 48:b0:2d:2e:1f:f3, IRQ 404
May 31 18:03:49 ati-desktop kernel: [    5.132608] IPv6: ADDRCONF(NETDEV_UP): enp1s0: link is not ready
May 31 18:03:49 ati-desktop kernel: [    5.214755] zram: Added device: zram0
May 31 18:03:49 ati-desktop kernel: [    5.218950] zram: Added device: zram1
May 31 18:03:49 ati-desktop kernel: [    5.222763] zram: Added device: zram2
May 31 18:03:49 ati-desktop kernel: [    5.224144] zram: Added device: zram3
May 31 18:03:49 ati-desktop kernel: [    5.255780] zram0: detected capacity change from 0 to 258654208
May 31 18:03:49 ati-desktop kernel: [    5.313944] Adding 252588k swap on /dev/zram0.  Priority:5 extents:1 across:252588k SS
May 31 18:03:49 ati-desktop kernel: [    5.322876] zram1: detected capacity change from 0 to 258654208
May 31 18:03:49 ati-desktop kernel: [    5.337190] Adding 252588k swap on /dev/zram1.  Priority:5 extents:1 across:252588k SS
May 31 18:03:49 ati-desktop kernel: [    5.340208] zram2: detected capacity change from 0 to 258654208
May 31 18:03:49 ati-desktop kernel: [    5.359486] Adding 252588k swap on /dev/zram2.  Priority:5 extents:1 across:252588k SS
May 31 18:03:49 ati-desktop kernel: [    5.368108] zram3: detected capacity change from 0 to 258654208
May 31 18:03:49 ati-desktop kernel: [    5.388523] Adding 252588k swap on /dev/zram3.  Priority:5 extents:1 across:252588k SS
May 31 18:03:50 ati-desktop kernel: [    5.939307] scsi 1:0:0:0: Direct-Access     Generic  STORAGE DEVICE   1532 PQ: 0 ANSI: 6
May 31 18:03:50 ati-desktop kernel: [    5.949569] sd 1:0:0:0: [sdb] Attached SCSI removable disk
May 31 18:03:50 ati-desktop kernel: [    6.078082] usb 1-3.1.2: new full-speed USB device number 8 using tegra-xusb
May 31 18:03:50 ati-desktop kernel: [    6.099736] usb 1-3.1.2: New USB device found, idVendor=060b, idProduct=2323
May 31 18:03:50 ati-desktop kernel: [    6.099744] usb 1-3.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 31 18:03:50 ati-desktop kernel: [    6.099748] usb 1-3.1.2: Product: NMouse4k S-Auto
May 31 18:03:50 ati-desktop kernel: [    6.099752] usb 1-3.1.2: Manufacturer: Skydigital
May 31 18:03:50 ati-desktop kernel: [    6.102208] input: Skydigital NMouse4k S-Auto as /devices/70090000.xusb/usb1/1-3/1-3.1/1-3.1.2/1-3.1.2:1.0/0003:060B:2323.0003/input/input4
May 31 18:03:50 ati-desktop kernel: [    6.102551] hid-generic 0003:060B:2323.0003: input,hidraw2: USB HID v1.10 Mouse [Skydigital NMouse4k S-Auto] on usb-70090000.xusb-3.1.2/input0
May 31 18:03:50 ati-desktop kernel: [    6.103688] input: Skydigital NMouse4k S-Auto as /devices/70090000.xusb/usb1/1-3/1-3.1/1-3.1.2/1-3.1.2:1.1/0003:060B:2323.0004/input/input5
May 31 18:03:50 ati-desktop kernel: [    6.104635] hid-generic 0003:060B:2323.0004: input,hidraw3: USB HID v1.10 Device [Skydigital NMouse4k S-Auto] on usb-70090000.xusb-3.1.2/input1
May 31 18:03:50 ati-desktop kernel: [    6.380731] mt7610u_sta: loading out-of-tree module taints kernel.
May 31 18:03:50 ati-desktop kernel: [    6.419398] rtusb init rt2870 --->
May 31 18:03:50 ati-desktop kernel: [    6.419735] 
May 31 18:03:50 ati-desktop kernel: [    6.419735] 
May 31 18:03:50 ati-desktop kernel: [    6.419735] === pAd = ffffff800f142000, size = 895688 ===
May 31 18:03:50 ati-desktop kernel: [    6.419735] 
May 31 18:03:50 ati-desktop kernel: [    6.420281] <-- RTMPAllocTxRxRingMemory, Status=0
May 31 18:03:50 ati-desktop kernel: [    6.420489] <-- RTMPAllocAdapterBlock, Status=0
May 31 18:03:50 ati-desktop kernel: [    6.420619] ==>RT65xx_WLAN_ChipOnOff(): OnOff:1, Reset= 0, pAd->WlanFunCtrl:0x0, Reg-WlanFunCtrl=0xff000002
May 31 18:03:50 ati-desktop kernel: [    6.421491] MCUType = 2
May 31 18:03:50 ati-desktop kernel: [    6.421695] NVM is EFUSE
May 31 18:03:50 ati-desktop kernel: [    6.421698] Endpoint(8) is for In-band Command
May 31 18:03:50 ati-desktop kernel: [    6.421701] Endpoint(4) is for WMM0 AC0
May 31 18:03:50 ati-desktop kernel: [    6.421704] Endpoint(5) is for WMM0 AC1
May 31 18:03:50 ati-desktop kernel: [    6.421707] Endpoint(6) is for WMM0 AC2
May 31 18:03:50 ati-desktop kernel: [    6.421710] Endpoint(7) is for WMM0 AC3
May 31 18:03:50 ati-desktop kernel: [    6.421712] Endpoint(9) is for WMM1 AC0
May 31 18:03:50 ati-desktop kernel: [    6.421715] Endpoint(84) is for Data-In
May 31 18:03:50 ati-desktop kernel: [    6.421717] Endpoint(85) is for Command Rsp
May 31 18:03:50 ati-desktop kernel: [    6.421882] 80211> RFICType = 3
May 31 18:03:50 ati-desktop kernel: [    6.421887] 80211> Number of channel = 44
May 31 18:03:50 ati-desktop kernel: [    6.421890] 80211> Number of rate = 12
May 31 18:03:50 ati-desktop kernel: [    6.421892] 80211> CurTxPower = 0 dBm
May 31 18:03:50 ati-desktop kernel: [    6.421896] 80211> TxStream = 0
May 31 18:03:50 ati-desktop kernel: [    6.422083] crda> requlation requestion by core: 
May 31 18:03:50 ati-desktop kernel: [    6.422086] 00
May 31 18:03:50 ati-desktop kernel: [    6.422237] 80211> CFG80211_Register
May 31 18:03:50 ati-desktop kernel: [    6.422613] 80211> CFG80211_OpsTxPwrGet ==>
May 31 18:03:50 ati-desktop kernel: [    6.423811] 80211> CFG80211_OpsTxPwrGet ==>
May 31 18:03:50 ati-desktop kernel: [    6.429826] usbcore: registered new interface driver rt2870
May 31 18:03:51 ati-desktop kernel: [    7.543733] Bridge firewalling registered
May 31 18:03:51 ati-desktop kernel: [    7.733184] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
May 31 18:03:51 ati-desktop kernel: [    7.879930] tegradc tegradc.0: unblank
May 31 18:03:52 ati-desktop kernel: [    8.044263] Netfilter messages via NETLINK v0.30.
May 31 18:03:52 ati-desktop kernel: [    8.047075] ctnetlink v0.93: registering with nfnetlink.
May 31 18:03:52 ati-desktop kernel: [    8.253744] IPv6: ADDRCONF(NETDEV_UP): docker0: link is not ready
May 31 18:03:53 ati-desktop kernel: [    9.653020] fuse init (API version 7.26)
May 31 18:03:55 ati-desktop kernel: [   11.513143] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May 31 18:03:55 ati-desktop kernel: [   11.513154] Bluetooth: BNEP socket layer initialized
May 31 18:03:57 ati-desktop kernel: [   13.093486] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.

Do you mean boot up only get 1 second faster than before?

Please provide the serial console log from power on instead of just dmesg.

Serial console log is not just “dmesg”. dmesg is a subset of serial console log. Serial console also runs during boot stages, but dmesg only runs once the Linux kernel loads. Serial console logs can show some useful timestamps of boot stages, whereas dmesg does not.

Sorry for late response.

I tried connecting a TTL to USB cable to the Jetson in order to view the Serial Debug Console.
However, when I connected the wiring as shown in the picture and started minicom,
I couldn’t receive any messages. I also noticed an error message
“pl2303_get_line_request - failed: -32” in dmesg --follow.

[112280.558669] pl2303 ttyUSB0: pl2303_get_line_request - failed: -32
[112280.559023] pl2303 ttyUSB0: pl2303_get_line_request - failed: -32
[112280.559339] pl2303 ttyUSB0: pl2303_get_line_request - failed: -32
[112291.122239] pl2303 ttyUSB0: error sending break = -32

I’m not sure what the error “-32” specifically means,
but it seems like there might be an error occurring during the process of converting TTL to USB.
If this error is related to a hardware issue,
if there’s a way to switch the debug UART from J50 to MicroUSB??
I have confirmed that UART communication using microUSB is functioning properly.

Serial console log should work as default.
Please refer to the following instruction to check if it could help.
Jetson Nano & NX Style - Serial Debug Console - JetsonHacks
Or you could try using another serial console cable.

What’s you Jetpack version in use?

I saw the forum and used the same PL2303HX adapter, but i’m experiencing this unknown error.
The forum suggests using another adapter FTDI chips for TTL,
it might be worth considering purchasing that model and giving it a try.
I used Jetpack 4.6.1

Yes, you could try with another serial console cable.

I would suggest using latest JP4.6.3 (R32.7.3) to verify.

I’ll add a +1 vote for what @holee1 mentions: I don’t know the PL2303HX adapter, and it might not be a problem at all, but FTDI is the best “by default” support. I’m not sure what the error is, but it sounds like a USB error. You might try a different port on the laptop, or else go to a HUB and then the HUB to the laptop (HUBs can sometimes make a bit of an RF adapter and clean up the signal).

If you ever want to diagnose a USB device on Linux, then start by monitoring logs with “dmesg --follow” (on the laptop in this case), and then plug in the offending USB device to see what logs show up. Note that the Jetson does not see nor have any influence on the USB end for this particular case.

Thank you for answer.
I has two Jetson Board.
So, I Connect J50 Debug UART → 40Pin UART and I can check serial Debug Console when Boot Time

Here is my custom Jetson serial console log.

> Welcome to minicom 2.7.1

OPTIONS: I18n 
Compiled on Aug 13 2017, 15:25:34.
Port /dev/ttyTHS1, 13:58:24

Press CTRL-A Z for help on special keys

[0000.163] [L4T TegraBoot] (version 00.00.2018.01-l4t-8728f3cb)
[0000.168] Processing in cold boot mode Bootloader 2
[0000.173] A02 Bootrom Patch rev = 1023
[0000.177] Power-up reason: pmc por
[0000.180] No Battery Present
[0000.182] pmic max77620 reset reason
[0000.186] pmic max77620 NVERC : 0x40
[0000.189] RamCode = 0
[0000.191] Platform has DDR4 type RAM
[0000.195] max77620 disabling SD1 Remote Sense
[0000.199] Setting DDR voltage to 1125mv
[0000.203] Serial Number of Pmic Max77663: 0x161e72
[0000.211] Entering ramdump check
[0000.214] Get RamDumpCarveOut = 0x0
[0000.217] RamDumpCarveOut=0x0,  RamDumperFlag=0xe59ff3f8
[0000.222] Last reboot was clean, booting normally!
[0000.227] Sdram initialization is successful 
[0000.231] SecureOs Carveout Base=0x00000000ff800000 Size=0x00800000
[0000.237] Lp0 Carveout Base=0x00000000ff780000 Size=0x00001000
[0000.243] BpmpFw Carveout Base=0x00000000ff700000 Size=0x00080000
[0000.249] GSC1 Carveout Base=0x00000000ff600000 Size=0x00100000
[0000.254] GSC2 Carveout Base=0x00000000ff500000 Size=0x00100000
[0000.260] GSC4 Carveout Base=0x00000000ff400000 Size=0x00100000
[0000.266] GSC5 Carveout Base=0x00000000ff300000 Size=0x00100000
[0000.272] GSC3 Carveout Base=0x000000017f300000 Size=0x00d00000
[0000.288] RamDump Carveout Base=0x00000000ff280000 Size=0x00080000
[0000.294] Platform-DebugCarveout: 0
[0000.297] Nck Carveout Base=0x00000000ff080000 Size=0x00200000
[0000.303] Non secure mode, and RB not enabled.
[0000.307] BoardID = 3448, SKU = 0x0
[0000.311] QSPI-ONLY: SkipQspiOnlyFlag = 0
[0000.314] Nano-SD: checking PT table on QSPI ...
[0000.319] Initialize FailControl
[0000.322] Read PT from (2:0)
[0000.352] PT crc32 and magic check passed.
[0000.356] Using BFS PT to query partitions 
[0000.362] Loading Tboot-CPU binary
[0000.390] Verifying TBC in OdmNonSecureSBK mode
[0000.400] Bootloader load address is 0xa0000000, entry address is 0xa0000258
[0000.407] Bootloader downloaded successfully.
[0000.411] Downloaded Tboot-CPU binary to 0xa0000258
[0000.416] MAX77620_GPIO5 configured
[0000.420] CPU power rail is up
[0000.422] CPU clock enabled
[0000.426] Performing RAM repair
[0000.429] Updating A64 Warmreset Address to 0xa00002e9
[0000.434] BoardID = 3448, SKU = 0x0
[0000.438] QSPI-ONLY: SkipQspiOnlyFlag = 0
[0000.441] Nano-SD: checking PT table on QSPI ...
[0000.446] NvTbootFailControlDoFailover: No failover; Continuing ...
[0000.452] Loading NvTbootBootloaderDTB
[0000.518] Verifying NvTbootBootloaderDTB in OdmNonSecureSBK mode
[0000.590] Bootloader DTB Load Address: 0x83000000
[0000.594] BoardID = 3448, SKU = 0x0
[0000.598] QSPI-ONLY: SkipQspiOnlyFlag = 0
[0000.601] Nano-SD: checking PT table on QSPI ...
[0000.606] NvTbootFailControlDoFailover: No failover; Continuing ...
[0000.612] Loading NvTbootKernelDTB
[0000.678] Verifying NvTbootKernelDTB in OdmNonSecureSBK mode
[0000.749] Kernel DTB Load Address: 0x83100000
[0000.753] BoardID = 3448, SKU = 0x0
[0000.757] QSPI-ONLY: SkipQspiOnlyFlag = 0
[0000.760] Nano-SD: checking PT table on QSPI ...
[0000.765] NvTbootFailControlDoFailover: No failover; Continuing ...
[0000.773] Loading cboot binary
[0000.888] Verifying EBT in OdmNonSecureSBK mode
[0000.930] Bootloader load address is 0x92c00000, entry address is 0x92c00258
[0000.937] Bootloader downloaded successfully.
[0000.941] BoardID = 3448, SKU = 0x0
[0000.944] QSPI-ONLY: SkipQspiOnlyFlag = 0
[0000.948] Nano-SD: checking PT table on QSPI ...
[0000.953] NvTbootFailControlDoFailover: No failover; Continuing ...
[0000.959] PT: Partition NCT NOT found ! 
[0000.963] Warning: Find Partition via PT Failed
[0000.967] Next binary entry address: 0x92c00258 
[0000.971] BoardId: 3448
[0000.976] Overriding pmu board id with proc board id
[0000.981] Display board id is not available 
[0000.985] BoardID = 3448, SKU = 0x0
[0000.988] QSPI-ONLY: SkipQspiOnlyFlag = 0
[0000.992] Nano-SD: checking PT table on QSPI ...
[0000.996] NvTbootFailControlDoFailover: No failover; Continuing ...
[0001.103] Verifying SC7EntryFw in OdmNonSecureSBK mode
[0001.159] /bpmp deleted
[0001.161] SC7EntryFw header found loaded at 0xff700000
[0001.349] OVR2 PMIC
[0001.351] Bpmp FW successfully loaded
[0001.355] BoardID = 3448, SKU = 0x0
[0001.358] QSPI-ONLY: SkipQspiOnlyFlag = 0
[0001.362] Nano-SD: checking PT table on QSPI ...
[0001.366] NvTbootFailControlDoFailover: No failover; Continuing ...
[0001.373] WB0 init successfully at 0xff780000
[0001.377] Verifying NvTbootWb0 in OdmNonSecureSBK mode
[0001.382] Set NvDecSticky Bits
[0001.386] GSC2 address ff53fffc value c0edbbcc
[0001.392] GSC MC Settings done
[0001.395] BoardID = 3448, SKU = 0x0
[0001.398] QSPI-ONLY: SkipQspiOnlyFlag = 0
[0001.402] Nano-SD: checking PT table on QSPI ...
[0001.407] NvTbootFailControlDoFailover: No failover; Continuing ...
[0001.414] TOS Image length 53680
[0001.417]  Monitor size 53680
[0001.419]  OS size 0
[0001.435] Secure Os AES-CMAC Verification Success!
[0001.439] TOS image cipher info: plaintext
[0001.443] Loading and Validation of Secure OS Successful
[0001.459] SC7 Entry Firmware - 0xff700000, 0x4000
[0001.464] NvTbootPackSdramParams: start. 
[0001.469] NvTbootPackSdramParams: done. 
[0001.473] Tegraboot started after 91064 us
[0001.476] Basic modules init took 936060 us
[0001.481] Sec Bootdevice Read Time = 12 ms, Read Size = 61 KB
[0001.486] Sec Bootdevice Write Time = 0 ms, Write Size = 0 KB
[0001.491] Next stage binary read took 102859 us
[0001.496] Carveout took -132464 us
[0001.499] CPU initialization took 510781 us
[0001.503] Total time taken by TegraBoot 1417236 us

[0001.508] Starting CPU & Halting co-processor 

64NOTICE:  BL31: v1.3(release):b5eeb33
NOTICE:  BL31: Built : 08:56:32, Feb 19 2022
ERROR:   Error initializing runtime service trusty_fast
[0001.630] RamCode = 0
[0001.634] LPDDR4 Training: Read DT: Number of tables = 2
[0001.639] EMC Training (SRC-freq: 204000; DST-freq: 1600000)
[0001.652] EMC Training Successful
[0001.655] 408000 not found in DVFS table
[0001.662] RamCode = 0
[0001.665] DT Write: emc-table@204000 succeeded
[0001.671] DT Write: emc-table@1600000 succeeded
[0001.675] LPDDR4 Training: Write DT: Number of tables = 2
[0001.724] 
[0001.725] Debug Init done
[0001.727] Marked DTB cacheable
[0001.730] Bootloader DTB loaded at 0x83000000
[0001.735] Marked DTB cacheable
[0001.738] Kernel DTB loaded at 0x83100000
[0001.742] DeviceTree Init done
[0001.755] Pinmux applied successfully
[0001.759] gicd_base: 0x50041000
[0001.763] gicc_base: 0x50042000
[0001.766] Interrupts Init done
[0001.770] Using base:0x60005090 & irq:208 for tick-timer
[0001.775] Using base:0x60005098 for delay-timer
[0001.780] platform_init_timer: DONE
[0001.783] Timer(tick) Init done
[0001.787] osc freq = 38400 khz
[0001.791] 
[0001.792] Welcome to L4T Cboot
[0001.795] 
[0001.796] Cboot Version: 00.00.2018.01-t210-a2f2e4b8
[0001.801] calling constructors
[0001.804] initializing heap
[0001.807] initializing threads
[0001.810] initializing timers
[0001.812] creating bootstrap completion thread
[0001.817] top of bootstrap2()
[0001.820] CPU: ARM Cortex A57
[0001.823] CPU: MIDR: 0x411FD071, MPIDR: 0x80000000
[0001.827] initializing platform
[0001.835] Manufacturer: MF = 0xc2, ID MSB = 0x25
[0001.839] ID LSB = 0x36, ID-CFI len = 194 bytes
[0001.844] Macronix QSPI chip present
[0001.847] SPI device register
[0001.850] init boot device
[0001.853] allocating memory for boot device(SPI)
[0001.857] registering boot device
[0001.866] QSPI bdev is already initialized
[0001.870] Enable APE clock
[0001.872] Un-powergate APE partition
[0001.876] of_register: registering tegra_udc to of_hal
[0001.881] of_register: registering inv20628-driver to of_hal
[0001.886] of_register: registering ads1015-driver to of_hal
[0001.892] of_register: registering lp8557-bl-driver to of_hal
[0001.898] of_register: registering bq2419x_charger to of_hal
[0001.903] of_register: registering bq27441_fuel_gauge to of_hal
[0001.915] gpio framework initialized
[0001.918] of_register: registering tca9539_gpio to of_hal
[0001.924] of_register: registering tca9539_gpio to of_hal
[0001.929] of_register: registering i2c_bus_driver to of_hal
[0001.934] of_register: registering i2c_bus_driver to of_hal
[0001.940] of_register: registering i2c_bus_driver to of_hal
[0001.946] pmic framework initialized
[0001.949] of_register: registering max77620_pmic to of_hal
[0001.955] regulator framework initialized
[0001.958] of_register: registering tps65132_bl_driver to of_hal
[0001.964] initializing target
[0001.970] gpio_driver_register: register 'tegra_gpio_driver' driver
[0001.978] board ID = D78, board SKU = 0
[0001.982] Skipping Z3!
[0001.987] fixed regulator driver initialized
[0002.005] initializing OF layer
[0002.008] NCK carveout not present
[0002.011] Skipping dts_overrides
[0002.015] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0002.032] I2C Bus Init done
[0002.034] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0002.045] I2C Bus Init done
[0002.047] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0002.057] I2C Bus Init done
[0002.060] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0002.070] I2C Bus Init done
[0002.073] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0002.083] I2C Bus Init done
[0002.086] of_children_init: Ops found for compatible string maxim,max77620
[0002.096] max77620_init using irq 118
[0002.101] register 'maxim,max77620' pmic
[0002.106] gpio_driver_register: register 'max77620-gpio' driver
[0002.112] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0002.122] I2C Bus Init done
[0002.126] NCK carveout not present
[0002.135] Find /i2c@7000c000's alias i2c0
[0002.139] get eeprom at 1-a0, size 256, type 0
[0002.148] Find /i2c@7000c500's alias i2c2
[0002.152] get eeprom at 3-a0, size 256, type 0
[0002.156] get eeprom at 3-ae, size 256, type 0
[0002.161] pm_ids_update: Updating 1,a0, size 256, type 0
[0002.166] I2C slave not started
[0002.169] I2C write failed
[0002.171] Writing offset failed
[0002.175] eeprom_init: EEPROM read failed
[0002.178] pm_ids_update: eeprom init failed
[0002.183] pm_ids_update: Updating 3,a0, size 256, type 0
[0002.213] pm_ids_update: The pm board id is 3448-0000-402
[0002.219] Adding plugin-manager/ids/3448-0000-402=/i2c@7000c500:module@0x50
[0002.228] pm_ids_update: pm id update successful
[0002.232] pm_ids_update: Updating 3,ae, size 256, type 0
[0002.263] pm_ids_update: The pm board id is 3449-0000-400
[0002.269] Adding plugin-manager/ids/3449-0000-400=/i2c@7000c500:module@0x57
[0002.277] pm_ids_update: pm id update successful
[0002.307] eeprom_get_mac: EEPROM invalid MAC address (all 0xff)
[0002.313] shim_eeprom_update_mac:267: Failed to update 0 MAC address in DTB
[0002.321] eeprom_get_mac: EEPROM invalid MAC address (all 0xff)
[0002.327] shim_eeprom_update_mac:267: Failed to update 1 MAC address in DTB
[0002.335] updating /chosen/nvidia,ethernet-mac node 48:b0:2d:c1:4f:03
[0002.341] Plugin Manager: Parse ODM data 0x000a4000
[0002.354] shim_cmdline_install: /chosen/bootargs: earlycon=uart8250,mmio32,0x7 
[0002.368] Find /i2c@7000c000's alias i2c0
[0002.372] get eeprom at 1-a0, size 256, type 0
[0002.381] Find /i2c@7000c500's alias i2c2
[0002.385] get eeprom at 3-a0, size 256, type 0
[0002.389] get eeprom at 3-ae, size 256, type 0
[0002.393] pm_ids_update: Updating 1,a0, size 256, type 0
[0002.399] I2C slave not started
[0002.402] I2C write failed
[0002.404] Writing offset failed
[0002.407] eeprom_init: EEPROM read failed
[0002.411] pm_ids_update: eeprom init failed
[0002.415] pm_ids_update: Updating 3,a0, size 256, type 0
[0002.446] pm_ids_update: The pm board id is 3448-0000-402
[0002.452] Adding plugin-manager/ids/3448-0000-402=/i2c@7000c500:module@0x50
[0002.459] pm_ids_update: pm id update successful
[0002.463] pm_ids_update: Updating 3,ae, size 256, type 0
[0002.493] pm_ids_update: The pm board id is 3449-0000-400
[0002.500] Adding plugin-manager/ids/3449-0000-400=/i2c@7000c500:module@0x57
[0002.507] pm_ids_update: pm id update successful
[0002.537] Add serial number:1425022035833 as DT property
[0002.545] Applying platform configs
[0002.551] platform-init is not present. Skipping
[0002.556] calling apps_init()
[0002.561] Couldn't find GPT header
[0002.566] Proceeding to Cold Boot
[0002.569] starting app android_boot_app
[0002.573] Device state: unlocked
[0002.576] display console init
[0002.584] could not find regulator
[0002.588] hdmi cable connected
[0002.603] edid read success
[0002.618] edid read success
[0002.621] widtDT entry for leds-pwm not found
h[0002.629]  = 640, height = 480, frequency = 25174825
[0002.634] width = 640, height = 480, frequency = 25174825
[0002.639] width = 2560, height = 1080, frequency = 181250000
[0002.645] width = 1920, height = 1080, frequency = 148500000
[0002.650] width = 2560, height = 1080, frequency = 228250000
[0002.656] width = 1920, height = 1080, frequency = 148351648
[0002.662] width = 1280, height = 720, frequency = 74175824
[0002.667] width = 720, height = 480, frequency = 26973026
[0002.672] width = 640, height = 480, frequency = 25174825
[0002.678] width = 1920, height = 1080, frequency = 148351648
[0002.683] width = 1280, height = 720, frequency = 74175824
[0002.689] width = 720, height = 576, frequency = 26973026
[0002.694] width = 3840, height = 2160, frequency = 296703296
[0002.700] width = 3840, height = 2160, frequency = 296703296
[0002.706] width = 3840, height = 2160, frequency = 296703296
[0002.711] width = 3840, height = 2160, frequency = 296703296
[0002.717] Best mode Width = 1920, Height = 1080, freq = 148351648
[0002.725] tmds-config node not found
[0002.729] pmc_set_io_pad_voltage: Error -2 retrieving platform-io-pad-voltageps
[0002.743] setting 'vdd-1v8' regulator to 1800000 micro volts
[0002.751] could not find regulator
[0002.754] could not find regulator
[0002.758] could not find regulator
[0002.786] using default cmu settings
[0002.790] dc_hdmi_enable, starting HDMI initialisation
[0002.796] dc_hdmi_enable, HDMI initialisation complete
[0002.801] list and configure display window
[0002.810] display console init completed
[0002.821] subnode volume_up is not found !
[0002.824] subnode back is not found !
[0002.828] subnode volume_down is not found !
[0002.832] subnode menu is not found !
[0002.836] Gpio keyboard init success
[0002.916] found decompressor handler: lz4-legacy
[0002.931] decompressing blob (type 1)...
[0003.001] load_bmp_blob: panelresolution=1080 type=3
[0003.006] -------> se_aes_verify_sbk_clear: 747
[0003.010] se_aes_verify_sbk_clear: Error
[0003.014] SE operation failed
[0003.017] bl_battery_charging: connected to external power supply
[0003.029] device_query_partition_size: failed to open partition spiflash0:MSC !
[0003.036] MSC Partition not found
[0003.042] device_query_partition_size: failed to open partition spiflash0:USP !
[0003.050] USP partition read failed!
[0003.053] blob_init: blob-partition USP header read failed
[0003.059] android_boot Unable to update recovery partition
[0003.064] kfs_getpartname: name = LNX
[0003.068] Loading kernel from LNX
[0003.077] Found 19 BFS partitions in "spiflash0"
[0003.399] load kernel from storage
[0003.404] decompressor handler not found
[0003.671] Successfully loaded kernel and ramdisk images
[0003.676] board ID = D78, board SKU = 0
[0003.680] sdmmc node status = okay
[0003.684] sdcard instance = 0
[0003.687] sdmmc cd-inverted
[0003.689] sdcard gpio handle 0x5b
[0003.692] sdcard gpio pin 0xc9
[0003.695] sdcard gpio flags 0x0
[0003.698] vmmc-supply 0x9d
[0003.701] cd_gpio_pin = 201
[0003.704] pin_state = 0
[0003.706] Found sdcard
[0003.708] SD-card IS present ...
[0003.711] load_and_boot_kernel: SD card detected OK
[0003.717] load_bmp_blob: panelresolution=1080 type=3
[0004.211] display bmp image done
[0004.214] NCK carveout not present
[0004.218] Skipping dts_overrides
[0004.221] NCK carveout not present
[0004.230] Find /i2c@7000c000's alias i2c0
[0004.234] get eeprom at 1-a0, size 256, type 0
[0004.243] Find /i2c@7000c500's alias i2c2
[0004.247] get eeprom at 3-a0, size 256, type 0
[0004.251] get eeprom at 3-ae, size 256, type 0
[0004.256] pm_ids_update: Updating 1,a0, size 256, type 0
[0004.261] I2C slave not started
[0004.264] I2C write failed
[0004.267] Writing offset failed
[0004.270] eeprom_init: EEPROM read failed
[0004.274] pm_ids_update: eeprom init failed
[0004.278] pm_ids_update: Updating 3,a0, size 256, type 0
[0004.308] pm_ids_update: The pm board id is 3448-0000-402
[0004.315] Adding plugin-manager/ids/3448-0000-402=/i2c@7000c500:module@0x50
[0004.323] pm_ids_update: pm id update successful
[0004.328] pm_ids_update: Updating 3,ae, size 256, type 0
[0004.358] pm_ids_update: The pm board id is 3449-0000-400
[0004.364] Adding plugin-manager/ids/3449-0000-400=/i2c@7000c500:module@0x57
[0004.372] pm_ids_update: pm id update successful
[0004.402] eeprom_get_mac: EEPROM invalid MAC address (all 0xff)
[0004.408] shim_eeprom_update_mac:267: Failed to update 0 MAC address in DTB
[0004.416] eeprom_get_mac: EEPROM invalid MAC address (all 0xff)
[0004.422] shim_eeprom_update_mac:267: Failed to update 1 MAC address in DTB
[0004.430] updating /chosen/nvidia,ethernet-mac node 48:b0:2d:c1:4f:03
[0004.436] Plugin Manager: Parse ODM data 0x000a4000
[0004.449] shim_cmdline_install: /chosen/bootargs: earlycon=uart8250,mmio32,0x7 
[0004.457] Add serial number:1425022035833 as DT property
[0004.466] "bpmp" doesn't exist, creating 
[0004.472] Updated bpmp info to DTB
[0004.476] Updated initrd info to DTB
[0004.480] "proc-board" doesn't exist, creating 
[0004.486] Updated board info to DTB
[0004.489] "pmu-board" doesn't exist, creating 
[0004.495] Updated board info to DTB
[0004.499] "display-board" doesn't exist, creating 
[0004.505] Updated board info to DTB
[0004.508] "reset" doesn't exist, creating 
[0004.513] Updated reset info to DTB
[0004.516] Cmdline: tegraid=21.1.2.0.0 ddr_die=4096M@2048M section=512M memtype 
[0004.555] DTB cmdline: earlycon=uart8250,mmio32,0x70006000 
[0004.561] boot image cmdline: root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4  
[0004.574] Updated bootarg info to DTB
[0004.578] Adding uuid 00000001642d07c90000000019060500 to DT
[0004.583] Adding eks info 0 to DT
[0004.589] WARNING: Failed to pass NS DRAM ranges to TOS, err: -7
[0004.595] Updated memory info to DTB
[0004.603] set vdd_core voltage to 1125 mv
[0004.606] setting 'vdd-core' regulator to 1125000 micro volts
[0004.612] Found secure-pmc; disable BPMP


U-Boot 2020.04-g4335beb (Feb 19 2022 - 08:56:35 -0800)

SoC: tegra210
Model: NVIDIA Jetson Nano Developer Kit
Board: NVIDIA P3450-0000
DRAM:  4 GiB
MMC:   sdhci@700b0000: 1, sdhci@700b0600: 0
Loading Environment from SPI Flash... SF: Detected mx25u3235f with page size 25B
*** Warning - bad CRC, using default environment

In:    serial
Out:   serial
Err:   serial
Net:   No ethernet found.
Hit any key to stop autoboot:  0 
switch to partitions #0, OK
mmc1 is current device
Scanning mmc 1:1...
Found /boot/extlinux/extlinux.conf
Retrieving file: /boot/extlinux/extlinux.conf
746 bytes read in 21 ms (34.2 KiB/s)
1:      primary kernel
Retrieving file: /boot/initrd
7159624 bytes read in 337 ms (20.3 MiB/s)
Retrieving file: /boot/Image
31957000 bytes read in 1405 ms (21.7 MiB/s)
append: tegraid=21.1.2.0.0 ddr_die=4096M@2048M section=512M memtype=0 vpr_resiz 
## Flattened Device Tree blob at 83100000
   Booting using the fdt blob at 0x83100000
ERROR: reserving fdt memory region failed (addr=0 size=0)
ERROR: reserving fdt memory region failed (addr=0 size=0)
   Using Device Tree in place at 0000000083100000, end 000000008317ced3
copying carveout for /host1x@50000000/dc@54200000...
copying carveout for /host1x@50000000/dc@54240000...

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.253-tegra (root@haoun-900X3L) (gcc version 7.33
[    0.000000] Boot CPU: AArch64 Processor [411fd071]
[    0.000000] OF: fdt:memory scan node memory@80000000, reg size 32,
[    0.000000] OF: fdt: - 80000000 ,  7ee00000
[    0.000000] OF: fdt: - 100000000 ,  7f200000
[    0.000000] Found tegra_fbmem: 00800000@92ca9000
[    0.000000] earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    1.171226] tegradc tegradc.1: dpd enable lookup fail:-19
[    1.221515] imx219 7-0010: imx219_board_setup: error during i2c read probe ()
[    1.229097] imx219 7-0010: board setup failed
[    1.257329] imx219 8-0010: imx219_board_setup: error during i2c read probe ()
[    1.264874] imx219 8-0010: board setup failed
[    2.329424] cgroup: cgroup2: unknown option "nsdelegate"
[    3.921656] using random self ethernet address
[    3.929409] using random host ethernet address
[    4.151632] random: crng init done
[    4.155064] random: 7 urandom warning(s) missed due to ratelimiting
[    5.233034] using random self ethernet address
[    5.233037] using random host ethernet address
[    7.872345] Bridge firewalling registered

Ubuntu 18.04.6 LTS ati-desktop ttyS0

ati-desktop login: 
CTRL-A Z for help | 115200 8N1 | NOR | Minicom 2.7.1 | VT102 | Offline | tyTHS

I have two questions:
First, I followed the official guide to disable UART. But how can I check this log?
(Delete CMDLINE_ADD=“console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0” on p3448-0000.conf.common)
Secondly, I set the BootDelay to 0.
(p3541-0000_defconfig CONFIG_BOOTDELAY=0 , include/auto.conf CONFIG_BOOTDELAY=0)
but in the log above,
The log ‘Hit any key to stop autoboot: 0’ went to the next line only after counting down 2, 1, 0 over two seconds.
Why isn’t the BootDelay being deactivated??

Also, I’d appreciate it if you could let me know if there’s a way to proceed with Async Probe, or any steps that could be skipped.

You can find the actual arguments passed to the kernel via:
cat /proc/cmdline

That line is made up of a combination of device tree plus other boot arguments in extlinux.conf. You can find the part from device tree via:
cat /proc/device-tree/chosen/bootargs
(although sometimes that is edited slightly via boot stages prior to passing on to the kernel)

In extlinux.conf you will see something like this in the APPEND key/value pair where it inherits the chosen->bootargs through inheritance of an environment variable:
APPEND ${cbootargs} root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4

In the above “${cbootargs}” is passed via bootloader stages after reading “chosen->bootargs”.

Note that I’m not sure if delays actually work as expected in boot stages. The time you have (to interrupt boot) is rather short and I’m not sure timeout from extlinux.conf is actually honored.

Yes, as linuxdev said, you could check that through cat /proc/cmdline

Have you confirmed that p3541-0000_defconfig is the kernel config you are using?

I checked the contents using the “cat /proc/cmdline” command.

tegraid=21.1.2.0.0 ddr_die=2048M@2048M section=256M memtype=0 vpr_resize usb_port_owner_info=0 lane_owner_info=0 emc_max_dvfs=0 touch_id=0@63 video=tegrafb no_console_suspend=1 console=ttyS0,115200n8 debug_uartport=lsport,4 earlyprintk=uart8250-32bit,0x70006000

It appears that jetson have not successfully disabled the Debug Console based on the presence of “console=ttyS0,115200n8 debug_uartport=lsport” in the output.

The official documentation states that I should remove the content of
CMDLINE_ADD=“console=ttyS0~~” in the p3448-0000.conf file, so I commented out that line.
Before the GUI and login session appear when booting Linux, the text that used to be displayed
on the black screen disappears, and the cursor blinks before the boot process.
I thought this means that Debug Console turned off.
However, when I directly connected the wires to TX and RX to check, the Debug Console is still being output.
Are there any other tasks I need to do apart from modifying the p3448-0000.conf file?

Also, if i set CONFIG_BOOTDELAY = 120 in p3541-0000_defconfig, it means that the actual kernel waits for 2 minutes at the NVIDIA logo, so it seems that you are using the correct kernel. However, even if i set this value to 0, when i check it in the Serial Console, it still shows “Hit any key to stop autoboot: 2, 1, 0” and there is a 2-second delay.

Do you mean that you want to disable the whole serial console log?
If yes, please provide the flash log for further check.

Do you meant that it is valid if you set boot delay to 120s and boot up would wait for 2mins before entering kernel?

Here is Flash log

> haoun@haoun-900X3L:~/Linux_for_Tegra$ sudo ./flash.sh jetson-nano-qspi-sd mmcblk0p1
> ###############################################################################
> # L4T BSP Information:
> # R32 , REVISION: 7.1
> ###############################################################################
> # Target Board Information:
> # Name: jetson-nano-qspi-sd, Board Family: t210ref, SoC: Tegra 210, 
> # OpMode: production, Boot Authentication: , 
> # Disk encryption: disabled ,
> ###############################################################################
> ./tegraflash.py --chip 0x21 --applet "/home/haoun/Linux_for_Tegra/bootloader/nvtboot_recovery.bin" --skipuid --cmd "dump eeprom boardinfo cvm.bin" 
> Welcome to Tegra Flash
> version 1.0.0
> Type ? or help for help and q or quit to exit
> Use ! to execute system commands
>  
> [   0.0019 ] Generating RCM messages
> [   0.0045 ] tegrarcm --listrcm rcm_list.xml --chip 0x21 0 --download rcm /home/haoun/Linux_for_Tegra/bootloader/nvtboot_recovery.bin 0 0
> [   0.0056 ] RCM 0 is saved as rcm_0.rcm
> [   0.0075 ] RCM 1 is saved as rcm_1.rcm
> [   0.0075 ] List of rcm files are saved in rcm_list.xml
> [   0.0075 ] 
> [   0.0076 ] Signing RCM messages
> [   0.0100 ] tegrasign --key None --list rcm_list.xml --pubkeyhash pub_key.key
> [   0.0110 ] Assuming zero filled SBK key
> [   0.0202 ] 
> [   0.0203 ] Copying signature to RCM mesages
> [   0.0230 ] tegrarcm --chip 0x21 0 --updatesig rcm_list_signed.xml
> [   0.0247 ] 
> [   0.0247 ] Boot Rom communication
> [   0.0274 ] tegrarcm --chip 0x21 0 --rcm rcm_list_signed.xml --skipuid
> [   0.0288 ] RCM version 0X210001
> [   0.1320 ] Boot Rom communication completed
> [   1.1390 ] 
> [   1.1396 ] dump EEPROM info
> [   1.1455 ] tegrarcm --oem platformdetails eeprom /home/haoun/Linux_for_Tegra/bootloader/cvm.bin
> [   1.1469 ] Applet version 00.01.0000
> [   1.2222 ] Saved platform info in /home/haoun/Linux_for_Tegra/bootloader/cvm.bin
> [   1.2982 ] 
> [   1.3056 ] tegrarcm --reboot recovery
> [   1.3104 ] Applet version 00.01.0000
> [   1.3431 ] 
> Board ID(3448) version(400) 
> copying bctfile(/home/haoun/Linux_for_Tegra/bootloader/t210ref/BCT/P3448_A00_lpddr4_204Mhz_P987.cfg)... done.
> copying bootloader(/home/haoun/Linux_for_Tegra/bootloader/t210ref/cboot.bin)... done.
> copying initrd(/home/haoun/Linux_for_Tegra/bootloader/l4t_initrd.img)... done.
> Making Boot image... done.
> Existing sosfile(/home/haoun/Linux_for_Tegra/bootloader/nvtboot_recovery.bin) reused.
> copying tegraboot(/home/haoun/Linux_for_Tegra/bootloader/t210ref/nvtboot.bin)... done.
> copying cpu_bootloader(/home/haoun/Linux_for_Tegra/bootloader/t210ref/cboot.bin)... done.
> copying bpffile(/home/haoun/Linux_for_Tegra/bootloader/t210ref/sc7entry-firmware.bin)... done.
> copying wb0boot(/home/haoun/Linux_for_Tegra/bootloader/t210ref/warmboot.bin)... done.
> Existing tosfile(/home/haoun/Linux_for_Tegra/bootloader/tos-mon-only.img) reused.
> Existing eksfile(/home/haoun/Linux_for_Tegra/bootloader/eks.img) reused.
> copying dtbfile(/home/haoun/Linux_for_Tegra/kernel/dtb/tegra210-p3448-0003-p3542-0000.dtb)... done.
> Copying nv_boot_control.conf to rootfs
> 	populating kernel to rootfs... done.
> 	populating initrd to rootfs... done.
> 	populating kernel_tegra210-p3448-0003-p3542-0000.dtb to rootfs... done.
> Making system.img... 
> 	populating rootfs from /home/haoun/Linux_for_Tegra/rootfs ... 	populating /boot/extlinux/extlinux.conf ... done.
> 	Sync'ing system.img ... done.
> 	Converting RAW image to Sparse image... done.
> system.img built successfully. 
> Existing tbcfile(/home/haoun/Linux_for_Tegra/bootloader/nvtboot_cpu.bin) reused.
> copying tbcdtbfile(/home/haoun/Linux_for_Tegra/kernel/dtb/tegra210-p3448-0003-p3542-0000.dtb)... done.
> copying cfgfile(/home/haoun/Linux_for_Tegra/bootloader/t210ref/cfg/flash_l4t_t210_max-spi_sd_p3448.xml) to flash.xml... done.
> copying flasher(/home/haoun/Linux_for_Tegra/bootloader/t210ref/cboot.bin)... done.
> Existing flashapp(/home/haoun/Linux_for_Tegra/bootloader/tegraflash.py) reused.
> ./tegraflash.py --bl cboot.bin --bct  P3448_A00_lpddr4_204Mhz_P987.cfg --odmdata 0xa4000 --bldtb kernel_tegra210-p3448-0003-p3542-0000.dtb --applet nvtboot_recovery.bin  --cmd "flash; reboot"  --cfg flash.xml --chip 0x21    --bins "EBT cboot.bin; DTB tegra210-p3448-0003-p3542-0000.dtb" 
> saving flash command in /home/haoun/Linux_for_Tegra/bootloader/flashcmd.txt
> saving Windows flash command to /home/haoun/Linux_for_Tegra/bootloader/flash_win.bat
> assign_value: crc-flash.xml.bin 1 65520 1
> printf '\x1' | dd of=crc-flash.xml.bin bs=1 seek=65520 count=1 conv=notrunc
> 1+0 레코드 들어옴
> 1+0 레코드 나감
> 1 byte copied, 0.00022862 s, 4.4 kB/s
> assign_value: crc-flash.xml.bin 0 65521 1
> printf '\x0' | dd of=crc-flash.xml.bin bs=1 seek=65521 count=1 conv=notrunc
> 1+0 레코드 들어옴
> 1+0 레코드 나감
> 1 byte copied, 0.000205742 s, 4.9 kB/s
> assign_string: crc-flash.xml.bin PTHD 65528 4
> echo PTHD | dd of=crc-flash.xml.bin bs=1 seek=65528 count=4 conv=notrunc
> 4+0 레코드 들어옴
> 4+0 레코드 나감
> 4 bytes copied, 0.000338225 s, 11.8 kB/s
> *** Flashing target device started. ***
> Welcome to Tegra Flash
> version 1.0.0
> Type ? or help for help and q or quit to exit
> Use ! to execute system commands
>  
> [   0.0044 ] tegrasign --getmode mode.txt --key None
> [   0.0057 ] Assuming zero filled SBK key
> [   0.0093 ] 
> [   0.0095 ] Generating RCM messages
> [   0.0135 ] tegrarcm --listrcm rcm_list.xml --chip 0x21 0 --download rcm nvtboot_recovery.bin 0 0
> [   0.0152 ] RCM 0 is saved as rcm_0.rcm
> [   0.0190 ] RCM 1 is saved as rcm_1.rcm
> [   0.0190 ] List of rcm files are saved in rcm_list.xml
> [   0.0190 ] 
> [   0.0190 ] Signing RCM messages
> [   0.0219 ] tegrasign --key None --list rcm_list.xml --pubkeyhash pub_key.key
> [   0.0232 ] Assuming zero filled SBK key
> [   0.0300 ] 
> [   0.0301 ] Copying signature to RCM mesages
> [   0.0327 ] tegrarcm --chip 0x21 0 --updatesig rcm_list_signed.xml
> [   0.0346 ] 
> [   0.0347 ] Parsing partition layout
> [   0.0373 ] tegraparser --pt flash.xml.tmp
> [   0.0388 ] 
> [   0.0390 ] Using default ramcode: 0
> [   0.0391 ] Disable BPMP dtb trim, using default dtb
> [   0.0391 ] 
> [   0.0391 ] Creating list of images to be signed
> [   0.0415 ] tegrahost --chip 0x21 0 --partitionlayout flash.xml.bin --list images_list.xml
> [   0.0593 ] 
> [   0.0594 ] Generating signatures
> [   0.0648 ] tegrasign --key None --list images_list.xml --pubkeyhash pub_key.key
> [   0.0680 ] Assuming zero filled SBK key
> [   0.1455 ] 
> [   0.1456 ] Generating br-bct
> [   0.1501 ] tegrabct --bct P3448_A00_lpddr4_204Mhz_P987.cfg --chip 0x21 0
> [   0.1603 ] 
> [   0.1604 ] Updating boot device parameters
> [   0.1629 ] tegrabct --bct P3448_A00_lpddr4_204Mhz_P987.bct --chip 0x21 0 --updatedevparam flash.xml.bin
> [   0.1642 ] Warning: No sdram params
> [   0.1646 ] 
> [   0.1646 ] Updating bl info
> [   0.1671 ] tegrabct --bct P3448_A00_lpddr4_204Mhz_P987.bct --chip 0x21 0 --updateblinfo flash.xml.bin --updatesig images_list_signed.xml
> [   0.1690 ] 
> [   0.1691 ] Updating secondary storage information into bct
> [   0.1716 ] tegraparser --pt flash.xml.bin --chip 0x21 0 --updatecustinfo P3448_A00_lpddr4_204Mhz_P987.bct
> [   0.1731 ] 
> [   0.1732 ] Updating Odmdata
> [   0.1756 ] tegrabct --bct P3448_A00_lpddr4_204Mhz_P987.bct --chip 0x21 0 --updatefields Odmdata =0xa4000
> [   0.1774 ] Warning: No sdram params
> [   0.1778 ] 
> [   0.1778 ] Get Signed section of bct
> [   0.1807 ] tegrabct --bct P3448_A00_lpddr4_204Mhz_P987.bct --chip 0x21 0 --listbct bct_list.xml
> [   0.1823 ] 
> [   0.1823 ] Signing BCT
> [   0.1871 ] tegrasign --key None --list bct_list.xml --pubkeyhash pub_key.key
> [   0.1883 ] Assuming zero filled SBK key
> [   0.1891 ] 
> [   0.1891 ] Updating BCT with signature
> [   0.1917 ] tegrabct --bct P3448_A00_lpddr4_204Mhz_P987.bct --chip 0x21 0 --updatesig bct_list_signed.xml
> [   0.1932 ] 
> [   0.1933 ] Copying signatures
> [   0.1960 ] tegrahost --chip 0x21 0 --partitionlayout flash.xml.bin --updatesig images_list_signed.xml
> [   0.2029 ] 
> [   0.2029 ] Updating BFS information on BCT
> [   0.2045 ] tegrabct --bct P3448_A00_lpddr4_204Mhz_P987.bct --chip 0x21 0 --updatebfsinfo flash.xml.bin
> [   0.2062 ] 
> [   0.2062 ] Boot Rom communication
> [   0.2086 ] tegrarcm --chip 0x21 0 --rcm rcm_list_signed.xml
> [   0.2098 ] BR_CID: 0x321010016450f7090400000019050280
> [   0.2402 ] RCM version 0X210001
> [   0.2832 ] Boot Rom communication completed
> [   1.2890 ] 
> [   1.2890 ] Sending BCTs
> [   1.2918 ] tegrarcm --download bct P3448_A00_lpddr4_204Mhz_P987.bct
> [   1.2932 ] Applet version 00.01.0000
> [   1.3708 ] Sending bct
> [   1.3710 ] [................................................] 100%
> [   1.5883 ] 
> [   1.5909 ] tegrahost --chip 0x21 --align cboot.bin
> [   1.5921 ] 
> [   1.5946 ] tegrahost --magicid EBT --appendsigheader cboot.bin cboot.bin_blheader
> [   1.5976 ] 
> [   1.6005 ] tegrasign --key None --list cboot.bin_list.xml
> [   1.6020 ] Assuming zero filled SBK key
> [   1.6170 ] 
> [   1.6199 ] tegrahost --updatesigheader cboot.bin_blheader.encrypt cboot.bin_blheader.hash zerosbk
> [   1.6221 ] 
> [   1.6256 ] tegrahost --chip 0x21 --align tegra210-p3448-0003-p3542-0000.dtb
> [   1.6271 ] 
> [   1.6297 ] tegrahost --magicid DTB --appendsigheader tegra210-p3448-0003-p3542-0000.dtb tegra210-p3448-0003-p3542-0000.dtb_blheader
> [   1.6320 ] 
> [   1.6351 ] tegrasign --key None --list tegra210-p3448-0003-p3542-0000.dtb_list.xml
> [   1.6362 ] Assuming zero filled SBK key
> [   1.6435 ] 
> [   1.6465 ] tegrahost --updatesigheader tegra210-p3448-0003-p3542-0000.dtb_blheader.encrypt tegra210-p3448-0003-p3542-0000.dtb_blheader.hash zerosbk
> [   1.6487 ] 
> [   1.6492 ] Sending bootloader and pre-requisite binaries
> [   1.6517 ] tegrarcm --download ebt cboot.bin.encrypt 0 0 --download rp1 tegra210-p3448-0003-p3542-0000.dtb.encrypt 0
> [   1.6528 ] Applet version 00.01.0000
> [   1.7307 ] Sending ebt
> [   1.7310 ] [................................................] 100%
> [   1.8333 ] Sending rp1
> [   1.8376 ] [................................................] 100%
> [   1.8908 ] 
> [   1.8938 ] tegrarcm --boot recovery
> [   1.8951 ] Applet version 00.01.0000
> [   1.9235 ] 
> [   1.9235 ] Retrieving storage infomation
> [   1.9255 ] tegrarcm --oem platformdetails storage storage_info.bin
> [   1.9273 ] Applet is not running on device. Continue with Bootloader
> [   2.8020 ] 
> [   2.8044 ] tegradevflash --oem platformdetails storage storage_info.bin
> [   2.8056 ] Cboot version 00.01.0000
> [   2.8344 ] Saved platform info in storage_info.bin
> [   2.8355 ] 
> [   2.8356 ] Flashing the device
> [   2.8382 ] tegradevflash --pt flash.xml.bin --storageinfo storage_info.bin --create
> [   2.8395 ] Cboot version 00.01.0000
> [   2.8850 ] Writing partition GPT with gpt.bin
> [   2.8883 ] [................................................] 100%
> [   2.8936 ] Writing partition PT with crc-flash.xml.bin
> [  19.2373 ] [................................................] 100%
> [  19.2439 ] Writing partition NVC with nvtboot.bin.encrypt
> [  23.1551 ] [................................................] 100%
> [  23.1680 ] Writing partition NVC_R with nvtboot.bin.encrypt
> [  33.1823 ] [................................................] 100%
> [  33.2017 ] Writing partition TBC with nvtboot_cpu.bin.encrypt
> [  43.2242 ] [................................................] 100%
> [  43.2357 ] Writing partition RP1 with kernel_tegra210-p3448-0003-p3542-0000.dtb.encrypt
> [  47.4043 ] [................................................] 100%
> [  47.4169 ] Writing partition EBT with cboot.bin.encrypt
> [  61.3472 ] [................................................] 100%
> [  61.3782 ] Writing partition WB0 with warmboot.bin.encrypt
> [  90.4342 ] [................................................] 100%
> [  90.4430 ] Writing partition BPF with sc7entry-firmware.bin.encrypt
> [  90.7073 ] [................................................] 100%
> [  90.7159 ] Writing partition TOS with tos-mon-only.img.encrypt
> [  90.9808 ] [................................................] 100%
> [  90.9921 ] Writing partition DTB with kernel_tegra210-p3448-0003-p3542-0000.dtb.encrypt
> [  94.4300 ] [................................................] 100%
> [  94.4437 ] Writing partition LNX with boot.img.encrypt
> [ 108.3732 ] [................................................] 100%
> [ 108.4079 ] Warning: EKS partition magic header mismatch!
> [ 146.0067 ] Writing partition EKS with eks.img
> [ 146.0084 ] [................................................] 100%
> [ 146.0140 ] Writing partition BMP with bmp.blob
> [ 146.2817 ] [................................................] 100%
> [ 146.3028 ] Writing partition RP4 with rp4.blob
> [ 155.3502 ] [................................................] 100%
> [ 155.3684 ] Writing partition VER_b with qspi_bootblob_ver.txt
> [ 163.1973 ] [................................................] 100%
> [ 163.2072 ] Writing partition VER with qspi_bootblob_ver.txt
> [ 163.4720 ] [................................................] 100%
> [ 163.4817 ] Writing partition APP with system.img
> [ 163.7448 ] [................................................] 100%
> [ 711.1500 ] 
> [ 711.1575 ] tegradevflash --write BCT P3448_A00_lpddr4_204Mhz_P987.bct
> [ 711.1627 ] Cboot version 00.01.0000
> [ 711.1976 ] Writing partition BCT with P3448_A00_lpddr4_204Mhz_P987.bct
> [ 711.2013 ] [................................................] 100%
> [ 717.8552 ] 
> [ 717.8555 ] Flashing completed
> 
> [ 717.8558 ] Coldbooting the device
> [ 717.8627 ] tegradevflash --reboot coldboot
> [ 717.8678 ] Cboot version 00.01.0000
> [ 717.8968 ] 
> *** The target t210ref has been flashed successfully. ***
> Reset the board to boot from internal eMMC.

yes, if i set CONFIG_BOOTDELAY = 120, os wait 2mins with NVIDIA Boot logo.

Could you modify the following line in p3448-0000.conf.common and re-flash the board?

-   ODMDATA=0xa4000;
+   ODMDATA=0x24000;

and also add quiet in CMDLINE_ADD.

Please provide the serial console log after applying above changes.

Here is serial-console that edit ODMDATA =0x24000 and CMDLINE_ADD = “quiet”.

Welcome to minicom 2.7.1

OPTIONS: I18n 
Compiled on Aug 13 2017, 15:25:34.
Port /dev/ttyTHS1, 17:28:02

Press CTRL-A Z for help on special keys

[0000.125] [L4T TegraBoot] (version 00.00.2018.01-l4t-8728f3cb)
[0000.130] Processing in cold boot mode Bootloader 2
[0000.135] A02 Bootrom Patch rev = 1023
[0000.138] Power-up reason: pmc por
[0000.141] No Battery Present
[0000.144] pmic max77620 reset reason
[0000.147] pmic max77620 NVERC : 0x40
[0000.151] RamCode = 1
[0000.153] Platform has DDR4 type RAM
[0000.156] max77620 disabling SD1 Remote Sense
[0000.161] Setting DDR voltage to 1125mv
[0000.165] Serial Number of Pmic Max77663: 0x20ac1
[0000.172] Entering ramdump check
[0000.175] Get RamDumpCarveOut = 0x0
[0000.178] RamDumpCarveOut=0x0,  RamDumperFlag=0xe59ff3f8                       
[0000.184] Last reboot was clean, booting normally!                             
[0000.188] Sdram initialization is successful                                   
[0000.192] SecureOs Carveout Base=0x00000000ff800000 Size=0x00800000            
[0000.198] Lp0 Carveout Base=0x00000000ff800000 Size=0x00000000                 
[0000.204] BpmpFw Carveout Base=0x00000000ff800000 Size=0x00000000              
[0000.210] GSC1 Carveout Base=0x00000000ff800000 Size=0x00000000                
[0000.216] Resize the SecureOs Carveout to 0x00100000                           
[0000.221] GSC2 Carveout Base=0x00000000ff900000 Size=0x00100000                
[0000.226] GSC4 Carveout Base=0x00000000ff800000 Size=0x00000000                
[0000.232] GSC5 Carveout Base=0x00000000ff800000 Size=0x00000000                
[0000.238] GSC3 Carveout Base=0x00000000bf800000 Size=0x00200000                
[0000.244] RamDump Carveout Base=0x0000000000000000 Size=0x00000000             
[0000.250] Platform-DebugCarveout: 0                                            
[0000.253] Nck Carveout Base=0x00000000ff800000 Size=0x00000000                 
[0000.259] Non secure mode, and RB not enabled.                                 
[0000.263] BoardID = 3448, SKU = 0x3                                            
[0000.266] QSPI-ONLY: SkipQspiOnlyFlag = 0                                      
[0000.270] Nano-SD: checking PT table on QSPI ...                               
[0000.274] Initialize FailControl                                               
[0000.277] Read PT from (2:0)                                                   
[0000.308] PT crc32 and magic check passed.                                     
[0000.312] Using BFS PT to query partitions                                     
[0000.317] Loading Tboot-CPU binary                                             
[0000.346] Verifying TBC in OdmNonSecureSBK mode                                
[0000.356] Bootloader load address is 0xa0000000, entry address is 0xa0000258   
[0000.363] Bootloader downloaded successfully.                                  
[0000.367] Downloaded Tboot-CPU binary to 0xa0000258                            
[0000.372] MAX77620_GPIO5 configured                                            
[0000.375] CPU power rail is up                                                 
[0000.378] CPU clock enabled                                                    
[0000.382] Performing RAM repair                                                
[0000.385] Updating A64 Warmreset Address to 0xa00002e9                         
[0000.390] BoardID = 3448, SKU = 0x3                                            
[0000.393] QSPI-ONLY: SkipQspiOnlyFlag = 0                                      
[0000.397] Nano-SD: checking PT table on QSPI ...                               
[0000.401] NvTbootFailControlDoFailover: No failover; Continuing ...            
[0000.407] Loading NvTbootBootloaderDTB                                         
[0000.474] Verifying NvTbootBootloaderDTB in OdmNonSecureSBK mode               
[0000.543] Bootloader DTB Load Address: 0x83000000                              
[0000.548] BoardID = 3448, SKU = 0x3                                            
[0000.551] QSPI-ONLY: SkipQspiOnlyFlag = 0                                      
[0000.555] Nano-SD: checking PT table on QSPI ...                               
[0000.559] NvTbootFailControlDoFailover: No failover; Continuing ...            
[0000.565] Loading NvTbootKernelDTB                                             
[0000.631] Verifying NvTbootKernelDTB in OdmNonSecureSBK mode                   
[0000.700] Kernel DTB Load Address: 0x83100000                                  
[0000.704] BoardID = 3448, SKU = 0x3                                            
[0000.708] QSPI-ONLY: SkipQspiOnlyFlag = 0                                      
[0000.711] Nano-SD: checking PT table on QSPI ...                               
[0000.716] NvTbootFailControlDoFailover: No failover; Continuing ...            
[0000.723] Loading cboot binary                                                 
[0000.839] Verifying EBT in OdmNonSecureSBK mode                                
[0000.881] Bootloader load address is 0x92c00000, entry address is 0x92c00258   
[0000.888] Bootloader downloaded successfully.                                  
[0000.892] BoardID = 3448, SKU = 0x3                                            
[0000.895] QSPI-ONLY: SkipQspiOnlyFlag = 0                                      
[0000.899] Nano-SD: checking PT table on QSPI ...                               
[0000.904] NvTbootFailControlDoFailover: No failover; Continuing ...            
[0000.910] PT: Partition NCT NOT found !                                        
[0000.913] Warning: Find Partition via PT Failed                                
[0000.918] Next binary entry address: 0x92c00258                                
[0000.922] BoardId: 3448                                                        
[0000.927] Overriding pmu board id with proc board id                           
[0000.932] Display board id is not available                                    
[0000.936] No Bpmp FW loaded                                                    
[0000.938] Not loading WB0 as no bpmp/sc7entry fw                               
[0000.943] Set NvDecSticky Bits                                                 
[0000.946] GSC2 address ff93fffc value c0edbbcc                                 
[0000.953] GSC MC Settings done                                                 
[0000.955] BoardID = 3448, SKU = 0x3                                            
[0000.959] QSPI-ONLY: SkipQspiOnlyFlag = 0                                      
[0000.963] Nano-SD: checking PT table on QSPI ...                               
[0000.967] NvTbootFailControlDoFailover: No failover; Continuing ...            
[0000.974] TOS Image length 53680                                               
[0000.977]  Monitor size 53680                                                  
[0000.980]  OS size 0                                                           
[0000.995] Secure Os AES-CMAC Verification Success!                             
[0001.000] TOS image cipher info: plaintext                                     
[0001.003] Loading and Validation of Secure OS Successful                       
[0001.019] NvTbootPackSdramParams: start.                                       
[0001.024] NvTbootPackSdramParams: done.                                        
[0001.028] Tegraboot started after 51856 us                                     
[0001.032] Basic modules init took 953981 us                                    
[0001.036] Sec Bootdevice Read Time = 12 ms, Read Size = 61 KB                  
[0001.042] Sec Bootdevice Write Time = 0 ms, Write Size = 0 KB                  
[0001.047] Next stage binary read took 11286 us                                 
[0001.051] Carveout took -69911 us                                              
[0001.055] CPU initialization took 106082 us                                    
[0001.059] Total time taken by TegraBoot 1001438 us                             
                                                                                
[0001.063] Starting CPU & Halting co-processor                                  
                                                                                
64NOTICE:  BL31: v1.3(release):9892ce1                                          
NOTICE:  BL31: Built : 09:21:33, Nov 22 2022                                    
ERROR:   Error initializing runtime service trusty_fast                         
[0001.185] RamCode = 1                                                          
[0001.189] LPDDR4 Training: Read DT: Number of tables = 2                       
[0001.194] EMC Training (SRC-freq: 204000; DST-freq: 1600000)                   
[0001.207] EMC Training Successful                                              
[0001.210] 408000 not found in DVFS table                                       
[0001.217] RamCode = 1                                                          
[0001.220] DT Write: emc-table@204000 succeeded                                 
[0001.226] DT Write: emc-table@1600000 succeeded                                
[0001.230] LPDDR4 Training: Write DT: Number of tables = 2                      
[0001.268]                                                                      
[0001.269] Debug Init done                                                      
[0001.272] Marked DTB cacheable                                                 
[0001.275] Bootloader DTB loaded at 0x83000000                                  
[0001.279] Marked DTB cacheable                                                 
[0001.282] Kernel DTB loaded at 0x83100000                                      
[0001.286] DeviceTree Init done                                                 
[0001.299] Pinmux applied successfully                                          
[0001.304] gicd_base: 0x50041000                                                
[0001.307] gicc_base: 0x50042000                                                
[0001.310] Interrupts Init done                                                 
[0001.314] Using base:0x60005090 & irq:208 for tick-timer                       
[0001.320] Using base:0x60005098 for delay-timer                                
[0001.324] platform_init_timer: DONE                                            
[0001.327] Timer(tick) Init done                                                
[0001.331] osc freq = 38400 khz                                                 
[0001.335]                                                                      
[0001.336] Welcome to L4T Cboot                                                 
[0001.339]                                                                      
[0001.340] Cboot Version: 00.00.2018.01-t210-a2f2e4b8                           
[0001.345] calling constructors                                                 
[0001.348] initializing heap                                                    
[0001.351] initializing threads                                                 
[0001.354] initializing timers                                                  
[0001.357] creating bootstrap completion thread                                 
[0001.361] top of bootstrap2()                                                  
[0001.364] CPU: ARM Cortex A57                                                  
[0001.367] CPU: MIDR: 0x411FD071, MPIDR: 0x80000000                             
[0001.372] initializing platform                                                
[0001.379] Manufacturer: MF = 0xc2, ID MSB = 0x25                               
[0001.384] ID LSB = 0x36, ID-CFI len = 194 bytes                                
[0001.388] Macronix QSPI chip present                                           
[0001.392] SPI device register                                                  
[0001.394] init boot device                                                     
[0001.397] allocating memory for boot device(SPI)                               
[0001.402] registering boot device                                              
[0001.410] QSPI bdev is already initialized                                     
[0001.414] Enable APE clock                                                     
[0001.417] Un-powergate APE partition                                           
[0001.420] of_register: registering tegra_udc to of_hal                         
[0001.425] of_register: registering inv20628-driver to of_hal                   
[0001.431] of_register: registering ads1015-driver to of_hal                    
[0001.436] of_register: registering lp8557-bl-driver to of_hal                  
[0001.442] of_register: registering bq2419x_charger to of_hal                   
[0001.448] of_register: registering bq27441_fuel_gauge to of_hal                
[0001.459] gpio framework initialized                                           
[0001.463] of_register: registering tca9539_gpio to of_hal                      
[0001.468] of_register: registering tca9539_gpio to of_hal                      
[0001.474] of_register: registering i2c_bus_driver to of_hal                    
[0001.479] of_register: registering i2c_bus_driver to of_hal                    
[0001.485] of_register: registering i2c_bus_driver to of_hal                    
[0001.490] pmic framework initialized                                           
[0001.494] of_register: registering max77620_pmic to of_hal                     
[0001.499] regulator framework initialized                                      
[0001.503] of_register: registering tps65132_bl_driver to of_hal                
[0001.509] initializing target                                                  
[0001.515] gpio_driver_register: register 'tegra_gpio_driver' driver            
[0001.523] board ID = D78, board SKU = 3                                        
[0001.527] Skipping Z3!                                                         
[0001.532] fixed regulator driver initialized                                   
[0001.551] initializing OF layer                                                
[0001.554] NCK carveout not present                                             
[0001.557] Skipping dts_overrides                                               
[0001.561] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0001.578] I2C Bus Init done                                                    
[0001.580] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0001.591] I2C Bus Init done                                                    
[0001.593] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0001.604] I2C Bus Init done                                                    
[0001.606] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0001.617] I2C Bus Init done                                                    
[0001.619] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0001.630] I2C Bus Init done                                                    
[0001.632] of_children_init: Ops found for compatible string maxim,max77620     
[0001.643] max77620_init using irq 118                                          
[0001.648] register 'maxim,max77620' pmic                                       
[0001.652] gpio_driver_register: register 'max77620-gpio' driver                
[0001.658] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0001.669] I2C Bus Init done                                                    
[0001.672] NCK carveout not present                                             
[0001.682] Find /i2c@7000c000's alias i2c0                                      
[0001.686] get eeprom at 1-a0, size 256, type 0                                 
[0001.695] Find /i2c@7000c500's alias i2c2                                      
[0001.699] get eeprom at 3-a0, size 256, type 0                                 
[0001.703] get eeprom at 3-ae, size 256, type 0                                 
[0001.708] pm_ids_update: Updating 1,a0, size 256, type 0                       
[0001.713] I2C slave not started                                                
[0001.716] I2C write failed                                                     
[0001.719] Writing offset failed                                                
[0001.722] eeprom_init: EEPROM read failed                                      
[0001.726] pm_ids_update: eeprom init failed                                    
[0001.730] pm_ids_update: Updating 3,a0, size 256, type 0                       
[0001.760] pm_ids_update: The pm board id is 3448-0003-400                      
[0001.767] Adding plugin-manager/ids/3448-0003-400=/i2c@7000c500:module@0x50    
[0001.775] pm_ids_update: pm id update successful                               
[0001.779] pm_ids_update: Updating 3,ae, size 256, type 0                       
[0001.809] pm_ids_update: The pm board id is 3542-0000-201                      
[0001.816] Adding plugin-manager/ids/3542-0000-201=/i2c@7000c500:module@0x57    
[0001.824] pm_ids_update: pm id update successful                               
[0001.854] eeprom_get_mac: EEPROM invalid MAC address (all 0xff)                
[0001.860] shim_eeprom_update_mac:267: Failed to update 0 MAC address in DTB    
[0001.868] eeprom_get_mac: EEPROM invalid MAC address (all 0xff)                
[0001.874] shim_eeprom_update_mac:267: Failed to update 1 MAC address in DTB    
[0001.882] updating /chosen/nvidia,ethernet-mac node 48:b0:2d:2e:1f:f3          
[0001.888] Plugin Manager: Parse ODM data 0x000a4000                            
[0001.900] shim_cmdline_install: /chosen/bootargs: earlycon=uart8250,mmio32,0x7 
[0001.915] Find /i2c@7000c000's alias i2c0                                      
[0001.919] get eeprom at 1-a0, size 256, type 0                                 
[0001.928] Find /i2c@7000c500's alias i2c2                                      
[0001.932] get eeprom at 3-a0, size 256, type 0                                 
[0001.936] get eeprom at 3-ae, size 256, type 0                                 
[0001.940] pm_ids_update: Updating 1,a0, size 256, type 0                       
[0001.946] I2C slave not started                                                
[0001.949] I2C write failed                                                     
[0001.951] Writing offset failed                                                
[0001.954] eeprom_init: EEPROM read failed                                      
[0001.958] pm_ids_update: eeprom init failed                                    
[0001.962] pm_ids_update: Updating 3,a0, size 256, type 0                       
[0001.993] pm_ids_update: The pm board id is 3448-0003-400                      
[0001.999] Adding plugin-manager/ids/3448-0003-400=/i2c@7000c500:module@0x50    
[0002.006] pm_ids_update: pm id update successful                               
[0002.010] pm_ids_update: Updating 3,ae, size 256, type 0                       
[0002.040] pm_ids_update: The pm board id is 3542-0000-201                      
[0002.047] Adding plugin-manager/ids/3542-0000-201=/i2c@7000c500:module@0x57    
[0002.054] pm_ids_update: pm id update successful                               
[0002.084] Add serial number:1424920086108 as DT property                       
[0002.092] Applying platform configs                                            
[0002.098] platform-init is not present. Skipping                               
[0002.102] calling apps_init()                                                  
[0002.108] Couldn't find GPT header                                             
[0002.113] Proceeding to Cold Boot                                              
[0002.116] starting app android_boot_app                                        
[0002.120] Device state: unlocked                                               
[0002.123] display console init                                                 
[0002.131] could not find regulator                                             
[0002.155] hdmi cable not connected                                             
[0002.158] is_hdmi_needed: HDMI not connected, returning false                  
[0002.164] hdmi is not connected                                                
[0002.170] DT entry for leds-pwm not found                                      
[0002.167] sor0 is not supported                                                
[0002.177] display_console_init: no valid display out_type                      
[0002.185] subnode volume_up is not found !                                     
[0002.189] subnode back is not found !                                          
[0002.192] subnode volume_down is not found !                                   
[0002.196] subnode menu is not found !                                          
[0002.200] Gpio keyboard init success                                           
[0002.280] found decompressor handler: lz4-legacy                               
[0002.295] decompressing blob (type 1)...                                       
[0002.360] display_resolution: No display init                                  
[0002.364] Failed to retrieve display resolution                                
[0002.369] Could not load/initialize BMP blob...ignoring                        
[0002.374] -------> se_aes_verify_sbk_clear: 747                                
[0002.378] se_aes_verify_sbk_clear: Error                                       
[0002.382] SE operation failed                                                  
[0002.385] bl_battery_charging: connected to external power supply              
[0002.394] display_console_ioctl: No display init                               
[0002.399] switch_backlight failed                                              
[0002.405] device_query_partition_size: failed to open partition spiflash0:MSC !
[0002.412] MSC Partition not found                                              
[0002.418] device_query_partition_size: failed to open partition spiflash0:USP !
[0002.426] USP partition read failed!                                           
[0002.429] blob_init: blob-partition USP header read failed                     
[0002.435] android_boot Unable to update recovery partition                     
[0002.440] kfs_getpartname: name = LNX                                          
[0002.444] Loading kernel from LNX                                              
[0002.453] Found 19 BFS partitions in "spiflash0"                               
[0002.778] load kernel from storage                                             
[0002.783] decompressor handler not found                                       
[0003.052] Successfully loaded kernel and ramdisk images                        
[0003.057] board ID = D78, board SKU = 3                                        
[0003.062] sdmmc node status = okay                                             
[0003.065] sdcard instance = 0                                                  
[0003.068] sdmmc cd-inverted                                                    
[0003.071] sdcard gpio handle 0x5a                                              
[0003.074] sdcard gpio pin 0xc9                                                 
[0003.077] sdcard gpio flags 0x0                                                
[0003.080] vmmc-supply 0x9a                                                     
[0003.083] cd_gpio_pin = 201                                                    
[0003.085] pin_state = 0                                                        
[0003.088] Found sdcard                                                         
[0003.090] SD-card IS present ...                                               
[0003.093] load_and_boot_kernel: SD card detected OK                            
[0003.099] display_resolution: No display init                                  
[0003.103] Failed to retrieve display resolution                                
[0003.108] bmp blob is not loaded and initialized                               
[0003.112] Failed to display boot-logo                                          
[0003.116] NCK carveout not present                                             
[0003.119] Skipping dts_overrides                                               
[0003.122] NCK carveout not present                                             
[0003.132] Find /i2c@7000c000's alias i2c0                                      
[0003.136] get eeprom at 1-a0, size 256, type 0                                 
[0003.145] Find /i2c@7000c500's alias i2c2                                      
[0003.149] get eeprom at 3-a0, size 256, type 0                                 
[0003.153] get eeprom at 3-ae, size 256, type 0                                 
[0003.158] pm_ids_update: Updating 1,a0, size 256, type 0                       
[0003.163] I2C slave not started                                                
[0003.166] I2C write failed                                                     
[0003.169] Writing offset failed                                                
[0003.172] eeprom_init: EEPROM read failed                                      
[0003.176] pm_ids_update: eeprom init failed                                    
[0003.180] pm_ids_update: Updating 3,a0, size 256, type 0                       
[0003.210] pm_ids_update: The pm board id is 3448-0003-400                      
[0003.217] Adding plugin-manager/ids/3448-0003-400=/i2c@7000c500:module@0x50    
[0003.225] pm_ids_update: pm id update successful                               
[0003.229] pm_ids_update: Updating 3,ae, size 256, type 0                       
[0003.259] pm_ids_update: The pm board id is 3542-0000-201                      
[0003.266] Adding plugin-manager/ids/3542-0000-201=/i2c@7000c500:module@0x57    
[0003.274] pm_ids_update: pm id update successful                               
[0003.304] eeprom_get_mac: EEPROM invalid MAC address (all 0xff)                
[0003.310] shim_eeprom_update_mac:267: Failed to update 0 MAC address in DTB    
[0003.318] eeprom_get_mac: EEPROM invalid MAC address (all 0xff)                
[0003.324] shim_eeprom_update_mac:267: Failed to update 1 MAC address in DTB    
[0003.332] updating /chosen/nvidia,ethernet-mac node 48:b0:2d:2e:1f:f3          
[0003.338] Plugin Manager: Parse ODM data 0x000a4000                            
[0003.350] shim_cmdline_install: /chosen/bootargs: earlycon=uart8250,mmio32,0x7 
[0003.358] Add serial number:1424920086108 as DT property                       
[0003.366] Updated bpmp info to DTB                                             
[0003.371] Updated initrd info to DTB                                           
[0003.374] "proc-board" doesn't exist, creating                                 
[0003.380] Updated board info to DTB                                            
[0003.384] "pmu-board" doesn't exist, creating                                  
[0003.390] Updated board info to DTB                                            
[0003.393] "display-board" doesn't exist, creating                              
[0003.399] Updated board info to DTB                                            
[0003.402] "reset" doesn't exist, creating                                      
[0003.407] Updated reset info to DTB                                            
[0003.410] display_console_ioctl: No display init                               
[0003.415] display_console_ioctl: No display init                               
[0003.419] display_console_ioctl: No display init                               
[0003.424] Cmdline: tegraid=21.1.2.0.0 ddr_die=2048M@2048M section=256M memtype 
[0003.456] DTB cmdline: earlycon=uart8250,mmio32,0x70006000                     
[0003.462] boot image cmdline: root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4  
[0003.475] Updated bootarg info to DTB                                          
[0003.478] Adding uuid 000000016450f7090400000019050280 to DT                   
[0003.484] Adding eks info 0 to DT                                              
[0003.490] WARNING: Failed to pass NS DRAM ranges to TOS, err: -7               
[0003.496] Updated memory info to DTB                                           
[0003.504] set vdd_core voltage to 1125 mv                                      
[0003.508] setting 'vdd-core' regulator to 1125000 micro volts                  
[0003.513] Found secure-pmc; disable BPMP                                       
                                                                                
                                                                                
U-Boot 2020.04-g4335beb (Nov 22 2022 - 09:21:36 -0800)                          
                                                                                
SoC: tegra210                                                                   
Model: NVIDIA Jetson Nano 2GB Developer Kit                                     
Board: NVIDIA P3541-0000                                                        
DRAM:  2 GiB                                                                    
MMC:   sdhci@700b0000: 1, sdhci@700b0600: 0                                     
Loading Environment from SPI Flash... SF: Detected mx25u3235f with page size 25B
*** Warning - bad CRC, using default environment                                
                                                                                
In:    serial                                                                   
Out:   serial                                                                   
Err:   serial                                                                   
Net:   No ethernet found.                                                       
Hit any key to stop autoboot:  0                                                
switch to partitions #0, OK                                                     
mmc1 is current device                                                          
Scanning mmc 1:1...                                                             
Found /boot/extlinux/extlinux.conf                                              
Retrieving file: /boot/extlinux/extlinux.conf                                   
789 bytes read in 20 ms (38.1 KiB/s)                                            
1:      primary kernel                                                          
Retrieving file: /boot/initrd                                                   
7159624 bytes read in 337 ms (20.3 MiB/s)                                       
Retrieving file: /boot/Image                                                    
31957000 bytes read in 1394 ms (21.9 MiB/s)                                     
append: tegraid=21.1.2.0.0 ddr_die=2048M@2048M section=256M memtype=0 vpr_resiz 
## Flattened Device Tree blob at 83100000                                       
   Booting using the fdt blob at 0x83100000                                     
ERROR: reserving fdt memory region failed (addr=0 size=0)                       
ERROR: reserving fdt memory region failed (addr=0 size=0)                       
   Using Device Tree in place at 0000000083100000, end 000000008317af22         
copying carveout for /host1x@50000000/dc@54200000...                            
copying carveout for /host1x@50000000/dc@54240000...                            
                                                                                
Starting kernel ...                                                             
                                                                                
[    0.000000] Booting Linux on physical CPU 0x0                                
[    0.000000] Linux version 4.9.253-tegra (root@haoun-900X3L) (gcc version 7.33
[    0.000000] Boot CPU: AArch64 Processor [411fd071]                           
[    0.000000] OF: fdt:memory scan node memory@80000000, reg size 48,           
[    0.000000] OF: fdt: - 80000000 ,  3f800000                                  
[    0.000000] OF: fdt: - bfa00000 ,  3fe00000                                  
[    0.000000] OF: fdt: - ffa00000 ,  600000                                    
[    0.000000] earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')     
[    0.000000] bootconsole [uart8250] enabled                                   
[    1.144516] imx219 6-0010: imx219_board_setup: error during i2c read probe ()
[    1.152320] imx219 6-0010: board setup failed                                
[    1.926852] cgroup: cgroup2: unknown option "nsdelegate"                     
[    3.078683] using random self ethernet address                               
[    3.092243] using random host ethernet address                               
[    3.496373] random: crng init done                                           
[    3.499776] random: 7 urandom warning(s) missed due to ratelimiting          
[    4.370183] using random self ethernet address                               
[    4.376531] using random host ethernet address                               
[    6.996987] Bridge firewalling registered                                    
                                                                                
Ubuntu 18.04.6 LTS ati-desktop ttyS0                                            
                                                                                
ati-desktop login: 

“Hit any key to stop autoboot: 0” still count 2 , 1 , 0 and delay 2 seconds.
doesn’t seem like anything different from the first time.

Could you try to set CONFIG_BOOTDELAY = -2?

Do you configure it in u-boot config?