Custom (minimal) rootfs for Jetson Nano wont boot

Our team is developing a custom board for the Jetson Nano and we are wanting to build our own rootfs from scratch. This seems like a common requirement and when looking at the forums I have only seen 1 person have an issue like ours, Boot issues with custom rootfs.

What we did was:

  1. Get our current solution working with the sample rootfs that is in all the documentation.
  2. Use debootstrap to create the base rootfs with the command: qemu-debootstrap --arch=arm64 --variant=minbase bionic ${ROOTFS}
  3. Using chroot, install systemd, kmod, sudo, python, and the packages that apply_binaries.sh requires.
  4. Run apply_binaries.sh
  5. Run l4t_create_default_user.sh to avoid configuration at first boot
  6. Run all of our scripts to customize the rootfs, device tree, kernel, image ext. These scripts have been proven to work with the sample rootfs in daily builds.

When I take the rootfs and run either the mass flash generator script, or flash the Jetson Nano directly I get the same result, the device fails to boot.

If I hook up the UART serial port cables to our debug ports and watch the debug output I see it get all the way to right before where we usually (with our working rootfs) see kernel modules start being loaded.

This is the output we see:

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.253-tegra (root@ubuntu) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #177 SMP PREEMPT Fri Jun 17 15:30:06 MDT 2022
[    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] earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    0.000000] OF: reserved mem: initialized node vpr-carveout, compatible id nvidia,vpr-carveout
[    0.000000] OF: reserved mem: initialized node iram-carveout, compatible id nvidia,iram-carveout
[    0.000000] OF: reserved mem: initialized node ramoops_carveout, compatible id nvidia,ramoops
[    0.000000] cma: Reserved 64 MiB at 0x00000000fac00000
[    0.000000] On node 0 totalpages: 1039872
[    0.000000]   DMA zone: 8192 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 519168 pages, LIFO batch:31
[    0.000000]   Normal zone: 8136 pages used for memmap
[    0.000000]   Normal zone: 520704 pages, LIFO batch:31
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.0 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 24 pages/cpu s57624 r8192 d32488 u98304
[    0.000000] pcpu-alloc: s57624 r8192 d32488 u98304 alloc=24*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[    0.000000] CPU features: enabling workaround for ARM erratum 832075
[    0.000000] Speculative Store Bypass Disable mitigation not required
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1023544
[    0.000000] Kernel command line: tegraid=21.1.2.0.0 ddr_die=4096M@2048M section=512M 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 lp0_vec=0x1000@0xff780000 core_edp_mv=1125 core_edp_ma=4000 gpt  earlycon=uart8250,mmio32,0x70006000  root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 sdhci_tegra.en_boot_part_access=1 quiet root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 sdhci_tegra.en_boot_part_access=1
[    0.000000] log_buf_len individual max cpu contribution: 32768 bytes
[    0.000000] log_buf_len total cpu_extra contributions: 98304 bytes
[    0.000000] log_buf_len min size: 32768 bytes
[    0.000000] log_buf_len: 131072 bytes
[    0.000000] early log buf free: 29816(90%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Memory: 3569160K/4159488K available (15038K kernel code, 2888K rwdata, 6688K rodata, 8448K init, 611K bss, 115192K reserved, 475136K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)
[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)
[    0.000000]       .text : 0xffffff8008080000 - 0xffffff8008f30000   ( 15040 KB)
[    0.000000]     .rodata : 0xffffff8008f30000 - 0xffffff80095c0000   (  6720 KB)
[    0.000000]       .init : 0xffffff80095c0000 - 0xffffff8009e00000   (  8448 KB)
[    0.000000]       .data : 0xffffff8009e00000 - 0xffffff800a0d2008   (  2889 KB)
[    0.000000]        .bss : 0xffffff800a0d2008 - 0xffffff800a16af7c   (   612 KB)
[    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 KB)
[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)
[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)
[    0.000000]               0xffffffbf00000000 - 0xffffffbf03fc8000   (    63 MB actual)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc0ff200000   (  4082 MB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 64.
[    0.000000]  RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:64 nr_irqs:64 0
[    0.000000] /interrupt-controller@60004000: 192 interrupts forwarded to /interrupt-controller
[    0.000000] t210 clock and reset probe
[    0.000000] tegra-pmc: get_secure_pmc_setting: done secure_pmc=1
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] arm_arch_timer: Architected cp15 timer(s) running at 19.20MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
[    0.000007] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
[    0.001515] Console: colour dummy device 80x25
[    0.001525] console [tty0] enabled
[    0.001531] bootconsole [uart8250] disabled
[    0.001553] kmemleak: Kernel memory leak detector disabled
[    0.001571] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
[    0.001582] pid_max: default: 32768 minimum: 301
[    0.002026] Security Framework initialized
[    0.002250] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.002258] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.003380] ftrace: allocating 46446 entries in 182 pages
[    0.169079] sched-energy: CPU device node has no sched-energy-costs
[    0.169113] ASID allocator initialised with 65536 entries
[    0.206926] tegra-id: chipid=22117.
[    0.206940] tegra-id: opt_subrevision=0.
[    0.206958] Tegra Speedo/IDDQ fuse revision 4
[    0.206963] Tegra: CPU Speedo ID 9, SoC Speedo ID 0, GPU Speedo ID 2
[    0.206967] Tegra: CPU Process ID 0, SoC Process ID 0, GPU Process ID 0
[    0.206972] Tegra: CPU Speedo Value 2039, SoC Speedo Value 1928, GPU Speedo Value 2039
[    0.206977] Tegra: CPU IDDQ Value 1696, SoC IDDQ Value 1928, GPU IDDQ Value 2405
[    0.206995] Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 0
[    0.207012] DTS File Name: /home/salzano/jetson/JetsonImageBuild/ManualBuild/Linux_for_Tegra/sources/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0002-p3449-0000-b00.dts
[    0.207019] DTB Build time: Jun 17 2022 15:29:42
[    0.257045] CPU1: Booted secondary processor [411fd071]
[    0.288944] CPU2: Booted secondary processor [411fd071]
[    0.320924] CPU3: Booted secondary processor [411fd071]
[    0.321014] Brought up 4 CPUs
[    0.321020] SMP: Total of 4 processors activated.
[    0.321028] CPU features: detected feature: 32-bit EL0 Support
[    0.321290] CPU: All CPU(s) started at EL2
[    0.321307] alternatives: patching kernel code
[    0.329432] devtmpfs: initialized
[    0.364221] Initilizing CustomIPI irq domain
[    0.364520] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.364543] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.375039] pinctrl core: initialized pinctrl subsystem
[    0.375579] OS set in device tree is not L4T.
[    0.375992] regulator-dummy: no parameters
[    0.376265] Initializing plugin-manager
[    0.376408] Plugin module not found
[    0.376600] node /plugin-manager/fragement@0 match with board >=3448-0002-100
[    0.377144] node /plugin-manager/fragment@1 match with board >=3448-0002-101
[    0.377571] node /plugin-manager/fragment@3 match with board >=3448-0002-100
[    0.378281] node /plugin-manager/fragement@7 match with odm-data enable-pmic-wdt
[    0.378485] node /plugin-manager/fragement@8 match with odm-data enable-pmic-wdt
[    0.379085] node /plugin-manager/fragement@13 match with board >=3448-0002-300
[    0.382488] NET: Registered protocol family 16
[    0.383807] pstore: using zlib compression
[    0.383841] console [pstore-1] enabled
[    0.383845] pstore: Registered ramoops as persistent store backend
[    0.383851] ramoops: attached 0x200000@0xb0000000, ecc: 0/0
[    0.397061] cpuidle: using governor menu
[    0.400668] tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
[    0.402175] vdso: 2 pages (1 code @ ffffff8008f37000, 1 data @ ffffff8009e04000)
[    0.402198] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.405462] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[    0.407659] Serial: AMBA PL011 UART driver
[    0.408160] tegra_powergate_init: DONE
[    0.408175] DTS File Name: /home/salzano/jetson/JetsonImageBuild/ManualBuild/Linux_for_Tegra/sources/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0002-p3449-0000-b00.dts
[    0.408182] DTB Build time: Jun 17 2022 15:29:42
[    0.409792] Tegra reboot handler registered.
[    0.414187] iommu: Adding device tegra-carveouts to group 0
[    0.414318] platform tegra-carveouts: domain=ffffffc0f9b963d8 allocates as[0]=ffffffc0f941c0a8
[    0.414675] iommu: Adding device smmu_test to group 1
[    0.414721] platform smmu_test: domain=ffffffc0f9b96618 allocates as[0]=ffffffc0f941c110
[    0.415540] mc: mapped MMIO address: 0xffffff8008041000 -> 0x70019000
[    0.415592] mc: mapped MMIO address: 0xffffff8008067000 -> 0x7001c000
[    0.415647] mc: mapped MMIO address: 0xffffff800807b000 -> 0x7001d000
[    0.415658] nv-tegra-mc 70019000.mc: No mssnvlink node
[    0.415682] mc-err: mcerr ops are set to t21x
[    0.426517] iommu: Adding device 70090000.xusb to group 2
[    0.426805] iommu: Adding device 70006000.serial to group 3
[    0.426875] platform 70006000.serial: domain=ffffffc0f9482618 allocates as[0]=ffffffc0f941c178
[    0.427305] iommu: Adding device 70006040.serial to group 4
[    0.427563] iommu: Adding device 70006200.serial to group 5
[    0.427778] iommu: Adding device sound to group 6
[    0.427823] platform sound: domain=ffffffc0f9482b58 allocates as[0]=ffffffc0f941c1e0
[    0.428379] iommu: Adding device 7000d400.spi to group 7
[    0.428633] iommu: Adding device 7000d600.spi to group 8
[    0.429073] iommu: Adding device 50000000.host1x to group 9
[    0.429356] iommu: Adding device 54080000.vi to group 10
[    0.429762] iommu: Adding device 54600000.isp to group 11
[    0.430022] iommu: Adding device 54680000.isp to group 12
[    0.430320] iommu: Adding device tegradc.0 to group 13
[    0.430370] platform tegradc.0: domain=ffffffc0f948d918 allocates as[0]=ffffffc0f941c248
[    0.430883] platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
[    0.431203] iommu: Adding device tegradc.1 to group 14
[    0.431255] platform tegradc.1: domain=ffffffc0f948db58 allocates as[0]=ffffffc0f941c2b0
[    0.431767] platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
[    0.432016] iommu: Adding device 54340000.vic to group 15
[    0.432218] iommu: Adding device 544c0000.nvenc to group 16
[    0.432433] iommu: Adding device 54500000.tsec to group 17
[    0.432642] iommu: Adding device 54100000.tsecb to group 18
[    0.432834] iommu: Adding device 54480000.nvdec to group 19
[    0.433083] iommu: Adding device 54380000.nvjpg to group 20
[    0.434123] iommu: Adding device 546c0000.i2c to group 21
[    0.434448] iommu: Adding device 57000000.gpu to group 22
[    0.434500] platform 57000000.gpu: domain=ffffffc0f9497b58 allocates as[0]=ffffffc0f941c318
[    0.434537] platform 57000000.gpu: domain=ffffffc0f9497b58 allocates as[1]=ffffffc0f941c380
[    0.434572] platform 57000000.gpu: domain=ffffffc0f9497b58 allocates as[2]=ffffffc0f941c3e8
[    0.434614] platform 57000000.gpu: domain=ffffffc0f9497b58 allocates as[3]=ffffffc0f941c450
[    0.435498] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency thermal reset disabled.
[    0.435508] tegra-pmc 7000e400.pmc: scratch reg offset dts data not present
[    0.435520] tegra-pmc: ### PMC reset source: TEGRA_SOFTWARE_RESET
[    0.435524] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_WARM
[    0.435528] tegra-pmc: ### PMC reset status reg: 0x3
[    0.485240] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[    0.485249] tegra-pmc: Clear bootloader IO dpd settings
[    0.485268] tegra-pmc 7000e400.pmc: IO padctrl driver initialized
[    0.485332] tegra-pmc 7000e400.pmc: PMC: Successfully configure bootrom reset commands
[    0.485626] iommu: Adding device 70012000.se to group 23
[    0.486404] iommu: Adding device 7000c000.i2c to group 24
[    0.486695] iommu: Adding device 7000c400.i2c to group 25
[    0.486958] iommu: Adding device 7000c500.i2c to group 26
[    0.487214] iommu: Adding device 7000c700.i2c to group 27
[    0.487468] iommu: Adding device 7000d000.i2c to group 28
[    0.487717] iommu: Adding device 7000d100.i2c to group 29
[    0.487984] iommu: Adding device sdhci-tegra.3 to group 30
[    0.488035] platform sdhci-tegra.3: domain=ffffffc0f954d6d8 allocates as[0]=ffffffc0f941c4b8
[    0.488484] iommu: Adding device sdhci-tegra.2 to group 31
[    0.488557] platform sdhci-tegra.2: domain=ffffffc0f954d918 allocates as[0]=ffffffc0f941c520
[    0.489424] iommu: Adding device 700d0000.xudc to group 32
[    0.492687] vdd-ac-bat: 5000 mV
[    0.493092] vdd-5v0-sys: 5000 mV
[    0.493749] vdd-5v0-hdmi: 5000 mV
[    0.494155] vdd-5v0-hdmi: supplied by vdd-5v0-sys
[    0.494440] vdd-1v8-sys: 1800 mV
[    0.494830] vdd-fan: 5000 mV
[    0.495051] vdd-fan: supplied by vdd-5v0-sys
[    0.495273] vdd-usb-vbus: 5000 mV
[    0.495763] vdd-usb-vbus2: 5000 mV
[    0.526238] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.528440] gpio gpiochip0: gpio-line-names specifies 240 line names but there are 256 lines on the chip
[    0.529694] GPIO line 6 (system-suspend-gpio) hogged as output/high
[    0.530033] gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip0 (tegra-gpio)
[    0.537981] eventlib_kernel: keventlib is initialized, test id: 0
[    0.538323] SCSI subsystem initialized
[    0.538508] libata version 3.00 loaded.
[    0.538781] usbcore: registered new interface driver usbfs
[    0.538835] usbcore: registered new interface driver hub
[    0.538876] usbcore: registered new device driver usb
[    0.542513] max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
[    0.549135] vdd-core: 600 <--> 1162 mV at 1125 mV
[    0.550140] vdd-ddr-1v1: Bringing 1125000uV into 1150000-1150000uV
[    0.550235] random: fast init done
[    0.552951] vdd-ddr-1v1: 1150 mV
[    0.556284] vdd-pre-reg-1v35: 1350 mV
[    0.560225] vdd-1v8: 1800 mV
[    0.564226] avdd-sys-1v2: 1200 mV
[    0.568228] vdd-pex-1v0: 1050 mV
[    0.568850] vddio-sdmmc-ap: 1800 <--> 3300 mV at 3300 mV
[    0.569416] max77620-ldo3: at 3100 mV
[    0.572231] vdd-rtc: 850 <--> 1100 mV at 1000 mV
[    0.572757] max77620-ldo5: at 3100 mV
[    0.576231] vddio-sdmmc3-ap: 1800 <--> 3300 mV at 2800 mV
[    0.580226] avdd-1v05-pll: 1050 mV
[    0.584226] avdd-io-hdmi-dp: 1050 mV
[    0.586902] GPIO line 505 (spmic-default-output-high) hogged as output/high
[    0.587211] gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpiochip1 (max77620-gpio)
[    0.587503] max77620 4-003c: max77620 probe successful
[    0.590318] media: Linux media interface: v0.10
[    0.590375] Linux video capture interface: v2.00
[    0.591317] pps_core: LinuxPPS API ver. 1 registered
[    0.591323] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.591342] PTP clock support registered
[    0.594411] tegra210-emc 7001b000.external-memory-controller: validated EMC DFS table
[    0.595292] Advanced Linux Sound Architecture Driver Initialized.
[    0.597740] tegra210_dvfs: no clock found for sdmmc2_ddr
[    0.597758] tegra210_dvfs: no clock found for sdmmc4_ddr
[    0.597811] tegra210_dvfs: no clock found for sdmmc1_ddr
[    0.597827] tegra210_dvfs: no clock found for sdmmc3_ddr
[    0.600691] tegra_dvfs: Unable to get vdd-cpu rail for step info, defering probe
[    0.601857] vdd-3v3-sys: 3300 mV
[    0.602206] vdd-3v3-sys: supplied by vdd-5v0-sys
[    0.602284] vdd-1v8-sys: supplied by vdd-3v3-sys
[    0.605017] vdd-usb-vbus2: supplied by vdd-3v3-sys
[    0.605459] vdd-3v3-sd: 3300 mV
[    0.605822] vdd-3v3-sd: supplied by vdd-3v3-sys
[    0.606587] avdd-io-edp-1v05: 1050 mV
[    0.606948] avdd-io-edp-1v05: supplied by avdd-1v05-pll
[    0.607074] vdd-usb-hub-en: 5000 mV
[    0.607408] vdd-usb-hub-en: supplied by vdd-1v8-sys
[    0.608532] camchar: rtcpu character device driver loaded
[    0.609498] extcon-gpio-states extcon:extcon@1: Cable state:1, cable id:1
[    0.610051] extcon-gpio-states usb_otg: Cable state:1, cable id:1
[    0.611207] clocksource: Switched to clocksource arch_sys_counter
[    0.650470] VFS: Disk quotas dquot_6.6.0
[    0.650608] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.651091] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    0.651587] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000d7000000, size=0x19000000
[    0.651602]  dma-vpr: heap size is not multiple of cma_chunk_size heap_info->num_chunks (13) rem_chunk_size(0x1000000)
[    0.651810] cma: enabled page replacement for spfn=d7000, epfn=f0000
[    0.651815] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful
[    0.651829] tegra-carveouts tegra-carveouts: assigned reserved memory node vpr-carveout
[    0.651860] tegra-carveouts tegra-carveouts: iram :dma coherent mem declare 0x0000000040001000,258048
[    0.651867] tegra-carveouts tegra-carveouts: assigned reserved memory node iram-carveout
[    0.651882] nvmap: nvmap_select_cache_ops() nvmap cache ops set to set/ways
[    0.651891] nvmap_page_pool_init: Total RAM pages: 1011074
[    0.651896] nvmap_page_pool_init: nvmap page pool size: 126384 pages (493 MB)
[    0.651985] nvmap_background_zero_thread: PP zeroing thread starting.
[    0.652452] misc nvmap: created heap iram base 0x0000000040001000 size (252KiB)
[    0.653369] misc nvmap: created heap vpr base 0x00000000d7000000 size (409600KiB)
[    0.661714] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type AO-therm
[    0.662146] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type CPU-therm
[    0.662497] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
[    0.662760] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[    0.662932] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
[    0.663189] pre_t19x_iso_plat_init(): iso emc max clk=1600000KHz
[    0.663228] pre_t19x_iso_plat_init(): max_iso_bw=11520000KB
[    0.663656] NET: Registered protocol family 2
[    0.664628] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.664839] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.665331] TCP: Hash tables configured (established 32768 bind 32768)
[    0.665474] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.665555] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.665957] NET: Registered protocol family 1
[    0.666597] RPC: Registered named UNIX socket transport module.
[    0.666602] RPC: Registered udp transport module.
[    0.666605] RPC: Registered tcp transport module.
[    0.666609] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.666622] PCI: CLS 0 bytes, default 64
[    0.666846] Trying to unpack rootfs image as initramfs...
[    0.959717] Freeing initrd memory: 6992K
[    0.969184] host1x 50000000.host1x: initialized
[    0.971062] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    0.974335] audit: initializing netlink subsys (disabled)
[    0.974401] audit: type=2000 audit(0.823:1): initialized
[    0.975076] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    0.984963] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.986425] ntfs: driver 2.1.32 [Flags: R/W].
[    0.987248] 9p: Installing v9fs 9p2000 file system support
[    0.990506] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 239)
[    0.990621] io scheduler noop registered
[    0.990941] io scheduler cfq registered (default)
[    0.993901] gic 702f9000.agic: GIC IRQ controller registered
[    0.996933] iommu: Adding device 702ef000.adsp to group 33
[    1.005804] iommu: Adding device aconnect@702c0000:adsp_audio to group 34
[    1.005957] tegra-aconnect aconnect@702c0000: Tegra ACONNECT bus registered
[    1.006564] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 = 0x79e740e
[    1.006571] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_0 = 0x4
[    1.008647] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane = usb2-0, function = xusb
[    1.008860] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.1, lane = pcie-0, function = pcie-x1
[    1.008955] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.2, lane = pcie-1, function = pcie-x4
[    1.009043] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane = pcie-2, function = pcie-x4
[    1.009135] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane = pcie-3, function = pcie-x4
[    1.009230] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane = pcie-4, function = pcie-x4
[    1.009320] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane = pcie-5, function = xusb
[    1.009409] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane = pcie-6, function = xusb
[    1.015514] tegra-pwm 7000a000.pwm: PWM clk cannot sleep in ops
[    1.017150] tegra-dfll-pwm 70110000.pwm: DFLL pwm-rate: 12800000
[    1.019036] tegra-pcie 1003000.pcie: 4x1, 1x1 configuration
[    1.020346] tegra-pcie 1003000.pcie: PCIE: Enable power rails
[    1.020709] tegra-pcie 1003000.pcie: probing port 0, using 4 lanes
[    1.021923] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[    1.022141] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=4687500, vi_iso_bw=937500, max_bw=4687500
[    1.022361] Adding domain tsec-pd to PM domain host1x-pd
[    1.024362] tegra-pcie 1003000.pcie: probing port 1, using 1 lanes
[    1.025370] tsec 54500000.tsec: initialized
[    1.026915] tsec 54100000.tsecb: initialized
[    1.027651] Adding domain nvdec-pd to PM domain host1x-pd
[    1.030729] nvdec 54480000.nvdec: initialized
[    1.031838] Adding domain vic03-pd to PM domain host1x-pd
[    1.032017] Adding domain msenc-pd to PM domain host1x-pd
[    1.032179] Adding domain nvjpg-pd to PM domain host1x-pd
[    1.035728] falcon 54340000.vic: initialized
[    1.036960] falcon 544c0000.nvenc: initialized
[    1.038269] falcon 54380000.nvjpg: initialized
[    1.042719] tegra_cec 70015000.tegra_cec: dt=1 start=0x70015000 end=0x70015FFF irq=98
[    1.042760] tegra_cec 70015000.tegra_cec: Enable clock result: 0.
[    1.042791] tegra_cec 70015000.tegra_cec: tegra_cec_init started
[    1.042947] tegradc tegradc.0: disp0 connected to head0->/host1x/sor1
[    1.043039] display board info: id 0x0, fab 0x0
[    1.043093] tegradc tegradc.0: tegra_dc_parse_panel_ops: panel: /host1x/sor1/hdmi-display is not active
[    1.043104] tegra_cec 70015000.tegra_cec: cec_add_sysfs ret=0
[    1.043108] tegra_cec 70015000.tegra_cec: probed
[    1.043131] tegradc tegradc.0: err:-19 parsing panel_ops
[    1.043712] tegradc tegradc.1: disp0 connected to head1->/host1x/sor
[    1.043718] display board info: id 0x0, fab 0x0
[    1.043814] tegradc tegradc.1: No lt-data, using default setting
[    1.043851] tegradc tegradc.1: No hpd-gpio in DT
[    1.043897] tegradc tegradc.1: DT parsed successfully
[    1.043940] tegradc tegradc.1: Display dc.ffffff800ab00000 registered with id=0
[    1.045383] tegradc tegradc.1: dpd enable lookup fail:-19
[    1.551191] Host read timeout at address 545c00c4
[    1.552649] tegradc tegradc.1: probed
[    1.553409] Console: switching to colour frame buffer device 80x30
[    1.553445] tegradc tegradc.1: fb registered
[    1.554060] tegra-apbdma 60020000.dma: Tegra20 APB DMA driver register 32 channels
[    1.556706] hpd: state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[    1.556718] hpd: switching from state 7 (Takeover from bootloader) to state 0 (Reset)
[    1.556728] hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
[    1.556745] tegradc tegradc.1: blank - powerdown
[    1.556817] extcon-disp-state extcon:disp-state: cable 44 state 0 already set.
[    1.556821] Extcon DP: HPD disabled
[    1.556826] hpd: hpd_switch 0
[    1.556835] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[    1.556844] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[    1.556852] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[    1.559498] tegra-adma 702e2000.adma: Tegra210 ADMA driver registered 22 channels
[    1.560160] tegra-fuse-burn 7000f800.efuse:efuse-burn: shutdown limit check disabled
[    1.560167] tegra-fuse-burn 7000f800.efuse:efuse-burn: Fuse burn driver initialized
[    1.560455] kfuse 7000fc00.kfuse: initialized
[    1.561444] tegra-pmc-iopower pmc-iopower: Regulator supply iopower-dbg-supply not available
[    1.562228] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[    1.563252] tegra-dfll-pwm 70110000.pwm: DFLL_PWM regulator is available now
[    1.563267] vdd-cpu: 708 <--> 1322 mV at 708 mV
[    1.563662] pwm-regulator pwm_regulators:pwm-regulator@0: PWM regulator registration passed
[    1.564975] vdd-gpu: applied init 1000000uV constraint
[    1.564984] vdd-gpu: 708 <--> 1323 mV at 997 mV
[    1.565344] pwm-regulator pwm_regulators:pwm-regulator@1: PWM regulator registration passed
[    1.568929] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.569027] No Device Node present for smmu client: serial8250 !!
[    1.569036] platform serial8250: No iommus property found in DT node, got swgids from fixup(101004000)
[    1.569072] iommu: Adding device serial8250 to group 35
[    1.571455] console [ttyS0] disabled
[    1.571525] 70006000.serial: ttyS0 at MMIO 0x70006000 (irq = 64, base_baud = 25500000) is a Tegra
[    1.597030] console [ttyS0] enabled
[    1.598122] 70006040.serial: ttyTHS1 at MMIO 0x70006040 (irq = 65, base_baud = 0) is a TEGRA_UART
[    1.598424] serial-tegra 70006200.serial: RX in PIO mode
[    1.598513] 70006200.serial: ttyTHS2 at MMIO 0x70006200 (irq = 66, base_baud = 0) is a TEGRA_UART
[    1.599538] [drm] Initialized
[    1.609531] brd: module loaded
[    1.614948] loop: module loaded
[    1.615078] tegra_profiler: version: 1.145, samples/io: 49/28
[    1.615329] tegra_profiler: auth: init
[    1.616845] THERMAL EST: found 2 subdevs
[    1.616853] THERMAL EST num_resources: 0
[    1.616860] [THERMAL EST subdev 0]
[    1.616868] [THERMAL EST subdev 1]
[    1.617474] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type thermal-fan-est
[    1.617478] THERMAL EST: thz register success.
[    1.617648] THERMAL EST: end of probe, return err: 0
[    1.619318] sd: No Scsi addr parsed to reserve index
[    1.619407] hisi_sas: driver version v1.6
[    1.639978] tpm_tis_spi spi1.0: 2.0 TPM (device-id 0x1D, rev-id 54)
[    1.655812] tpm tpm0: A TPM error (256) occurred continue selftest
[    1.872241] libphy: Fixed MDIO Bus: probed
[    1.874385] tun: Universal TUN/TAP device driver, 1.6
[    1.874389] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.875542] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.875546] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.875637] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    1.875641] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.875729] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    1.875733] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.875824] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k
[    1.875828] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    1.877059] PPP generic driver version 2.4.2
[    1.877263] PPP BSD Compression module registered
[    1.877269] PPP Deflate Compression module registered
[    1.877308] PPP MPPE Compression module registered
[    1.877316] NET: Registered protocol family 24
[    1.877396] usbcore: registered new interface driver r8152
[    1.877442] usbcore: registered new interface driver asix
[    1.877491] usbcore: registered new interface driver ax88179_178a
[    1.877530] usbcore: registered new interface driver cdc_ether
[    1.877569] usbcore: registered new interface driver net1080
[    1.877611] usbcore: registered new interface driver cdc_subset
[    1.877650] usbcore: registered new interface driver zaurus
[    1.877703] usbcore: registered new interface driver cdc_ncm
[    1.877859] VFIO - User Level meta-driver version: 0.3
[    1.879174] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.879238] ehci-pci: EHCI PCI platform driver
[    1.879293] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.879307] ohci-pci: OHCI PCI platform driver
[    1.879350] ohci-platform: OHCI generic platform driver
[    1.881866] tegra-xusb 70090000.xusb: USB2 port 0 has OTG_CAP
[    1.881873] tegra-xusb 70090000.xusb: USB3 port 0 has OTG_CAP
[    1.882502] tegra-xusb-padctl 7009f000.xusb_padctl: enabled OTG on UTMI pad 0
[    1.883322] tegra-xusb 70090000.xusb: extcon 0: ffffffc0f97a6c00 id
[    1.885754] usbcore: registered new interface driver uas
[    1.885819] usbcore: registered new interface driver usb-storage
[    1.885948] usbcore: registered new interface driver usbserial
[    1.886231] tegra-xusb 70090000.xusb: Firmware timestamp: 2020-07-31 09:33:12 UTC, Version: 50.26 release
[    1.886259] tegra-xusb 70090000.xusb: xHCI Host Controller
[    1.886286] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 1
[    1.887086] tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100 quirks 0x00050010
[    1.887150] tegra-xusb 70090000.xusb: irq 63, io mem 0x70090000
[    1.887375] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.887383] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.887389] usb usb1: Product: xHCI Host Controller
[    1.887394] usb usb1: Manufacturer: Linux 4.9.253-tegra xhci-hcd
[    1.887398] usb usb1: SerialNumber: 70090000.xusb
[    1.888053] hub 1-0:1.0: USB hub found
[    1.888101] hub 1-0:1.0: 5 ports detected
[    1.888668] tegra-xusb 70090000.xusb: xHCI Host Controller
[    1.888681] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 2
[    1.888760] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.888862] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.888869] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.888874] usb usb2: Product: xHCI Host Controller
[    1.888879] usb usb2: Manufacturer: Linux 4.9.253-tegra xhci-hcd
[    1.888883] usb usb2: SerialNumber: 70090000.xusb
[    1.889358] hub 2-0:1.0: USB hub found
[    1.889392] hub 2-0:1.0: 4 ports detected
[    1.890158] tegra-xusb 70090000.xusb: Upgrade port 0 to USB3.0
[    1.890166] tegra-xusb 70090000.xusb: Upgrade port 1 to USB3.0
[    1.893752] tegra-xudc-new 700d0000.xudc: device count: 1
[    1.896211] tegra-xudc-new 700d0000.xudc: USB charger detection disabled
[    1.896228] tegra-xudc-new 700d0000.xudc: vbus state: 1
[    1.896245] tegra-xudc-new 700d0000.xudc: device mode on: 0
[    1.896269] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 0
[    1.896298] tegra-xudc-new 700d0000.xudc: active: 0 => 1
[    1.896998] mousedev: PS/2 mouse device common for all mice
[    1.897112] usbcore: registered new interface driver xpad
[    1.950930] tegra-pcie 1003000.pcie: link 0 down, retrying
[    1.985491] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[    1.987966] rtc rtc1: alarm rtc device
[    1.987986] tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
[    1.988016] tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
[    1.988609] i2c /dev entries driver
[    1.990939] i2c-slave-eeprom 1-0064: i2c_slave_register: client slave flag not set. You might see address collisions
[    1.991648] usb usb2: usb_suspend_both: status 0
[    1.991738] usb usb1: usb_suspend_both: status 0
[    1.992424] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[    1.995410] tegra_soctherm 700e2000.soctherm: pllx_offset tz:0 max:14, min:2
[    1.995418] tegra_soctherm 700e2000.soctherm: pllx_offset tz:2 max:8, min:4
[    1.995903] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.995921] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when cpu reaches 102500 mC
[    1.995933] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when cpu reaches 100500 mC
[    1.996065] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.996077] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when gpu reaches 103000 mC
[    1.996085] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when gpu reaches 101000 mC
[    1.996226] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.996238] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when pll reaches 127000 mC
[    1.996245] tegra_soctherm 700e2000.soctherm: throttrip: pll: missing hot temperature
[    1.996423] tegra_soctherm 700e2000.soctherm: failed to register sensor: -19
[    1.997281] tegra_aotag tegra-aotag: Registering sensor 0
[    1.997333] tegra_aotag tegra-aotag: Invalid temp readout
[    1.997358] tegra_aotag tegra-aotag: Invalid temp readout
[    1.997375] tegra_aotag tegra-aotag: Bound to TZ : ID 0
[    1.997384] tegra_aotag tegra-aotag: Probe done [SUCCESS]:0
[    1.998351] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.998373] tegra_dfll_action dfll-cdev-cap: Tegra DFLL 'cap cooling device' registered
[    1.998561] tegra_aotag tegra-aotag: Invalid temp readout
[    1.998594] tegra_dfll_action dfll-cdev-floor: Tegra DFLL 'floor cooling device' registered
[    1.999026] parse_throttle_dt_data: Num cap clks = 6
[    1.999033] parse_throttle_dt_data: clk=cclk_g type=2
[    1.999046] parse_throttle_dt_data: clk=gpu type=4
[    1.999071] parse_throttle_dt_data: clk=cap.throttle.c2bus type=0
[    1.999091] parse_throttle_dt_data: clk=cap.throttle.c3bus type=0
[    1.999113] parse_throttle_dt_data: clk=cap.throttle.sclk type=0
[    1.999117] parse_throttle_dt_data: clk=emc type=3
[    1.999557] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.999666] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.999820] tegra_throttle_probe: probe successful. #cdevs=4
[    2.000609] FAN dev name: pwm-fan
[    2.000713] FAN:gpio request success.
[    2.000776] pwm_fan_driver pwm-fan: cap state:7, cap pwm:255
[    2.001095] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[    2.001290] pwm_fan_driver pwm-fan: fan tach request irq success
[    2.001301] pwm_fan_driver pwm-fan: tach period: 1000
[    2.001397] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, state:2
[    2.001403] pwm_fan_driver pwm-fan: index 1: pwm=80, rpm=1000, rru=2, rrd=2, state:2
[    2.001409] pwm_fan_driver pwm-fan: index 2: pwm=120, rpm=2000, rru=1, rrd=1, state:2
[    2.001414] pwm_fan_driver pwm-fan: index 3: pwm=160, rpm=3000, rru=1, rrd=1, state:2
[    2.001419] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1, state:3
[    2.001423] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1, state:3
[    2.001428] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1, state:3
[    2.001433] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1, state:4
[    2.001438] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1, state:4
[    2.001442] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1, state:4
[    2.004452] device-mapper: uevent: version 1.0.3
[    2.004907] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    2.010482] tegra210-cpufreq cpufreq: probe()...completed
[    2.011221] sdhci: Secure Digital Host Controller Interface driver
[    2.011223] sdhci: Copyright(c) Pierre Ossman
[    2.011225] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.011588] sdhci-tegra sdhci-tegra.3: Client registration for eMC Successful
[    2.013904] sdhci-tegra sdhci-tegra.2: Got CD GPIO
[    2.014275] sdhci-tegra sdhci-tegra.2: Client registration for eMC Successful
[    2.018828] tegra-se 70012000.se: tegra_se_probe: complete
[    2.019382] hidraw: raw HID events driver (C) Jiri Kosina
[    2.020624] usbcore: registered new interface driver usbhid
[    2.020627] usbhid: USB HID core driver
[    2.022797] tegra21x_actmon 6000c800.actmon: in actmon_register()...
[    2.022976] tegra21x_actmon 6000c800.actmon: initialization Completed for the device mc_all
[    2.024962] nvpmodel: initialized successfully
[    2.026057] usbcore: registered new interface driver snd-usb-audio
[    2.026115] No Device Node present for smmu client: snd-soc-dummy !!
[    2.026120] platform snd-soc-dummy: No iommus property found in DT node, got swgids from fixup(101004000)
[    2.026137] iommu: Adding device snd-soc-dummy to group 36
[    2.031650] input: tegra-hda HDMI/DP,pcm=3 as /devices/70030000.hda/sound/card0/input0
[    2.050331] OPE platform probe
[    2.050418] OPE platform probe successful
[    2.050676] OPE platform probe
[    2.050763] OPE platform probe successful
[    2.055256] mmc0: SDHCI controller on sdhci-tegra.3 [sdhci-tegra.3] using ADMA 64-bit with 64 bit addr
[    2.059424] mmc1: SDHCI controller on sdhci-tegra.2 [sdhci-tegra.2] using ADMA 64-bit with 64 bit addr
[    2.071386] tegra_cec 70015000.tegra_cec: Can't find physical addresse.
[    2.071390] tegra_cec 70015000.tegra_cec: tegra_cec_init Done.
[    2.078107] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[    2.078239] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[    2.078371] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[    2.078499] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[    2.078625] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[    2.078754] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[    2.078902] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[    2.079032] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[    2.079157] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[    2.079306] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[    2.091732] u32 classifier
[    2.091735]     Actions configured
[    2.091806] Initializing XFRM netlink socket
[    2.092515] NET: Registered protocol family 10
[    2.093182] NET: Registered protocol family 17
[    2.093194] NET: Registered protocol family 15
[    2.093268] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    2.093287] 9pnet: Installing 9P2000 support
[    2.093322] Key type dns_resolver registered
[    2.093697] Registered cp15_barrier emulation handler
[    2.093703] Registered setend emulation handler
[    2.094714] registered taskstats version 1
[    2.095265] Adding domain ve2-pd to PM domain host1x-pd
[    2.095518] Adding domain ve-pd to PM domain host1x-pd
[    2.097483] isp 54600000.isp: initialized
[    2.098464] isp 54680000.isp: initialized
[    2.108667] last reset is due to software reset
[    2.108671] KERNEL: PMC reset status reg: 0x3
[    2.108729] BL: PMC reset status reg: 0x3
[    2.108731] BL: PMIC poweroff Event Recorder: 0x0
[    2.110160] clk_cbus_recalc_rate: no gbus parent
[    2.110166] clk_cbus_round_rate: no gbus parent
[    2.110168] clk_cbus_round_rate: no gbus parent
[    2.110174] clk_cbus_recalc_rate: no gbus parent
[    2.110270] clk_cbus_recalc_rate: no gbus parent
[    2.110274] clk_cbus_round_rate: no gbus parent
[    2.110276] clk_cbus_round_rate: no gbus parent
[    2.110279] clk_cbus_recalc_rate: no gbus parent
[    2.110479] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    2.110981] tegra_dvfs: GPU-cap: registered
[    2.111036] tegra dvfs: vdd-cpu: nominal 1168mV, offset 708000uV, step 19200uV, scaling enabled
[    2.111039] tegra dvfs: vdd-core: nominal 1125mV, offset 600000uV, step 12500uV, scaling enabled
[    2.111041] tegra dvfs: vdd-gpu: nominal 1068mV, offset 708000uV, step 10000uV, scaling enabled
[    2.111780] tegra_dvfs: vdd-gpu-vts: registered
[    2.112148] tegra_core_action core_dvfs_cdev_floor: Tegra CORE DVFS 'floor cooling device' registered
[    2.112787] tegra_core_action core_dvfs_cdev_cap: Tegra CORE DVFS 'cap cooling device' registered
[    2.113293] input: gpio-keys as /devices/gpio-keys/input/input1
[    2.114927] mmcblk0: mmc0:0001 DG4016 14.7 GiB
[    2.115053] mmcblk0boot0: mmc0:0001 DG4016 partition 1 4.00 MiB
[    2.115162] mmcblk0boot1: mmc0:0001 DG4016 partition 2 4.00 MiB
[    2.119423] mmcblk0rpmb: mmc0:0001 DG4016 partition 3 4.00 MiB
[    2.121943]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19
[    2.143954] tegra_rtc 7000e000.rtc: setting system clock to 2000-01-01 01:06:08 UTC (946688768)
[    2.144922] vi 54080000.vi: vi_probe: ++
[    2.146407] vi 54080000.vi: initialized
[    2.148026] vi 54080000.vi: subdev nvcsi--1 bound
[    2.148247] mmcblk mmc0:0001: Card claimed for testing.
[    2.149450] Disable partitions left on by BL
[    2.149454]   disb
[    2.149499] bwmgr: missing cdev-type property
[    2.149594] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    2.149601] DRAM derating cdev registered.
[    2.150441] ALSA device list:
[    2.150444]   #0: tegra-hda at 0x70038000 irq 83
[    2.150446]   #1: tegra-snd-t210ref-mobile-rt565x
[    2.153529] Freeing unused kernel memory: 8448K
[    2.177308] Root device found: mmcblk0p1
[    2.178730] Found dev node: /dev/mmcblk0p1
[    2.197904] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[    2.199725] Rootfs mounted over mmcblk0p1
[    2.215492] Switching from initrd to actual rootfs
[    2.291379] systemd[1]: System time before build time, advancing clock.
[    2.306133] ip_tables: (C) 2000-2006 Netfilter Core Team
[    2.317703] cgroup: cgroup2: unknown option "nsdelegate"
[    2.330431] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[    2.331275] systemd[1]: Detected architecture arm64.
[    2.354276] systemd[1]: Set hostname to <jetson>.
[    2.365237] tegra-pcie 1003000.pcie: link 0 down, retrying
[    2.425073] systemd[1]: File /lib/systemd/system/systemd-journald.service:36 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[    2.425082] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[    2.489556] random: systemd: uninitialized urandom read (16 bytes read)
[    2.489771] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    2.489875] random: systemd: uninitialized urandom read (16 bytes read)
[    2.490299] systemd[1]: Created slice System Slice.
[    2.490427] random: systemd: uninitialized urandom read (16 bytes read)
[    2.490542] systemd[1]: Listening on Network Service Netlink Socket.
[    2.490903] systemd[1]: Created slice system-getty.slice.
[    2.491078] systemd[1]: Listening on Journal Socket (/dev/log).
[    2.496572] systemd[1891]: kmod-static-nodes.service: Failed to execute command: No such file or directory
[    2.530426] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
[    2.644644] systemd-journald[1895]: Received request to flush runtime journal from PID 1
[    2.680742] mmc1: host does not support reading read-only switch, assuming write-enable
[    2.793247] tegra-pcie 1003000.pcie: link 0 down, retrying
[    2.795865] tegra-pcie 1003000.pcie: link 0 down, ignoring
[    2.820193] mmc1: hw tuning done ...
[    2.820263] mmc1: new ultra high speed SDR104 SDHC card at address 0001
[    2.820574] mmcblk1: mmc1:0001 ASTOR 14.9 GiB
[    2.823150]  mmcblk1: p1
[    2.900732] tegra-pcie 1003000.pcie: PCI host bridge to bus 0000:00
[    2.900739] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    2.900743] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
[    2.900746] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pref]
[    2.900751] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.900772] pci 0000:00:02.0: [10de:0faf] type 01 class 0x060400
[    2.900833] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.901004] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    2.901116] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[    2.901141] pci 0000:01:00.0: reg 0x10: [io  0x0000-0x00ff]
[    2.901170] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit pref]
[    2.901190] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit pref]
[    2.901317] pci 0000:01:00.0: supports D1 D2
[    2.901320] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.911274] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    2.911306] pci 0000:00:02.0: BAR 15: assigned [mem 0x20000000-0x200fffff 64bit pref]
[    2.911310] pci 0000:00:02.0: BAR 13: assigned [io  0x1000-0x1fff]
[    2.911316] pci 0000:01:00.0: BAR 4: assigned [mem 0x20000000-0x20003fff 64bit pref]
[    2.911333] pci 0000:01:00.0: BAR 2: assigned [mem 0x20004000-0x20004fff 64bit pref]
[    2.911348] pci 0000:01:00.0: BAR 0: assigned [io  0x1000-0x10ff]
[    2.911356] pci 0000:00:02.0: PCI bridge to [bus 01]
[    2.911359] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
[    2.911365] pci 0000:00:02.0:   bridge window [mem 0x20000000-0x200fffff 64bit pref]
[    2.911627] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    2.911631] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    2.911636] pcie_pme 0000:00:02.0:pcie001: service driver pcie_pme loaded
[    2.911718] aer 0000:00:02.0:pcie002: service driver aer loaded
[    2.911893] r8168 0000:01:00.0: enabling device (0000 -> 0003)
[    2.911926] r8168 Gigabit Ethernet driver 8.045.08-NAPI loaded
[    2.933113] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Invalid ethernet address 00:00:00:00:00:00, trying device tree node
[    2.933181] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Found valid ethernet address 48:b0:2d:67:af:1d from device tree
[    2.933672] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[    2.933689] r8168  Copyright (C) 2017  Realtek NIC software team <nicfae@realtek.com>
                This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
                This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
[    3.013094] nvgpu: 57000000.gpu           gm20b_init_clk_setup_sw:1268 [INFO]  GPCPLL initial settings: NA mode, M=1, N=34, P=3 (id = 1)
[    3.955276] tegra-xusb 70090000.xusb: entering ELPG
[    3.955761] tegra-xusb 70090000.xusb: entering ELPG done
[   33.907405] vdd-fan: disabling
[   33.907409] vdd-usb-vbus2: disabling
[   33.907418] vddio-sdmmc-ap: disabling
[   33.907531] vdd-3v3-sd: disabling
[   33.907535] avdd-io-edp-1v05: disabling
[   33.907538] vdd-usb-hub-en: disabling
[   41.011265] random: crng init done
[   41.014664] random: 7 urandom warning(s) missed due to ratelimiting

Up to this point I do not see any difference between this boot and any successful boot. Has anyone else encountered this issue, or have used a custom rootfs on a Jetson Nano?

Hi,

What if you don’t change rootfs? Will your board boot up fine in that case?

If we use the sample rootfs as the base, yes the board boots and functions as expected.

If we use the debootstrap rootfs, with apply_binaries.sh as the base no.

Can you install things one by one and see which one is causing the boot hang?

Are you talking about our customizations? Yes we have tried going from a clean rootfs just to see if we get passed this hang (the board wouldn’t work without our changes) but we still hang in the same spot with the minimal RootFS (skipping step 6) and a clean kernel build.

So even from the most basic rootfs we can’t boot.

Please try to set this to kernel cmdline and see if any new log got printed before hang.

CMDLINE_ADD=“fbcon=map:0 net.ifnames=0 rootfstype=ext4 console=none keep_bootcon”;

I get a log more log output (double of everything it seems), but nothing new that I can see pointing to errors or warnings:

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.253-tegra (root@ubuntu) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #194 SMP PREEMPT Wed Jun 22 16:09:55 MDT 2022
[    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] earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    0.000000] debug: skip boot console de-registration.
[    0.000000] debug: skip boot console de-registration.
[    0.000000] OF: reserved mem: initialized node vpr-carveout, compatible id nvidia,vpr-carveout
[    0.000000] OF: reserved mem: initialized node iram-carveout, compatible id nvidia,iram-carveout
[    0.000000] OF: reserved mem: initialized node ramoops_carveout, compatible id nvidia,ramoops
[    0.000000] cma: Reserved 64 MiB at 0x00000000fac00000
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.0 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 24 pages/cpu s57624 r8192 d32488 u98304
[    0.000000] CPU features: enabling workaround for ARM erratum 832075
[    0.000000] Speculative Store Bypass Disable mitigation not required
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1023544
[    0.000000] Kernel command line: tegraid=21.1.2.0.0 ddr_die=4096M@2048M section=512M 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 lp0_vec=0x1000@0xff780000 core_edp_mv=1125 core_edp_ma=4000 gpt  earlycon=uart8250,mmio32,0x70006000  root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 fbcon=map:0 net.ifnames=0 rootfstype=ext4 console=none keep_bootcon root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 fbcon=map:0 net.ifnames=0 rootfstype=ext4 console=none keep_bootcon
[    0.000000] log_buf_len individual max cpu contribution: 32768 bytes
[    0.000000] log_buf_len total cpu_extra contributions: 98304 bytes
[    0.000000] log_buf_len min size: 32768 bytes
[    0.000000] log_buf_len: 131072 bytes
[    0.000000] early log buf free: 29756(90%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Memory: 3569160K/4159488K available (15038K kernel code, 2888K rwdata, 6688K rodata, 8448K init, 611K bss, 115192K reserved, 475136K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)
[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)
[    0.000000]       .text : 0xffffff8008080000 - 0xffffff8008f30000   ( 15040 KB)
[    0.000000]     .rodata : 0xffffff8008f30000 - 0xffffff80095c0000   (  6720 KB)
[    0.000000]       .init : 0xffffff80095c0000 - 0xffffff8009e00000   (  8448 KB)
[    0.000000]       .data : 0xffffff8009e00000 - 0xffffff800a0d2008   (  2889 KB)
[    0.000000]        .bss : 0xffffff800a0d2008 - 0xffffff800a16af7c   (   612 KB)
[    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 KB)
[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)
[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)
[    0.000000]               0xffffffbf00000000 - 0xffffffbf03fc8000   (    63 MB actual)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc0ff200000   (  4082 MB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 64.
[    0.000000]  RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:64 nr_irqs:64 0
[    0.000000] /interrupt-controller@60004000: 192 interrupts forwarded to /interrupt-controller
[    0.000000] t210 clock and reset probe
[    0.000000] tegra-pmc: get_secure_pmc_setting: done secure_pmc=1
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] arm_arch_timer: Architected cp15 timer(s) running at 19.20MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
[    0.000006] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
[    0.009690] Console: colour dummy device 80x25
[    0.014353] kmemleak: Kernel memory leak detector disabled
[    0.020022] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
[    0.030607] pid_max: default: 32768 minimum: 301
[    0.035802] Security Framework initialized
[    0.040251] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.047155] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.055615] ftrace: allocating 46446 entries in 182 pages
[    0.227194] ASID allocator initialised with 65536 entries
[    0.270967] tegra-id: chipid=22117.
[    0.274601] tegra-id: opt_subrevision=0.
[    0.278657] Tegra Speedo/IDDQ fuse revision 4
[    0.283149] Tegra: CPU Speedo ID 9, SoC Speedo ID 0, GPU Speedo ID 2
[    0.289692] Tegra: CPU Process ID 0, SoC Process ID 0, GPU Process ID 0
[    0.296503] Tegra: CPU Speedo Value 2039, SoC Speedo Value 1928, GPU Speedo Value 2039
[    0.304659] Tegra: CPU IDDQ Value 1696, SoC IDDQ Value 1928, GPU IDDQ Value 2405
[    0.312299] Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 0
[    0.319126] DTS File Name: /home/salzano/jetson/JetsonImageBuild/ManualBuild/Linux_for_Tegra/sources/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0002-p3449-0000-b00.dts
[    0.341151] DTB Build time: Jun 22 2022 16:08:57
[    0.393262] CPU1: Booted secondary processor [411fd071]
[    0.425178] CPU2: Booted secondary processor [411fd071]
[    0.457142] CPU3: Booted secondary processor [411fd071]
[    0.457229] Brought up 4 CPUs
[    0.476445] SMP: Total of 4 processors activated.
[    0.481295] CPU features: detected feature: 32-bit EL0 Support
[    0.487558] CPU: All CPU(s) started at EL2
[    0.491800] alternatives: patching kernel code
[    0.504550] devtmpfs: initialized
[    0.541764] Initilizing CustomIPI irq domain
[    0.546465] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.556529] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.573420] pinctrl core: initialized pinctrl subsystem
[    0.579333] OS set in device tree is not L4T.
[    0.584267] regulator-dummy: no parameters
[    0.588781] Initializing plugin-manager
[    0.592889] Plugin module not found
[    0.596678] node /plugin-manager/fragement@0 match with board >=3448-0002-100
[    0.604561] node /plugin-manager/fragment@1 match with board >=3448-0002-101
[    0.612255] node /plugin-manager/fragment@3 match with board >=3448-0002-100
[    0.620229] node /plugin-manager/fragement@7 match with odm-data enable-pmic-wdt
[    0.628063] node /plugin-manager/fragement@8 match with odm-data enable-pmic-wdt
[    0.636286] node /plugin-manager/fragement@13 match with board >=3448-0002-300
[    0.646925] NET: Registered protocol family 16
[    0.660019] pstore: using zlib compression
[    0.664753] console [pstore-1] enabled
[    0.668623] pstore: Registered ramoops as persistent store backend
[    0.674999] ramoops: attached 0x200000@0xb0000000, ecc: 0/0
[    0.696461] cpuidle: using governor menu
[    0.704134] tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
[    0.711838] vdso: 2 pages (1 code @ ffffff8008f37000, 1 data @ ffffff8009e04000)
[    0.717142] random: fast init done
[    0.723024] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.732910] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[    0.743582] Serial: AMBA PL011 UART driver
[    0.748327] tegra_powergate_init: DONE
[    0.752226] DTS File Name: /home/salzano/jetson/JetsonImageBuild/ManualBuild/Linux_for_Tegra/sources/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0002-p3449-0000-b00.dts
[    0.774254] DTB Build time: Jun 22 2022 16:08:57
[    0.780582] Tegra reboot handler registered.
[    0.789372] iommu: Adding device tegra-carveouts to group 0
[    0.795271] platform tegra-carveouts: domain=ffffffc0f944b018 allocates as[0]=ffffffc0f94300a8
[    0.804571] iommu: Adding device smmu_test to group 1
[    0.809851] platform smmu_test: domain=ffffffc0f944b258 allocates as[0]=ffffffc0f9430110
[    0.819020] mc: mapped MMIO address: 0xffffff8008041000 -> 0x70019000
[    0.825743] mc: mapped MMIO address: 0xffffff8008067000 -> 0x7001c000
[    0.832469] mc: mapped MMIO address: 0xffffff800807b000 -> 0x7001d000
[    0.839134] nv-tegra-mc 70019000.mc: No mssnvlink node
[    0.844482] mc-err: mcerr ops are set to t21x
[    0.859480] iommu: Adding device 70090000.xusb to group 2
[    0.865372] iommu: Adding device 70006000.serial to group 3
[    0.871188] platform 70006000.serial: domain=ffffffc0f945e9d8 allocates as[0]=ffffffc0f9430178
[    0.880537] iommu: Adding device 70006040.serial to group 4
[    0.886555] iommu: Adding device 70006200.serial to group 5
[    0.892530] iommu: Adding device sound to group 6
[    0.897437] platform sound: domain=ffffffc0f945ef18 allocates as[0]=ffffffc0f94301e0
[    0.906010] iommu: Adding device 7000d400.spi to group 7
[    0.911811] iommu: Adding device 7000d600.spi to group 8
[    0.917655] iommu: Adding device 50000000.host1x to group 9
[    0.923692] iommu: Adding device 54080000.vi to group 10
[    0.929584] iommu: Adding device 54600000.isp to group 11
[    0.935421] iommu: Adding device 54680000.isp to group 12
[    0.941271] iommu: Adding device tegradc.0 to group 13
[    0.946643] platform tegradc.0: domain=ffffffc0f94cecd8 allocates as[0]=ffffffc0f9430248
[    0.955519] platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
[    0.963125] iommu: Adding device tegradc.1 to group 14
[    0.968539] platform tegradc.1: domain=ffffffc0f94cef18 allocates as[0]=ffffffc0f94302b0
[    0.977416] platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
[    0.984959] iommu: Adding device 54340000.vic to group 15
[    0.990751] iommu: Adding device 544c0000.nvenc to group 16
[    0.996708] iommu: Adding device 54500000.tsec to group 17
[    1.002584] iommu: Adding device 54100000.tsecb to group 18
[    1.008561] iommu: Adding device 54480000.nvdec to group 19
[    1.014517] iommu: Adding device 54380000.nvjpg to group 20
[    1.021319] iommu: Adding device 546c0000.i2c to group 21
[    1.027234] iommu: Adding device 57000000.gpu to group 22
[    1.032890] platform 57000000.gpu: domain=ffffffc0f9519f18 allocates as[0]=ffffffc0f9430318
[    1.041565] platform 57000000.gpu: domain=ffffffc0f9519f18 allocates as[1]=ffffffc0f9430380
[    1.050235] platform 57000000.gpu: domain=ffffffc0f9519f18 allocates as[2]=ffffffc0f94303e8
[    1.058903] platform 57000000.gpu: domain=ffffffc0f9519f18 allocates as[3]=ffffffc0f9430450
[    1.068351] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency thermal reset disabled.
[    1.077722] tegra-pmc 7000e400.pmc: scratch reg offset dts data not present
[    1.084921] tegra-pmc: ### PMC reset source: PMIC_WATCHDOG_POR
[    1.090959] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_WARM
[    1.097349] tegra-pmc: ### PMC reset status reg: 0x0
[    1.152626] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[    1.160102] tegra-pmc: Clear bootloader IO dpd settings
[    1.165518] tegra-pmc 7000e400.pmc: IO padctrl driver initialized
[    1.171871] tegra-pmc 7000e400.pmc: PMC: Successfully configure bootrom reset commands
[    1.180353] iommu: Adding device 70012000.se to group 23
[    1.186601] iommu: Adding device 7000c000.i2c to group 24
[    1.192467] iommu: Adding device 7000c400.i2c to group 25
[    1.198303] iommu: Adding device 7000c500.i2c to group 26
[    1.204146] iommu: Adding device 7000c700.i2c to group 27
[    1.210004] iommu: Adding device 7000d000.i2c to group 28
[    1.215841] iommu: Adding device 7000d100.i2c to group 29
[    1.221691] iommu: Adding device sdhci-tegra.3 to group 30
[    1.227436] platform sdhci-tegra.3: domain=ffffffc0f95350d8 allocates as[0]=ffffffc0f94304b8
[    1.236611] iommu: Adding device sdhci-tegra.2 to group 31
[    1.242333] platform sdhci-tegra.2: domain=ffffffc0f9535318 allocates as[0]=ffffffc0f9430520
[    1.251872] iommu: Adding device 700d0000.xudc to group 32
[    1.260786] vdd-ac-bat: 5000 mV
[    1.264520] vdd-5v0-sys: 5000 mV
[    1.268624] vdd-5v0-hdmi: 5000 mV
[    1.272597] vdd-5v0-hdmi: supplied by vdd-5v0-sys
[    1.277731] vdd-1v8-sys: 1800 mV
[    1.281542] vdd-fan: 5000 mV
[    1.284849] vdd-fan: supplied by vdd-5v0-sys
[    1.289488] vdd-usb-vbus: 5000 mV
[    1.293533] vdd-usb-vbus2: 5000 mV
[    1.329203] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.339061] gpio gpiochip0: gpio-line-names specifies 240 line names but there are 256 lines on the chip
[    1.350064] GPIO line 6 (system-suspend-gpio) hogged as output/high
[    1.356910] gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip0 (tegra-gpio)
[    1.373408] eventlib_kernel: keventlib is initialized, test id: 0
[    1.380052] SCSI subsystem initialized
[    1.384398] usbcore: registered new interface driver usbfs
[    1.390127] usbcore: registered new interface driver hub
[    1.395652] usbcore: registered new device driver usb
[    1.404314] max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
[    1.417380] vdd-core: 600 <--> 1162 mV at 1125 mV
[    1.423434] vdd-ddr-1v1: Bringing 1125000uV into 1150000-1150000uV
[    1.432463] vdd-ddr-1v1: 1150 mV
[    1.440452] vdd-pre-reg-1v35: 1350 mV
[    1.448450] vdd-1v8: 1800 mV
[    1.452456] avdd-sys-1v2: 1200 mV
[    1.460454] vdd-pex-1v0: 1050 mV
[    1.464489] vddio-sdmmc-ap: 1800 <--> 3300 mV at 3300 mV
[    1.470604] max77620-ldo3: at 3100 mV
[    1.476453] vdd-rtc: 850 <--> 1100 mV at 1000 mV
[    1.481880] max77620-ldo5: at 3100 mV
[    1.488453] vddio-sdmmc3-ap: 1800 <--> 3300 mV at 2800 mV
[    1.496450] avdd-1v05-pll: 1050 mV
[    1.504449] avdd-io-hdmi-dp: 1050 mV
[    1.510888] GPIO line 505 (spmic-default-output-high) hogged as output/high
[    1.518372] gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpiochip1 (max77620-gpio)
[    1.527744] max77620 4-003c: max77620 probe successful
[    1.535757] media: Linux media interface: v0.10
[    1.540523] Linux video capture interface: v2.00
[    1.546296] pps_core: LinuxPPS API ver. 1 registered
[    1.551455] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.560909] PTP clock support registered
[    1.568066] tegra210-emc 7001b000.external-memory-controller: validated EMC DFS table
[    1.577024] Advanced Linux Sound Architecture Driver Initialized.
[    1.585801] tegra210_dvfs: no clock found for sdmmc2_ddr
[    1.591316] tegra210_dvfs: no clock found for sdmmc4_ddr
[    1.596864] tegra210_dvfs: no clock found for sdmmc1_ddr
[    1.602362] tegra210_dvfs: no clock found for sdmmc3_ddr
[    1.610768] tegra_dvfs: Unable to get vdd-cpu rail for step info, defering probe
[    1.619540] vdd-3v3-sys: 3300 mV
[    1.623337] vdd-3v3-sys: supplied by vdd-5v0-sys
[    1.628171] vdd-1v8-sys: supplied by vdd-3v3-sys
[    1.636519] vdd-usb-vbus2: supplied by vdd-3v3-sys
[    1.641909] vdd-3v3-sd: 3300 mV
[    1.645625] vdd-3v3-sd: supplied by vdd-3v3-sys
[    1.651057] avdd-io-edp-1v05: 1050 mV
[    1.655275] avdd-io-edp-1v05: supplied by avdd-1v05-pll
[    1.660801] vdd-usb-hub-en: 5000 mV
[    1.664870] vdd-usb-hub-en: supplied by vdd-1v8-sys
[    1.670992] camchar: rtcpu character device driver loaded
[    1.677292] extcon-gpio-states extcon:extcon@1: Cable state:1, cable id:1
[    1.684854] extcon-gpio-states usb_otg: Cable state:1, cable id:1
[    1.692292] clocksource: Switched to clocksource arch_sys_counter
[    1.737421] VFS: Disk quotas dquot_6.6.0
[    1.741644] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.749296] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    1.756503] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000d7000000, size=0x19000000
[    1.766229] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type AO-therm
[    1.766690] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type CPU-therm
[    1.767054] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
[    1.767334] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[    1.767510] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
[    1.767805] pre_t19x_iso_plat_init(): iso emc max clk=1600000KHz
[    1.767808] pre_t19x_iso_plat_init(): max_iso_bw=11520000KB
[    1.768272] NET: Registered protocol family 2
[    1.769303] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    1.769514] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    1.770020] TCP: Hash tables configured (established 32768 bind 32768)
[    1.770169] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    1.770246] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    1.770656] NET: Registered protocol family 1
[    1.771426] RPC: Registered named UNIX socket transport module.
[    1.771429] RPC: Registered udp transport module.
[    1.771431] RPC: Registered tcp transport module.
[    1.771433] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.771684] Trying to unpack rootfs image as initramfs...
[    1.894372]  dma-vpr: heap size is not multiple of cma_chunk_size heap_info->num_chunks (13) rem_chunk_size(0x1000000)
[    1.905724] cma: enabled page replacement for spfn=d7000, epfn=f0000
[    1.912322] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful[    1.921536] tegra-carveouts tegra-carveouts: assigned reserved memory node vpr-carveout
[    1.929903] tegra-carveouts tegra-carveouts: iram :dma coherent mem declare 0x0000000040001000,258048
[    1.939481] tegra-carveouts tegra-carveouts: assigned reserved memory node iram-carveout
[    1.947883] nvmap: nvmap_select_cache_ops() nvmap cache ops set to set/ways
[    1.955109] nvmap_page_pool_init: Total RAM pages: 1011074
[    1.960792] nvmap_page_pool_init: nvmap page pool size: 126384 pages (493 MB)
[    1.968416] nvmap_background_zero_thread: PP zeroing thread starting.
[    1.968923] misc nvmap: created heap iram base 0x0000000040001000 size (252KiB)
[    1.969735] misc nvmap: created heap vpr base 0x00000000d7000000 size (409600KiB)
[    2.063972] Freeing initrd memory: 6992K
[    2.077527] host1x 50000000.host1x: initialized
[    2.083996] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    2.095251] audit: initializing netlink subsys (disabled)
[    2.100936] audit: type=2000 audit(1.631:1): initialized
[    2.107107] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    2.123672] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.131172] ntfs: driver 2.1.32 [Flags: R/W].
[    2.136547] 9p: Installing v9fs 9p2000 file system support
[    2.145832] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 239)
[    2.153615] io scheduler noop registered
[    2.157968] io scheduler cfq registered (default)
[    2.165567] gic 702f9000.agic: GIC IRQ controller registered
[    2.174551] iommu: Adding device 702ef000.adsp to group 33
[    2.189033] iommu: Adding device aconnect@702c0000:adsp_audio to group 34
[    2.196204] tegra-aconnect aconnect@702c0000: Tegra ACONNECT bus registered
[    2.203977] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 = 0x79e740e
[    2.212178] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_0 = 0x4
[    2.221738] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane = usb2-0, function = xusb
[    2.231401] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.1, lane = pcie-0, function = pcie-x1
[    2.241208] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.2, lane = pcie-1, function = pcie-x4
[    2.251001] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane = pcie-2, function = pcie-x4
[    2.260799] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane = pcie-3, function = pcie-x4
[    2.270581] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane = pcie-4, function = pcie-x4
[    2.280398] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane = pcie-5, function = xusb
[    2.289924] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane = pcie-6, function = xusb
[    2.305260] tegra-pwm 7000a000.pwm: PWM clk cannot sleep in ops
[    2.313043] tegra-dfll-pwm 70110000.pwm: DFLL pwm-rate: 12800000
[    2.321158] tegra-pcie 1003000.pcie: 4x1, 1x1 configuration
[    2.328177] tegra-pcie 1003000.pcie: PCIE: Enable power rails
[    2.333537] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[    2.333740] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=4687500, vi_iso_bw=937500, max_bw=4687500
[    2.333944] Adding domain tsec-pd to PM domain host1x-pd
[    2.336651] tsec 54500000.tsec: initialized
[    2.338052] tsec 54100000.tsecb: initialized
[    2.338734] Adding domain nvdec-pd to PM domain host1x-pd
[    2.341724] nvdec 54480000.nvdec: initialized
[    2.342755] Adding domain vic03-pd to PM domain host1x-pd
[    2.342932] Adding domain msenc-pd to PM domain host1x-pd
[    2.343093] Adding domain nvjpg-pd to PM domain host1x-pd
[    2.346569] falcon 54340000.vic: initialized
[    2.347811] falcon 544c0000.nvenc: initialized
[    2.349192] falcon 54380000.nvjpg: initialized
[    2.353427] tegra_cec 70015000.tegra_cec: dt=1 start=0x70015000 end=0x70015FFF irq=98
[    2.353467] tegra_cec 70015000.tegra_cec: Enable clock result: 0.
[    2.353505] tegra_cec 70015000.tegra_cec: tegra_cec_init started
[    2.353604] tegradc tegradc.0: disp0 connected to head0->/host1x/sor1
[    2.353694] display board info: id 0x0, fab 0x0
[    2.353737] tegradc tegradc.0: tegra_dc_parse_panel_ops: panel: /host1x/sor1/hdmi-display is not active
[    2.353742] tegradc tegradc.0: err:-19 parsing panel_ops
[    2.353783] tegra_cec 70015000.tegra_cec: cec_add_sysfs ret=0
[    2.353787] tegra_cec 70015000.tegra_cec: probed
[    2.354276] tegradc tegradc.1: disp0 connected to head1->/host1x/sor
[    2.354280] display board info: id 0x0, fab 0x0
[    2.354371] tegradc tegradc.1: No lt-data, using default setting
[    2.354406] tegradc tegradc.1: No hpd-gpio in DT
[    2.354453] tegradc tegradc.1: DT parsed successfully
[    2.354497] tegradc tegradc.1: Display dc.ffffff800ab00000 registered with id=0
[    2.356191] tegradc tegradc.1: dpd enable lookup fail:-19
[    2.861920] Host read timeout at address 545c00c4
[    2.863524] tegradc tegradc.1: probed
[    2.864854] tegra-apbdma 60020000.dma: Tegra20 APB DMA driver register 32 channels
[    2.870143] tegra-adma 702e2000.adma: Tegra210 ADMA driver registered 22 channels
[    2.870741] tegra-fuse-burn 7000f800.efuse:efuse-burn: shutdown limit check disabled
[    2.870747] tegra-fuse-burn 7000f800.efuse:efuse-burn: Fuse burn driver initialized
[    2.871008] kfuse 7000fc00.kfuse: initialized
[    2.871929] tegra-pmc-iopower pmc-iopower: Regulator supply iopower-dbg-supply not available
[    2.872750] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[    2.873694] tegra-dfll-pwm 70110000.pwm: DFLL_PWM regulator is available now
[    2.873704] vdd-cpu: 708 <--> 1322 mV at 708 mV
[    2.874111] pwm-regulator pwm_regulators:pwm-regulator@0: PWM regulator registration passed
[    2.875394] vdd-gpu: applied init 1000000uV constraint
[    2.875400] vdd-gpu: 708 <--> 1323 mV at 997 mV
[    2.875753] pwm-regulator pwm_regulators:pwm-regulator@1: PWM regulator registration passed
[    2.879025] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    2.879119] No Device Node present for smmu client: serial8250 !!
[    2.879126] platform serial8250: No iommus property found in DT node, got swgids from fixup(101004000)
[    2.879164] iommu: Adding device serial8250 to group 35
[    2.881537] console [ttyS0] disabled
[    3.141457] Console: switching to colour frame buffer device 80x30
[    3.141490] tegra-pcie 1003000.pcie: probing port 0, using 4 lanes
[    3.143624] tegra-pcie 1003000.pcie: probing port 1, using 1 lanes
[    3.160675] tegradc tegradc.1: fb registered
[    3.160727] 70006000.serial: ttyS0 at MMIO 0x70006000 (irq = 64, base_baud = 25500000) is a Tegra
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.253-tegra (root@ubuntu) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #194 SMP PREEMPT Wed Jun 22 16:09:55 MDT 2022
[    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] earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    0.000000] debug: skip boot console de-registration.
[    0.000000] debug: skip boot console de-registration.
[    0.000000] OF: reserved mem: initialized node vpr-carveout, compatible id nvidia,vpr-carveout
[    0.000000] OF: reserved mem: initialized node iram-carveout, compatible id nvidia,iram-carveout
[    0.000000] OF: reserved mem: initialized node ramoops_carveout, compatible id nvidia,ramoops
[    0.000000] cma: Reserved 64 MiB at 0x00000000fac00000
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.0 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 24 pages/cpu s57624 r8192 d32488 u98304
[    0.000000] CPU features: enabling workaround for ARM erratum 832075
[    0.000000] Speculative Store Bypass Disable mitigation not required
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1023544
[    0.000000] Kernel command line: tegraid=21.1.2.0.0 ddr_die=4096M@2048M section=512M 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 lp0_vec=0x1000@0xff780000 core_edp_mv=1125 core_edp_ma=4000 gpt  earlycon=uart8250,mmio32,0x70006000  root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 fbcon=map:0 net.ifnames=0 rootfstype=ext4 console=none keep_bootcon root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 fbcon=map:0 net.ifnames=0 rootfstype=ext4 console=none keep_bootcon
[    0.000000] log_buf_len individual max cpu contribution: 32768 bytes
[    0.000000] log_buf_len total cpu_extra contributions: 98304 bytes
[    0.000000] log_buf_len min size: 32768 bytes
[    0.000000] log_buf_len: 131072 bytes
[    0.000000] early log buf free: 29756(90%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Memory: 3569160K/4159488K available (15038K kernel code, 2888K rwdata, 6688K rodata, 8448K init, 611K bss, 115192K reserved, 475136K cma-reserved)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)
[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)
[    0.000000]       .text : 0xffffff8008080000 - 0xffffff8008f30000   ( 15040 KB)
[    0.000000]     .rodata : 0xffffff8008f30000 - 0xffffff80095c0000   (  6720 KB)
[    0.000000]       .init : 0xffffff80095c0000 - 0xffffff8009e00000   (  8448 KB)
[    0.000000]       .data : 0xffffff8009e00000 - 0xffffff800a0d2008   (  2889 KB)
[    0.000000]        .bss : 0xffffff800a0d2008 - 0xffffff800a16af7c   (   612 KB)
[    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 KB)
[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)
[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)
[    0.000000]               0xffffffbf00000000 - 0xffffffbf03fc8000   (    63 MB actual)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc0ff200000   (  4082 MB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 64.
[    0.000000]  RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:64 nr_irqs:64 0
[    0.000000] /interrupt-controller@60004000: 192 interrupts forwarded to /interrupt-controller
[    0.000000] t210 clock and reset probe
[    0.000000] tegra-pmc: get_secure_pmc_setting: done secure_pmc=1
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] clk_cbus_recalc_rate: no gbus parent
[    0.000000] arm_arch_timer: Architected cp15 timer(s) running at 19.20MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
[    0.000006] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
[    0.009690] Console: colour dummy device 80x25
[    0.014353] kmemleak: Kernel memory leak detector disabled
[    0.020022] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
[    0.030607] pid_max: default: 32768 minimum: 301
[    0.035802] Security Framework initialized
[    0.040251] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.047155] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.055615] ftrace: allocating 46446 entries in 182 pages
[    0.227194] ASID allocator initialised with 65536 entries
[    0.270967] tegra-id: chipid=22117.
[    0.274601] tegra-id: opt_subrevision=0.
[    0.278657] Tegra Speedo/IDDQ fuse revision 4
[    0.283149] Tegra: CPU Speedo ID 9, SoC Speedo ID 0, GPU Speedo ID 2
[    0.289692] Tegra: CPU Process ID 0, SoC Process ID 0, GPU Process ID 0
[    0.296503] Tegra: CPU Speedo Value 2039, SoC Speedo Value 1928, GPU Speedo Value 2039
[    0.304659] Tegra: CPU IDDQ Value 1696, SoC IDDQ Value 1928, GPU IDDQ Value 2405
[    0.312299] Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 0
[    0.319126] DTS File Name: /home/salzano/jetson/JetsonImageBuild/ManualBuild/Linux_for_Tegra/sources/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0002-p3449-0000-b00.dts
[    0.341151] DTB Build time: Jun 22 2022 16:08:57
[    0.393262] CPU1: Booted secondary processor [411fd071]
[    0.425178] CPU2: Booted secondary processor [411fd071]
[    0.457142] CPU3: Booted secondary processor [411fd071]
[    0.457229] Brought up 4 CPUs
[    0.476445] SMP: Total of 4 processors activated.
[    0.481295] CPU features: detected feature: 32-bit EL0 Support
[    0.487558] CPU: All CPU(s) started at EL2
[    0.491800] alternatives: patching kernel code
[    0.504550] devtmpfs: initialized
[    0.541764] Initilizing CustomIPI irq domain
[    0.546465] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.556529] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.573420] pinctrl core: initialized pinctrl subsystem
[    0.579333] OS set in device tree is not L4T.
[    0.584267] regulator-dummy: no parameters
[    0.588781] Initializing plugin-manager
[    0.592889] Plugin module not found
[    0.596678] node /plugin-manager/fragement@0 match with board >=3448-0002-100
[    0.604561] node /plugin-manager/fragment@1 match with board >=3448-0002-101
[    0.612255] node /plugin-manager/fragment@3 match with board >=3448-0002-100
[    0.620229] node /plugin-manager/fragement@7 match with odm-data enable-pmic-wdt
[    0.628063] node /plugin-manager/fragement@8 match with odm-data enable-pmic-wdt
[    0.636286] node /plugin-manager/fragement@13 match with board >=3448-0002-300
[    0.646925] NET: Registered protocol family 16
[    0.660019] pstore: using zlib compression
[    0.664753] console [pstore-1] enabled
[    0.668623] pstore: Registered ramoops as persistent store backend
[    0.674999] ramoops: attached 0x200000@0xb0000000, ecc: 0/0
[    0.696461] cpuidle: using governor menu
[    0.704134] tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
[    0.711838] vdso: 2 pages (1 code @ ffffff8008f37000, 1 data @ ffffff8009e04000)
[    0.717142] random: fast init done
[    0.723024] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.732910] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[    0.743582] Serial: AMBA PL011 UART driver
[    0.748327] tegra_powergate_init: DONE
[    0.752226] DTS File Name: /home/salzano/jetson/JetsonImageBuild/ManualBuild/Linux_for_Tegra/sources/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0002-p3449-0000-b00.dts
[    0.774254] DTB Build time: Jun 22 2022 16:08:57
[    0.780582] Tegra reboot handler registered.
[    0.789372] iommu: Adding device tegra-carveouts to group 0
[    0.795271] platform tegra-carveouts: domain=ffffffc0f944b018 allocates as[0]=ffffffc0f94300a8
[    0.804571] iommu: Adding device smmu_test to group 1
[    0.809851] platform smmu_test: domain=ffffffc0f944b258 allocates as[0]=ffffffc0f9430110
[    0.819020] mc: mapped MMIO address: 0xffffff8008041000 -> 0x70019000
[    0.825743] mc: mapped MMIO address: 0xffffff8008067000 -> 0x7001c000
[    0.832469] mc: mapped MMIO address: 0xffffff800807b000 -> 0x7001d000
[    0.839134] nv-tegra-mc 70019000.mc: No mssnvlink node
[    0.844482] mc-err: mcerr ops are set to t21x
[    0.859480] iommu: Adding device 70090000.xusb to group 2
[    0.865372] iommu: Adding device 70006000.serial to group 3
[    0.871188] platform 70006000.serial: domain=ffffffc0f945e9d8 allocates as[0]=ffffffc0f9430178
[    0.880537] iommu: Adding device 70006040.serial to group 4
[    0.886555] iommu: Adding device 70006200.serial to group 5
[    0.892530] iommu: Adding device sound to group 6
[    0.897437] platform sound: domain=ffffffc0f945ef18 allocates as[0]=ffffffc0f94301e0
[    0.906010] iommu: Adding device 7000d400.spi to group 7
[    0.911811] iommu: Adding device 7000d600.spi to group 8
[    0.917655] iommu: Adding device 50000000.host1x to group 9
[    0.923692] iommu: Adding device 54080000.vi to group 10
[    0.929584] iommu: Adding device 54600000.isp to group 11
[    0.935421] iommu: Adding device 54680000.isp to group 12
[    0.941271] iommu: Adding device tegradc.0 to group 13
[    0.946643] platform tegradc.0: domain=ffffffc0f94cecd8 allocates as[0]=ffffffc0f9430248
[    0.955519] platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
[    0.963125] iommu: Adding device tegradc.1 to group 14
[    0.968539] platform tegradc.1: domain=ffffffc0f94cef18 allocates as[0]=ffffffc0f94302b0
[    0.977416] platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
[    0.984959] iommu: Adding device 54340000.vic to group 15
[    0.990751] iommu: Adding device 544c0000.nvenc to group 16
[    0.996708] iommu: Adding device 54500000.tsec to group 17
[    1.002584] iommu: Adding device 54100000.tsecb to group 18
[    1.008561] iommu: Adding device 54480000.nvdec to group 19
[    1.014517] iommu: Adding device 54380000.nvjpg to group 20
[    1.021319] iommu: Adding device 546c0000.i2c to group 21
[    1.027234] iommu: Adding device 57000000.gpu to group 22
[    1.032890] platform 57000000.gpu: domain=ffffffc0f9519f18 allocates as[0]=ffffffc0f9430318
[    1.041565] platform 57000000.gpu: domain=ffffffc0f9519f18 allocates as[1]=ffffffc0f9430380
[    1.050235] platform 57000000.gpu: domain=ffffffc0f9519f18 allocates as[2]=ffffffc0f94303e8
[    1.058903] platform 57000000.gpu: domain=ffffffc0f9519f18 allocates as[3]=ffffffc0f9430450
[    1.068351] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency thermal reset disabled.
[    1.077722] tegra-pmc 7000e400.pmc: scratch reg offset dts data not present
[    1.084921] tegra-pmc: ### PMC reset source: PMIC_WATCHDOG_POR
[    1.090959] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_WARM
[    1.097349] tegra-pmc: ### PMC reset status reg: 0x0
[    1.152626] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[    1.160102] tegra-pmc: Clear bootloader IO dpd settings
[    1.165518] tegra-pmc 7000e400.pmc: IO padctrl driver initialized
[    1.171871] tegra-pmc 7000e400.pmc: PMC: Successfully configure bootrom reset commands
[    1.180353] iommu: Adding device 70012000.se to group 23
[    1.186601] iommu: Adding device 7000c000.i2c to group 24
[    1.192467] iommu: Adding device 7000c400.i2c to group 25
[    1.198303] iommu: Adding device 7000c500.i2c to group 26
[    1.204146] iommu: Adding device 7000c700.i2c to group 27
[    1.210004] iommu: Adding device 7000d000.i2c to group 28
[    1.215841] iommu: Adding device 7000d100.i2c to group 29
[    1.221691] iommu: Adding device sdhci-tegra.3 to group 30
[    1.227436] platform sdhci-tegra.3: domain=ffffffc0f95350d8 allocates as[0]=ffffffc0f94304b8
[    1.236611] iommu: Adding device sdhci-tegra.2 to group 31
[    1.242333] platform sdhci-tegra.2: domain=ffffffc0f9535318 allocates as[0]=ffffffc0f9430520
[    1.251872] iommu: Adding device 700d0000.xudc to group 32
[    1.260786] vdd-ac-bat: 5000 mV
[    1.264520] vdd-5v0-sys: 5000 mV
[    1.268624] vdd-5v0-hdmi: 5000 mV
[    1.272597] vdd-5v0-hdmi: supplied by vdd-5v0-sys
[    1.277731] vdd-1v8-sys: 1800 mV
[    1.281542] vdd-fan: 5000 mV
[    1.284849] vdd-fan: supplied by vdd-5v0-sys
[    1.289488] vdd-usb-vbus: 5000 mV
[    1.293533] vdd-usb-vbus2: 5000 mV
[    1.329203] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.339061] gpio gpiochip0: gpio-line-names specifies 240 line names but there are 256 lines on the chip
[    1.350064] GPIO line 6 (system-suspend-gpio) hogged as output/high
[    1.356910] gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip0 (tegra-gpio)
[    1.373408] eventlib_kernel: keventlib is initialized, test id: 0
[    1.380052] SCSI subsystem initialized
[    1.384398] usbcore: registered new interface driver usbfs
[    1.390127] usbcore: registered new interface driver hub
[    1.395652] usbcore: registered new device driver usb
[    1.404314] max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
[    1.417380] vdd-core: 600 <--> 1162 mV at 1125 mV
[    1.423434] vdd-ddr-1v1: Bringing 1125000uV into 1150000-1150000uV
[    1.432463] vdd-ddr-1v1: 1150 mV
[    1.440452] vdd-pre-reg-1v35: 1350 mV
[    1.448450] vdd-1v8: 1800 mV
[    1.452456] avdd-sys-1v2: 1200 mV
[    1.460454] vdd-pex-1v0: 1050 mV
[    1.464489] vddio-sdmmc-ap: 1800 <--> 3300 mV at 3300 mV
[    1.470604] max77620-ldo3: at 3100 mV
[    1.476453] vdd-rtc: 850 <--> 1100 mV at 1000 mV
[    1.481880] max77620-ldo5: at 3100 mV
[    1.488453] vddio-sdmmc3-ap: 1800 <--> 3300 mV at 2800 mV
[    1.496450] avdd-1v05-pll: 1050 mV
[    1.504449] avdd-io-hdmi-dp: 1050 mV
[    1.510888] GPIO line 505 (spmic-default-output-high) hogged as output/high
[    1.518372] gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpiochip1 (max77620-gpio)
[    1.527744] max77620 4-003c: max77620 probe successful
[    1.535757] media: Linux media interface: v0.10
[    1.540523] Linux video capture interface: v2.00
[    1.546296] pps_core: LinuxPPS API ver. 1 registered
[    1.551455] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.560909] PTP clock support registered
[    1.568066] tegra210-emc 7001b000.external-memory-controller: validated EMC DFS table
[    1.577024] Advanced Linux Sound Architecture Driver Initialized.
[    1.585801] tegra210_dvfs: no clock found for sdmmc2_ddr
[    1.591316] tegra210_dvfs: no clock found for sdmmc4_ddr
[    1.596864] tegra210_dvfs: no clock found for sdmmc1_ddr
[    1.602362] tegra210_dvfs: no clock found for sdmmc3_ddr
[    1.610768] tegra_dvfs: Unable to get vdd-cpu rail for step info, defering probe
[    1.619540] vdd-3v3-sys: 3300 mV
[    1.623337] vdd-3v3-sys: supplied by vdd-5v0-sys
[    1.628171] vdd-1v8-sys: supplied by vdd-3v3-sys
[    1.636519] vdd-usb-vbus2: supplied by vdd-3v3-sys
[    1.641909] vdd-3v3-sd: 3300 mV
[    1.645625] vdd-3v3-sd: supplied by vdd-3v3-sys
[    1.651057] avdd-io-edp-1v05: 1050 mV
[    1.655275] avdd-io-edp-1v05: supplied by avdd-1v05-pll
[    1.660801] vdd-usb-hub-en: 5000 mV
[    1.664870] vdd-usb-hub-en: supplied by vdd-1v8-sys
[    1.670992] camchar: rtcpu character device driver loaded
[    1.677292] extcon-gpio-states extcon:extcon@1: Cable state:1, cable id:1
[    1.684854] extcon-gpio-states usb_otg: Cable state:1, cable id:1
[    1.692292] clocksource: Switched to clocksource arch_sys_counter
[    1.737421] VFS: Disk quotas dquot_6.6.0
[    1.741644] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.749296] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    1.756503] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000d7000000, size=0x19000000
[    1.766229] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type AO-therm
[    1.766690] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type CPU-therm
[    1.767054] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
[    1.767334] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[    1.767510] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
[    1.767805] pre_t19x_iso_plat_init(): iso emc max clk=1600000KHz
[    1.767808] pre_t19x_iso_plat_init(): max_iso_bw=11520000KB
[    1.768272] NET: Registered protocol family 2
[    1.769303] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    1.769514] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    1.770020] TCP: Hash tables configured (established 32768 bind 32768)
[    1.770169] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    1.770246] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    1.770656] NET: Registered protocol family 1
[    1.771426] RPC: Registered named UNIX socket transport module.
[    1.771429] RPC: Registered udp transport module.
[    1.771431] RPC: Registered tcp transport module.
[    1.771433] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.771684] Trying to unpack rootfs image as initramfs...
[    1.894372]  dma-vpr: heap size is not multiple of cma_chunk_size heap_info->num_chunks (13) rem_chunk_size(0x1000000)
[    1.905724] cma: enabled page replacement for spfn=d7000, epfn=f0000
[    1.912322] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful
[    1.921536] tegra-carveouts tegra-carveouts: assigned reserved memory node vpr-carveout
[    1.929903] tegra-carveouts tegra-carveouts: iram :dma coherent mem declare 0x0000000040001000,258048
[    1.939481] tegra-carveouts tegra-carveouts: assigned reserved memory node iram-carveout
[    1.947883] nvmap: nvmap_select_cache_ops() nvmap cache ops set to set/ways
[    1.955109] nvmap_page_pool_init: Total RAM pages: 1011074
[    1.960792] nvmap_page_pool_init: nvmap page pool size: 126384 pages (493 MB)
[    1.968416] nvmap_background_zero_thread: PP zeroing thread starting.
[    1.968923] misc nvmap: created heap iram base 0x0000000040001000 size (252KiB)
[    1.969735] misc nvmap: created heap vpr base 0x00000000d7000000 size (409600KiB)
[    2.063972] Freeing initrd memory: 6992K
[    2.077527] host1x 50000000.host1x: initialized
[    2.083996] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    2.095251] audit: initializing netlink subsys (disabled)
[    2.100936] audit: type=2000 audit(1.631:1): initialized
[    2.107107] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    2.123672] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.131172] ntfs: driver 2.1.32 [Flags: R/W].
[    2.136547] 9p: Installing v9fs 9p2000 file system support
[    2.145832] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 239)
[    2.153615] io scheduler noop registered
[    2.157968] io scheduler cfq registered (default)
[    2.165567] gic 702f9000.agic: GIC IRQ controller registered
[    2.174551] iommu: Adding device 702ef000.adsp to group 33
[    2.189033] iommu: Adding device aconnect@702c0000:adsp_audio to group 34
[    2.196204] tegra-aconnect aconnect@702c0000: Tegra ACONNECT bus registered
[    2.203977] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 = 0x79e740e
[    2.212178] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_0 = 0x4
[    2.221738] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane = usb2-0, function = xusb
[    2.231401] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.1, lane = pcie-0, function = pcie-x1
[    2.241208] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.2, lane = pcie-1, function = pcie-x4
[    2.251001] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane = pcie-2, function = pcie-x4
[    2.260799] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane = pcie-3, function = pcie-x4
[    2.270581] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane = pcie-4, function = pcie-x4
[    2.280398] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane = pcie-5, function = xusb
[    2.289924] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane = pcie-6, function = xusb
[    2.305260] tegra-pwm 7000a000.pwm: PWM clk cannot sleep in ops
[    2.313043] tegra-dfll-pwm 70110000.pwm: DFLL pwm-rate: 12800000
[    2.321158] tegra-pcie 1003000.pcie: 4x1, 1x1 configuration
[    2.328177] tegra-pcie 1003000.pcie: PCIE: Enable power rails
[    2.333537] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[    2.333740] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=4687500, vi_iso_bw=937500, max_bw=4687500
[    2.333944] Adding domain tsec-pd to PM domain host1x-pd
[    2.336651] tsec 54500000.tsec: initialized
[    2.338052] tsec 54100000.tsecb: initialized
[    2.338734] Adding domain nvdec-pd to PM domain host1x-pd
[    2.341724] nvdec 54480000.nvdec: initialized
[    2.342755] Adding domain vic03-pd to PM domain host1x-pd
[    2.342932] Adding domain msenc-pd to PM domain host1x-pd
[    2.343093] Adding domain nvjpg-pd to PM domain host1x-pd
[    2.346569] falcon 54340000.vic: initialized
[    2.347811] falcon 544c0000.nvenc: initialized
[    2.349192] falcon 54380000.nvjpg: initialized
[    2.353427] tegra_cec 70015000.tegra_cec: dt=1 start=0x70015000 end=0x70015FFF irq=98
[    2.353467] tegra_cec 70015000.tegra_cec: Enable clock result: 0.
[    2.353505] tegra_cec 70015000.tegra_cec: tegra_cec_init started
[    2.353604] tegradc tegradc.0: disp0 connected to head0->/host1x/sor1
[    2.353694] display board info: id 0x0, fab 0x0
[    2.353737] tegradc tegradc.0: tegra_dc_parse_panel_ops: panel: /host1x/sor1/hdmi-display is not active
[    2.353742] tegradc tegradc.0: err:-19 parsing panel_ops
[    2.353783] tegra_cec 70015000.tegra_cec: cec_add_sysfs ret=0
[    2.353787] tegra_cec 70015000.tegra_cec: probed
[    2.354276] tegradc tegradc.1: disp0 connected to head1->/host1x/sor
[    2.354280] display board info: id 0x0, fab 0x0
[    2.354371] tegradc tegradc.1: No lt-data, using default setting
[    2.354406] tegradc tegradc.1: No hpd-gpio in DT
[    2.354453] tegradc tegradc.1: DT parsed successfully
[    2.354497] tegradc tegradc.1: Display dc.ffffff800ab00000 registered with id=0
[    2.356191] tegradc tegradc.1: dpd enable lookup fail:-19
[    2.861920] Host read timeout at address 545c00c4
[    2.863524] tegradc tegradc.1: probed
[    2.864854] tegra-apbdma 60020000.dma: Tegra20 APB DMA driver register 32 channels
[    2.870143] tegra-adma 702e2000.adma: Tegra210 ADMA driver registered 22 channels
[    2.870741] tegra-fuse-burn 7000f800.efuse:efuse-burn: shutdown limit check disabled
[    2.870747] tegra-fuse-burn 7000f800.efuse:efuse-burn: Fuse burn driver initialized
[    2.871008] kfuse 7000fc00.kfuse: initialized
[    2.871929] tegra-pmc-iopower pmc-iopower: Regulator supply iopower-dbg-supply not available
[    2.872750] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[    2.873694] tegra-dfll-pwm 70110000.pwm: DFLL_PWM regulator is available now
[    2.873704] vdd-cpu: 708 <--> 1322 mV at 708 mV
[    2.874111] pwm-regulator pwm_regulators:pwm-regulator@0: PWM regulator registration passed
[    2.875394] vdd-gpu: applied init 1000000uV constraint
[    2.875400] vdd-gpu: 708 <--> 1323 mV at 997 mV
[    2.875753] pwm-regulator pwm_regulators:pwm-regulator@1: PWM regulator registration passed
[    2.879025] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    2.879119] No Device Node present for smmu client: serial8250 !!
[    2.879126] platform serial8250: No iommus property found in DT node, got swgids from fixup(101004000)
[    2.879164] iommu: Adding device serial8250 to group 35
[    2.881537] console [ttyS0] disabled
[    3.141457] Console: switching to colour frame buffer device 80x30
[    3.141490] tegra-pcie 1003000.pcie: probing port 0, using 4 lanes
[    3.143624] tegra-pcie 1003000.pcie: probing port 1, using 1 lanes
[    3.160675] tegradc tegradc.1: fb registered
[    3.160727] 70006000.serial: ttyS0 at MMIO 0x70006000 (irq = 64, base_baud = 25500000) is a Tegra
[    3.177465] hpd: state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[    3.177471] hpd: switching from state 7 (Takeover from bootloader) to state 0 (Reset)
[    3.177479] hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
[    3.379182] tegra_cec 70015000.tegra_cec: Can't find physical addresse.
[    3.379186] tegra_cec 70015000.tegra_cec: tegra_cec_init Done.
[    3.569001] tegra-pcie 1003000.pcie: link 0 down, retrying
[    3.973183] tegra-pcie 1003000.pcie: link 0 down, retrying
[    4.377361] tegra-pcie 1003000.pcie: link 0 down, retrying
[    4.379377] tegra-pcie 1003000.pcie: link 0 down, ignoring
[    4.485509] tegra-pcie 1003000.pcie: PCI host bridge to bus 0000:00
[    4.485519] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    4.485523] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
[    4.485528] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pref]
[    4.485533] pci_bus 0000:00: root bus resource [bus 00-ff]
[    4.485925] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    4.496402] pci 0000:00:02.0: BAR 15: assigned [mem 0x20000000-0x200fffff 64bit pref]
[    4.496407] pci 0000:00:02.0: BAR 13: assigned [io  0x1000-0x1fff]
[    4.496422] pci 0000:01:00.0: BAR 4: assigned [mem 0x20000000-0x20003fff 64bit pref]
[    4.496443] pci 0000:01:00.0: BAR 2: assigned [mem 0x20004000-0x20004fff 64bit pref]
[    4.496461] pci 0000:01:00.0: BAR 0: assigned [io  0x1000-0x10ff]
[    4.496472] pci 0000:00:02.0: PCI bridge to [bus 01]
[    4.496478] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
[    4.496485] pci 0000:00:02.0:   bridge window [mem 0x20000000-0x200fffff 64bit pref]
[    4.496870] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    4.496875] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    5.602600] console [ttyS0] enabled
[    5.602600] console [ttyS0] enabled
[    5.602604] tegradc tegradc.1: blank - powerdown
[    5.602604] tegradc tegradc.1: blank - powerdown
[    5.603798] 70006040.serial: ttyTHS1 at MMIO 0x70006040 (irq = 65, base_baud = 0) is a TEGRA_UART
[    5.603798] 70006040.serial: ttyTHS1 at MMIO 0x70006040 (irq = 65, base_baud = 0) is a TEGRA_UART
[    5.604092] serial-tegra 70006200.serial: RX in PIO mode
[    5.604092] serial-tegra 70006200.serial: RX in PIO mode
[    5.604177] 70006200.serial: ttyTHS2 at MMIO 0x70006200 (irq = 66, base_baud = 0) is a TEGRA_UART
[    5.604177] 70006200.serial: ttyTHS2 at MMIO 0x70006200 (irq = 66, base_baud = 0) is a TEGRA_UART
[    5.605339] [drm] Initialized
[    5.605339] [drm] Initialized
[    5.623941] brd: module loaded
[    5.623941] brd: module loaded
[    5.629119] loop: module loaded
[    5.629119] loop: module loaded
[    5.629195] tegra_profiler: version: 1.145, samples/io: 49/28
[    5.629195] tegra_profiler: version: 1.145, samples/io: 49/28
[    5.629305] tegra_profiler: auth: init
[    5.629305] tegra_profiler: auth: init
[    5.630626] THERMAL EST: found 2 subdevs
[    5.630626] THERMAL EST: found 2 subdevs
[    5.630633] THERMAL EST num_resources: 0
[    5.630633] THERMAL EST num_resources: 0
[    5.630639] [THERMAL EST subdev 0]
[    5.630639] [THERMAL EST subdev 0]
[    5.630648] [THERMAL EST subdev 1]
[    5.630648] [THERMAL EST subdev 1]
[    5.631084] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type thermal-fan-est
[    5.631084] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type thermal-fan-est
[    5.631087] THERMAL EST: thz register success.
[    5.631087] THERMAL EST: thz register success.
[    5.631278] THERMAL EST: end of probe, return err: 0
[    5.631278] THERMAL EST: end of probe, return err: 0
[    5.632395] sd: No Scsi addr parsed to reserve index
[    5.632395] sd: No Scsi addr parsed to reserve index
[    5.632430] hisi_sas: driver version v1.6
[    5.632430] hisi_sas: driver version v1.6
[    5.791678] extcon-disp-state extcon:disp-state: cable 44 state 0 already set.
[    5.791678] extcon-disp-state extcon:disp-state: cable 44 state 0 already set.
[    5.806339] Extcon DP: HPD disabled
[    5.806339] Extcon DP: HPD disabled
[    5.813420] hpd: hpd_switch 0
[    5.813420] hpd: hpd_switch 0
[    5.819444] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[    5.819444] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[    5.832943] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[    5.832943] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[    5.844962] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[    5.844962] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[    5.859240] tpm_tis_spi spi1.0: 2.0 TPM (device-id 0x1D, rev-id 54)
[    5.859240] tpm_tis_spi spi1.0: 2.0 TPM (device-id 0x1D, rev-id 54)
[    5.888891] tpm tpm0: A TPM error (256) occurred continue selftest
[    5.888891] tpm tpm0: A TPM error (256) occurred continue selftest
[    6.112479] libphy: Fixed MDIO Bus: probed
[    6.112479] libphy: Fixed MDIO Bus: probed
[    6.121520] tun: Universal TUN/TAP device driver, 1.6
[    6.121520] tun: Universal TUN/TAP device driver, 1.6
[    6.131788] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    6.131788] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    6.145329] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    6.145329] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    6.157177] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    6.157177] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    6.169254] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    6.169254] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    6.183375] igb: Copyright (c) 2007-2014 Intel Corporation.
[    6.183375] igb: Copyright (c) 2007-2014 Intel Corporation.
[    6.194731] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    6.194731] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    6.210615] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    6.210615] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    6.222682] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k
[    6.222682] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k
[    6.238215] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    6.238215] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    6.250861] r8168 0000:01:00.0: enabling device (0000 -> 0003)
[    6.250861] r8168 0000:01:00.0: enabling device (0000 -> 0003)
[    6.262740] r8168 Gigabit Ethernet driver 8.045.08-NAPI loaded
[    6.262740] r8168 Gigabit Ethernet driver 8.045.08-NAPI loaded
[    6.295851] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Invalid ethernet address 00:00:00:00:00:00, trying device tree node
[    6.295851] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Invalid ethernet address 00:00:00:00:00:00, trying device tree node
[    6.320842] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Found valid ethernet address 48:b0:2d:67:af:1d from device tree
[    6.320842] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Found valid ethernet address 48:b0:2d:67:af:1d from device tree
[    6.345586] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[    6.345586] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[    6.368759] r8168  Copyright (C) 2017  Realtek NIC software team <nicfae@realtek.com>
[    6.368759]  This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
[    6.368759]  This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
[    6.368759] r8168  Copyright (C) 2017  Realtek NIC software team <nicfae@realtek.com>
[    6.368759]  This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>.
[    6.368759]  This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>.
[    6.431923] PPP generic driver version 2.4.2
[    6.431923] PPP generic driver version 2.4.2
[    6.440792] PPP BSD Compression module registered
[    6.440792] PPP BSD Compression module registered
[    6.450345] PPP Deflate Compression module registered
[    6.450345] PPP Deflate Compression module registered
[    6.460627] PPP MPPE Compression module registered
[    6.460627] PPP MPPE Compression module registered
[    6.470349] NET: Registered protocol family 24
[    6.470349] NET: Registered protocol family 24
[    6.479434] usbcore: registered new interface driver r8152
[    6.479434] usbcore: registered new interface driver r8152
[    6.490609] usbcore: registered new interface driver asix
[    6.490609] usbcore: registered new interface driver asix
[    6.501623] usbcore: registered new interface driver ax88179_178a
[    6.501623] usbcore: registered new interface driver ax88179_178a
[    6.514029] usbcore: registered new interface driver cdc_ether
[    6.514029] usbcore: registered new interface driver cdc_ether
[    6.525906] usbcore: registered new interface driver net1080
[    6.525906] usbcore: registered new interface driver net1080
[    6.537424] usbcore: registered new interface driver cdc_subset
[    6.537424] usbcore: registered new interface driver cdc_subset
[    6.549474] usbcore: registered new interface driver zaurus
[    6.549474] usbcore: registered new interface driver zaurus
[    6.560828] usbcore: registered new interface driver cdc_ncm
[    6.560828] usbcore: registered new interface driver cdc_ncm
[    6.572475] VFIO - User Level meta-driver version: 0.3
[    6.572475] VFIO - User Level meta-driver version: 0.3
[    6.584135] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    6.584135] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    6.597411] ehci-pci: EHCI PCI platform driver
[    6.597411] ehci-pci: EHCI PCI platform driver
[    6.606481] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    6.606481] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    6.619027] ohci-pci: OHCI PCI platform driver
[    6.619027] ohci-pci: OHCI PCI platform driver
[    6.628090] ohci-platform: OHCI generic platform driver
[    6.628090] ohci-platform: OHCI generic platform driver
[    6.641218] tegra-xusb 70090000.xusb: USB2 port 0 has OTG_CAP
[    6.641218] tegra-xusb 70090000.xusb: USB2 port 0 has OTG_CAP
[    6.652897] tegra-xusb 70090000.xusb: USB3 port 0 has OTG_CAP
[    6.652897] tegra-xusb 70090000.xusb: USB3 port 0 has OTG_CAP
[    6.665152] tegra-xusb-padctl 7009f000.xusb_padctl: enabled OTG on UTMI pad 0
[    6.665152] tegra-xusb-padctl 7009f000.xusb_padctl: enabled OTG on UTMI pad 0
[    6.680474] tegra-xusb 70090000.xusb: extcon 0: ffffffc0f970c800 id
[    6.680474] tegra-xusb 70090000.xusb: extcon 0: ffffffc0f970c800 id
[    6.695484] usbcore: registered new interface driver uas
[    6.695484] usbcore: registered new interface driver uas
[    6.706311] tegra-xusb 70090000.xusb: Firmware timestamp: 2020-07-31 09:33:12 UTC, Version: 50.26 release
[    6.706311] tegra-xusb 70090000.xusb: Firmware timestamp: 2020-07-31 09:33:12 UTC, Version: 50.26 release
[    6.706339] tegra-xusb 70090000.xusb: xHCI Host Controller
[    6.706339] tegra-xusb 70090000.xusb: xHCI Host Controller
[    6.706364] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 1
[    6.706364] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 1
[    6.707164] tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100 quirks 0x00050010
[    6.707164] tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100 quirks 0x00050010
[    6.707231] tegra-xusb 70090000.xusb: irq 63, io mem 0x70090000
[    6.707231] tegra-xusb 70090000.xusb: irq 63, io mem 0x70090000
[    6.707462] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    6.707462] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    6.707467] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.707467] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.707472] usb usb1: Product: xHCI Host Controller
[    6.707472] usb usb1: Product: xHCI Host Controller
[    6.707475] usb usb1: Manufacturer: Linux 4.9.253-tegra xhci-hcd
[    6.707475] usb usb1: Manufacturer: Linux 4.9.253-tegra xhci-hcd
[    6.707479] usb usb1: SerialNumber: 70090000.xusb
[    6.707479] usb usb1: SerialNumber: 70090000.xusb
[    6.727486] hub 1-0:1.0: USB hub found
[    6.727486] hub 1-0:1.0: USB hub found
[    6.727528] hub 1-0:1.0: 5 ports detected
[    6.727528] hub 1-0:1.0: 5 ports detected
[    6.728100] tegra-xusb 70090000.xusb: xHCI Host Controller
[    6.728100] tegra-xusb 70090000.xusb: xHCI Host Controller
[    6.728110] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 2
[    6.728110] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 2
[    6.728184] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    6.728184] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    6.728310] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    6.728310] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    6.728316] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.728316] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.728320] usb usb2: Product: xHCI Host Controller
[    6.728320] usb usb2: Product: xHCI Host Controller
[    6.728324] usb usb2: Manufacturer: Linux 4.9.253-tegra xhci-hcd
[    6.728324] usb usb2: Manufacturer: Linux 4.9.253-tegra xhci-hcd
[    6.728327] usb usb2: SerialNumber: 70090000.xusb
[    6.728327] usb usb2: SerialNumber: 70090000.xusb
[    6.728761] hub 2-0:1.0: USB hub found
[    6.728761] hub 2-0:1.0: USB hub found
[    6.728792] hub 2-0:1.0: 4 ports detected
[    6.728792] hub 2-0:1.0: 4 ports detected
[    6.729588] tegra-xusb 70090000.xusb: Upgrade port 0 to USB3.0
[    6.729588] tegra-xusb 70090000.xusb: Upgrade port 0 to USB3.0
[    6.729594] tegra-xusb 70090000.xusb: Upgrade port 1 to USB3.0
[    6.729594] tegra-xusb 70090000.xusb: Upgrade port 1 to USB3.0
[    6.828641] usb usb1: usb_suspend_both: status 0
[    6.828641] usb usb1: usb_suspend_both: status 0
[    6.828733] usb usb2: usb_suspend_both: status 0
[    6.828733] usb usb2: usb_suspend_both: status 0
[    7.020524] usbcore: registered new interface driver usb-storage
[    7.020524] usbcore: registered new interface driver usb-storage
[    7.032838] usbcore: registered new interface driver usbserial
[    7.032838] usbcore: registered new interface driver usbserial
[    7.048345] tegra-xudc-new 700d0000.xudc: device count: 1
[    7.048345] tegra-xudc-new 700d0000.xudc: device count: 1
[    7.060862] tegra-xudc-new 700d0000.xudc: USB charger detection disabled
[    7.060862] tegra-xudc-new 700d0000.xudc: USB charger detection disabled
[    7.074481] tegra-xudc-new 700d0000.xudc: vbus state: 1
[    7.074481] tegra-xudc-new 700d0000.xudc: vbus state: 1
[    7.085126] tegra-xudc-new 700d0000.xudc: device mode on: 0
[    7.085126] tegra-xudc-new 700d0000.xudc: device mode on: 0
[    7.096459] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 0
[    7.096459] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 0
[    7.110075] tegra-xudc-new 700d0000.xudc: active: 0 => 1
[    7.110075] tegra-xudc-new 700d0000.xudc: active: 0 => 1
[    7.121514] mousedev: PS/2 mouse device common for all mice
[    7.121514] mousedev: PS/2 mouse device common for all mice
[    7.132928] usbcore: registered new interface driver xpad
[    7.132928] usbcore: registered new interface driver xpad
[    7.274970] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[    7.274970] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[    7.292421] rtc rtc1: alarm rtc device
[    7.292421] rtc rtc1: alarm rtc device
[    7.300050] tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
[    7.300050] tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
[    7.314599] tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
[    7.314599] tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
[    7.327661] i2c /dev entries driver
[    7.327661] i2c /dev entries driver
[    7.336936] i2c-slave-eeprom 1-0064: i2c_slave_register: client slave flag not set. You might see address collisions
[    7.336936] i2c-slave-eeprom 1-0064: i2c_slave_register: client slave flag not set. You might see address collisions
[    7.359483] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[    7.359483] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[    7.375792] tegra_soctherm 700e2000.soctherm: pllx_offset tz:0 max:14, min:2
[    7.375792] tegra_soctherm 700e2000.soctherm: pllx_offset tz:0 max:14, min:2
[    7.390114] tegra_soctherm 700e2000.soctherm: pllx_offset tz:2 max:8, min:4
[    7.390114] tegra_soctherm 700e2000.soctherm: pllx_offset tz:2 max:8, min:4
[    7.404714] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.404714] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.423621] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when cpu reaches 102500 mC
[    7.423621] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when cpu reaches 102500 mC
[    7.441813] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when cpu reaches 100500 mC
[    7.441813] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when cpu reaches 100500 mC
[    7.459951] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.459951] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.478838] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when gpu reaches 103000 mC
[    7.478838] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when gpu reaches 103000 mC
[    7.497027] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when gpu reaches 101000 mC
[    7.497027] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when gpu reaches 101000 mC
[    7.515165] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.515165] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.534065] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when pll reaches 127000 mC
[    7.534065] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when pll reaches 127000 mC
[    7.552241] tegra_soctherm 700e2000.soctherm: throttrip: pll: missing hot temperature
[    7.552241] tegra_soctherm 700e2000.soctherm: throttrip: pll: missing hot temperature
[    7.568312] tegra_soctherm 700e2000.soctherm: failed to register sensor: -19
[    7.568312] tegra_soctherm 700e2000.soctherm: failed to register sensor: -19
[    7.583425] tegra_aotag tegra-aotag: Registering sensor 0
[    7.583425] tegra_aotag tegra-aotag: Registering sensor 0
[    7.594476] tegra_aotag tegra-aotag: Bound to TZ : ID 0
[    7.594476] tegra_aotag tegra-aotag: Bound to TZ : ID 0
[    7.605093] tegra_aotag tegra-aotag: Probe done [SUCCESS]:0
[    7.605093] tegra_aotag tegra-aotag: Probe done [SUCCESS]:0
[    7.617329] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.617329] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.636246] tegra_dfll_action dfll-cdev-cap: Tegra DFLL 'cap cooling device' registered
[    7.636246] tegra_dfll_action dfll-cdev-cap: Tegra DFLL 'cap cooling device' registered
[    7.652713] tegra_dfll_action dfll-cdev-floor: Tegra DFLL 'floor cooling device' registered
[    7.652713] tegra_dfll_action dfll-cdev-floor: Tegra DFLL 'floor cooling device' registered
[    7.670092] parse_throttle_dt_data: Num cap clks = 6
[    7.670092] parse_throttle_dt_data: Num cap clks = 6
[    7.680171] parse_throttle_dt_data: clk=cclk_g type=2
[    7.680171] parse_throttle_dt_data: clk=cclk_g type=2
[    7.690429] parse_throttle_dt_data: clk=gpu type=4
[    7.690429] parse_throttle_dt_data: clk=gpu type=4
[    7.700176] parse_throttle_dt_data: clk=cap.throttle.c2bus type=0
[    7.700176] parse_throttle_dt_data: clk=cap.throttle.c2bus type=0
[    7.712564] parse_throttle_dt_data: clk=cap.throttle.c3bus type=0
[    7.712564] parse_throttle_dt_data: clk=cap.throttle.c3bus type=0
[    7.724940] parse_throttle_dt_data: clk=cap.throttle.sclk type=0
[    7.724940] parse_throttle_dt_data: clk=cap.throttle.sclk type=0
[    7.737133] parse_throttle_dt_data: clk=emc type=3
[    7.737133] parse_throttle_dt_data: clk=emc type=3
[    7.747261] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.747261] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.766259] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.766259] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.785292] tegra_throttle_probe: probe successful. #cdevs=4
[    7.785292] tegra_throttle_probe: probe successful. #cdevs=4
[    7.797535] FAN dev name: pwm-fan
[    7.797535] FAN dev name: pwm-fan
[    7.804383] FAN:gpio request success.
[    7.804383] FAN:gpio request success.
[    7.811882] pwm_fan_driver pwm-fan: cap state:7, cap pwm:255
[    7.811882] pwm_fan_driver pwm-fan: cap state:7, cap pwm:255
[    7.823666] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[    7.823666] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[    7.837260] pwm_fan_driver pwm-fan: fan tach request irq success
[    7.837260] pwm_fan_driver pwm-fan: fan tach request irq success
[    7.849455] pwm_fan_driver pwm-fan: tach period: 1000
[    7.849455] pwm_fan_driver pwm-fan: tach period: 1000
[    7.859805] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, state:2
[    7.859805] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, state:2
[    7.875162] pwm_fan_driver pwm-fan: index 1: pwm=80, rpm=1000, rru=2, rrd=2, state:2
[    7.875162] pwm_fan_driver pwm-fan: index 1: pwm=80, rpm=1000, rru=2, rrd=2, state:2
[    7.890879] pwm_fan_driver pwm-fan: index 2: pwm=120, rpm=2000, rru=1, rrd=1, state:2
[    7.890879] pwm_fan_driver pwm-fan: index 2: pwm=120, rpm=2000, rru=1, rrd=1, state:2
[    7.906765] pwm_fan_driver pwm-fan: index 3: pwm=160, rpm=3000, rru=1, rrd=1, state:2
[    7.906765] pwm_fan_driver pwm-fan: index 3: pwm=160, rpm=3000, rru=1, rrd=1, state:2
[    7.922655] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1, state:3
[    7.922655] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1, state:3
[    7.938539] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1, state:3
[    7.938539] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1, state:3
[    7.954433] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1, state:3
[    7.954433] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1, state:3
[    7.970314] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1, state:4
[    7.970314] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1, state:4
[    7.986205] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1, state:4
[    7.986205] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1, state:4
[    8.002268] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1, state:4
[    8.002268] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1, state:4
[    8.021163] device-mapper: uevent: version 1.0.3
[    8.021163] device-mapper: uevent: version 1.0.3
[    8.030992] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    8.030992] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    8.053265] tegra210-cpufreq cpufreq: probe()...completed
[    8.053265] tegra210-cpufreq cpufreq: probe()...completed
[    8.064987] sdhci: Secure Digital Host Controller Interface driver
[    8.064987] sdhci: Secure Digital Host Controller Interface driver
[    8.077517] sdhci: Copyright(c) Pierre Ossman
[    8.077517] sdhci: Copyright(c) Pierre Ossman
[    8.086346] sdhci-pltfm: SDHCI platform and OF driver helper
[    8.086346] sdhci-pltfm: SDHCI platform and OF driver helper
[    8.098138] sdhci-tegra sdhci-tegra.3: Client registration for eMC Successful
[    8.098138] sdhci-tegra sdhci-tegra.3: Client registration for eMC Successful
[    8.116570] sdhci-tegra sdhci-tegra.2: Got CD GPIO
[    8.116570] sdhci-tegra sdhci-tegra.2: Got CD GPIO
[    8.126652] sdhci-tegra sdhci-tegra.2: Client registration for eMC Successful
[    8.126652] sdhci-tegra sdhci-tegra.2: Client registration for eMC Successful
[    8.146428] tegra-se 70012000.se: tegra_se_probe: complete
[    8.146428] tegra-se 70012000.se: tegra_se_probe: complete
[    8.158066] hidraw: raw HID events driver (C) Jiri Kosina
[    8.158066] hidraw: raw HID events driver (C) Jiri Kosina
[    8.160342] mmc0: SDHCI controller on sdhci-tegra.3 [sdhci-tegra.3] using ADMA 64-bit with 64 bit addr
[    8.160342] mmc0: SDHCI controller on sdhci-tegra.3 [sdhci-tegra.3] using ADMA 64-bit with 64 bit addr
[    8.189317] usbcore: registered new interface driver usbhid
[    8.189317] usbcore: registered new interface driver usbhid
[    8.196405] mmc1: SDHCI controller on sdhci-tegra.2 [sdhci-tegra.2] using ADMA 64-bit with 64 bit addr
[    8.196405] mmc1: SDHCI controller on sdhci-tegra.2 [sdhci-tegra.2] using ADMA 64-bit with 64 bit addr
[    8.215142] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    8.215142] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    8.215484] mmcblk0: mmc0:0001 DG4016 14.7 GiB
[    8.215484] mmcblk0: mmc0:0001 DG4016 14.7 GiB
[    8.219650] mmcblk0rpmb: mmc0:0001 DG4016 partition 3 4.00 MiB
[    8.219650] mmcblk0rpmb: mmc0:0001 DG4016 partition 3 4.00 MiB
[    8.222128]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19
[    8.222128]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19
[    8.269805] usbhid: USB HID core driver
[    8.269805] usbhid: USB HID core driver
[    8.279819] tegra21x_actmon 6000c800.actmon: in actmon_register()...
[    8.279819] tegra21x_actmon 6000c800.actmon: in actmon_register()...
[    8.292998] tegra21x_actmon 6000c800.actmon: initialization Completed for the device mc_all
[    8.292998] tegra21x_actmon 6000c800.actmon: initialization Completed for the device mc_all
[    8.311881] nvpmodel: initialized successfully
[    8.311881] nvpmodel: initialized successfully
[    8.322050] usbcore: registered new interface driver snd-usb-audio
[    8.322050] usbcore: registered new interface driver snd-usb-audio
[    8.334667] No Device Node present for smmu client: snd-soc-dummy !!
[    8.334667] No Device Node present for smmu client: snd-soc-dummy !!
[    8.347564] platform snd-soc-dummy: No iommus property found in DT node, got swgids from fixup(101004000)
[    8.347564] platform snd-soc-dummy: No iommus property found in DT node, got swgids from fixup(101004000)
[    8.368166] iommu: Adding device snd-soc-dummy to group 36
[    8.368166] iommu: Adding device snd-soc-dummy to group 36
[    8.369563] input: tegra-hda HDMI/DP,pcm=3 as /devices/70030000.hda/sound/card0/input0
[    8.369563] input: tegra-hda HDMI/DP,pcm=3 as /devices/70030000.hda/sound/card0/input0
[    8.416692] OPE platform probe
[    8.416692] OPE platform probe
[    8.422974] OPE platform probe successful
[    8.422974] OPE platform probe successful
[    8.431362] OPE platform probe
[    8.431362] OPE platform probe
[    8.437639] OPE platform probe successful
[    8.437639] OPE platform probe successful
[    8.470335] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[    8.470335] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[    8.482126] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[    8.482126] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[    8.493917] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[    8.493917] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[    8.505685] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[    8.505685] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[    8.517454] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[    8.517454] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[    8.529225] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[    8.529225] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[    8.540996] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[    8.540996] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[    8.552771] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[    8.552771] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[    8.564537] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[    8.564537] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[    8.576319] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[    8.576319] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[    8.600193] u32 classifier
[    8.600193] u32 classifier
[    8.605689]     Actions configured
[    8.605689]     Actions configured
[    8.612658] Initializing XFRM netlink socket
[    8.612658] Initializing XFRM netlink socket
[    8.622025] NET: Registered protocol family 10
[    8.622025] NET: Registered protocol family 10
[    8.631702] NET: Registered protocol family 17
[    8.631702] NET: Registered protocol family 17
[    8.640719] NET: Registered protocol family 15
[    8.640719] NET: Registered protocol family 15
[    8.649800] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    8.649800] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    8.676096] 9pnet: Installing 9P2000 support
[    8.676096] 9pnet: Installing 9P2000 support
[    8.684787] Key type dns_resolver registered
[    8.684787] Key type dns_resolver registered
[    8.693853] Registered cp15_barrier emulation handler
[    8.693853] Registered cp15_barrier emulation handler
[    8.704138] Registered setend emulation handler
[    8.704138] Registered setend emulation handler
[    8.714808] registered taskstats version 1
[    8.714808] registered taskstats version 1
[    8.723679] Adding domain ve2-pd to PM domain host1x-pd
[    8.723679] Adding domain ve2-pd to PM domain host1x-pd
[    8.734521] Adding domain ve-pd to PM domain host1x-pd
[    8.734521] Adding domain ve-pd to PM domain host1x-pd
[    8.746893] isp 54600000.isp: initialized
[    8.746893] isp 54600000.isp: initialized
[    8.755959] isp 54680000.isp: initialized
[    8.755959] isp 54680000.isp: initialized
[    8.773952] last reset is due to pmic watchdog timeout
[    8.773952] last reset is due to pmic watchdog timeout
[    8.784383] KERNEL: PMC reset status reg: 0x5
[    8.784383] KERNEL: PMC reset status reg: 0x5
[    8.793268] BL: PMC reset status reg: 0x0
[    8.793268] BL: PMC reset status reg: 0x0
[    8.801394] BL: PMIC poweroff Event Recorder: 0x2
[    8.801394] BL: PMIC poweroff Event Recorder: 0x2
[    8.812369] clk_cbus_recalc_rate: no gbus parent
[    8.812369] clk_cbus_recalc_rate: no gbus parent
[    8.821738] clk_cbus_round_rate: no gbus parent
[    8.821738] clk_cbus_round_rate: no gbus parent
[    8.829801] mmc1: host does not support reading read-only switch, assuming write-enable
[    8.829801] mmc1: host does not support reading read-only switch, assuming write-enable
[    8.847177] clk_cbus_round_rate: no gbus parent
[    8.847177] clk_cbus_round_rate: no gbus parent
[    8.856357] clk_cbus_recalc_rate: no gbus parent
[    8.856357] clk_cbus_recalc_rate: no gbus parent
[    8.865801] clk_cbus_recalc_rate: no gbus parent
[    8.865801] clk_cbus_recalc_rate: no gbus parent
[    8.875163] clk_cbus_round_rate: no gbus parent
[    8.875163] clk_cbus_round_rate: no gbus parent
[    8.884343] clk_cbus_round_rate: no gbus parent
[    8.884343] clk_cbus_round_rate: no gbus parent
[    8.893521] clk_cbus_recalc_rate: no gbus parent
[    8.893521] clk_cbus_recalc_rate: no gbus parent
[    8.902885] tegra_dvfs: GPU-cap: registered
[    8.902885] tegra_dvfs: GPU-cap: registered
[    8.911416] tegra dvfs: vdd-cpu: nominal 1168mV, offset 708000uV, step 19200uV, scaling enabled
[    8.911416] tegra dvfs: vdd-cpu: nominal 1168mV, offset 708000uV, step 19200uV, scaling enabled
[    8.929059] tegra dvfs: vdd-core: nominal 1125mV, offset 600000uV, step 12500uV, scaling enabled
[    8.929059] tegra dvfs: vdd-core: nominal 1125mV, offset 600000uV, step 12500uV, scaling enabled
[    8.946873] tegra dvfs: vdd-gpu: nominal 1068mV, offset 708000uV, step 10000uV, scaling enabled
[    8.946873] tegra dvfs: vdd-gpu: nominal 1068mV, offset 708000uV, step 10000uV, scaling enabled
[    8.965230] tegra_dvfs: vdd-gpu-vts: registered
[    8.965230] tegra_dvfs: vdd-gpu-vts: registered
[    8.974770] tegra_core_action core_dvfs_cdev_floor: Tegra CORE DVFS 'floor cooling device' registered
[    8.974770] tegra_core_action core_dvfs_cdev_floor: Tegra CORE DVFS 'floor cooling device' registered
[    8.994099] tegra_core_action core_dvfs_cdev_cap: Tegra CORE DVFS 'cap cooling device' registered
[    8.994099] tegra_core_action core_dvfs_cdev_cap: Tegra CORE DVFS 'cap cooling device' registered
[    8.999746] mmc1: hw tuning done ...
[    8.999746] mmc1: hw tuning done ...
[    8.999780] mmc1: new ultra high speed SDR104 SDHC card at address 0001
[    8.999780] mmc1: new ultra high speed SDR104 SDHC card at address 0001
[    9.000152] mmcblk1: mmc1:0001 ASTOR 14.9 GiB
[    9.000152] mmcblk1: mmc1:0001 ASTOR 14.9 GiB
[    9.002861]  mmcblk1: p1
[    9.002861]  mmcblk1: p1
[    9.047391] input: gpio-keys as /devices/gpio-keys/input/input1
[    9.047391] input: gpio-keys as /devices/gpio-keys/input/input1
[    9.092815] tegra_rtc 7000e000.rtc: setting system clock to 2000-01-01 01:06:41 UTC (946688801)
[    9.092815] tegra_rtc 7000e000.rtc: setting system clock to 2000-01-01 01:06:41 UTC (946688801)
[    9.111389] vi 54080000.vi: vi_probe: ++
[    9.111389] vi 54080000.vi: vi_probe: ++
[    9.120924] vi 54080000.vi: initialized
[    9.120924] vi 54080000.vi: initialized
[    9.130363] vi 54080000.vi: subdev nvcsi--1 bound
[    9.130363] vi 54080000.vi: subdev nvcsi--1 bound
[    9.140116] mmcblk mmc0:0001: Card claimed for testing.
[    9.140116] mmcblk mmc0:0001: Card claimed for testing.
[    9.150717] mmcblk mmc1:0001: Card claimed for testing.
[    9.150717] mmcblk mmc1:0001: Card claimed for testing.
[    9.162501] Disable partitions left on by BL
[    9.162501] Disable partitions left on by BL
[    9.171162]   disb
[    9.171162]   disb
[    9.175275] bwmgr: missing cdev-type property
[    9.175275] bwmgr: missing cdev-type property
[    9.184193] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    9.184193] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    9.203108] DRAM derating cdev registered.
[    9.203108] DRAM derating cdev registered.
[    9.212198] ALSA device list:
[    9.212198] ALSA device list:
[    9.218258]   #0: tegra-hda at 0x70038000 irq 83
[    9.218258]   #0: tegra-hda at 0x70038000 irq 83
[    9.227615]   #1: tegra-snd-t210ref-mobile-rt565x
[    9.227615]   #1: tegra-snd-t210ref-mobile-rt565x

What is the scenario here? Using the pure minibase upstream rootfs?

Could you only run the upstream rootfs and apply_binaries.sh and see if it can work? I mean skip your step 3 to install systemd, kmod …etc.

I’ll try that, but apply_binaries.sh fails if some of packages are missing. I’ll try and install nothing that apply_binaries doesn’t need and try without anything else.

Some failure might be expected if running apply_binaries.sh a second time on the same sample rootfs, but if you unpack a pristine sample rootfs (this is available even though JetPack/SDK Manager will do it for you), and you get an error from “sudo ./apply_binaries.sh”, then you should post the output of the command producing the error. Most likely reinstalling SDKM completely will fix anything related to this.

Thanks linuxdev, however we don’t want the sample rootfs. The sample rootfs has been working for us through the initial development. Now we are trying to use the most minimal rootfs we can to save space and our security teams time reviewing unused libraries and packages.

This is why we are trying to either use a custom rootfs with debootstrap or Ubuntu base.

I am trying to make the process as simple as possible to find the root cause. What I did was write this script to build the most basic rootfs I could:

#!/bin/bash
set -e

pushd Linux_for_Tegra/tools/samplefs
cat << EOF > nvubuntu-bionic-aarch64-packages
libegl1=1.0.0-2ubuntu2.3
python=2.7.15~rc1-1
python3=3.6.7-1~18.04
device-tree-compiler=1.4.5-3
libxkbcommon0=0.8.2-1~ubuntu18.04.1
libx11-6=2:1.6.4-3ubuntu0.3
libxext6=2:1.3.3-1
libcairo2=1.15.10-2ubuntu0.1
libegl1-mesa=20.0.8-0ubuntu1~18.04.1
libgles2=1.0.0-2ubuntu2.3
libgtk-3-0=3.22.30-1ubuntu4
libwayland-egl1=1.16.0-1ubuntu1.1~18.04.3
libgstreamer1.0-0=1.14.5-0ubuntu1~18.04.1
libgstreamer-gl1.0-0=1.14.5-0ubuntu1~18.04.1
libgstreamer-plugins-bad1.0-0=1.14.5-0ubuntu1~18.04.1
libasound2=1.1.3-5ubuntu0.5
libevdev2=1.5.8+dfsg-1
libinput10=1.10.4-1ubuntu0.18.04.1
libunwind8=1.2.1-8
EOF
bash nv_build_samplefs.sh --abi aarch64 --distro ubuntu --version bionic --verbose
popd

rm -rf Linux_for_Tegra/rootfs
mkdir -p Linux_for_Tegra/rootfs
pushd Linux_for_Tegra/rootfs
tar -xf ../tools/samplefs/sample_fs.tbz2
popd

pushd Linux_for_Tegra
./apply_binaries.sh
popd

If I download a completely clean SDK, run this script to generate the rootfs, put our board in forced recovery, and then run:

./flash.sh jetson-nano-emmc mmcblk0p1

I can’t even flash the device (which is custom hardware with plenty of kernel and device tree changes)

I get a return code of 8 and the output of the serial port is this:

[0004.005] Enabled early print
[0004.007] [L4T TegraBoot] (version m▒▒▒▒
▒H▒▒▒D*▒^ZeT!▒▒{▒Ƿ▒▒M▒)G▒▒▒▒\▒tT(       ▒▒L▒9f▒▒▒▒"N▒▒▒H▒R\▒|֟▒C
                               ▒▒/▒n▒
▒s#▒)
[0004.022] Processing in recovery mode
[0004.026] A02 Bootrom Patch rev = 1023
[0004.029] Power-up reason: pmc por
[0004.032] Established communication link with host
[0005.062] NvTbootI2cWrite(): error code 0x00045100 Error while starting write transaction
[0005.070] NvTbootI2cDeviceRead(): error code 0x00045001 Error while sending the offset to slave
[0005.078] NvTbootI2c: Read failed for slave 0xac, offset 0x00 with error code 0x00045001
[0021.328] Enabled early print
[0021.331] [L4T TegraBoot] (version m▒▒▒▒
▒H▒▒▒D*▒^ZeT!▒▒{▒Ƿ▒▒M▒)G▒▒▒▒\▒tT(       ▒▒L▒9f▒▒▒▒"N▒▒▒H▒R\▒|֟▒C
                               ▒▒/▒n▒
▒s#▒)
[0021.346] Processing in recovery mode
[0021.349] A02 Bootrom Patch rev = 1023
[0021.353] Power-up reason: software reset
[0021.356] Established communication link with host
[0022.381] Odmdata from BCT: 0x000a4000
[0022.385] DebugPort= 0x3
[0022.387] SkipQspiOnly= 0x0
[0022.439] BoardId read from EEPROM/NCT: 3448
[0022.443] BoardID = 3448, SKU = 0x2
[0022.471] NvTbootInit_Porg: Setting GPIO_A6 for HDMI ...
[0022.476] max77620 setting MBLPD bit
[0022.479] No Battery Present
[0022.482] RamCode = 0
[0022.484] Platform has DDR4 type RAM
[0022.488] max77620 disabling SD1 Remote Sense
[0022.492] Setting DDR voltage to 1125mv
[0022.496] Serial Number of Pmic Max77663: 0x191271
[0022.503] Entering ramdump check
[0022.506] Get RamDumpCarveOut = 0x0
[0022.510] RamDumpCarveOut=0x0,  RamDumperFlag=0xe59ff3f8
[0022.515] Last reboot was clean, booting normally!
[0022.520] Sdram initialization is successful
[0022.524] SecureOs Carveout Base=0x00000000ff800000 Size=0x00800000
[0022.530] Lp0 Carveout Base=0x00000000ff780000 Size=0x00001000
[0022.536] BpmpFw Carveout Base=0x00000000ff700000 Size=0x00080000
[0022.542] GSC1 Carveout Base=0x00000000ff600000 Size=0x00100000
[0022.547] GSC2 Carveout Base=0x00000000ff500000 Size=0x00100000
[0022.553] GSC4 Carveout Base=0x00000000ff400000 Size=0x00100000
[0022.559] GSC5 Carveout Base=0x00000000ff300000 Size=0x00100000
[0022.565] GSC3 Carveout Base=0x000000017f300000 Size=0x00d00000
[0022.581] RamDump Carveout Base=0x00000000ff280000 Size=0x00080000
[0022.587] Platform-DebugCarveout: 0
[0022.591] Downloaded BCT successfully
[0022.904] Downloaded Bootloader successfully
[0023.025] Downloaded rp1 successfully
[0023.130] MAX77620_GPIO5 configured
[0023.134] CPU power rail is up
[0023.137] CPU clock enabled
[0023.141] Performing RAM repair
[0023.143] Updating A64 Warmreset Address to 0x92c002e9
[0023.150] Enable APE clock/reset
[0023.153] Error in NvTbootGetTOSBinaryLength: 0x11 !
[0023.157] Loading Secure OS image failed.
[0023.161] Set NvDecSticky Bits
[0023.165] GSC2 address ff53fffc value c0edbbcc
[0023.171] GSC MC Settings done
[0023.175] Next binary entry address: 0x92c00258
[0023.180] BoardId: 3448
[0023.182] Overriding pmu board id with proc board id
[0023.187] Display board id is not available
[0023.191] Starting CPU & Halting co-processor

[0023.759]
[0023.760] Debug Init done
[0023.763] Marked DTB cacheable
[0023.766] Bootloader DTB loaded at 0x83000400
[0023.770] DeviceTree Init done
[0023.783] Pinmux applied successfully
[0023.788] gicd_base: 0x50041000
[0023.791] gicc_base: 0x50042000
[0023.794] Interrupts Init done
[0023.798] Using base:0x60005090 & irq:208 for tick-timer
[0023.804] Using base:0x60005098 for delay-timer
[0023.808] platform_init_timer: DONE
[0023.811] Timer(tick) Init done
[0023.815] osc freq = 38400 khz
[0023.819]
[0023.820] Welcome to L4T Cboot
[0023.823]
[0023.824] Cboot Version: 00.00.2018.01-t210-c952b4e6
[0023.829] calling constructors
[0023.832] initializing heap
[0023.835] initializing threads
[0023.838] initializing timers
[0023.841] creating bootstrap completion thread
[0023.845] top of bootstrap2()
[0023.848] CPU: ARM Cortex A57
[0023.851] CPU: MIDR: 0x411FD071, MPIDR: 0x80000000
[0023.856] initializing platform
[0023.957] Config for emmc ddr50 mode completed
[0023.962] sdmmc bdev is already initialized
[0023.966] of_register: registering tegra_udc to of_hal
[0023.971] of_register: registering inv20628-driver to of_hal
[0023.976] of_register: registering ads1015-driver to of_hal
[0023.982] of_register: registering lp8557-bl-driver to of_hal
[0023.988] of_register: registering bq2419x_charger to of_hal
[0023.993] of_register: registering bq27441_fuel_gauge to of_hal
[0024.005] gpio framework initialized
[0024.008] of_register: registering tca9539_gpio to of_hal
[0024.013] of_register: registering tca9539_gpio to of_hal
[0024.019] of_register: registering i2c_bus_driver to of_hal
[0024.024] of_register: registering i2c_bus_driver to of_hal
[0024.030] of_register: registering i2c_bus_driver to of_hal
[0024.036] pmic framework initialized
[0024.039] of_register: registering max77620_pmic to of_hal
[0024.044] regulator framework initialized
[0024.048] of_register: registering tps65132_bl_driver to of_hal
[0024.054] initializing target
[0024.060] gpio_driver_register: register 'tegra_gpio_driver' driver
[0024.071] fixed regulator driver initialized
[0024.088] initializing OF layer
[0024.092] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0024.108] I2C Bus Init done
[0024.111] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0024.121] I2C Bus Init done
[0024.124] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0024.134] I2C Bus Init done
[0024.137] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0024.147] I2C Bus Init done
[0024.150] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0024.160] I2C Bus Init done
[0024.163] of_children_init: Ops found for compatible string maxim,max77620
[0024.173] max77620_init using irq 118
[0024.178] register 'maxim,max77620' pmic
[0024.182] gpio_driver_register: register 'max77620-gpio' driver
[0024.188] of_children_init: Ops found for compatible string nvidia,tegra210-i2c
[0024.199] I2C Bus Init done
[0024.202] Applying platform configs
[0024.209] platform-init is not present. Skipping
[0024.213] calling apps_init()
[0024.237] Found 19 GPT partitions in "sdmmc3_user"
[0024.242] Proceeding to flashing Server
[0024.246] usbdcd_reinit Initialize driver to use already enumerated device
[0024.253] nv3p_priv_usbf_open USB configuration success

If I use the script above to build the most basic rootfs and then use our kernel, but no other changes to the roofs, I can flash the device but we get the same hang as we were seeing in the initial post.

If I use the sample rootfs as the base and our kernel everything boots just fine, but at 5 times the size.

What could cause the vanilla kernel to break the flash?
And what could cause the minimal rootfs break the boot?

I can’t say for sure, but I’d bet on the i2c failures. Generally speaking, i2c errors would be either from kernel config missing items, or from device tree setup being wrong for i2c. Check very closely if (A) the kernel has full i2c support compared to the stock kernel, and (B) if device tree setup is correct.

Its something I will look into. However, our kernel and customizations work fine with the sample rootfs as our base and we have the same i2c failures on a successful boot. There seems to be something in the sample rootfs that is required to be installed that the ubuntu base rootfs doesn’t have.

I’ll try and track the I2C errors separately in the sample rootfs that boots.

I don’t know if it would help, but just for reference you might also do the following (if someone is looking at this, then it is best to list the package differences for easy lookup):

  • For both working (non-minimal rootfs) and failing case, create a package log, e.g.:
    dpkg -l | tail -n +6 | cut -b5-50 | sort 2>&1 | tee log_workingcase.txt
    dpkg -l | tail -n +6 | cut -b5-50 | sort 2>&1 | tee log_failingcase.txt
  • Next, create a context diff:
    diff -c -w log_workingcase.txt log_failingcase.txt 2>&1 | tee work_vs_fail_diff.txt

Then post the “work_vs_fail_diff.txt”. This is definitely not a way to go straight to the problem, but anyone working on this will probably find it useful to have a list of what packages are removed. For example, maybe something related to USB drivers changed.

Related to drivers and packages, what changes occurred in modules? Similar to the package list, consider the working case and failing case of modules found. You’d list those from the host PC instead of the Jetson since the Jetson isn’t booting fully, and this would go something like the following:

  • Go to “Linux_for_Tegra/”.
  • Make a list of module files:
# Show modules for the host PC minimal rootfs:
find ./rootfs/lib/modules/<whatever uname -r is>/kernel/ -type f | cut -d '/' -f 6- | sort 2>&1 | tee modules_failing.txt
# Repeat using the sample rootfs:
find ./rootfs/lib/modules/<whatever uname -r is>/kernel/ -type f | cut -d '/' -f 6- | sort 2>&1 | tee modules_working.txt
# Context diff for posting to forum:
diff -c -w modules_working.txt modules_failing.txt 2>&1 | tee module_diff.txt

(then post the module_diff.txt)

Additionally, which release did this start with? I don’t know if you took the sample rootfs and simply substituted it for a “minimal” rootfs, or actually removed packages from the sample rootfs. Regardless of version, this would have been flashed with some particular JetPack/SDK Manager release, and it might be important to know what that release version is even if the rootfs itself is completely custom.

For the last year or so we have been using r32.6.1. The sample rootfs (base rootfs) we have been using is tegra_linux_sample-root-filesystem_r32.6.1_aarch64.tbz2. Because our product is a completely custom we have had to make many changes to the kernel, device-tree, drivers, and the rootfs to manage the HW. All of these have been applied ontop of the base rootfs (tegra_linux_sample-root-filesystem_r32.6.1_aarch64.tbz2).

Now we are in the process of cleaning up and getting our product ready for the different review processes, which means getting rid of all the packages that we don’t need. So we are attempting to generate a rootfs from scratch, we have tried with debootstrap, ubuntu base, and the nv_build_samplefs.sh. We are not removing packages one at a time, we don’t want the majority of the packages that are installed, we are attempting to start from nothing and work our way back to the same functionality that we have been developing for the last year and a half. The issue is we can’t even get the kernel to boot. The logs we are capturing are through the UART serial port, but we don’t have a way to send input into the system.

Now that I have hopefully explained why we can’t use the sample rootfs anymore, I will post the requested logs. I had to sanitize some of the logs of the stuff we are not able to share publicly.

this is work_vs_fail_diff.txt.
I don’t see a lot of differences here that tell me why one fails and the other doesn’t. The main difference is that the working one ends with a login prompt and the failing one doesn’t.

*** log_workingcase2.txt	2022-06-27 10:20:30.107405943 -0600
--- log_failingcase2.txt	2022-06-27 10:15:21.529152762 -0600
***************
*** 7,16 ****
   9p: Installing v9fs 9p2000 file system support
   9pnet: Installing 9P2000 support
       Actions configured
-  Adding 507464k swap on /dev/zram0.  Priority:5 extents:1 across:507464k SS
-  Adding 507464k swap on /dev/zram1.  Priority:5 extents:1 across:507464k SS
-  Adding 507464k swap on /dev/zram2.  Priority:5 extents:1 across:507464k SS
-  Adding 507464k swap on /dev/zram3.  Priority:5 extents:1 across:507464k SS
   Adding domain msenc-pd to PM domain host1x-pd
   Adding domain nvdec-pd to PM domain host1x-pd
   Adding domain nvjpg-pd to PM domain host1x-pd
--- 7,12 ----
***************
*** 22,33 ****
   aer 0000:00:02.0:pcie002: service driver aer loaded
   ALSA device list:
   alternatives: patching kernel code
-  android_work: did not send uevent (0 0           (null))
   arm_arch_timer: Architected cp15 timer(s) running at 19.20MHz (phys).
   ASID allocator initialised with 65536 entries
   atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
   audit: initializing netlink subsys (disabled)
!  audit: type=2000 audit(0.827:1): initialized
   avdd-1v05-pll: 1050 mV
   avdd-io-edp-1v05: 1050 mV
   avdd-io-edp-1v05: disabling
--- 18,28 ----
   aer 0000:00:02.0:pcie002: service driver aer loaded
   ALSA device list:
   alternatives: patching kernel code
   arm_arch_timer: Architected cp15 timer(s) running at 19.20MHz (phys).
   ASID allocator initialised with 65536 entries
   atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
   audit: initializing netlink subsys (disabled)
!  audit: type=2000 audit(0.823:1): initialized
   avdd-1v05-pll: 1050 mV
   avdd-io-edp-1v05: 1050 mV
   avdd-io-edp-1v05: disabling
***************
*** 80,86 ****
   CPU features: detected feature: 32-bit EL0 Support
   CPU features: enabling workaround for ARM erratum 832075
   cpuidle: using governor menu
-  cpu-throttle-alert cooling device registered.
         .data : 0xffffff8009e00000 - 0xffffff800a0d2008   (  2889 KB)
   Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
   device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
--- 75,80 ----
***************
*** 98,133 ****
     DMA zone: 8192 pages used for memmap
   DRAM derating cdev registered.
   [drm] Initialized
!  DTB Build time: Jun 17 2022 15:48:33
!  DTB Build time: Jun 17 2022 15:48:33
!  DTS File Name: /home/salzano/jetson/JetsonImageBuild/ManualBuild/Linux_for_Tegra/sour
!  DTS File Name: /home/salzano/jetson/JetsonImageBuild/ManualBuild/Linux_for_Tegra/sour
   e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
   e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
   earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
   early log buf free: 29816(90%)
   ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
   ehci-pci: EHCI PCI platform driver
-  eth0: 0xffffff800aa77000, 48:b0:2d:67:af:1d, IRQ 408
   eventlib_kernel: keventlib is initialized, test id: 0
   EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
   EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
-  EXT4-fs (mmcblk0p3): mounted filesystem without journal. Opts: (null)
-  EXT4-fs (mmcblk0p3): resized filesystem to 524288
-  EXT4-fs (mmcblk0p3): resizing filesystem from 1024 to 524288 blocks
   extcon-disp-state extcon:disp-state: cable 44 state 0 already set.
   Extcon DP: HPD disabled
   extcon-gpio-states extcon:extcon@1: Cable state:1, cable id:1
   extcon-gpio-states usb_otg: Cable state:1, cable id:1
-  extcon-gpio-states usb_otg: Cable state:1, cable id:1
-  extcon-gpio-states usb_otg: Cable state:1, cable id:1
   falcon 54340000.vic: initialized
   falcon 54380000.nvjpg: initialized
   falcon 544c0000.nvenc: initialized
--- 92,114 ----
     DMA zone: 8192 pages used for memmap
   DRAM derating cdev registered.
   [drm] Initialized
!  DTB Build time: Jun 17 2022 15:29:42
!  DTB Build time: Jun 17 2022 15:29:42
!  DTS File Name: /home/salzano/jetson/JetsonImageBuild/ManualBuild/Linux_for_Tegra/sour
!  DTS File Name: /home/salzano/jetson/JetsonImageBuild/ManualBuild/Linux_for_Tegra/sour
   e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
   e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
   earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
   early log buf free: 29816(90%)
   ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
   ehci-pci: EHCI PCI platform driver
   eventlib_kernel: keventlib is initialized, test id: 0
   EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
   EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
   extcon-disp-state extcon:disp-state: cable 44 state 0 already set.
   Extcon DP: HPD disabled
   extcon-gpio-states extcon:extcon@1: Cable state:1, cable id:1
   extcon-gpio-states usb_otg: Cable state:1, cable id:1
   falcon 54340000.vic: initialized
   falcon 54380000.nvjpg: initialized
   falcon 544c0000.nvenc: initialized
***************
*** 138,158 ****
   Freeing initrd memory: 6992K
   Freeing unused kernel memory: 8448K
   ftrace: allocating 46446 entries in 182 pages
-  fuse init (API version 7.26)
   futex hash table entries: 1024 (order: 4, 65536 bytes)
   gic 702f9000.agic: GIC IRQ controller registered
-  gpio-bb: gpio bit-bang driver version 1.3 ready.
   gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip0 (tegra-gpio)
   gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpiochip1 (max77620-gpio)
   gpio gpiochip0: gpio-line-names specifies 240 line names but there are 256 lines on t
   GPIO line 505 (spmic-default-output-high) hogged as output/high
   GPIO line 6 (system-suspend-gpio) hogged as output/high
-  gpu-throttle-alert cooling device registered.
   hidraw: raw HID events driver (C) Jiri Kosina
   hisi_sas: driver version v1.6
   host1x 50000000.host1x: initialized
   Host read timeout at address 545c00c4
-  hot-surface-alert cooling device registered.
   hpd: hpd_switch 0
   hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
   hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
--- 119,135 ----
***************
*** 168,175 ****
   hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
   hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
   i2c /dev entries driver
-  i2c i2c-2: Setting clock rate 400000 on next transfer
-  i2c i2c-2: Setting clock rate 50000 on next transfer
   i2c-slave-eeprom 1-0064: i2c_slave_register: client slave flag not set. You might see
   igb: Copyright (c) 2007-2014 Intel Corporation.
   igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
--- 145,150 ----
***************
*** 223,322 ****
   io scheduler cfq registered (default)
   io scheduler noop registered
   ip_tables: (C) 2000-2006 Netfilter Core Team
-  IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
   isp 54600000.isp: initialized
   isp 54680000.isp: initialized
   ixgbe: Copyright (c) 1999-2016 Intel Corporation.
   ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k
   Kernel command line: tegraid=21.1.2.0.0 ddr_die=4096M@2048M section=512M memtype=0 vp
--- 198,205 ----
***************
*** 333,341 ****
   log_buf_len min size: 32768 bytes
   log_buf_len total cpu_extra contributions: 98304 bytes
   loop: module loaded
-  LUN: removable file: (no medium)
-  Mass Storage Function, version: 2009/09/11
-  mass_storage.usb0/lun.0: unable to open backing file: /opt/InputEmulation/filesystem.
   max77620 4-003c: max77620 probe successful
   max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
   max77620-ldo3: at 3100 mV
--- 216,221 ----
***************
*** 452,472 ****
   PID hash table entries: 4096 (order: 3, 32768 bytes)
   pid_max: default: 32768 minimum: 301
   pinctrl core: initialized pinctrl subsystem
!  platform 57000000.gpu: domain=ffffffc0f94e1b58 allocates as[0]=ffffffc0f9bf0318
!  platform 57000000.gpu: domain=ffffffc0f94e1b58 allocates as[1]=ffffffc0f9bf0380
!  platform 57000000.gpu: domain=ffffffc0f94e1b58 allocates as[2]=ffffffc0f9bf03e8
!  platform 57000000.gpu: domain=ffffffc0f94e1b58 allocates as[3]=ffffffc0f9bf0450
!  platform 70006000.serial: domain=ffffffc0f94a9618 allocates as[0]=ffffffc0f9bf0178
!  platform sdhci-tegra.2: domain=ffffffc0f954cf18 allocates as[0]=ffffffc0f9bf0520
!  platform sdhci-tegra.3: domain=ffffffc0f954ccd8 allocates as[0]=ffffffc0f9bf04b8
   platform serial8250: No iommus property found in DT node, got swgids from fixup(10100
!  platform smmu_test: domain=ffffffc0f9b9f618 allocates as[0]=ffffffc0f9bf0110
   platform snd-soc-dummy: No iommus property found in DT node, got swgids from fixup(10
!  platform sound: domain=ffffffc0f94a9b58 allocates as[0]=ffffffc0f9bf01e0
!  platform tegra-carveouts: domain=ffffffc0f9b9f3d8 allocates as[0]=ffffffc0f9bf00a8
!  platform tegradc.0: domain=ffffffc0f94b5918 allocates as[0]=ffffffc0f9bf0248
   platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
!  platform tegradc.1: domain=ffffffc0f94b5b58 allocates as[0]=ffffffc0f9bf02b0
   platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
   Plugin module not found
   PPP BSD Compression module registered
--- 332,352 ----
   PID hash table entries: 4096 (order: 3, 32768 bytes)
   pid_max: default: 32768 minimum: 301
   pinctrl core: initialized pinctrl subsystem
!  platform 57000000.gpu: domain=ffffffc0f9497b58 allocates as[0]=ffffffc0f941c318
!  platform 57000000.gpu: domain=ffffffc0f9497b58 allocates as[1]=ffffffc0f941c380
!  platform 57000000.gpu: domain=ffffffc0f9497b58 allocates as[2]=ffffffc0f941c3e8
!  platform 57000000.gpu: domain=ffffffc0f9497b58 allocates as[3]=ffffffc0f941c450
!  platform 70006000.serial: domain=ffffffc0f9482618 allocates as[0]=ffffffc0f941c178
!  platform sdhci-tegra.2: domain=ffffffc0f954d918 allocates as[0]=ffffffc0f941c520
!  platform sdhci-tegra.3: domain=ffffffc0f954d6d8 allocates as[0]=ffffffc0f941c4b8
   platform serial8250: No iommus property found in DT node, got swgids from fixup(10100
!  platform smmu_test: domain=ffffffc0f9b96618 allocates as[0]=ffffffc0f941c110
   platform snd-soc-dummy: No iommus property found in DT node, got swgids from fixup(10
!  platform sound: domain=ffffffc0f9482b58 allocates as[0]=ffffffc0f941c1e0
!  platform tegra-carveouts: domain=ffffffc0f9b963d8 allocates as[0]=ffffffc0f941c0a8
!  platform tegradc.0: domain=ffffffc0f948d918 allocates as[0]=ffffffc0f941c248
   platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
!  platform tegradc.1: domain=ffffffc0f948db58 allocates as[0]=ffffffc0f941c2b0
   platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
   Plugin module not found
   PPP BSD Compression module registered
***************
*** 548,565 ****
   Speculative Store Bypass Disable mitigation not required
   squashfs: version 4.0 (2009/01/31) Phillip Lougher
   Switching from initrd to actual rootfs
   systemd[1]: Created slice System Slice.
   systemd[1]: Detected architecture arm64.
   systemd[1]: File /lib/systemd/system/systemd-journald.service:36 configures an IP fir
!  systemd[1]: Listening on RPCbind Server Activation Socket.
   systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for
!  systemd[1]: Reached target Swap.
!  systemd[1]: Reached target User and Group Name Lookups.
!  systemd[1]: Set hostname to <jetson>.
   systemd[1]: Started Forward Password Requests to Wall Directory Watch.
   systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR 
   systemd[1]: System time before build time, advancing clock.
!  systemd-journald[2001]: Received request to flush runtime journal from PID 1
   t210 clock and reset probe
   TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
   TCP established hash table entries: 32768 (order: 6, 262144 bytes)
--- 428,446 ----
   Speculative Store Bypass Disable mitigation not required
   squashfs: version 4.0 (2009/01/31) Phillip Lougher
   Switching from initrd to actual rootfs
+  systemd[1891]: kmod-static-nodes.service: Failed to execute command: No such file or 
+  systemd[1]: Created slice system-getty.slice.
   systemd[1]: Created slice System Slice.
   systemd[1]: Detected architecture arm64.
   systemd[1]: File /lib/systemd/system/systemd-journald.service:36 configures an IP fir
!  systemd[1]: Listening on Journal Socket (/dev/log).
!  systemd[1]: Listening on Network Service Netlink Socket.
   systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for
!  systemd[1]: Set hostname to <jetson>.
   systemd[1]: Started Forward Password Requests to Wall Directory Watch.
   systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR 
   systemd[1]: System time before build time, advancing clock.
!  systemd-journald[1895]: Received request to flush runtime journal from PID 1
   t210 clock and reset probe
   TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
   TCP established hash table entries: 32768 (order: 6, 262144 bytes)
***************
*** 612,618 ****
   tegradc tegradc.0: err:-19 parsing panel_ops
   tegradc tegradc.0: tegra_dc_parse_panel_ops: panel: /host1x/sor1/hdmi-display is not 
   tegradc tegradc.1: blank - powerdown
-  tegradc tegradc.1: blank - powerdown
   tegradc tegradc.1: disp0 connected to head1->/host1x/sor
   tegradc tegradc.1: Display dc.ffffff800ab00000 registered with id=0
   tegradc tegradc.1: dpd enable lookup fail:-19
--- 493,498 ----
***************
*** 662,668 ****
   Tegra reboot handler registered.
   Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 0
   tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
!  tegra_rtc 7000e000.rtc: setting system clock to 2000-01-01 01:14:49 UTC (946689289)
   tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
   tegra-se 70012000.se: tegra_se_probe: complete
   tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
--- 542,548 ----
   Tegra reboot handler registered.
   Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 0
   tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
!  tegra_rtc 7000e000.rtc: setting system clock to 2000-01-01 01:06:08 UTC (946688768)
   tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
   tegra-se 70012000.se: tegra_se_probe: complete
   tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
***************
*** 676,685 ****
   tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -1
   tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -1
   tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -1
-  tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -1
-  tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -1
-  tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -1
-  tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -1
   tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when cpu reaches 102500 m
   tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when gpu reaches 103000 m
   tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when pll reaches 127000 m
--- 556,561 ----
***************
*** 691,704 ****
   tegra-xudc-new 700d0000.xudc: active: 0 => 1
   tegra-xudc-new 700d0000.xudc: device count: 1
   tegra-xudc-new 700d0000.xudc: device mode on: 0
-  tegra-xudc-new 700d0000.xudc: ep 0 disabled
-  tegra-xudc-new 700d0000.xudc: ep 0 (type: 0, dir: out) enabled
-  tegra-xudc-new 700d0000.xudc: ep 0 (type: 0, dir: out) enabled
   tegra-xudc-new 700d0000.xudc: USB charger detection disabled
   tegra-xudc-new 700d0000.xudc: vbus state: 1
   tegra-xusb 70090000.xusb: entering ELPG
   tegra-xusb 70090000.xusb: entering ELPG done
!  tegra-xusb 70090000.xusb: extcon 0: ffffffc0fa5d2c00 id
   tegra-xusb 70090000.xusb: Firmware timestamp: 2020-07-31 09:33:12 UTC, Version: 50.26
   tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100 quirks 0x00050010
   tegra-xusb 70090000.xusb: irq 63, io mem 0x70090000
--- 567,577 ----
   tegra-xudc-new 700d0000.xudc: active: 0 => 1
   tegra-xudc-new 700d0000.xudc: device count: 1
   tegra-xudc-new 700d0000.xudc: device mode on: 0
   tegra-xudc-new 700d0000.xudc: USB charger detection disabled
   tegra-xudc-new 700d0000.xudc: vbus state: 1
   tegra-xusb 70090000.xusb: entering ELPG
   tegra-xusb 70090000.xusb: entering ELPG done
!  tegra-xusb 70090000.xusb: extcon 0: ffffffc0f97a6c00 id
   tegra-xusb 70090000.xusb: Firmware timestamp: 2020-07-31 09:33:12 UTC, Version: 50.26
   tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100 quirks 0x00050010
   tegra-xusb 70090000.xusb: irq 63, io mem 0x70090000
***************
*** 817,834 ****
   VFS: Disk quotas dquot_6.6.0
   VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
   vi 54080000.vi: initialized
   vi 54080000.vi: subdev nvcsi--1 bound
   vi 54080000.vi: vi_probe: ++
   Virtual kernel memory layout:
       vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 GB)
       vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)
   workingset: timestamp_bits=46 max_order=20 bucket_order=0
-  zram0: detected capacity change from 0 to 519647232
-  zram1: detected capacity change from 0 to 519647232
-  zram2: detected capacity change from 0 to 519647232
-  zram3: detected capacity change from 0 to 519647232
-  zram: Added device: zram0
-  zram: Added device: zram1
-  zram: Added device: zram2
-  zram: Added device: zram3
--- 690,698 ----

module_diff.txt is empty as there are no differences in our kernel between the sample rootfs and what we want for the minimal rootfs.

We are running a headless solution if that clues anyone into what could be causing our issues.

I have not read through the newest logs, I’m going to just add notes here as I read it (thus the notes are somewhat random and I don’t know yet what I’m going to conclude or fail to conclude)…

Was the initrd modified?

No zram swap. Not sure if it matters, but was this intentionally removed? Mostly the system would still work as expected, but there are some cases of software which might need swap space.

The diff is not a package diff, but seems useful. However, I’m not positive of what the diff is based on, e.g., maybe dmesg. To avoid guessing, what is the diff from?

It looks like there is still an OTG USB port. Is this wired the same versus the dev kit OTG port? Mostly I’m wondering if the cable ID pin is still wired in the same way (some people might hard wire this ID pin).

eth0 is lost, but the e1000e driver is present (is this a separate NIC? if so, how is it connected?).

You’ve lost the FUSE filesystem. This is useful for some user space programs, but not necessarily for a system to boot. If you’ve removed anything for FUSE and it wasn’t intentional, then you might add it back in (at least temporarily).

I see systemd managed to enable swap and set a hostname. That’s a sign the kernel did in fact load and become functional to at least part way in.

Looks like systemd failed to load ‘kmod-static-nodes.service’. I’m not sure of the cause or effect, but it seems possible there might be an issue working with kernel modules. Do any of your boot logs indicate what the “uname -r” is with this new kernel? I don’t see a direct sign (at this point in the log) as to kernel modules not being found, but it is worth checking. Note that if a kernel module is required during boot prior to the ext4 filesystem loading, then that module would have to be in the initrd; other parts of the system which load after the rootfs becomes the filesystem root would also fail if they require a module which couldn’t be found, and this is possible (ext4 was loaded before so I doubt it is an initrd issue). Not having modules at the correct “/lib/modules/$(uname -r)/kernel” location is the most common error since many people do not correctly set “CONFIG_LOCALVERSION”.

I see tegradc errors, possibly just because (as you mentioned) it is headless. This wouldn’t prevent boot.

I now see (much later in logs) zram added, so the earlier zram note wouldn’t be significant unless something needed zram earlier on in boot (not likely).

Incidentally, it was mostly the package list diff I was hoping to have you post. That list would not be a starting point for debugging, but it would help verify if a missing package is the cause of some log line error.

It is good that module_diff.txt is unchanged, but of course this is all what is getting flashed. I mentioned “uname -r” earlier, and needing a correct “CONFIG_LOCALVERSION” in order for modules to be found.

Hi, Thank you for taking a look. I’ll try and answer all the questions.
No initrd was not modified.
I misread (blaming my dyslexia) dpkg as dmesg so I took the serial port debug output instead. At the end I will attach what you actually were looking for.
No our OTG is wired differently than the dev kit. This works with our kernel/device tree, and management services.
Eth0 does usually work with our full solution but because we are using networkd as our network manager this base rootfs might be missing some things still. We were trying to just get it to boot before we could see what services were failing to start.
FUSE is not something we intentionally lost, but we will need to make sure we don’t require it.
In the working rootfs the kernel “uname -r” is 4.9.253-tegra. Which is available under /lib/modules/ in both the working and failing rootfs.

In an attempt to reduce variables I moved the test to the devkit instead. And I use the vanilla kernel that comes with the SDK. This means that we don’t have any HW or Kernel changes that could cause the issue. I see the same result with the default dev kit and kernel image. I also left the base rootfs’s unconfigured other than running apply_binaries.sh on top of them.

I will post the package diff between the 2, following your instructions, with dpkg this time. This was done with chroot as I can’t access anything on the failing rootfs. Since there is a post limit this will be a separate post.

Part 1

*** dpkg_workingcase.txt	2022-06-28 23:27:34.196190930 -0600
--- dpkg_failingcase.txt	2022-06-29 00:08:32.453576837 -0600
***************
*** 1,1769 ****
- accountsservice                               
- acl                                           
- activity-log-manager                          
  adduser                                       
- adium-theme-ubuntu                            
  adwaita-icon-theme                            
- aisleriot                                     
- alsa-base                                     
- alsa-utils                                    
- anacron                                       
- apg                                           
- app-install-data-partner                      
- apparmor                                      
- appmenu-qt:arm64                              
- apport                                        
- apport-gtk                                    
- apport-symptoms                               
- appstream                                     
  apt                                           
- apt-clone                                     
- apt-config-icons                              
- aptdaemon                                     
- aptdaemon-data                                
- apturl                                        
- apturl-common                                 
- archdetect-deb                                
- aspell                                        
- aspell-en                                     
  at-spi2-core                                  
- autoconf                                      
- automake                                      
- autotools-dev                                 
- avahi-autoipd                                 
- avahi-daemon                                  
- avahi-utils                                   
- bamfdaemon                                    
- baobab                                        
  base-files                                    
  base-passwd                                   
  bash                                          
- bash-completion                               
- bc                                            
- bind9-host                                    
- binutils                                      
- binutils-aarch64-linux-gnu                    
- binutils-common:arm64                         
- bison                                         
- blt                                           
- blueman                                       
- bluez                                         
- bluez-obexd                                   
- bogl-bterm                                    
- bolt                                          
- branding-ubuntu                               
- bridge-utils                                  
- brltty                                        
- bsdmainutils                                  
  bsdutils                                      
- bubblewrap                                    
- build-essential                               
- busybox-initramfs                             
- busybox-static                                
  bzip2                                         
- ca-certificates                               
- can-utils                                     
- cgroupfs-mount                                
- cheese                                        
- cheese-common                                 
- chromium-browser                              
- chromium-browser-l10n                         
- chromium-codecs-ffmpeg-extra                  
- clipit                                        
- colord                                        
- colord-data                                   
- compiz                                        
- compiz-core                                   
- compiz-gnome                                  
- compiz-plugins-default:arm64                  
- compton                                       
- console-setup                                 
- console-setup-linux                           
- containerd                                    
  coreutils                                     
- cpio                                          
- cpp                                           
- cpp-7                                         
- cracklib-runtime                              
- crda                                          
- cron                                          
- cryptsetup                                    
- cryptsetup-bin                                
  dash                                          
  dbus                                          
- dbus-user-session                             
- dbus-x11                                      
- dc                                            
- dconf-cli                                     
  dconf-gsettings-backend:arm64                 
  dconf-service                                 
  debconf                                       
- debconf-utils                                 
  debianutils                                   
- deja-dup                                      
- desktop-file-utils                            
  device-tree-compiler                          
- dictionaries-common                           
- diffstat                                      
  diffutils                                     
- dirmngr                                       
- distro-info-data                              
  dmsetup                                       
- dmz-cursor-theme                              
- dns-root-data                                 
- dnsmasq-base                                  
- docker                                        
- docker.io                                     
- dosfstools                                    
  dpkg                                          
- dpkg-dev                                      
- dpkg-repack                                   
  e2fsprogs                                     
- eject                                         
- emacsen-common                                
- enchant                                       
- eog                                           
- espeak-ng-data:arm64                          
- ethtool                                       
- evince                                        
- evince-common                                 
- evolution-data-server                         
- evolution-data-server-common                  
- example-content                               
- fakeroot                                      
- fbset                                         
  fdisk                                         
- ffmpeg                                        
  file                                          
- file-roller                                   
  findutils                                     
- fio                                           
- flex                                          
  fontconfig                                    
  fontconfig-config                             
- fonts-beng                                    
- fonts-beng-extra                              
  fonts-dejavu-core                             
- fonts-deva                                    
- fonts-deva-extra                              
- fonts-droid-fallback                          
- fonts-freefont-ttf                            
- fonts-gargi                                   
- fonts-gubbi                                   
- fonts-gujr                                    
- fonts-gujr-extra                              
- fonts-guru                                    
- fonts-guru-extra                              
- fonts-indic                                   
- fonts-kacst                                   
- fonts-kacst-one                               
- fonts-kalapi                                  
- fonts-khmeros-core                            
- fonts-knda                                    
- fonts-lao                                     
- fonts-liberation                              
- fonts-liberation2                             
- fonts-lklug-sinhala                           
- fonts-lohit-beng-assamese                     
- fonts-lohit-beng-bengali                      
- fonts-lohit-deva                              
- fonts-lohit-gujr                              
- fonts-lohit-guru                              
- fonts-lohit-knda                              
- fonts-lohit-mlym                              
- fonts-lohit-orya                              
- fonts-lohit-taml                              
- fonts-lohit-taml-classical                    
- fonts-lohit-telu                              
- fonts-lyx                                     
- fonts-mlym                                    
- fonts-nakula                                  
- fonts-navilu                                  
- fonts-noto-cjk                                
- fonts-noto-color-emoji                        
- fonts-noto-mono                               
- fonts-opensymbol                              
- fonts-orya                                    
- fonts-orya-extra                              
- fonts-pagul                                   
- fonts-sahadeva                                
- fonts-samyak-deva                             
- fonts-samyak-gujr                             
- fonts-samyak-mlym                             
- fonts-samyak-taml                             
- fonts-sarai                                   
- fonts-sil-abyssinica                          
- fonts-sil-padauk                              
- fonts-smc                                     
- fonts-smc-anjalioldlipi                       
- fonts-smc-chilanka                            
- fonts-smc-dyuthi                              
- fonts-smc-karumbi                             
- fonts-smc-keraleeyam                          
- fonts-smc-manjari                             
- fonts-smc-meera                               
- fonts-smc-rachana                             
- fonts-smc-raghumalayalamsans                  
- fonts-smc-suruma                              
- fonts-smc-uroob                               
- fonts-taml                                    
- fonts-telu                                    
- fonts-telu-extra                              
- fonts-thai-tlwg                               
- fonts-tibetan-machine                         
- fonts-tlwg-garuda                             
- fonts-tlwg-garuda-ttf                         
- fonts-tlwg-kinnari                            
- fonts-tlwg-kinnari-ttf                        
- fonts-tlwg-laksaman                           
- fonts-tlwg-laksaman-ttf                       
- fonts-tlwg-loma                               
- fonts-tlwg-loma-ttf                           
- fonts-tlwg-mono                               
- fonts-tlwg-mono-ttf                           
- fonts-tlwg-norasi                             
- fonts-tlwg-norasi-ttf                         
- fonts-tlwg-purisa                             
- fonts-tlwg-purisa-ttf                         
- fonts-tlwg-sawasdee                           
- fonts-tlwg-sawasdee-ttf                       
- fonts-tlwg-typewriter                         
- fonts-tlwg-typewriter-ttf                     
- fonts-tlwg-typist                             
- fonts-tlwg-typist-ttf                         
- fonts-tlwg-typo                               
- fonts-tlwg-typo-ttf                           
- fonts-tlwg-umpush                             
- fonts-tlwg-umpush-ttf                         
- fonts-tlwg-waree                              
- fonts-tlwg-waree-ttf                          
- fonts-ubuntu                                  
- foomatic-db-compressed-ppds                   
- freeglut3-dev:arm64                           
- freeglut3:arm64                               
- freepats                                      
- fuse                                          
- fwupd                                         
- fwupd-signed                                  
- fwupdate                                      
- fwupdate-signed                               
- g++                                           
- g++-7                                         
- gcc                                           
- gcc-7                                         
- gcc-7-base:arm64                              
  gcc-8-base:arm64                              
- gconf-service                                 
- gconf-service-backend                         
- gconf2                                        
- gconf2-common                                 
- gcr                                           
- gdb                                           
- gdbserver                                     
- gdisk                                         
- gdm3                                          
- gedit                                         
- gedit-common                                  
- genisoimage                                   
- geoclue                                       
- geoclue-2.0                                   
- geoclue-ubuntu-geoip                          
- geoip-database                                
- gettext                                       
- gettext-base                                  
- ghostscript                                   
- ghostscript-x                                 
- giblib1:arm64                                 
- gir1.2-accounts-1.0:arm64                     
- gir1.2-accountsservice-1.0                    
- gir1.2-appindicator3-0.1                      
- gir1.2-atk-1.0:arm64                          
- gir1.2-atspi-2.0:arm64                        
- gir1.2-dbusmenu-glib-0.4:arm64                
- gir1.2-dee-1.0                                
- gir1.2-freedesktop:arm64                      
- gir1.2-gck-1:arm64                            
- gir1.2-gcr-3:arm64                            
- gir1.2-gdata-0.0:arm64                        
- gir1.2-gdesktopenums-3.0:arm64                
- gir1.2-gdkpixbuf-2.0:arm64                    
- gir1.2-gdm-1.0                                
- gir1.2-geoclue-2.0:arm64                      
  gir1.2-glib-2.0:arm64                         
- gir1.2-gmenu-3.0:arm64                        
- gir1.2-gnomebluetooth-1.0:arm64               
- gir1.2-gnomedesktop-3.0:arm64                 
- gir1.2-goa-1.0:arm64                          
- gir1.2-gst-plugins-base-1.0:arm64             
- gir1.2-gstreamer-1.0:arm64                    
- gir1.2-gtk-3.0:arm64                          
- gir1.2-gtksource-3.0:arm64                    
- gir1.2-gweather-3.0:arm64                     
- gir1.2-harfbuzz-0.0:arm64                     
- gir1.2-ibus-1.0:arm64                         
- gir1.2-javascriptcoregtk-4.0:arm64            
- gir1.2-json-1.0:arm64                         
- gir1.2-mutter-2:arm64                         
- gir1.2-nm-1.0:arm64                           
- gir1.2-nma-1.0:arm64                          
- gir1.2-notify-0.7:arm64                       
- gir1.2-packagekitglib-1.0                     
- gir1.2-pango-1.0:arm64                        
- gir1.2-peas-1.0:arm64                         
- gir1.2-polkit-1.0                             
- gir1.2-rb-3.0:arm64                           
- gir1.2-rsvg-2.0:arm64                         
- gir1.2-secret-1:arm64                         
- gir1.2-signon-1.0                             
- gir1.2-snapd-1:arm64                          
- gir1.2-soup-2.4:arm64                         
- gir1.2-timezonemap-1.0                        
- gir1.2-totem-1.0:arm64                        
- gir1.2-totemplparser-1.0:arm64                
- gir1.2-unity-5.0:arm64                        
- gir1.2-upowerglib-1.0:arm64                   
- gir1.2-vte-2.91:arm64                         
- gir1.2-webkit2-4.0:arm64                      
- gir1.2-wnck-3.0:arm64                         
- gir1.2-xkl-1.0:arm64                          
- git                                           
- git-man                                       
- gjs                                           
- gkbd-capplet                                  
  glib-networking-common                        
  glib-networking-services                      
  glib-networking:arm64                         
- gnome-accessibility-themes                    
- gnome-bluetooth                               
- gnome-calculator                              
- gnome-calendar                                
- gnome-control-center                          
- gnome-control-center-data                     
- gnome-control-center-faces                    
- gnome-desktop3-data                           
- gnome-disk-utility                            
- gnome-font-viewer                             
- gnome-getting-started-docs                    
- gnome-icon-theme                              
- gnome-initial-setup                           
- gnome-keyring                                 
- gnome-keyring-pkcs11:arm64                    
- gnome-mahjongg                                
- gnome-menus                                   
- gnome-mines                                   
- gnome-online-accounts                         
- gnome-power-manager                           
- gnome-screensaver                             
- gnome-screenshot                              
- gnome-session-bin                             
- gnome-session-canberra                        
- gnome-session-common                          
- gnome-settings-daemon                         
- gnome-settings-daemon-schemas                 
- gnome-shell                                   
- gnome-shell-common                            
- gnome-shell-extension-appindicator            
- gnome-shell-extension-ubuntu-dock             
- gnome-software                                
- gnome-software-common                         
- gnome-software-plugin-snap                    
- gnome-startup-applications                    
- gnome-sudoku                                  
- gnome-system-monitor                          
- gnome-system-tools                            
- gnome-terminal                                
- gnome-terminal-data                           
- gnome-themes-extra-data                       
- gnome-themes-extra:arm64                      
- gnome-todo                                    
- gnome-todo-common                             
- gnome-user-docs                               
- gnome-user-guide                              
- gnome-video-effects                           
- gnupg                                         
- gnupg-l10n                                    
- gnupg-utils                                   
- gpg                                           
- gpg-agent                                     
- gpg-wks-client                                
- gpg-wks-server                                
- gpgconf                                       
- gpgsm                                         
  gpgv                                          
- gpicview                                      
- gpsd                                          
- gpsd-clients                                  
  grep                                          
- grilo-plugins-0.3-base:arm64                  
- groff-base                                    
- grub-common                                   
  gsettings-desktop-schemas                     
- gsettings-ubuntu-schemas                      
- gsfonts                                       
- gstreamer1.0-alsa:arm64                       
- gstreamer1.0-clutter-3.0:arm64                
- gstreamer1.0-gl:arm64                         
- gstreamer1.0-gtk3:arm64                       
- gstreamer1.0-libav:arm64                      
- gstreamer1.0-packagekit                       
- gstreamer1.0-plugins-bad:arm64                
- gstreamer1.0-plugins-base-apps                
  gstreamer1.0-plugins-base:arm64               
- gstreamer1.0-plugins-good:arm64               
- gstreamer1.0-plugins-ugly:arm64               
- gstreamer1.0-pulseaudio:arm64                 
- gstreamer1.0-tools                            
- gstreamer1.0-x:arm64                          
  gtk-update-icon-cache                         
- gtk2-engines-murrine:arm64                    
- gtk2-engines-pixbuf:arm64                     
- gtk2-engines:arm64                            
- gtk3-nocsd                                    
- gucharmap                                     
- guile-2.0-libs:arm64                          
- gvfs-backends                                 
- gvfs-bin                                      
- gvfs-common                                   
- gvfs-daemons                                  
- gvfs-fuse                                     
- gvfs-libs:arm64                               
- gvfs:arm64                                    
  gzip                                          
  haveged                                       
  hicolor-icon-theme                            
  hostname                                      
  humanity-icon-theme                           
- hunspell-en-us                                
- i2c-tools                                     
- ibus                                          
- ibus-gtk3:arm64                               
- ibus-gtk:arm64                                
- ibus-table                                    
- icu-devtools                                  
- ifupdown                                      
- iio-sensor-proxy                              
- im-config                                     
- imagemagick                                   
- imagemagick-6-common                          
- imagemagick-6.q16                             
- indicator-applet                              
- indicator-application                         
- indicator-appmenu                             
- indicator-bluetooth                           
- indicator-common                              
- indicator-datetime                            
- indicator-keyboard                            
- indicator-messages                            
- indicator-power                               
- indicator-session                             
- indicator-sound                               
  init-system-helpers                           
- initramfs-tools                               
- initramfs-tools-bin                           
- initramfs-tools-core                          
- inputattach                                   
- intltool-debian                               
- iperf                                         
- iperf3                                        
- ippusbxd                                      
- iproute2                                      
- iptables                                      
- iputils-arping                                
- iputils-ping                                  
- isc-dhcp-client                               
- isc-dhcp-common                               
- isc-dhcp-server                               
  iso-codes                                     
- iw                                            
  jetson-gpio-common                            
- kbd                                           
- kde-window-manager                            
- kerneloops                                    
- keyboard-configuration                        
- keyutils                                      
- kinit                                         
- kio                                           
- klibc-utils                                   
  kmod                                          
- kpackagetool5                                 
  krb5-locales                                  
- kwayland-data                                 
- kwin-common:arm64                             
- kwin-data                                     
- kwin-x11                                      
- language-pack-en                              
- language-pack-en-base                         
- language-selector-common                      
- language-selector-gnome                       
- laptop-detect                                 
- leafpad                                       
- less                                          
- liba52-0.7.4:arm64                            
- libaa1:arm64                                  
- libaacs0:arm64                                
- libabw-0.1-1:arm64                            
- libaccounts-glib0:arm64                       
- libaccountsservice0:arm64                     
  libacl1:arm64                                 
- libaio1:arm64                                 
- libalgorithm-diff-perl                        
- libalgorithm-diff-xs-perl                     
- libalgorithm-merge-perl                       
- libao-common                                  
- libao4:arm64                                  
  libapparmor1:arm64                            
- libappindicator1                              
- libappindicator3-1                            
- libappstream-glib8:arm64                      
- libappstream4:arm64                           
- libapt-inst2.0:arm64                          
- libapt-pkg-perl                               
  libapt-pkg5.0:arm64                           
- libarchive-zip-perl                           
- libarchive13:arm64                            
  libargon2-0:arm64                             
- libaribb24-0:arm64                            
- libart-2.0-2:arm64                            
- libasan4:arm64                                
- libasn1-8-heimdal:arm64                       
  libasound2-data                               
- libasound2-dev:arm64                          
- libasound2-plugins:arm64                      
  libasound2:arm64                              
- libaspell15:arm64                             
- libass9:arm64                                 
- libassuan0:arm64                              
- libasyncns0:arm64                             
- libatasmart4:arm64                            
- libatk-adaptor:arm64                          
  libatk-bridge2.0-0:arm64                      
  libatk1.0-0:arm64                             
  libatk1.0-data                                
- libatkmm-1.6-1v5:arm64                        
- libatm1:arm64                                 
- libatomic1:arm64                              
  libatspi2.0-0:arm64                           
  libattr1:arm64                                
- libaudio2:arm64                               
  libaudit-common                               
  libaudit1:arm64                               
- libauthen-sasl-perl                           
  libavahi-client3:arm64                        
  libavahi-common-data:arm64                    
  libavahi-common3:arm64                        
- libavahi-core7:arm64                          
- libavahi-glib1:arm64                          
- libavahi-ui-gtk3-0:arm64                      
- libavc1394-0:arm64                            
- libavcodec57:arm64                            
- libavdevice57:arm64                           
- libavfilter6:arm64                            
- libavformat57:arm64                           
- libavresample3:arm64                          
- libavutil55:arm64                             
- libbabeltrace1:arm64                          
- libbamf3-2:arm64                              
- libbasicusageenvironment1:arm64               
- libbdplus0:arm64                              
- libbfb0                                       
- libbind9-160:arm64                            
- libbinutils:arm64                             
- libbison-dev:arm64                            
- libblas3:arm64                                
  libblkid1:arm64                               
- libblockdev-crypto2:arm64                     
- libblockdev-fs2:arm64                         
- libblockdev-loop2:arm64                       
- libblockdev-part-err2:arm64                   
- libblockdev-part2:arm64                       
- libblockdev-swap2:arm64                       
- libblockdev-utils2:arm64                      
- libblockdev2:arm64                            
- libbluetooth3:arm64                           
- libbluray2:arm64                              
- libbonobo2-0:arm64                            
- libbonobo2-common                             
- libbonoboui2-0:arm64                          
- libbonoboui2-common                           
- libboost-date-time1.65.1:arm64                
- libboost-filesystem1.65.1:arm64               
- libboost-iostreams1.65.1:arm64                
- libboost-locale1.65.1:arm64                   
- libboost-system1.65.1:arm64                   
- libboost-thread1.65.1:arm64                   
- libbrlapi0.6:arm64                            
- libbrotli1:arm64                              
- libbs2b0:arm64                                
  libbsd0:arm64                                 
  libbz2-1.0:arm64                              
  libc-bin                                      
- libc-dev-bin                                  
- libc6-dbg:arm64                               
- libc6-dev:arm64                               
  libc6:arm64                                   
- libcaca0:arm64                                
- libcairo-gobject-perl                         
  libcairo-gobject2:arm64                       
- libcairo-perl                                 
  libcairo2:arm64                               
- libcairomm-1.0-1v5:arm64                      
- libcamel-1.2-61:arm64                         
- libcanberra-gtk3-0:arm64                      
- libcanberra-gtk3-module:arm64                 
- libcanberra-pulse:arm64                       
- libcanberra0:arm64                            
  libcap-ng0:arm64                              
  libcap2-bin                                   
  libcap2:arm64                                 
- libcc1-0:arm64                                
- libcddb2                                      
- libcdio-cdda2:arm64                           
- libcdio-paranoia2:arm64                       
- libcdio17:arm64                               
  libcdparanoia0:arm64                          
- libcdr-0.1-1:arm64                            
- libcgi-fast-perl                              
- libcgi-pm-perl                                
- libcheese-gtk25:arm64                         
- libcheese8:arm64                              
- libchromaprint1:arm64                         
- libclass-accessor-perl                        
- libclone-perl                                 
- libclucene-contribs1v5:arm64                  
- libclucene-core1v5:arm64                      
- libclutter-1.0-0:arm64                        
- libclutter-1.0-common                         
- libclutter-gst-3.0-0:arm64                    
- libclutter-gtk-1.0-0:arm64                    
- libcmis-0.5-5v5                               
- libcogl-common                                
- libcogl-pango20:arm64                         
- libcogl-path20:arm64                          
- libcogl20:arm64                               
- libcolamd2:arm64                              
- libcolord-gtk1:arm64                          
  libcolord2:arm64                              
- libcolorhug2:arm64                            
- libcolumbus1-common                           
- libcolumbus1v5:arm64                          
  libcom-err2:arm64                             
- libcompizconfig0:arm64                        
- libconfig9:arm64                              
- libcrack2:arm64                               
  libcroco3:arm64                               
  libcryptsetup12:arm64                         
  libcups2:arm64                                
- libcupsfilters1:arm64                         
- libcupsimage2:arm64                           
- libcurl3-gnutls:arm64                         
- libdaemon0:arm64                              
- libdata-dump-perl                             
  libdatrie1:arm64                              
- libdazzle-1.0-0:arm64                         
  libdb5.3:arm64                                
  libdbus-1-3:arm64                             
- libdbus-glib-1-2:arm64                        
- libdbusmenu-glib4:arm64                       
- libdbusmenu-gtk3-4:arm64                      
- libdbusmenu-gtk4:arm64                        
- libdbusmenu-qt2:arm64                         
- libdbusmenu-qt5-2:arm64                       
- libdc1394-22:arm64                            
- libdca0:arm64                                 
  libdconf1:arm64                               
- libde265-0:arm64                              
  libdebconfclient0:arm64                       
- libdebian-installer4:arm64                    
- libdecoration0:arm64                          
- libdee-1.0-4:arm64                            
  libdevmapper1.02.1:arm64                      
- libdigest-hmac-perl                           
- libdjvulibre-text                             
- libdjvulibre21:arm64                          
- libdmapsharing-3.0-2:arm64                    
- libdns-export1100                             
- libdns1100:arm64                              
- libdotconf0:arm64                             
- libdouble-conversion1:arm64                   
- libdpkg-perl                                  
- libdrm-amdgpu1:arm64                          
  libdrm-common                                 
- libdrm-dev:arm64                              
- libdrm-etnaviv1:arm64                         
- libdrm-freedreno1:arm64                       
- libdrm-nouveau2:arm64                         
- libdrm-radeon1:arm64                          
- libdrm-tegra0:arm64                           
  libdrm2:arm64                                 
- libdv4:arm64                                  
- libdvbpsi10:arm64                             
- libdvdnav4:arm64                              
- libdvdread4:arm64                             
- libdw1:arm64                                  
- libe-book-0.1-1:arm64                         
- libebackend-1.2-10:arm64                      
- libebml4v5:arm64                              
- libebook-1.2-19:arm64                         
- libebook-contacts-1.2-2:arm64                 
- libecal-1.2-19:arm64                          
- libedata-book-1.2-25:arm64                    
- libedata-cal-1.2-28:arm64                     
- libedataserver-1.2-23:arm64                   
- libedataserverui-1.2-2:arm64                  
- libedit2:arm64                                
- libefiboot1:arm64                             
- libefivar1:arm64                              
  libegl-mesa0:arm64                            
  libegl1-mesa:arm64                            
  libegl1:arm64                                 
- libelf1:arm64                                 
- libemail-valid-perl                           
- libenchant1c2a:arm64                          
- libencode-locale-perl                         
- libeot0:arm64                                 
  libepoxy0:arm64                               
- libepubgen-0.1-1:arm64                        
- liberror-perl                                 
- libespeak-ng1:arm64                           
- libestr0:arm64                                
- libetonyek-0.1-1:arm64                        
  libevdev2:arm64                               
- libevdocument3-4:arm64                        
- libevent-2.1-6:arm64                          
- libevview3-3:arm64                            
- libexempi3:arm64                              
- libexif12:arm64                               
- libexiv2-14:arm64                             
  libexpat1:arm64                               
- libexporter-tiny-perl                         
  libext2fs2:arm64                              
- libexttextcat-2.0-0:arm64                     
- libexttextcat-data                            
- libfaad2:arm64                                
- libfakechroot:arm64                           
- libfakeroot:arm64                             
- libfam0:arm64                                 
- libfastjson4:arm64                            
- libfcgi-perl                                  
- libfcitx-config4:arm64                        
- libfcitx-gclient1:arm64                       
- libfcitx-utils0:arm64                         
  libfdisk1:arm64                               
  libffi6:arm64                                 
- libfftw3-double3:arm64                        
- libfftw3-single3:arm64                        
- libfile-basedir-perl                          
- libfile-copy-recursive-perl                   
- libfile-desktopentry-perl                     
- libfile-fcntllock-perl                        
- libfile-listing-perl                          
- libfile-mimeinfo-perl                         
- libfl-dev:arm64                               
- libfl2:arm64                                  
- libflac8:arm64                                
- libflite1:arm64                               
- libfluidsynth1:arm64                          
- libfm-data                                    
- libfm-extra4:arm64                            
- libfm-gtk-data                                
- libfm-gtk4:arm64                              
- libfm-modules:arm64                           
- libfm4:arm64                                  
- libfont-afm-perl                              
  libfontconfig1:arm64                          
- libfontenc1:arm64                             
- libframe6:arm64                               
- libfreehand-0.1-1                             
- libfreerdp-client2-2:arm64                    
- libfreerdp2-2:arm64                           
  libfreetype6:arm64                            
- libfribidi0:arm64                             
- libfuse2:arm64                                
- libfwupd2:arm64                               
- libgail-3-0:arm64                             
- libgail-common:arm64                          
- libgail18:arm64                               
  libgbm1:arm64                                 
- libgc1c2:arm64                                
- libgcab-1.0-0:arm64                           
- libgcc-7-dev:arm64                            
  libgcc1:arm64                                 
- libgck-1-0:arm64                              
- libgconf-2-4:arm64                            
- libgcr-base-3-1:arm64                         
- libgcr-ui-3-1:arm64                           
  libgcrypt20:arm64                             
- libgd3:arm64                                  
- libgdata-common                               
- libgdata22:arm64                              
- libgdbm-compat4:arm64                         
- libgdbm5:arm64                                
  libgdk-pixbuf2.0-0:arm64                      
  libgdk-pixbuf2.0-bin                          
  libgdk-pixbuf2.0-common                       
- libgdm1                                       
- libgee-0.8-2:arm64                            
- libgeis1:arm64                                
- libgeoclue-2-0:arm64                          
- libgeoclue0:arm64                             
- libgeocode-glib0:arm64                        
- libgeoip1:arm64                               
- libgeonames-common                            
- libgeonames0:arm64                            
- libgexiv2-2:arm64                             
- libgfortran4:arm64                            
- libgif7:arm64                                 
  libgirepository-1.0-1:arm64                   
- libgjs0g                                      
- libgl1-mesa-dev:arm64                         
- libgl1-mesa-dri:arm64                         
- libgl1-mesa-glx:arm64                         
- libgl1:arm64                                  
- libglade2-0:arm64                             
  libglapi-mesa:arm64                           
- libgles1:arm64                                
  libgles2:arm64                                
- libglewmx1.13:arm64                           
- libglib-object-introspection-perl             
- libglib-perl                                  
  libglib2.0-0:arm64                            
- libglib2.0-bin                                
  libglib2.0-data                               
- libglib2.0-dev-bin                            
- libglib2.0-dev:arm64                          
- libglibmm-2.4-1v5:arm64                       
- libglu1-mesa-dev:arm64                        
- libglu1-mesa:arm64                            
- libglvnd-core-dev:arm64                       
- libglvnd-dev:arm64                            
  libglvnd0:arm64                               
- libglx-mesa0:arm64                            
- libglx0:arm64                                 
- libgme0:arm64                                 
- libgmime-3.0-0:arm64                          
  libgmp10:arm64                                
- libgnome-2-0:arm64                            
- libgnome-autoar-0-0:arm64                     
- libgnome-bluetooth13:arm64                    
- libgnome-desktop-3-17:arm64                   
- libgnome-games-support-1-3:arm64              
- libgnome-games-support-common                 
- libgnome-keyring-common                       
- libgnome-keyring0:arm64                       
- libgnome-menu-3-0:arm64                       
- libgnome-todo                                 
- libgnome2-common                              
- libgnomecanvas2-0:arm64                       
- libgnomecanvas2-common                        
- libgnomekbd-common                            
- libgnomekbd8:arm64                            
- libgnomeui-0:arm64                            
- libgnomeui-common                             
- libgnomevfs2-0:arm64                          
- libgnomevfs2-common                           
  libgnutls30:arm64                             
- libgoa-1.0-0b:arm64                           
- libgoa-1.0-common                             
- libgoa-backend-1.0-1:arm64                    
- libgom-1.0-0:arm64                            
- libgomp1:arm64                                
  libgpg-error0:arm64                           
- libgpgme11:arm64                              
- libgpgmepp6:arm64                             
- libgphoto2-6:arm64                            
- libgphoto2-l10n                               
- libgphoto2-port12:arm64                       
- libgpm2:arm64                                 
- libgpod-common                                
- libgpod4:arm64                                
- libgps23:arm64                                
- libgrail6                                     
- libgraphene-1.0-0:arm64                       
  libgraphite2-3:arm64                          
- libgraphite2-dev:arm64                        
- libgrilo-0.3-0:arm64                          
- libgroupsock8:arm64                           
- libgs9-common                                 
- libgs9:arm64                                  
- libgsm1:arm64                                 
- libgspell-1-1:arm64                           
- libgspell-1-common                            
  libgssapi-krb5-2:arm64                        
- libgssapi3-heimdal:arm64                      
- libgssdp-1.0-3:arm64                          
- libgstreamer-gl1.0-0:arm64                    
  libgstreamer-plugins-bad1.0-0:arm64           
  libgstreamer-plugins-base1.0-0:arm64          
- libgstreamer-plugins-good1.0-0:arm64          
  libgstreamer1.0-0:arm64                       
  libgtk-3-0:arm64                              
  libgtk-3-bin                                  
  libgtk-3-common                               
- libgtk2.0-0:arm64                             
- libgtk2.0-bin                                 
- libgtk2.0-common                              
- libgtk3-nocsd0:arm64                          
- libgtk3-perl                                  
- libgtkmm-3.0-1v5:arm64                        
- libgtksourceview-3.0-1:arm64                  
- libgtksourceview-3.0-common                   
- libgtop-2.0-11:arm64                          
- libgtop2-common                               
- libgucharmap-2-90-7:arm64                     
  libgudev-1.0-0:arm64                          
- libgupnp-1.0-4:arm64                          
- libgupnp-igd-1.0-4:arm64                      
- libgusb2:arm64                                
- libgweather-3-15:arm64                        
- libgweather-common                            
- libgxps2:arm64                                
- libharfbuzz-dev:arm64                         
- libharfbuzz-gobject0:arm64                    
- libharfbuzz-icu0:arm64                        
  libharfbuzz0b:arm64                           
  libhavege1:arm64                              
- libhcrypto4-heimdal:arm64                     
- libheimbase1-heimdal:arm64                    
- libheimntlm0-heimdal:arm64                    
  libhogweed4:arm64                             
- libhtml-form-perl                             
- libhtml-format-perl                           
- libhtml-parser-perl                           
- libhtml-tagset-perl                           
- libhtml-tree-perl                             
- libhttp-cookies-perl                          
- libhttp-daemon-perl                           
- libhttp-date-perl                             
- libhttp-message-perl                          
- libhttp-negotiate-perl                        
- libhunspell-1.6-0:arm64                       
- libhx509-5-heimdal:arm64                      
- libhyphen0:arm64                              
- libi2c0:arm64                                 
- libibus-1.0-5:arm64                           
- libibverbs1:arm64                             
- libical3:arm64                                
- libice-dev:arm64                              
- libice6:arm64                                 
- libicu-dev                                    
- libicu-le-hb-dev:arm64                        
- libicu-le-hb0:arm64                           
  libicu60:arm64                                
- libiculx60:arm64                              
- libid3tag0:arm64                              
  libidn11:arm64                                
  libidn2-0:arm64                               
- libido3-0.1-0:arm64                           
- libiec61883-0:arm64                           
- libieee1284-3:arm64                           
- libijs-0.35:arm64                             
- libilmbase12:arm64                            
- libimlib2:arm64                               
- libimobiledevice6:arm64                       
- libindicator3-7                               
- libindicator7                                 
  libinput-bin                                  
  libinput10:arm64                              
- libio-html-perl                               
- libio-pty-perl                                
- libio-socket-inet6-perl                       
- libio-socket-ssl-perl                         
- libio-string-perl                             
  libip4tc0:arm64                               
- libip6tc0:arm64                               
- libipc-run-perl                               
- libipc-system-simple-perl                     
- libiperf0:arm64                               
- libiptc0:arm64                                
- libirs-export160                              
- libisc-export169:arm64                        
- libisc169:arm64                               
- libisccc160:arm64                             
- libisccfg-export160                           
- libisccfg160:arm64                            
- libisl19:arm64                                
- libitm1:arm64                                 
- libiw30:arm64                                 
- libjack-jackd2-0:arm64                        
- libjansson4:arm64                             
- libjavascriptcoregtk-4.0-18:arm64             
  libjbig0:arm64                                
- libjbig2dec0:arm64                            
- libjpeg-turbo-progs                           
  libjpeg-turbo8:arm64                          
  libjpeg8:arm64                                
- libjs-jquery                                  
- libjs-jquery-ui                               
  libjson-c3:arm64                              
  libjson-glib-1.0-0:arm64                      
  libjson-glib-1.0-common                       
  libk5crypto3:arm64                            
- libkate1:arm64                                
- libkdecorations2-5v5                          
- libkdecorations2private5v5                    
- libkeybinder0                                 
  libkeyutils1:arm64                            
- libkf5activities5:arm64                       
- libkf5archive5:arm64                          
- libkf5attica5:arm64                           
- libkf5auth-data                               
- libkf5auth5:arm64                             
- libkf5codecs-data                             
- libkf5codecs5:arm64                           
- libkf5completion-data                         
- libkf5completion5:arm64                       
- libkf5config-data                             
- libkf5configcore5:arm64                       
- libkf5configgui5:arm64                        
- libkf5configwidgets-data                      
- libkf5configwidgets5:arm64                    
- libkf5coreaddons-data                         
- libkf5coreaddons5:arm64                       
- libkf5crash5:arm64                            
- libkf5dbusaddons-data                         
- libkf5dbusaddons5:arm64                       
- libkf5declarative-data                        
- libkf5declarative5:arm64                      
- libkf5doctools5:arm64                         
- libkf5globalaccel-data                        
- libkf5globalaccel5:arm64                      
- libkf5globalaccelprivate5:arm64               
- libkf5guiaddons5:arm64                        
- libkf5i18n-data                               
- libkf5i18n5:arm64                             
- libkf5iconthemes-data                         
- libkf5iconthemes5:arm64                       
- libkf5idletime5:arm64                         
- libkf5itemviews-data                          
- libkf5itemviews5:arm64                        
- libkf5jobwidgets-data                         
- libkf5jobwidgets5:arm64                       
- libkf5kcmutils-data                           
- libkf5kcmutils5:arm64                         
- libkf5kiocore5:arm64                          
- libkf5kiontlm5:arm64                          
- libkf5kiowidgets5:arm64                       
- libkf5newstuff-data                           
- libkf5newstuff5:arm64                         
- libkf5newstuffcore5:arm64                     
- libkf5notifications-data                      
- libkf5notifications5:arm64                    
- libkf5package-data                            
- libkf5package5:arm64                          
- libkf5plasma5:arm64                           
- libkf5quickaddons5:arm64                      
- libkf5service-bin                             
- libkf5service-data                            
- libkf5service5:arm64                          
- libkf5solid5-data                             
- libkf5solid5:arm64                            
- libkf5sonnet5-data                            
- libkf5sonnetcore5:arm64                       
- libkf5sonnetui5:arm64                         
- libkf5textwidgets-data                        
- libkf5textwidgets5:arm64                      
- libkf5wallet-bin                              
- libkf5wallet-data                             
- libkf5wallet5:arm64                           
- libkf5waylandclient5:arm64                    
- libkf5waylandserver5:arm64                    
- libkf5widgetsaddons-data                      
- libkf5widgetsaddons5:arm64                    
- libkf5windowsystem-data                       
- libkf5windowsystem5:arm64                     
- libkf5xmlgui-bin                              
- libkf5xmlgui-data                             
- libkf5xmlgui5:arm64                           
- libklibc                                      
  libkmod2:arm64                                
- libkpathsea6:arm64                            
- libkrb5-26-heimdal:arm64                      
  libkrb5-3:arm64                               
  libkrb5support0:arm64                         
- libksba8:arm64                                
- libkscreenlocker5:arm64                       
- libkwalletbackend5-5:arm64                    
- libkwin4-effect-builtins1:arm64               
- libkwineffects11:arm64                        
- libkwinglutils11:arm64                        
- libkwinxrenderutils11:arm64                   
- liblangtag-common                             
- liblangtag1:arm64                             
- liblapack3:arm64                              
  liblcms2-2:arm64                              
- liblcms2-utils                                
- libldap-2.4-2:arm64                           
- libldap-common                                
- libldb1:arm64                                 
- liblightdm-gobject-1-0:arm64                  
- liblilv-0-0                                   
- liblirc-client0:arm64                         
- liblist-moreutils-perl                        
- liblivemedia62:arm64                          
- libllvm10:arm64                               
- liblocale-gettext-perl                        
- liblouis-data                                 
- liblouis14:arm64                              
- liblqr-1-0:arm64                              
- liblsan0:arm64                                
- libltdl-dev:arm64                             
- libltdl7:arm64                                
- liblua5.2-0:arm64                             
- liblua5.3-0:arm64                             
- liblwp-mediatypes-perl                        
- liblwp-protocol-https-perl                    
- liblwres160:arm64                             
  liblz4-1:arm64                                
  liblzma5:arm64                                
- liblzo2-2:arm64                               
- libmad0:arm64                                 
  libmagic-mgc                                  
  libmagic1:arm64                               
- libmagickcore-6.q16-3-extra:arm64             
- libmagickcore-6.q16-3:arm64                   
- libmagickwand-6.q16-3:arm64                   
- libmailtools-perl                             
- libmatroska6v5:arm64                          
- libmbim-glib4:arm64                           
- libmbim-proxy                                 
- libmediaart-2.0-0:arm64                       
- libmenu-cache-bin                             
- libmenu-cache3:arm64                          
- libmessaging-menu0:arm64                      
- libmetacity1:arm64                            
- libmhash2:arm64                               
- libmicrodns0:arm64                            
- libminiupnpc10:arm64                          
- libmjpegutils-2.1-0                           
- libmm-glib0:arm64                             
- libmms0:arm64                                 
- libmng2:arm64                                 
- libmnl0:arm64                                 
- libmodplug1:arm64                             
  libmount1:arm64                               
- libmozjs-52-0:arm64                           
- libmp3lame0:arm64                             
- libmpc3:arm64                                 
- libmpcdec6:arm64                              
  libmpdec2:arm64                               
- libmpeg2-4:arm64                              
- libmpeg2encpp-2.1-0                           
- libmpfr6:arm64                                
- libmpg123-0:arm64                             
- libmplex2-2.1-0                               
- libmspub-0.1-1:arm64                          
  libmtdev1:arm64                               
- libmtp-common                                 
- libmtp-runtime                                
- libmtp9:arm64                                 
- libmulticobex1                                
- libmutter-2-0:arm64                           
- libmwaw-0.3-3:arm64                           
- libmysofa0:arm64                              
- libmysqlclient20:arm64                        
- libmythes-1.2-0:arm64                         
- libnatpmp1                                    
- libnautilus-extension1a:arm64                 
  libncurses5:arm64                             
  libncursesw5:arm64                            
- libndp0:arm64                                 
- libneon27-gnutls:arm64                        
- libnet-dbus-perl                              
- libnet-dns-perl                               
- libnet-domain-tld-perl                        
- libnet-http-perl                              
- libnet-ip-perl                                
- libnet-libidn-perl                            
- libnet-smtp-ssl-perl                          
- libnet-ssleay-perl                            
- libnetfilter-conntrack3:arm64                 
- libnetpbm10                                   
  libnettle6:arm64                              
- libnewt0.52:arm64                             
- libnfnetlink0:arm64                           
- libnfs11:arm64                                
- libnfsidmap2:arm64                            
- libnghttp2-14:arm64                           
- libnice10:arm64                               
- libnl-3-200:arm64                             
- libnl-genl-3-200:arm64                        
- libnl-route-3-200:arm64                       
- libnm-glib4:arm64                             
- libnm-gtk0:arm64                              
- libnm-util2:arm64                             
- libnm0:arm64                                  
- libnma0:arm64                                 
- libnorm1:arm64                                
- libnotify-bin                                 
- libnotify4:arm64                              
- libnpth0:arm64                                
- libnspr4:arm64                                
- libnss-mdns:arm64                             
- libnss-myhostname:arm64                       
  libnss-systemd:arm64                          
- libnss3:arm64                                 
- libntfs-3g88                                  
- libnuma1:arm64                                
- libnux-4.0-0                                  
- libnux-4.0-common                             
- liboauth0:arm64                               
- libobexftp0                                   
- libobrender32v5                               
- libobt2v5                                     
- libodfgen-0.1-1:arm64                         
- libofa0:arm64                                 
  libogg0:arm64                                 
- liboobs-1-5                                   
- libopenal-data                                
- libopenal1:arm64                              
- libopencore-amrnb0:arm64                      
- libopencore-amrwb0:arm64                      
- libopenexr22:arm64                            
- libopengl0:arm64                              
- libopenjp2-7:arm64                            
- libopenmpt-modplug1:arm64                     
- libopenmpt0:arm64                             
- libopenobex2                                  
  libopus0:arm64                                
- liborbit-2-0:arm64                            
  liborc-0.4-0:arm64                            
- liborcus-0.13-0:arm64                         
  libp11-kit0:arm64                             
- libpackagekit-glib2-18:arm64                  
- libpagemaker-0.0-0:arm64                      
  libpam-cap:arm64                              
- libpam-gnome-keyring:arm64                    
  libpam-modules-bin                            
  libpam-modules:arm64                          
  libpam-runtime                                
  libpam-systemd:arm64                          
  libpam0g:arm64                                
- libpanel-applet3                              
  libpango-1.0-0:arm64                          
  libpangocairo-1.0-0:arm64                     
  libpangoft2-1.0-0:arm64                       
- libpangomm-1.4-1v5:arm64                      
- libpangoxft-1.0-0:arm64                       
- libpaper-utils                                
- libpaper1:arm64                               
- libparse-debianchangelog-perl                 
- libparted-fs-resize0:arm64                    
- libparted2:arm64                              
- libpcap0.8:arm64                              
- libpcaudio0                                   
- libpci3:arm64                                 
- libpciaccess0:arm64                           
- libpcre16-3:arm64                             
- libpcre3-dev:arm64                            
- libpcre32-3:arm64                             
  libpcre3:arm64                                
- libpcrecpp0v5:arm64                           
- libpcsclite1:arm64                            
- libpeas-1.0-0:arm64                           
- libpeas-common                                
- libperl5.26:arm64                             
- libperlio-gzip-perl                           
- libpgm-5.2-0:arm64                            
- libphonenumber7:arm64                         
- libphonon4qt5-4:arm64                         
- libpipeline1:arm64                            
  libpixman-1-0:arm64                           
- libplacebo4:arm64                             
- libplist3:arm64                               
- libplymouth4:arm64                            
  libpng16-16:arm64                             
- libpolkit-agent-1-0:arm64                     
- libpolkit-backend-1-0:arm64                   
- libpolkit-gobject-1-0:arm64                   
- libpolkit-qt5-1-1:arm64                       
- libpoppler-glib8:arm64                        
- libpoppler73:arm64                            
- libpopt-dev:arm64                             
- libpopt0:arm64                                
- libpostproc54:arm64                           
  libprocps6:arm64                              
- libprotobuf-lite10:arm64                      
- libprotobuf10:arm64                           
- libproxy1-plugin-gsettings:arm64              
- libproxy1-plugin-networkmanager:arm64         
  libproxy1v5:arm64                             
- libpsl5:arm64                                 
- libpthread-stubs0-dev:arm64                   
- libpulse-mainloop-glib0:arm64                 
- libpulse0:arm64                               
- libpulsedsp:arm64                             
- libpwquality-common                           
- libpwquality1:arm64                           
  libpython-stdlib:arm64                        
  libpython2.7-minimal:arm64                    
  libpython2.7-stdlib:arm64                     
- libpython2.7:arm64                            
  libpython3-stdlib:arm64                       
  libpython3.6-minimal:arm64                    
  libpython3.6-stdlib:arm64                     
- libpython3.6:arm64                            
- libqgsttools-p1:arm64                         
- libqmi-glib5:arm64                            
- libqmi-proxy                                  
- libqqwing2v5:arm64                            
- libqt4-dbus:arm64                             
- libqt4-declarative:arm64                      
- libqt4-network:arm64                          
- libqt4-script:arm64                           
- libqt4-sql-mysql:arm64                        
- libqt4-sql:arm64                              
- libqt4-xml:arm64                              
- libqt4-xmlpatterns:arm64                      
- libqt5core5a:arm64                            
- libqt5dbus5:arm64                             
- libqt5designer5:arm64                         
- libqt5gui5:arm64                              
- libqt5help5:arm64                             
- libqt5multimedia5-plugins:arm64               
- libqt5multimedia5:arm64                       
- libqt5multimediaquick-p5:arm64                
- libqt5multimediawidgets5:arm64                
- libqt5network5:arm64                          
- libqt5opengl5:arm64                           
- libqt5positioning5:arm64                      
- libqt5printsupport5:arm64                     
- libqt5qml5:arm64                              
- libqt5quick5:arm64                            
- libqt5quickwidgets5:arm64                     
- libqt5script5:arm64                           
- libqt5sensors5:arm64                          
- libqt5sql5:arm64                              
- libqt5svg5:arm64                              
- libqt5test5:arm64                             
- libqt5texttospeech5:arm64                     
- libqt5webchannel5:arm64                       
- libqt5webkit5:arm64                           
- libqt5widgets5:arm64                          
- libqt5x11extras5:arm64                        
- libqt5xml5:arm64                              
- libqtcore4:arm64                              
- libqtdbus4:arm64                              
- libqtgui4:arm64                               
- librados2                                     
- libraptor2-0:arm64                            
- librasqal3:arm64                              
- libraw1394-11:arm64                           
- libraw16:arm64                                
- librbd1                                       
- librdf0:arm64                                 
- librdmacm1:arm64                              
  libreadline7:arm64                            
- libreoffice-avmedia-backend-gstreamer         
- libreoffice-base-core                         
- libreoffice-calc                              
- libreoffice-common                            
- libreoffice-core                              
- libreoffice-draw                              
- libreoffice-gnome                             
- libreoffice-gtk3                              
- libreoffice-impress                           
- libreoffice-math                              
- libreoffice-ogltrans                          
- libreoffice-pdfimport                         
- libreoffice-style-breeze                      
- libreoffice-style-galaxy                      
- libreoffice-style-tango                       
- libreoffice-writer                            
- libresid-builder0c2a                          
  librest-0.7-0:arm64                           
- librevenge-0.0-0:arm64                        
- librhythmbox-core10:arm64                     
- libroken18-heimdal:arm64                      
  librsvg2-2:arm64                              
  librsvg2-common:arm64                         
- librtmp1:arm64                                
- librubberband2:arm64                          
- libsamplerate0:arm64                          
- libsane-common                                
- libsane-hpaio:arm64                           
- libsane1:arm64                                
- libsasl2-2:arm64                              
- libsasl2-modules-db:arm64                     
- libsasl2-modules:arm64                        
- libsbc1:arm64                                 
- libsdl-image1.2:arm64                         
- libsdl1.2debian:arm64                         
- libsdl2-2.0-0:arm64                           
  libseccomp2:arm64                             
- libsecret-1-0:arm64                           
- libsecret-common                              
  libselinux1:arm64                             
  libsemanage-common                            
  libsemanage1:arm64                            
- libsensors4:arm64                             
  libsepol1:arm64                               
- libserd-0-0:arm64                             
- libsgutils2-2                                 
- libshine3:arm64                               
- libshout3:arm64                               
- libsidplay1v5:arm64                           
- libsidplay2                                   
- libsigc++-2.0-0v5:arm64                       
- libsignon-glib1:arm64                         
- libsigsegv2:arm64                             
- libslang2:arm64                               
- libsm-dev:arm64                               
- libsm6:arm64                                  
  libsmartcols1:arm64                           
- libsmbclient:arm64                            
- libsnapd-glib1:arm64                          
- libsnappy1v5:arm64                            
- libsndfile1:arm64                             
- libsndio6.1:arm64                             
- libsnmp-base                                  
- libsnmp30:arm64                               
- libsocket6-perl                               
- libsodium23:arm64                             
- libsonic0:arm64                               
- libsord-0-0:arm64                             
- libsoundtouch1:arm64                          
  libsoup-gnome2.4-1:arm64                      
  libsoup2.4-1:arm64                            
- libsoxr0:arm64                                
- libspandsp2:arm64                             
- libspectre1:arm64                             
- libspeechd2:arm64                             
- libspeex1:arm64                               
- libspeexdsp1:arm64                            
  libsqlite3-0:arm64                            
- libsratom-0-0:arm64                           
- libsrtp2-1:arm64                              
  libss2:arm64                                  
- libssh-4:arm64                                
- libssh-gcrypt-4:arm64                         
- libssh2-1:arm64                               
- libssl1.0.0:arm64                             
  libssl1.1:arm64                               
- libstartup-notification0:arm64                
- libstdc++-7-dev:arm64                         
  libstdc++6:arm64                              
- libstemmer0d:arm64                            
- libsub-name-perl                              
- libsuitesparseconfig5:arm64                   
- libswresample2:arm64                          
- libswscale4:arm64                             
- libsysmetrics1:arm64                          
  libsystemd0:arm64                             
- libtag1v5-vanilla:arm64                       
- libtag1v5:arm64                               
- libtalloc2:arm64                              
  libtasn1-6:arm64                              
- libtcl8.6:arm64                               
- libtdb1:arm64                                 
- libteamdctl0:arm64                            
- libtelepathy-glib0:arm64                      
- libtevent0:arm64                              
- libtext-iconv-perl                            
- libtext-levenshtein-perl                      
  libthai-data                                  
  libthai0:arm64                                
  libtheora0:arm64                              
- libtie-ixhash-perl                            
  libtiff5:arm64                                
- libtimedate-perl                              
- libtimezonemap-data                           
- libtimezonemap1:arm64                         
  libtinfo5:arm64                               
- libtirpc1:arm64                               
- libtk8.6:arm64                                
- libtool                                       
- libtotem-plparser-common                      
- libtotem-plparser18:arm64                     
- libtotem0:arm64                               
- libtracker-sparql-2.0-0:arm64                 
- libtry-tiny-perl                              
- libtsan0:arm64                                
- libtwolame0:arm64                             
- libu2f-udev                                   
- libubsan0:arm64                               
- libuchardet0:arm64                            
  libudev1:arm64                                
- libudisks2-0:arm64                            
- libunique-1.0-0                               
  libunistring2:arm64                           
- libunity-control-center1                      
- libunity-core-6.0-9:arm64                     
- libunity-gtk2-parser0:arm64                   
- libunity-gtk3-parser0:arm64                   
- libunity-misc4                                
- libunity-protocol-private0:arm64              
- libunity-scopes-json-def-desktop              
- libunity-settings-daemon1:arm64               
- libunity9:arm64                               
  libunwind8:arm64                              
- libupnp6:arm64                                
- libupower-glib3:arm64                         
- liburi-perl                                   
- liburl-dispatcher1:arm64                      
- libusageenvironment3:arm64                    
- libusb-1.0-0-dev:arm64                        
- libusb-1.0-0:arm64                            
- libusbmuxd4:arm64                             
- libutempter0:arm64                            
  libuuid1:arm64                                
- libv4l-0:arm64                                
- libv4lconvert0:arm64                          
- libva-drm2:arm64                              
- libva-wayland2:arm64                          
- libva-x11-2:arm64                             
- libva2:arm64                                  
- libvdpau1:arm64                               
- libvisio-0.1-1:arm64                          
  libvisual-0.4-0:arm64                         
- libvlc5:arm64                                 
- libvlccore9:arm64                             
- libvncclient1:arm64                           
- libvo-aacenc0:arm64                           
- libvo-amrwbenc0:arm64                         
- libvolume-key1                                
  libvorbis0a:arm64                             
  libvorbisenc2:arm64                           
- libvorbisfile3:arm64                          
- libvpx5:arm64                                 
- libvte-2.91-0:arm64                           
- libvte-2.91-common                            
- libvulkan1:arm64                              
  libwacom-bin                                  
  libwacom-common                               
  libwacom2:arm64                               
- libwavpack1:arm64                             
  libwayland-client0:arm64                      
  libwayland-cursor0:arm64                      
- libwayland-egl1-mesa:arm64                    
  libwayland-egl1:arm64                         
  libwayland-server0:arm64                      
- libwbclient0:arm64                            
- libwebkit2gtk-4.0-37:arm64                    
- libwebp6:arm64                                
- libwebpdemux2:arm64                           
- libwebpmux3:arm64                             
- libwebrtc-audio-processing1:arm64             
- libwhoopsie-preferences0                      
- libwhoopsie0:arm64                            
- libwildmidi-config                            
- libwildmidi2:arm64                            
- libwind0-heimdal:arm64                        
- libwinpr2-2:arm64                             
- libwmf0.2-7-gtk                               
- libwmf0.2-7:arm64                             
- libwnck-3-0:arm64                             
- libwnck-3-common                              
- libwnck-common                                
- libwnck22:arm64                               
- libwoff1:arm64                                
- libwpd-0.10-10:arm64                          
- libwpg-0.3-3:arm64                            
- libwps-0.4-4:arm64                            
- libwrap0:arm64                                
- libwww-perl                                   
- libwww-robotrules-perl                        
  libx11-6:arm64                                
  libx11-data                                   
- libx11-dev:arm64                              
- libx11-doc                                    
- libx11-protocol-perl                          
- libx11-xcb-dev:arm64                          
  libx11-xcb1:arm64                             
- libx264-152:arm64                             
- libx265-146:arm64                             
- libxapian30:arm64                             
- libxau-dev:arm64                              
  libxau6:arm64                                 
- libxaw7:arm64                                 
- libxcb-composite0:arm64                       
- libxcb-cursor0:arm64                          
- libxcb-damage0:arm64                          
- libxcb-dri2-0-dev:arm64                       
  libxcb-dri2-0:arm64                           
  libxcb-dri3-0:arm64                           
- libxcb-dri3-dev:arm64                         
- libxcb-glx0-dev:arm64                         
- libxcb-glx0:arm64                             
- libxcb-icccm4:arm64                           
- libxcb-image0:arm64                           
- libxcb-keysyms1:arm64                         
- libxcb-present-dev:arm64                      
  libxcb-present0:arm64                         
- libxcb-randr0-dev:arm64                       
- libxcb-randr0:arm64                           
- libxcb-render-util0:arm64                     
- libxcb-render0-dev:arm64                      
  libxcb-render0:arm64                          
- libxcb-res0:arm64                             
- libxcb-shape0-dev:arm64                       
- libxcb-shape0:arm64                           
  libxcb-shm0:arm64                             
- libxcb-sync-dev:arm64                         
  libxcb-sync1:arm64                            
- libxcb-util1:arm64                            
- libxcb-xfixes0-dev:arm64                      
  libxcb-xfixes0:arm64                          
- libxcb-xinerama0:arm64                        
- libxcb-xkb1:arm64                             
- libxcb-xv0:arm64                              
- libxcb1-dev:arm64                             
  libxcb1:arm64                                 
  libxcomposite1:arm64                          
  libxcursor1:arm64                             
- libxdamage-dev:arm64                          
  libxdamage1:arm64                             
- libxdmcp-dev:arm64                            
  libxdmcp6:arm64                               
- libxdo3:arm64                                 
- libxext-dev:arm64                             
  libxext6:arm64                                
- libxfixes-dev:arm64                           
  libxfixes3:arm64                              
- libxfont2:arm64                               
- libxft2:arm64                                 
  libxi6:arm64                                  
  libxinerama1:arm64                            
- libxkbcommon-x11-0:arm64                      
  libxkbcommon0:arm64                           
- libxkbfile1:arm64                             
- libxklavier16:arm64                           
- libxml-libxml-perl                            
- libxml-namespacesupport-perl                  
- libxml-parser-perl                            
- libxml-sax-base-perl                          
- libxml-sax-expat-perl                         
- libxml-sax-perl                               
- libxml-simple-perl                            
- libxml-twig-perl                              
- libxml-xpathengine-perl                       
- libxml2-dev:arm64                             
  libxml2:arm64                                 
- libxmlb1:arm64                                
- libxmlsec1-nss:arm64                          
- libxmlsec1:arm64                              
- libxmmsclient-glib1                           
- libxmmsclient6                                
- libxmu6:arm64                                 
- libxmuu1:arm64                                
- libxpm4:arm64                                 
  libxrandr2:arm64                              
  libxrender1:arm64                             
- libxres1:arm64                                
- libxshmfence-dev:arm64                        
  libxshmfence1:arm64                           
- libxslt1.1:arm64                              
- libxss1:arm64                                 
- libxt-dev:arm64                               
- libxt6:arm64                                  
- libxtables12:arm64                            
  libxtst6:arm64                                
- libxv1:arm64                                  
- libxvidcore4:arm64                            
- libxxf86dga1:arm64                            
- libxxf86vm-dev:arm64                          
- libxxf86vm1:arm64                             
- libyajl2:arm64                                
- libyaml-0-2:arm64                             
- libyaml-libyaml-perl                          
- libyelp0:arm64                                
- libzbar0:arm64                                
- libzeitgeist-1.0-1:arm64                      
- libzeitgeist-2.0-0:arm64                      
- libzmq5:arm64                                 
  libzstd1:arm64                                
- libzvbi-common                                
- libzvbi0:arm64                                
- light-themes                                  
- lightdm                                       
- lightdm-gtk-greeter                           
- lintian                                       
- linux-base                                    
- linux-firmware                                
- linux-libc-dev:arm64                          
- linux-sound-base                              
- locales                                       
  login                                         
- logrotate                                     
- lp-solve                                      
  lsb-base                                      
- lsb-release                                   
- lshw                                          
- lxappearance                                  
- lxappearance-obconf                           
- lxde                                          
- lxde-common                                   
- lxde-core                                     
- lxde-icon-theme                               
- lxde-settings-daemon                          
- lxhotkey-core                                 
- lxhotkey-data                                 
- lxhotkey-gtk                                  
- lxhotkey-plugin-openbox                       
- lxinput                                       
- lxlock                                        
- lxmenu-data                                   
- lxmusic                                       
- lxpanel                                       
- lxpanel-data                                  
- lxpolkit                                      
- lxrandr                                       
- lxsession                                     
- lxsession-data                                
- lxsession-default-apps                        
- lxsession-edit                                
- lxsession-logout                              
- lxtask                                        
- lxterminal                                    
- m4                                            
- make                                          
- man-db                                        
- manpages                                      
- manpages-dev                                  
  mawk                                          
- media-player-info                             
- menu                                          
- menu-xdg                                      
- mesa-common-dev:arm64                         
- mesa-va-drivers:arm64                         
- mesa-vdpau-drivers:arm64                      
- metacity-common                               
  mime-support                                  
- mobile-broadband-provider-info                
- modemmanager                                  
  mount                                         
- mousetweaks                                   
- mpv                                           
- mtd-utils                                     
  multiarch-support                             
- mutter                                        
- mutter-common                                 
- mysql-common                                  
- nautilus                                      
- nautilus-data                                 
- nautilus-extension-gnome-terminal             
- nautilus-sendto                               
- nautilus-share                                
  ncurses-base                                  
  ncurses-bin                                   
- ncurses-term                                  
- net-tools                                     
- netbase                                       
- netcat                                        
- netcat-openbsd                                
- netcat-traditional                            
- netpbm                                        
- network-manager                               
- network-manager-config-connectivity-ubuntu    
- network-manager-gnome                         
- network-manager-pptp                          
- network-manager-pptp-gnome                    
  networkd-dispatcher                           
- nfs-common                                    
- notification-daemon                           
- notify-osd                                    
- notify-osd-icons                              
- ntfs-3g                                       
- nux-tools                                     
  nvidia-l4t-3d-core                            
  nvidia-l4t-apt-source                         
  nvidia-l4t-bootloader                         
--- 1,254 ----