SSD M.2 read-only error when connected via USB

,

When writing raw images data to SSD M.2, SSD M.2 becomes read-only.
I tried two types of SSD M.2 and got the same result.
One is a brand new SSD M.2.

before writing


after writing

When I checked the budUSB using the lsusb command, the budUSB was USB 3.2.
Is it possible that this is the cause?
image

Procedure
Connect SSD M.2 to Jetson Nano via USB
Format to Ext4 with Disks
Write raw images data from MIPI-CSI camera
gst-launch-1.0 -e v4l2src num-buffers=100 ! queue max-size-bytes=0 ! videoconvert ! multifilesink location=capture_%05d.raw max-files=10000 sync=false
An error will occur during the process

Confirmation Environment
Jetson Nano B01
JetPack 4.6.3(L4T 32.7.3)

SSD M.2 : SAMSUNG PM981 512GB PCIe Gen3.0x4 NVMe M.2 2280
and
Case : LGB-PNV02UC M.2 PCIe NVMeSSD(2230/2242/2260/2280) USB3.2(Gen2)/USB3.1(Gen2)

SSD M.2 : EDILOCA EN605 256GB PCIe Gen3.0x4 NVMe1.3 M.2 2280
and
Case : UGREEN 90264 M.2 PCIe NVMeSSD(2280/2260/2242/2230) USB3.2 Gen2(10Gbps)/USB3.1/USB3.0/USB2.0

Hi t.kato1,

Are you using the devkit or custom board for Jetson Nano?

How did you write raw image to SSD?

Could you refer to the following topic to check if it may help for your case?
Read-only file system for AGX Xavier on Jp4.6.2 - Jetson & Embedded Systems / Jetson AGX Xavier - NVIDIA Developer Forums
Clone Read-only file system for AGX Xavier on Jp4.6.4 - Jetson & Embedded Systems / Jetson AGX Xavier - NVIDIA Developer Forums

Hi KevinFFF,

Thank you for your reply.

Are you using the devkit or custom board for Jetson Nano?

I use devkit b01.

How did you write raw image to SSD?

I executed it with the command below.

gst-launch-1.0 -e v4l2src num-buffers=100 ! queue max-size-bytes=0 ! videoconvert ! multifilesink location=capture_%05d.raw max-files=10000 sync=false

The camera frame rate is 13fps.
Image size is 2432(H)x2048(V).

I checked the topics but they didn’t help me.

Would it be rw or ro after you reboot the board?
Or reconnect SSD through USB?

Please also share the result of lsblk and df -h and dmesg on your board for further check.

An error will occur during the write raw image process and m.2 becomes ro.

I will check and share the result of lsblk and df -h and dmesg.

I share the result of lsblk and df -h and dmesg.

Before command execution
mount

/dev/mmcblk0p1 on / type ext4 (rw,relatime,data=ordered)
proc on /proc type proc (rw,relatime)
sysfs on /sys type sysfs (rw,relatime)
none on /dev type devtmpfs (rw,relatime,size=1780036k,nr_inodes=445009,mode=755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,nodev,mode=755)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
cgroup on /sys/fs/cgroup/unified type cgroup2 (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
cgroup on /sys/fs/cgroup/debug type cgroup (rw,nosuid,nodev,noexec,relatime,debug)
cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=34,pgrp=1,timeout=0,minproto=5,maxproto=5,direct)
sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime)
mqueue on /dev/mqueue type mqueue (rw,relatime)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,relatime)
configfs on /sys/kernel/config type configfs (rw,relatime)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=405084k,mode=700,uid=1000,gid=1000)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)
fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
/dev/sda1 on /media/pure/ssd type ext4 (rw,nosuid,nodev,relatime,stripe=8191,data=ordered,uhelper=udisks2)

lsblk

NAME         MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
loop0          7:0    0    16M  1 loop /media/pure/L4T-README
sda            8:0    0 238.5G  0 disk 
└─sda1         8:1    0 238.5G  0 part /media/pure/ssd
mtdblock0     31:0    0     4M  0 disk 
mmcblk0      179:0    0  28.8G  0 disk 
├─mmcblk0p1  179:1    0  28.8G  0 part /
├─mmcblk0p2  179:2    0   128K  0 part 
├─mmcblk0p3  179:3    0   448K  0 part 
├─mmcblk0p4  179:4    0   576K  0 part 
├─mmcblk0p5  179:5    0    64K  0 part 
├─mmcblk0p6  179:6    0   192K  0 part 
├─mmcblk0p7  179:7    0   384K  0 part 
├─mmcblk0p8  179:8    0    64K  0 part 
├─mmcblk0p9  179:9    0   448K  0 part 
├─mmcblk0p10 179:10   0   448K  0 part 
├─mmcblk0p11 179:11   0   768K  0 part 
├─mmcblk0p12 179:12   0    64K  0 part 
├─mmcblk0p13 179:13   0   192K  0 part 
└─mmcblk0p14 179:14   0   128K  0 part 
zram0        252:0    0 494.5M  0 disk [SWAP]
zram1        252:1    0 494.5M  0 disk [SWAP]
zram2        252:2    0 494.5M  0 disk [SWAP]
zram3        252:3    0 494.5M  0 disk [SWAP]

df-h

Filesystem      Size  Used Avail Use% Mounted on
/dev/mmcblk0p1   29G  8.2G   19G  31% /
none            1.7G     0  1.7G   0% /dev
tmpfs           2.0G   40K  2.0G   1% /dev/shm
tmpfs           2.0G   28M  2.0G   2% /run
tmpfs           5.0M  4.0K  5.0M   1% /run/lock
tmpfs           2.0G     0  2.0G   0% /sys/fs/cgroup
tmpfs           396M  144K  396M   1% /run/user/1000
/dev/sda1       234G   65M  222G   1% /media/pure/ssd
/dev/loop0       16M   66K   16M   1% /media/pure/L4T-README

dmesg

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.299 (pure@pure-OptiPlex-5040) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #1 SMP PREEMPT Tue Jan 30 14:51:58 JST 2024
[    0.000000] Boot CPU: AArch64 Processor [411fd071]
[    0.000000] OF: fdt:memory scan node memory@80000000, reg size 32,
[    0.000000] OF: fdt: - 80000000 ,  7ee00000
[    0.000000] OF: fdt: - 100000000 ,  7f200000
[    0.000000] Found tegra_fbmem: 00800000@92ca9000
[    0.000000] earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    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=1075 core_edp_ma=4000 gpt tegra_fbmem=0x800000@0x92ca9000 is_hdmi_initialised=1  earlycon=uart8250,mmio32,0x70006000  root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 quiet root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 
[    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: 29664(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: 3560076K/4159488K available (15422K kernel code, 2970K rwdata, 6836K rodata, 8640K init, 614K bss, 124276K 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 - 0xffffff8008f90000   ( 15424 KB)
[    0.000000]     .rodata : 0xffffff8008f90000 - 0xffffff8009650000   (  6912 KB)
[    0.000000]       .init : 0xffffff8009650000 - 0xffffff8009ec0000   (  8640 KB)
[    0.000000]       .data : 0xffffff8009ec0000 - 0xffffff800a1a6808   (  2971 KB)
[    0.000000]        .bss : 0xffffff800a1a6808 - 0xffffff800a24032c   (   615 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.001584] Console: colour dummy device 80x25
[    0.001595] console [tty0] enabled
[    0.001601] bootconsole [uart8250] disabled
[    0.001621] kmemleak: Kernel memory leak detector disabled
[    0.001640] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
[    0.001652] pid_max: default: 32768 minimum: 301
[    0.002104] Security Framework initialized
[    0.002323] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.002332] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.003514] ftrace: allocating 47248 entries in 185 pages
[    0.173460] sched-energy: CPU device node has no sched-energy-costs
[    0.173496] ASID allocator initialised with 65536 entries
[    0.211722] tegra-id: chipid=22117.
[    0.211735] tegra-id: opt_subrevision=0.
[    0.211752] Tegra Speedo/IDDQ fuse revision 4
[    0.211757] Tegra: CPU Speedo ID 9, SoC Speedo ID 0, GPU Speedo ID 2
[    0.211762] Tegra: CPU Process ID 0, SoC Process ID 1, GPU Process ID 0
[    0.211767] Tegra: CPU Speedo Value 2038, SoC Speedo Value 1953, GPU Speedo Value 2065
[    0.211771] Tegra: CPU IDDQ Value 1808, SoC IDDQ Value 2168, GPU IDDQ Value 2645
[    0.211790] Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 1
[    0.211807] DTS File Name: /home/pure/nvidia/nvidia_sdk/JetPack_4.6.3_Linux_JETSON_NANO_TARGETS/Linux_for_Tegra/source/public/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-b00-pscam-c2.dts
[    0.211815] DTB Build time: Apr  4 2024 16:19:03
[    0.261124] CPU1: Booted secondary processor [411fd071]
[    0.293019] CPU2: Booted secondary processor [411fd071]
[    0.324996] CPU3: Booted secondary processor [411fd071]
[    0.325084] Brought up 4 CPUs
[    0.325090] SMP: Total of 4 processors activated.
[    0.325097] CPU features: detected feature: 32-bit EL0 Support
[    0.325360] CPU: All CPU(s) started at EL2
[    0.325377] alternatives: patching kernel code
[    0.333868] devtmpfs: initialized
[    0.369782] Initilizing CustomIPI irq domain
[    0.370090] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.370111] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.381755] pinctrl core: initialized pinctrl subsystem
[    0.382336] OS set in device tree is not L4T.
[    0.382777] regulator-dummy: no parameters
[    0.383057] Initializing plugin-manager
[    0.383206] Plugin module not found
[    0.383397] node /plugin-manager/fragement@0 match with board >=3448-0000-100
[    0.383915] node /plugin-manager/fragment@1 match with board >=3448-0000-101
[    0.384901] node /plugin-manager/fragement@7 match with odm-data enable-pmic-wdt
[    0.385150] node /plugin-manager/fragement@8 match with odm-data enable-pmic-wdt
[    0.385806] node /plugin-manager/fragement@13 match with board >=3448-0000-300
[    0.389353] NET: Registered protocol family 16
[    0.390880] pstore: using zlib compression
[    0.390914] console [pstore-1] enabled
[    0.390918] pstore: Registered ramoops as persistent store backend
[    0.390924] ramoops: attached 0x200000@0xb0000000, ecc: 0/0
[    0.405143] cpuidle: using governor menu
[    0.408308] tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
[    0.410199] vdso: 2 pages (1 code @ ffffff8008f97000, 1 data @ ffffff8009ec4000)
[    0.410222] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.413680] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[    0.415917] Serial: AMBA PL011 UART driver
[    0.416485] tegra_powergate_init: DONE
[    0.416502] DTS File Name: /home/pure/nvidia/nvidia_sdk/JetPack_4.6.3_Linux_JETSON_NANO_TARGETS/Linux_for_Tegra/source/public/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-b00-pscam-c2.dts
[    0.416508] DTB Build time: Apr  4 2024 16:19:03
[    0.418278] Tegra reboot handler registered.
[    0.422819] iommu: Adding device tegra-carveouts to group 0
[    0.422954] platform tegra-carveouts: domain=ffffffc0f941b3d8 allocates as[0]=ffffffc0f9ba40a8
[    0.423319] iommu: Adding device smmu_test to group 1
[    0.423368] platform smmu_test: domain=ffffffc0f941b618 allocates as[0]=ffffffc0f9ba4110
[    0.424204] mc: mapped MMIO address: 0xffffff8008041000 -> 0x70019000
[    0.424257] mc: mapped MMIO address: 0xffffff8008067000 -> 0x7001c000
[    0.424314] mc: mapped MMIO address: 0xffffff800807b000 -> 0x7001d000
[    0.424325] nv-tegra-mc 70019000.mc: No mssnvlink node
[    0.424345] mc-err: mcerr ops are set to t21x
[    0.435255] iommu: Adding device 70090000.xusb to group 2
[    0.435536] iommu: Adding device 70006000.serial to group 3
[    0.435613] platform 70006000.serial: domain=ffffffc0f94a8558 allocates as[0]=ffffffc0f9ba4178
[    0.436039] iommu: Adding device 70006040.serial to group 4
[    0.436310] iommu: Adding device 70006200.serial to group 5
[    0.436543] iommu: Adding device sound to group 6
[    0.436592] platform sound: domain=ffffffc0f94a8a98 allocates as[0]=ffffffc0f9ba41e0
[    0.437303] iommu: Adding device 7000d400.spi to group 7
[    0.437560] iommu: Adding device 7000d600.spi to group 8
[    0.437841] iommu: Adding device 70410000.spi to group 9
[    0.438151] iommu: Adding device 50000000.host1x to group 10
[    0.438427] iommu: Adding device 54080000.vi to group 11
[    0.438819] iommu: Adding device 54600000.isp to group 12
[    0.439118] iommu: Adding device 54680000.isp to group 13
[    0.439390] iommu: Adding device tegradc.0 to group 14
[    0.439451] platform tegradc.0: domain=ffffffc0f94b39d8 allocates as[0]=ffffffc0f9ba4248
[    0.443652] platform tegradc.0: IOVA linear map 0x0000000092ca9000(800000)
[    0.444043] platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
[    0.444394] iommu: Adding device tegradc.1 to group 15
[    0.444440] platform tegradc.1: domain=ffffffc0f94b3c18 allocates as[0]=ffffffc0f9ba42b0
[    0.448645] platform tegradc.1: IOVA linear map 0x0000000092ca9000(800000)
[    0.449059] platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
[    0.449322] iommu: Adding device 54340000.vic to group 16
[    0.449529] iommu: Adding device 544c0000.nvenc to group 17
[    0.449732] iommu: Adding device 54500000.tsec to group 18
[    0.449933] iommu: Adding device 54100000.tsecb to group 19
[    0.450149] iommu: Adding device 54480000.nvdec to group 20
[    0.450347] iommu: Adding device 54380000.nvjpg to group 21
[    0.451389] iommu: Adding device 546c0000.i2c to group 22
[    0.451723] iommu: Adding device 57000000.gpu to group 23
[    0.451773] platform 57000000.gpu: domain=ffffffc0f9538c18 allocates as[0]=ffffffc0f9ba4318
[    0.451812] platform 57000000.gpu: domain=ffffffc0f9538c18 allocates as[1]=ffffffc0f9ba4380
[    0.451852] platform 57000000.gpu: domain=ffffffc0f9538c18 allocates as[2]=ffffffc0f9ba43e8
[    0.451912] platform 57000000.gpu: domain=ffffffc0f9538c18 allocates as[3]=ffffffc0f9ba4450
[    0.452799] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency thermal reset disabled.
[    0.452809] tegra-pmc 7000e400.pmc: scratch reg offset dts data not present
[    0.452821] tegra-pmc: ### PMC reset source: TEGRA_SOFTWARE_RESET
[    0.452825] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_WARM
[    0.452829] tegra-pmc: ### PMC reset status reg: 0x3
[    0.505303] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[    0.505311] tegra-pmc: Clear bootloader IO dpd settings
[    0.505330] tegra-pmc 7000e400.pmc: IO padctrl driver initialized
[    0.505398] tegra-pmc 7000e400.pmc: PMC: Successfully configure bootrom reset commands
[    0.505697] iommu: Adding device 70012000.se to group 24
[    0.506280] iommu: Adding device 1003000.pcie to group 25
[    0.506363] platform 1003000.pcie: domain=ffffffc0f941bcd8 allocates as[0]=ffffffc0f9ba44b8
[    0.506813] iommu: Adding device 7000c000.i2c to group 26
[    0.507106] iommu: Adding device 7000c400.i2c to group 27
[    0.507350] iommu: Adding device 7000c500.i2c to group 28
[    0.507609] iommu: Adding device 7000c700.i2c to group 29
[    0.507861] iommu: Adding device 7000d000.i2c to group 30
[    0.508123] iommu: Adding device 7000d100.i2c to group 31
[    0.508423] iommu: Adding device sdhci-tegra.0 to group 32
[    0.508497] platform sdhci-tegra.0: domain=ffffffc0f9402858 allocates as[0]=ffffffc0f9ba4520
[    0.509367] iommu: Adding device 700d0000.xudc to group 33
[    0.512656] vdd-ac-bat: 5000 mV 
[    0.513025] vdd-5v0-sys: 5000 mV 
[    0.513734] vdd-5v0-hdmi: 5000 mV 
[    0.514183] vdd-5v0-hdmi: supplied by vdd-5v0-sys
[    0.514471] vdd-1v8-sys: 1800 mV 
[    0.514852] vdd-fan: 5000 mV 
[    0.515078] vdd-fan: supplied by vdd-5v0-sys
[    0.515289] vdd-usb-vbus: 5000 mV 
[    0.515500] vdd-usb-vbus: supplied by vdd-5v0-sys
[    0.515868] vdd-usb-vbus2: 5000 mV 
[    0.545991] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.548325] gpio gpiochip0: gpio-line-names specifies 240 line names but there are 256 lines on the chip
[    0.549462] GPIO line 6 (system-suspend-gpio) hogged as output/high
[    0.549489] GPIO line 151 (camera-control-output-low) hogged as output/low
[    0.549509] GPIO line 152 (camera-control-output-low) hogged as output/low
[    0.549884] gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip0 (tegra-gpio)
[    0.558061] eventlib_kernel: keventlib is initialized, test id: 0
[    0.558433] SCSI subsystem initialized
[    0.558607] libata version 3.00 loaded.
[    0.558865] usbcore: registered new interface driver usbfs
[    0.558915] usbcore: registered new interface driver hub
[    0.558952] usbcore: registered new device driver usb
[    0.563062] max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
[    0.568347] vdd-core: 600 <--> 1162 mV at 1075 mV 
[    0.569227] random: fast init done
[    0.569350] vdd-ddr-1v1: Bringing 1125000uV into 1150000-1150000uV
[    0.572242] vdd-ddr-1v1: 1150 mV 
[    0.576322] vdd-pre-reg-1v35: 1350 mV 
[    0.580235] vdd-1v8: 1800 mV 
[    0.584235] avdd-sys-1v2: 1200 mV 
[    0.588238] vdd-pex-1v0: 1050 mV 
[    0.588872] vddio-sdmmc-ap: 1800 <--> 3300 mV at 3300 mV 
[    0.589408] max77620-ldo3: at 3100 mV 
[    0.592240] vdd-rtc: 850 <--> 1100 mV at 1000 mV 
[    0.592786] max77620-ldo5: at 3100 mV 
[    0.596239] vddio-sdmmc3-ap: 1800 <--> 3300 mV at 2800 mV 
[    0.600242] avdd-1v05-pll: 1050 mV 
[    0.604240] avdd-io-hdmi-dp: 1050 mV 
[    0.606795] GPIO line 505 (spmic-default-output-high) hogged as output/high
[    0.607089] gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpiochip1 (max77620-gpio)
[    0.607371] max77620 4-003c: max77620 probe successful
[    0.610177] media: Linux media interface: v0.10
[    0.610239] Linux video capture interface: v2.00
[    0.611183] pps_core: LinuxPPS API ver. 1 registered
[    0.611190] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.611218] PTP clock support registered
[    0.614474] tegra210-emc 7001b000.external-memory-controller: validated EMC DFS table
[    0.615329] Advanced Linux Sound Architecture Driver Initialized.
[    0.615998] Bluetooth: Core ver 2.22
[    0.616043] NET: Registered protocol family 31
[    0.616048] Bluetooth: HCI device and connection manager initialized
[    0.616064] Bluetooth: HCI socket layer initialized
[    0.616073] Bluetooth: L2CAP socket layer initialized
[    0.616099] Bluetooth: SCO socket layer initialized
[    0.617889] tegra210_dvfs: no clock found for sdmmc2_ddr
[    0.617905] tegra210_dvfs: no clock found for sdmmc4_ddr
[    0.617948] tegra210_dvfs: no clock found for sdmmc1_ddr
[    0.617960] tegra210_dvfs: no clock found for sdmmc3_ddr
[    0.621158] tegra_dvfs: Unable to get vdd-cpu rail for step info, defering probe
[    0.622405] vdd-3v3-sys: 3300 mV 
[    0.622787] vdd-3v3-sys: supplied by vdd-5v0-sys
[    0.622830] vdd-1v8-sys: supplied by vdd-3v3-sys
[    0.625109] vdd-usb-vbus2: supplied by vdd-3v3-sys
[    0.625541] vdd-3v3-sd: 3300 mV 
[    0.625942] vdd-3v3-sd: supplied by vdd-3v3-sys
[    0.626493] avdd-io-edp-1v05: 1050 mV 
[    0.626844] avdd-io-edp-1v05: supplied by avdd-1v05-pll
[    0.626974] vdd-usb-hub-en: 5000 mV 
[    0.627313] vdd-usb-hub-en: supplied by vdd-1v8-sys
[    0.628395] camchar: rtcpu character device driver loaded
[    0.629317] extcon-gpio-states extcon:extcon@1: Cable state:0, cable id:0
[    0.630893] clocksource: Switched to clocksource arch_sys_counter
[    0.672760] VFS: Disk quotas dquot_6.6.0
[    0.672907] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.673412] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    0.673909] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000d7000000, size=0x19000000
[    0.673926]  dma-vpr: heap size is not multiple of cma_chunk_size heap_info->num_chunks (13) rem_chunk_size(0x1000000)
[    0.674148] cma: enabled page replacement for spfn=d7000, epfn=f0000
[    0.674153] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful
[    0.674165] tegra-carveouts tegra-carveouts: assigned reserved memory node vpr-carveout
[    0.674197] tegra-carveouts tegra-carveouts: iram :dma coherent mem declare 0x0000000040001000,258048
[    0.674203] tegra-carveouts tegra-carveouts: assigned reserved memory node iram-carveout
[    0.674226] nvmap: nvmap_select_cache_ops() nvmap cache ops set to set/ways
[    0.674235] nvmap_page_pool_init: Total RAM pages: 1008803
[    0.674239] nvmap_page_pool_init: nvmap page pool size: 126100 pages (492 MB)
[    0.674328] nvmap_background_zero_thread: PP zeroing thread starting.
[    0.674794] misc nvmap: created heap iram base 0x0000000040001000 size (252KiB)
[    0.675622] misc nvmap: created heap vpr base 0x00000000d7000000 size (409600KiB)
[    0.685646] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type AO-therm
[    0.686084] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type CPU-therm
[    0.686451] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
[    0.686718] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[    0.686924] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
[    0.687181] pre_t19x_iso_plat_init(): iso emc max clk=1600000KHz
[    0.687185] pre_t19x_iso_plat_init(): max_iso_bw=11520000KB
[    0.687652] NET: Registered protocol family 2
[    0.687780] IP idents hash table entries: 65536 (order: 7, 524288 bytes)
[    0.690192] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.690408] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.691064] TCP: Hash tables configured (established 32768 bind 32768)
[    0.691234] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.691313] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.691721] NET: Registered protocol family 1
[    0.692360] RPC: Registered named UNIX socket transport module.
[    0.692365] RPC: Registered udp transport module.
[    0.692369] RPC: Registered tcp transport module.
[    0.692374] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.692386] PCI: CLS 0 bytes, default 64
[    0.692628] Trying to unpack rootfs image as initramfs...
[    0.989482] Freeing initrd memory: 6992K
[    0.999381] host1x 50000000.host1x: initialized
[    1.001438] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    1.004824] audit: initializing netlink subsys (disabled)
[    1.004922] audit: type=2000 audit(0.851:1): initialized
[    1.005630] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    1.015475] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.016945] ntfs: driver 2.1.32 [Flags: R/W].
[    1.017747] 9p: Installing v9fs 9p2000 file system support
[    1.021010] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)
[    1.021120] io scheduler noop registered
[    1.021429] io scheduler cfq registered (default)
[    1.024260] gic 702f9000.agic: GIC IRQ controller registered
[    1.027744] iommu: Adding device 702ef000.adsp to group 34
[    1.036628] iommu: Adding device aconnect@702c0000:adsp_audio to group 35
[    1.036823] tegra-aconnect aconnect@702c0000: Tegra ACONNECT bus registered
[    1.037480] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 = 0x928a415
[    1.037488] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_0 = 0x4
[    1.039282] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane = usb2-0, function = xusb
[    1.039389] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.1, lane = usb2-1, function = xusb
[    1.039495] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.2, lane = usb2-2, function = xusb
[    1.039701] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane = pcie-0, function = pcie-x1
[    1.039790] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane = pcie-1, function = pcie-x4
[    1.039883] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane = pcie-2, function = pcie-x4
[    1.039970] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane = pcie-3, function = pcie-x4
[    1.040059] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane = pcie-4, function = pcie-x4
[    1.040145] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.8, lane = pcie-5, function = xusb
[    1.040231] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.9, lane = pcie-6, function = xusb
[    1.046450] tegra-pwm 7000a000.pwm: PWM clk cannot sleep in ops
[    1.048340] tegra-dfll-pwm 70110000.pwm: DFLL pwm-rate: 12800000
[    1.050286] tegra-pcie 1003000.pcie: 4x1, 1x1 configuration
[    1.051573] tegra-pcie 1003000.pcie: PCIE: Enable power rails
[    1.051937] tegra-pcie 1003000.pcie: probing port 0, using 4 lanes
[    1.053171] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[    1.053398] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=3925327, vi_iso_bw=1875000, max_bw=3925327
[    1.053635] Adding domain tsec-pd to PM domain host1x-pd
[    1.055862] tegra-pcie 1003000.pcie: probing port 1, using 1 lanes
[    1.056826] tsec 54500000.tsec: initialized
[    1.058382] tsec 54100000.tsecb: initialized
[    1.059126] Adding domain nvdec-pd to PM domain host1x-pd
[    1.062346] nvdec 54480000.nvdec: initialized
[    1.063454] Adding domain vic03-pd to PM domain host1x-pd
[    1.063629] Adding domain msenc-pd to PM domain host1x-pd
[    1.063810] Adding domain nvjpg-pd to PM domain host1x-pd
[    1.067843] falcon 54340000.vic: initialized
[    1.069060] falcon 544c0000.nvenc: initialized
[    1.070349] falcon 54380000.nvjpg: initialized
[    1.074772] tegra_cec 70015000.tegra_cec: dt=1 start=0x70015000 end=0x70015FFF irq=97
[    1.074842] tegra_cec 70015000.tegra_cec: Enable clock result: 0.
[    1.074873] tegra_cec 70015000.tegra_cec: tegra_cec_init started
[    1.075052] tegradc tegradc.0: disp0 connected to head0->/host1x/sor1
[    1.075151] display board info: id 0x0, fab 0x0
[    1.075205] tegra_cec 70015000.tegra_cec: cec_add_sysfs ret=0
[    1.075210] tegra_cec 70015000.tegra_cec: probed
[    1.075216] generic_infoframe_type: 0x87
[    1.075363] tegradc tegradc.0: DT parsed successfully
[    1.075420] tegradc tegradc.0: Display dc.ffffff800ac00000 registered with id=0
[    1.075968] tegradc tegradc.0: Bootloader disp_param detected. Detected mode: 1920x1080 (on 0x0mm) pclk=148350781
[    1.083248] tegra-apbdma 60020000.dma: Tegra20 APB DMA driver register 32 channels
[    1.087972] tegradc tegradc.0: probed
[    1.089031] tegra-adma 702e2000.adma: Tegra210 ADMA driver registered 22 channels
[    1.090683] tegra-fuse-burn 7000f800.efuse:efuse-burn: shutdown limit check disabled
[    1.090694] tegra-fuse-burn 7000f800.efuse:efuse-burn: Fuse burn driver initialized
[    1.091364] kfuse 7000fc00.kfuse: initialized
[    1.093012] tegra-pmc-iopower pmc-iopower: Regulator supply iopower-dbg-supply not available
[    1.094014] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[    1.095863] tegra-dfll-pwm 70110000.pwm: DFLL_PWM regulator is available now
[    1.095878] vdd-cpu: 708 <--> 1322 mV at 708 mV 
[    1.096439] pwm-regulator pwm_regulators:pwm-regulator@0: PWM regulator registration passed
[    1.098031] vdd-gpu: applied init 1000000uV constraint
[    1.098040] vdd-gpu: 708 <--> 1323 mV at 997 mV 
[    1.098473] pwm-regulator pwm_regulators:pwm-regulator@1: PWM regulator registration passed
[    1.104113] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.104243] No Device Node present for smmu client: serial8250 !!
[    1.104257] platform serial8250: No iommus property found in DT node, got swgids from fixup(101004000)
[    1.104318] iommu: Adding device serial8250 to group 36
[    1.108147] console [ttyS0] disabled
[    1.108292] 70006000.serial: ttyS0 at MMIO 0x70006000 (irq = 63, base_baud = 25500000) is a Tegra
[    1.108467] console [ttyS0] enabled
[    1.109850] 70006040.serial: ttyTHS1 at MMIO 0x70006040 (irq = 64, base_baud = 0) is a TEGRA_UART
[    1.110332] serial-tegra 70006200.serial: RX in PIO mode
[    1.110451] 70006200.serial: ttyTHS2 at MMIO 0x70006200 (irq = 65, base_baud = 0) is a TEGRA_UART
[    1.111824] [drm] Initialized
[    1.121594] Console: switching to colour frame buffer device 240x67
[    1.121829] tegradc tegradc.0: fb registered
[    1.124272] brd: module loaded
[    1.129217] tegradc tegradc.0: DC initialized, skipping tegra_dc_program_mode.
[    1.129267] tegradc tegradc.0: hdmi: tmds rate:148351K prod-setting:prod_c_hdmi_75m_150m
[    1.129803] tegradc tegradc.0: hdmi: get RGB quant from REG programmed by BL.
[    1.129814] tegradc tegradc.0: hdmi: get YCC quant from REG programmed by BL.
[    1.129845] loop: module loaded
[    1.129945] tegra_profiler: version: 1.145, samples/io: 49/28
[    1.130099] tegra_profiler: auth: init
[    1.131555] THERMAL EST: found 2 subdevs
[    1.131564] THERMAL EST num_resources: 0
[    1.131570] [THERMAL EST subdev 0]
[    1.131577] [THERMAL EST subdev 1]
[    1.132028] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type thermal-fan-est
[    1.132032] THERMAL EST: thz register success.
[    1.132200] THERMAL EST: end of probe, return err: 0
[    1.133532] sd: No Scsi addr parsed to reserve index
[    1.133575] hisi_sas: driver version v1.6
[    1.138583] tegra-qspi 70410000.spi: Prod settings list not found
[    1.139917] qspi_mtd spi32766.0: MX25U3235F (4096 Kbytes)
[    1.139928] qspi_mtd spi32766.0: mtd .name = spi32766.0, .size = 0x400000 (4MiB) .erasesize = 0x00001000 (4KiB) .numeraseregions = 0
[    1.144078] tun: Universal TUN/TAP device driver, 1.6
[    1.144093] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.145278] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.145285] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.145342] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    1.145346] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.145394] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    1.145398] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.145446] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k
[    1.145450] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    1.146670] PPP generic driver version 2.4.2
[    1.146957] PPP BSD Compression module registered
[    1.146966] PPP Deflate Compression module registered
[    1.147008] PPP MPPE Compression module registered
[    1.147016] NET: Registered protocol family 24
[    1.147095] usbcore: registered new interface driver r8152
[    1.147145] usbcore: registered new interface driver asix
[    1.147203] usbcore: registered new interface driver ax88179_178a
[    1.147247] usbcore: registered new interface driver cdc_ether
[    1.147285] usbcore: registered new interface driver net1080
[    1.147317] usbcore: registered new interface driver cdc_subset
[    1.147348] usbcore: registered new interface driver zaurus
[    1.147405] usbcore: registered new interface driver cdc_ncm
[    1.147585] VFIO - User Level meta-driver version: 0.3
[    1.148946] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.148966] ehci-pci: EHCI PCI platform driver
[    1.149017] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.149031] ohci-pci: OHCI PCI platform driver
[    1.149073] ohci-platform: OHCI generic platform driver
[    1.152251] tegra-xusb 70090000.xusb: USB2 port 0 has OTG_CAP
[    1.152875] tegra-xusb-padctl 7009f000.xusb_padctl: enabled OTG on UTMI pad 0
[    1.154098] tegra-xusb 70090000.xusb: extcon 0: ffffffc0f90fc400 id
[    1.156363] extcon-disp-state extcon:disp-state: cable 47 state 1
[    1.156371] Extcon AUX1(HDMI) enable
[    1.156728] usbcore: registered new interface driver uas
[    1.156802] usbcore: registered new interface driver usb-storage
[    1.156974] usbcore: registered new interface driver usbserial
[    1.157157] tegra-xusb 70090000.xusb: Firmware timestamp: 2020-07-31 09:33:12 UTC, Version: 50.26 release
[    1.157217] tegra-xusb 70090000.xusb: xHCI Host Controller
[    1.157250] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 1
[    1.157402] tegradc tegradc.1: disp1 connected to head1->/host1x/sor
[    1.157501] tegradc tegradc.1: No lt-data, using default setting
[    1.157541] tegradc tegradc.1: No hpd-gpio in DT
[    1.157595] tegradc tegradc.1: DT parsed successfully
[    1.157655] tegradc tegradc.1: Display dc.ffffff800d580000 registered with id=1
[    1.158101] tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100 quirks 0x00050010
[    1.158169] tegra-xusb 70090000.xusb: irq 61, io mem 0x70090000
[    1.158678] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.158688] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.158693] usb usb1: Product: xHCI Host Controller
[    1.158697] usb usb1: Manufacturer: Linux 4.9.299 xhci-hcd
[    1.158702] usb usb1: SerialNumber: 70090000.xusb
[    1.159538] hub 1-0:1.0: USB hub found
[    1.159631] hub 1-0:1.0: 5 ports detected
[    1.159840] tegradc tegradc.1: dpd enable lookup fail:-19
[    1.160236] tegra-xusb 70090000.xusb: xHCI Host Controller
[    1.160249] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 2
[    1.160343] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.160446] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.160451] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.160455] usb usb2: Product: xHCI Host Controller
[    1.160459] usb usb2: Manufacturer: Linux 4.9.299 xhci-hcd
[    1.160462] usb usb2: SerialNumber: 70090000.xusb
[    1.161196] hub 2-0:1.0: USB hub found
[    1.161302] hub 2-0:1.0: 4 ports detected
[    1.161960] tegra-xudc-new 700d0000.xudc: device count: 1
[    1.162231] tegra-xusb 70090000.xusb: Upgrade port 0 to USB3.0
[    1.162236] tegra-xusb 70090000.xusb: Upgrade port 1 to USB3.0
[    1.163637] tegra-xudc-new 700d0000.xudc: USB charger detection disabled
[    1.163649] tegra-xudc-new 700d0000.xudc: vbus state: 0
[    1.163686] tegra-xudc-new 700d0000.xudc: entering ELPG
[    1.163962] tegra-xudc-new 700d0000.xudc: entering ELPG done
[    1.164682] mousedev: PS/2 mouse device common for all mice
[    1.164811] usbcore: registered new interface driver xpad
[    1.169899] tegradc tegradc.1: probed
[    1.170232] tegradc tegradc.1: fb registered
[    1.173440] hpd: state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[    1.173447] hpd: switching from state 7 (Takeover from bootloader) to state 0 (Reset)
[    1.173456] hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
[    1.173472] tegradc tegradc.1: blank - powerdown
[    1.173493] extcon-disp-state extcon:disp-state: cable 44 state 0 already set.
[    1.173499] Extcon DP: HPD disabled
[    1.173502] hpd: hpd_switch 0
[    1.173507] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[    1.173516] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[    1.173523] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[    1.183013] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 1
[    1.200711] tegradc tegradc.0: nominal-pclk:148351648 parent:148350781 div:1.0 pclk:148350781 146868084~161703244
[    1.263115] usb usb2: usb_suspend_both: status 0
[    1.290433] tegradc tegradc.0: blank - powerdown
[    1.291798] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[    1.293945] rtc rtc1: alarm rtc device
[    1.293958] tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
[    1.293986] tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
[    1.294377] i2c /dev entries driver
[    1.295927] i2c i2c-6: Added multiplexed i2c bus 7
[    1.296350] i2c i2c-6: Added multiplexed i2c bus 8
[    1.296355] i2c-mux-gpio cam_i2cmux: 2 port mux on Tegra I2C adapter adapter
[    1.297479] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[    1.299441] tegra_soctherm 700e2000.soctherm: pllx_offset tz:0 max:14, min:2
[    1.299445] tegra_soctherm 700e2000.soctherm: pllx_offset tz:2 max:8, min:4
[    1.299764] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.299777] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when cpu reaches 102500 mC
[    1.299785] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when cpu reaches 100500 mC
[    1.299906] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.299915] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when gpu reaches 103000 mC
[    1.299922] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when gpu reaches 101000 mC
[    1.300063] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.300071] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when pll reaches 127000 mC
[    1.300076] tegra_soctherm 700e2000.soctherm: throttrip: pll: missing hot temperature
[    1.300246] tegra_soctherm 700e2000.soctherm: failed to register sensor: -19
[    1.300780] tegra_aotag tegra-aotag: Registering sensor 0
[    1.300825] tegra_aotag tegra-aotag: Invalid temp readout
[    1.300845] tegra_aotag tegra-aotag: Invalid temp readout
[    1.300860] tegra_aotag tegra-aotag: Bound to TZ : ID 0
[    1.300869] tegra_aotag tegra-aotag: Probe done [SUCCESS]:0
[    1.301681] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.301695] tegra_dfll_action dfll-cdev-cap: Tegra DFLL 'cap cooling device' registered
[    1.301884] tegra_aotag tegra-aotag: Invalid temp readout
[    1.301906] tegra_dfll_action dfll-cdev-floor: Tegra DFLL 'floor cooling device' registered
[    1.302272] parse_throttle_dt_data: Num cap clks = 6
[    1.302276] parse_throttle_dt_data: clk=cclk_g type=2
[    1.302282] parse_throttle_dt_data: clk=gpu type=4
[    1.302302] parse_throttle_dt_data: clk=cap.throttle.c2bus type=0
[    1.302318] parse_throttle_dt_data: clk=cap.throttle.c3bus type=0
[    1.302336] parse_throttle_dt_data: clk=cap.throttle.sclk type=0
[    1.302339] parse_throttle_dt_data: clk=emc type=3
[    1.302669] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.302794] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.302991] tegra_throttle_probe: probe successful. #cdevs=4
[    1.303611] FAN dev name: pwm-fan
[    1.303654] FAN:gpio request success.
[    1.303696] pwm_fan_driver pwm-fan: cap state:7, cap pwm:255
[    1.303979] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[    1.304097] pwm_fan_driver pwm-fan: fan tach request irq success
[    1.304104] pwm_fan_driver pwm-fan: tach period: 1000
[    1.304177] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, state:2
[    1.304182] pwm_fan_driver pwm-fan: index 1: pwm=80, rpm=1000, rru=2, rrd=2, state:2
[    1.304186] pwm_fan_driver pwm-fan: index 2: pwm=120, rpm=2000, rru=1, rrd=1, state:2
[    1.304190] pwm_fan_driver pwm-fan: index 3: pwm=160, rpm=3000, rru=1, rrd=1, state:2
[    1.304194] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1, state:3
[    1.304198] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1, state:3
[    1.304202] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1, state:3
[    1.304205] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1, state:4
[    1.304210] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1, state:4
[    1.304213] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1, state:4
[    1.306431] device-mapper: uevent: version 1.0.3
[    1.306850] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    1.309457] tegra210-cpufreq cpufreq: probe()...completed
[    1.310179] sdhci: Secure Digital Host Controller Interface driver
[    1.310180] sdhci: Copyright(c) Pierre Ossman
[    1.310181] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.310671] sdhci-tegra sdhci-tegra.0: Got CD GPIO
[    1.311097] sdhci-tegra sdhci-tegra.0: Client registration for eMC Successful
[    1.311229] sdhci-tegra sdhci-tegra.0: wakeup init done, cdirq 300
[    1.320082] tegra-se 70012000.se: tegra_se_probe: complete
[    1.320610] hidraw: raw HID events driver (C) Jiri Kosina
[    1.321809] usbcore: registered new interface driver usbhid
[    1.321810] usbhid: USB HID core driver
[    1.323283] ashmem: initialized
[    1.324256] tegra21x_actmon 6000c800.actmon: in actmon_register()...
[    1.324434] tegra21x_actmon 6000c800.actmon: initialization Completed for the device mc_all
[    1.326679] nvpmodel: initialized successfully
[    1.327819] usbcore: registered new interface driver snd-usb-audio
[    1.327875] No Device Node present for smmu client: snd-soc-dummy !!
[    1.327880] platform snd-soc-dummy: No iommus property found in DT node, got swgids from fixup(101004000)
[    1.327897] iommu: Adding device snd-soc-dummy to group 37
[    1.338213] extcon-disp-state extcon:disp-state: cable 47 state 0
[    1.338215] Extcon AUX1(HDMI) disable
[    1.341895] input: tegra-hda HDMI/DP,pcm=3 as /devices/70030000.hda/sound/card0/input0
[    1.359038] mmc0: SDHCI controller on sdhci-tegra.0 [sdhci-tegra.0] using ADMA 64-bit with 64 bit addr
[    1.361375] OPE platform probe
[    1.361465] OPE platform probe successful
[    1.361724] OPE platform probe
[    1.361804] OPE platform probe successful
[    1.366312] tegradc tegradc.0: unblank
[    1.378613] tegradc tegradc.0: nominal-pclk:148500000 parent:148500000 div:1.0 pclk:148500000 147015000~161865000
[    1.378686] tegradc tegradc.0: hdmi: tmds rate:148500K prod-setting:prod_c_hdmi_75m_150m
[    1.379709] tegradc tegradc.0: hdmi: get YCC quant from EDID.
[    1.385443] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[    1.385572] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[    1.385701] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[    1.385828] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[    1.385953] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[    1.386085] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[    1.386212] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[    1.386336] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[    1.386471] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[    1.386599] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[    1.398008] u32 classifier
[    1.398010]     Actions configured
[    1.398083] Initializing XFRM netlink socket
[    1.398826] NET: Registered protocol family 10
[    1.399490] NET: Registered protocol family 17
[    1.399500] NET: Registered protocol family 15
[    1.399573] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    1.399621] Bluetooth: RFCOMM socket layer initialized
[    1.399629] Bluetooth: RFCOMM ver 1.11
[    1.399633] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    1.399637] Bluetooth: HIDP socket layer initialized
[    1.399653] 9pnet: Installing 9P2000 support
[    1.399691] Key type dns_resolver registered
[    1.400146] Registered cp15_barrier emulation handler
[    1.400151] Registered setend emulation handler
[    1.401183] registered taskstats version 1
[    1.401714] Adding domain ve2-pd to PM domain host1x-pd
[    1.401963] Adding domain ve-pd to PM domain host1x-pd
[    1.403947] isp 54600000.isp: initialized
[    1.404899] isp 54680000.isp: initialized
[    1.406910] usb 1-2: new high-speed USB device number 2 using tegra-xusb
[    1.414581] extcon-disp-state extcon:disp-state: cable 47 state 1
[    1.414584] Extcon AUX1(HDMI) enable
[    1.415146] last reset is due to software reset
[    1.415148] KERNEL: PMC reset status reg: 0x3
[    1.415206] BL: PMC reset status reg: 0x3
[    1.415208] BL: PMIC poweroff Event Recorder: 0x0
[    1.416616] clk_cbus_recalc_rate: no gbus parent
[    1.416620] clk_cbus_round_rate: no gbus parent
[    1.416622] clk_cbus_round_rate: no gbus parent
[    1.416629] clk_cbus_recalc_rate: no gbus parent
[    1.416726] clk_cbus_recalc_rate: no gbus parent
[    1.416729] clk_cbus_round_rate: no gbus parent
[    1.416730] clk_cbus_round_rate: no gbus parent
[    1.416733] clk_cbus_recalc_rate: no gbus parent
[    1.417431] tegra_dvfs: GPU-cap: registered
[    1.417484] tegra dvfs: vdd-cpu: nominal 1168mV, offset 708000uV, step 19200uV, scaling enabled
[    1.417486] tegra dvfs: vdd-core: nominal 1075mV, offset 600000uV, step 12500uV, scaling enabled
[    1.417488] tegra dvfs: vdd-gpu: nominal 1058mV, offset 708000uV, step 10000uV, scaling enabled
[    1.418985] tegra_dvfs: vdd-gpu-vts: registered
[    1.419692] tegra_core_action core_dvfs_cdev_floor: Tegra CORE DVFS 'floor cooling device' registered
[    1.420303] tegra_core_action core_dvfs_cdev_cap: Tegra CORE DVFS 'cap cooling device' registered
[    1.420865] input: gpio-keys as /devices/gpio-keys/input/input1
[    1.429954] tegradc tegradc.0: sync windows ret = 247
[    1.440392] usb 1-2: New USB device found, idVendor=0bda, idProduct=5411
[    1.440396] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.440399] usb 1-2: Product: 4-Port USB 2.1 Hub
[    1.440401] usb 1-2: Manufacturer: Generic
[    1.441226] hub 1-2:1.0: USB hub found
[    1.441798] hub 1-2:1.0: 4 ports detected
[    1.451896] tegra_rtc 7000e000.rtc: setting system clock to 2000-01-01 01:03:38 UTC (946688618)
[    1.452934] vi 54080000.vi: vi_probe: ++
[    1.454327] extcon-disp-state extcon:disp-state: cable 51 state 1
[    1.454330] Extcon HDMI: HPD enabled
[    1.454349] tegradc tegradc.0: hdmi: plugged
[    1.455532] vi 54080000.vi: initialized
[    1.457545] vi 54080000.vi: subdev nvcsi--2 bound
[    1.457648] vi 54080000.vi: subdev nvcsi--1 bound
[    1.458416] Disable partitions left on by BL
[    1.458420]   disb
[    1.458460] bwmgr: missing cdev-type property
[    1.458594] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.458601] DRAM derating cdev registered.
[    1.459588] ALSA device list:
[    1.459592]   #0: tegra-hda at 0x70038000 irq 83
[    1.459594]   #1: tegra-snd-t210ref-mobile-rt565x
[    1.463036] Freeing unused kernel memory: 8640K
[    1.489124] Root device found: mmcblk0p1
[    1.514900] tegra-pcie 1003000.pcie: link 0 down, retrying
[    1.551320] usb 2-1: new SuperSpeed USB device number 2 using tegra-xusb
[    1.579208] usb 2-1: New USB device found, idVendor=0bda, idProduct=0411
[    1.579213] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.579216] usb 2-1: Product: 4-Port USB 3.1 Hub
[    1.579219] usb 2-1: Manufacturer: Generic
[    1.582384] hub 2-1:1.0: USB hub found
[    1.583160] hub 2-1:1.0: 4 ports detected
[    1.613091] mmc0: hw tuning done ...
[    1.613127] mmc0: new ultra high speed SDR104 SDHC card at address 13ab
[    1.613551] mmcblk0: mmc0:13ab SE032 28.8 GiB 
[    1.617754]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14
[    1.694102] Found dev node: /dev/mmcblk0p1
[    1.723233] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[    1.725160] Rootfs mounted over mmcblk0p1
[    1.730908] usb 1-2.1: new full-speed USB device number 3 using tegra-xusb
[    1.745724] Switching from initrd to actual rootfs
[    1.754310] usb 1-2.1: New USB device found, idVendor=046d, idProduct=c534
[    1.754316] usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.754320] usb 1-2.1: Product: USB Receiver
[    1.754323] usb 1-2.1: Manufacturer: Logitech
[    1.757077] input: Logitech USB Receiver as /devices/70090000.xusb/usb1/1-2/1-2.1/1-2.1:1.0/0003:046D:C534.0001/input/input2
[    1.815320] hid-generic 0003:046D:C534.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-70090000.xusb-2.1/input0
[    1.818566] input: Logitech USB Receiver as /devices/70090000.xusb/usb1/1-2/1-2.1/1-2.1:1.1/0003:046D:C534.0002/input/input3
[    1.875431] hid-generic 0003:046D:C534.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-70090000.xusb-2.1/input1
[    1.875687] usb 2-1.3: new SuperSpeed USB device number 3 using tegra-xusb
[    1.891360] systemd[1]: System time before build time, advancing clock.
[    1.909744] usb 2-1.3: New USB device found, idVendor=0bda, idProduct=9210
[    1.909750] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.909753] usb 2-1.3: Product: Ugreen Storage Device
[    1.909757] usb 2-1.3: Manufacturer: Ugreen
[    1.909760] usb 2-1.3: SerialNumber: 01293800247E
[    1.919186] tegra-pcie 1003000.pcie: link 0 down, retrying
[    1.925212] ip_tables: (C) 2000-2006 Netfilter Core Team
[    1.937646] cgroup: cgroup2: unknown option "nsdelegate"
[    1.956157] 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)
[    1.956960] systemd[1]: Detected architecture arm64.
[    1.971650] scsi host0: uas
[    1.979915] systemd[1]: Set hostname to <pure-desktop>.
[    2.068879] 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.068889] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[    2.102958] tegra_cec 70015000.tegra_cec: physical address: 20:00.
[    2.167528] tegra_cec 70015000.tegra_cec: Sent <Text View On> res: -113.
[    2.167533] tegra_cec 70015000.tegra_cec: tegra_cec_init Done.
[    2.175028] random: systemd: uninitialized urandom read (16 bytes read)
[    2.175263] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    2.175364] random: systemd: uninitialized urandom read (16 bytes read)
[    2.177198] systemd[1]: Created slice System Slice.
[    2.177454] random: systemd: uninitialized urandom read (16 bytes read)
[    2.177584] systemd[1]: Listening on Journal Audit Socket.
[    2.177729] systemd[1]: Listening on fsck to fsckd communication Socket.
[    2.177883] systemd[1]: Listening on Syslog Socket.
[    2.219352] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
[    2.324919] tegra-pcie 1003000.pcie: link 0 down, retrying
[    2.326912] tegra-pcie 1003000.pcie: link 0 down, ignoring
[    2.377200] scsi 0:0:0:0: Direct-Access     EDILOCA  EN605 256GB      1.00 PQ: 0 ANSI: 6
[    2.430363] tegra-pcie 1003000.pcie: PCI host bridge to bus 0000:00
[    2.430370] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    2.430374] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
[    2.430378] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pref]
[    2.430382] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.430404] pci 0000:00:02.0: [10de:0faf] type 01 class 0x060400
[    2.430473] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.430665] iommu: Adding device 0000:00:02.0 to group 38
[    2.430744] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    2.430855] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[    2.430910] pci 0000:01:00.0: reg 0x10: [io  0x0000-0x00ff]
[    2.430944] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
[    2.430967] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
[    2.431128] pci 0000:01:00.0: supports D1 D2
[    2.431132] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.431304] iommu: Adding device 0000:01:00.0 to group 39
[    2.442808] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    2.443004] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    2.443035] pci 0000:00:02.0: BAR 14: assigned [mem 0x13000000-0x130fffff]
[    2.443040] pci 0000:00:02.0: BAR 13: assigned [io  0x1000-0x1fff]
[    2.443047] pci 0000:01:00.0: BAR 4: assigned [mem 0x13000000-0x13003fff 64bit]
[    2.443067] pci 0000:01:00.0: BAR 2: assigned [mem 0x13004000-0x13004fff 64bit]
[    2.443085] pci 0000:01:00.0: BAR 0: assigned [io  0x1000-0x10ff]
[    2.443094] pci 0000:00:02.0: PCI bridge to [bus 01]
[    2.443098] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
[    2.443105] pci 0000:00:02.0:   bridge window [mem 0x13000000-0x130fffff]
[    2.443419] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    2.443423] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    2.443429] pcie_pme 0000:00:02.0:pcie001: service driver pcie_pme loaded
[    2.443541] aer 0000:00:02.0:pcie002: service driver aer loaded
[    2.443749] r8168 0000:01:00.0: enabling device (0000 -> 0003)
[    2.443768] r8168 Gigabit Ethernet driver 8.045.08-NAPI loaded
[    2.449545] sd 0:0:0:0: [sda] Write Protect is off
[    2.449552] sd 0:0:0:0: [sda] Mode Sense: 37 00 00 08
[    2.452279] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.454415] sd 0:0:0:0: [sda] Optimal transfer size 33553920 bytes
[    2.459358] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Invalid ethernet address 00:00:00:00:00:00, trying device tree node
[    2.459432] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Found valid ethernet address 48:b0:2d:c1:5e:aa from device tree
[    2.459988] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[    2.460005] 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/>. 
[    2.473464] systemd-journald[2013]: Received request to flush runtime journal from PID 1
[    2.476933]  sda: sda1
[    2.490700] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.518077] nvgpu: 57000000.gpu           gm20b_init_clk_setup_sw:1268 [INFO]  GPCPLL initial settings: NA mode, M=1, N=34, P=3 (id = 1)
[    3.662187] using random self ethernet address
[    3.667037] using random host ethernet address
[    3.977323] random: crng init done
[    3.980756] random: 7 urandom warning(s) missed due to ratelimiting
[    4.420801] Mass Storage Function, version: 2009/09/11
[    4.420807] LUN: removable file: (no medium)
[    4.427451] using random self ethernet address
[    4.433983] using random host ethernet address
[    4.462688] pscam: PSCAM C2 I2C driver revision 1
[    4.462697] pscam_c2 7-0051: pscam_probe: probing v4l2 sensor at addr 0x51
[    4.462702] pscam_c2 7-0051: pscam_probe: probing id.name = pscam_c2, id.driver_data = 194
[    4.462751] pscam: Called pscam_parse_dt
[    4.462826] pscam_c2 7-0051: pscam_parse_dt: mclk name not present, assume sensor driven externally
[    4.462831] pscam_c2 7-0051: pscam_parse_dt: avdd, iovdd and/or dvdd reglrs. not present, assume sensor powered independently
[    4.462833] pscam: End of pscam_parse_dt successfully
[    4.462835] pscam: Called pscam_power_get
[    4.462838] pscam: End of pscam_power_get on err = 0
[    4.471029] pscam_c2 7-0051: tegracam sensor driver:pscam_c2_v2.0.6
[    4.471033] pscam: Called pscam_board_setup
[    4.471036] pscam: Called pscam_power_on
[    4.471040] pscam_c2 7-0051: pscam_power_on: power on
[    4.471042] pscam: Force GPIO-reset
[    4.471046] pscam: Skip power sequence
[    4.471048] pscam: Force GPIO-reset
[    4.494176] pscam: End of pscam_power_on successfully
[    4.494181] pscam: Read I2C byte addr = 0x3001
[    4.496038] pscam: Read data = 0xC2
[    4.496047] pscam_c2 7-0051: Connected PSCAM model number = 0x00C2
[    4.496050] pscam: Called pscam_power_off
[    4.496054] pscam_c2 7-0051: pscam_power_off: power off
[    4.496056] pscam: Force GPIO-reset
[    4.497005] pscam: End of pscam_power_off successfully
[    4.497009] pscam: End of pscam_board_setup width err = 0
[    4.497012] pscam: Start to "tegracam_v4l2subdev_register"
[    4.497055] vi 54080000.vi: subdev pscam_c2 7-0051 bound
[    4.498064] pscam: End of "tegracam_v4l2subdev_register" with err = 0
[    4.498196] pscam_c2 7-0051: pscam_probe: detected pscam sensor module
[    4.498198] pscam: End of pscam_probe
[    4.498436] pscam: PSCAM C2 I2C driver revision 1
[    4.498443] pscam_c2 8-0051: pscam_probe: probing v4l2 sensor at addr 0x51
[    4.498447] pscam_c2 8-0051: pscam_probe: probing id.name = pscam_c2, id.driver_data = 194
[    4.498498] pscam: Called pscam_parse_dt
[    4.498548] pscam_c2 8-0051: pscam_parse_dt: mclk name not present, assume sensor driven externally
[    4.498553] pscam_c2 8-0051: pscam_parse_dt: avdd, iovdd and/or dvdd reglrs. not present, assume sensor powered independently
[    4.498555] pscam: End of pscam_parse_dt successfully
[    4.498558] pscam: Called pscam_power_get
[    4.498561] pscam: End of pscam_power_get on err = 0
[    4.498666] pscam_c2 8-0051: tegracam sensor driver:pscam_c2_v2.0.6
[    4.498668] pscam: Called pscam_board_setup
[    4.498671] pscam: Called pscam_power_on
[    4.498674] pscam_c2 8-0051: pscam_power_on: power on
[    4.498676] pscam: Force GPIO-reset
[    4.498680] pscam: Skip power sequence
[    4.498681] pscam: Force GPIO-reset
[    4.521817] pscam: End of pscam_power_on successfully
[    4.521823] pscam: Read I2C byte addr = 0x3001
[    4.522318] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x51
[    4.531146] pscam_c2 8-0051: pscam_reg_read8: i2c read8 failed @ 0x3001
[    4.538452] pscam_c2 8-0051: pscam_board_setup: error during i2c read probe (-121)
[    4.547290] pscam: Called pscam_power_off
[    4.547297] pscam_c2 8-0051: pscam_power_off: power off
[    4.547299] pscam: Force GPIO-reset
[    4.547912] pscam: End of pscam_power_off successfully
[    4.547916] pscam: End of pscam_board_setup width err = -121
[    4.547920] pscam_c2 8-0051: pscam_probe: board setup failed
[    4.554119] pscam_c2: probe of 8-0051 failed with error -121
[    4.578315] rndis0: HOST MAC 22:c4:93:35:ea:fc
[    4.578581] rndis0: MAC 22:c4:93:35:ea:fd
[    4.584058] usb0: HOST MAC 22:c4:93:35:ea:fe
[    4.584090] usb0: MAC 22:c4:93:35:ea:ff
[    4.584110] tegra-xudc-new 700d0000.xudc: exiting ELPG
[    4.587505] tegra-xudc-new 700d0000.xudc: exiting ELPG done
[    4.587523] tegra-xudc-new 700d0000.xudc: ep 0 (type: 0, dir: out) enabled
[    4.587604] tegra-xudc-new 700d0000.xudc: entering ELPG
[    4.587834] tegra-xudc-new 700d0000.xudc: entering ELPG done
[    4.587858] tegra-xudc-new 700d0000.xudc: exiting ELPG
[    4.588386] tegra-xudc-new 700d0000.xudc: exiting ELPG done
[    4.588398] tegra-xudc-new 700d0000.xudc: entering ELPG
[    4.588616] tegra-xudc-new 700d0000.xudc: entering ELPG done
[    4.594750] l4tbr0: port 1(rndis0) entered blocking state
[    4.594754] l4tbr0: port 1(rndis0) entered disabled state
[    4.596001] device rndis0 entered promiscuous mode
[    4.606835] IPv6: ADDRCONF(NETDEV_UP): rndis0: link is not ready
[    4.612422] l4tbr0: port 2(usb0) entered blocking state
[    4.612427] l4tbr0: port 2(usb0) entered disabled state
[    4.613000] device usb0 entered promiscuous mode
[    4.620664] IPv6: ADDRCONF(NETDEV_UP): usb0: link is not ready
[    4.696607] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    4.696628] cpu-throttle-alert cooling device registered.
[    4.720109] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    4.720128] gpu-throttle-alert cooling device registered.
[    4.720312] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    4.720325] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    4.720338] hot-surface-alert cooling device registered.
[    5.326042] eth0: 0xffffff8013014000, 48:b0:2d:c1:5e:aa, IRQ 407
[    5.382395] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    5.511705] zram: Added device: zram0
[    5.514151] zram: Added device: zram1
[    5.515873] zram: Added device: zram2
[    5.519486] zram: Added device: zram3
[    5.537253] zram0: detected capacity change from 0 to 518508544
[    5.564222] Adding 506352k swap on /dev/zram0.  Priority:5 extents:1 across:506352k SS
[    5.575914] zram1: detected capacity change from 0 to 518508544
[    5.606526] Adding 506352k swap on /dev/zram1.  Priority:5 extents:1 across:506352k SS
[    5.615850] zram2: detected capacity change from 0 to 518508544
[    5.638177] Adding 506352k swap on /dev/zram2.  Priority:5 extents:1 across:506352k SS
[    5.646508] zram3: detected capacity change from 0 to 518508544
[    5.662507] Adding 506352k swap on /dev/zram3.  Priority:5 extents:1 across:506352k SS
[    5.986936] sd 0:0:0:0: [sda] tag#0 uas_eh_abort_handler 0 uas-tag 1 inflight: IN 
[    5.986943] sd 0:0:0:0: [sda] tag#0 CDB: opcode=0x28 28 00 00 00 00 80 00 00 90 00
[    5.987167] scsi host0: uas_eh_bus_reset_handler start
[    6.067931] usb 2-1.3: reset SuperSpeed USB device number 3 using tegra-xusb
[    6.124010] pscam_c2 7-0051: pscam_open:
[    6.149377] scsi host0: uas_eh_bus_reset_handler success
[   13.265982] Bridge firewalling registered
[   13.364591] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   13.762680] Netfilter messages via NETLINK v0.30.
[   13.784563] ctnetlink v0.93: registering with nfnetlink.
[   14.072856] IPv6: ADDRCONF(NETDEV_UP): docker0: link is not ready
[   14.106111] tegradc tegradc.0: unblank
[   14.106373] tegradc tegradc.1: blank - powerdown
[   15.369846] fuse init (API version 7.26)
[   17.637928] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   17.637939] Bluetooth: BNEP socket layer initialized
[   18.739242] tegradc tegradc.0: unblank
[   18.739254] tegradc tegradc.1: blank - powerdown
[   20.963366] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   31.866460] vdd-fan: disabling
[   31.866501] vdd-usb-vbus: disabling
[   31.866532] vdd-usb-vbus2: disabling
[   31.866629] vddio-sdmmc3-ap: disabling
[   31.867345] avdd-io-edp-1v05: disabling
[   31.867380] vdd-usb-hub-en: disabling
[   52.461814] pscam_c2 7-0051: pscam_open:
[   52.750655] pscam_c2 7-0051: pscam_open:
[   52.798984] pscam: Called pscam_power_on
[   52.798992] pscam_c2 7-0051: pscam_power_on: power on
[   52.798994] pscam: Force GPIO-reset
[   52.798998] pscam: Skip power sequence
[   52.799000] pscam: Force GPIO-reset
[   52.822194] pscam: End of pscam_power_on successfully
[   52.822208] pscam: "pscam_set_mode" Required mode 0
[   53.335111] pscam: Start streaming!
[   53.335130] vi 54080000.vi: Calibrate csi port 0
[   53.335294] pscam: Stop streaming!
[   53.335302] pscam: Called pscam_power_off
[   53.335309] pscam_c2 7-0051: pscam_power_off: power off
[   53.335313] pscam: Force GPIO-reset
[   53.335343] pscam: End of pscam_power_off successfully
[   53.335444] pscam: Called pscam_power_on
[   53.335451] pscam_c2 7-0051: pscam_power_on: power on
[   53.335455] pscam: Force GPIO-reset
[   53.335460] pscam: Skip power sequence
[   53.335463] pscam: Force GPIO-reset
[   53.358760] pscam: End of pscam_power_on successfully
[   53.364918] vi 54080000.vi: settle time reading from props
[   53.364951] vi 54080000.vi: discontinuous_clk = 0 reading from props
[   53.364978] vi 54080000.vi: cil_settingtime was autocalculated by cil_clk_mhz = 102, csi_clk_mhz = 102
[   53.365004] vi 54080000.vi: csi clock settle time: 13, cil settle time: 10
[   53.365062] pscam: "pscam_set_mode" Required mode 0
[   53.879471] pscam: Start streaming!
[   62.053676] pscam: Stop streaming!
[   62.061699] pscam: Called pscam_power_off
[   62.061710] pscam_c2 7-0051: pscam_power_off: power off
[   62.061715] pscam: Force GPIO-reset
[   62.061754] pscam: End of pscam_power_off successfully

After command execution
mount

/dev/mmcblk0p1 on / type ext4 (rw,relatime,data=ordered)
proc on /proc type proc (rw,relatime)
sysfs on /sys type sysfs (rw,relatime)
none on /dev type devtmpfs (rw,relatime,size=1780036k,nr_inodes=445009,mode=755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,nodev,mode=755)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
cgroup on /sys/fs/cgroup/unified type cgroup2 (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
cgroup on /sys/fs/cgroup/debug type cgroup (rw,nosuid,nodev,noexec,relatime,debug)
cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=34,pgrp=1,timeout=0,minproto=5,maxproto=5,direct)
sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime)
mqueue on /dev/mqueue type mqueue (rw,relatime)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,relatime)
configfs on /sys/kernel/config type configfs (rw,relatime)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=405084k,mode=700,uid=1000,gid=1000)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)
fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
/dev/sda1 on /media/pure/ssd type ext4 (ro,nosuid,nodev,relatime,stripe=8191,data=ordered,uhelper=udisks2)
/dev/loop0 on /media/pure/L4T-README type vfat (ro,nosuid,nodev,relatime,uid=1000,gid=1000,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2)

lsblk

NAME         MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
loop0          7:0    0    16M  1 loop /media/pure/L4T-README
sda            8:0    0 238.5G  0 disk 
└─sda1         8:1    0 238.5G  0 part /media/pure/ssd
mtdblock0     31:0    0     4M  0 disk 
mmcblk0      179:0    0  28.8G  0 disk 
├─mmcblk0p1  179:1    0  28.8G  0 part /
├─mmcblk0p2  179:2    0   128K  0 part 
├─mmcblk0p3  179:3    0   448K  0 part 
├─mmcblk0p4  179:4    0   576K  0 part 
├─mmcblk0p5  179:5    0    64K  0 part 
├─mmcblk0p6  179:6    0   192K  0 part 
├─mmcblk0p7  179:7    0   384K  0 part 
├─mmcblk0p8  179:8    0    64K  0 part 
├─mmcblk0p9  179:9    0   448K  0 part 
├─mmcblk0p10 179:10   0   448K  0 part 
├─mmcblk0p11 179:11   0   768K  0 part 
├─mmcblk0p12 179:12   0    64K  0 part 
├─mmcblk0p13 179:13   0   192K  0 part 
└─mmcblk0p14 179:14   0   128K  0 part 
zram0        252:0    0 494.5M  0 disk [SWAP]
zram1        252:1    0 494.5M  0 disk [SWAP]
zram2        252:2    0 494.5M  0 disk [SWAP]
zram3        252:3    0 494.5M  0 disk [SWAP]

df-h

Filesystem      Size  Used Avail Use% Mounted on
/dev/mmcblk0p1   29G  8.2G   19G  31% /
none            1.7G     0  1.7G   0% /dev
tmpfs           2.0G   40K  2.0G   1% /dev/shm
tmpfs           2.0G   28M  2.0G   2% /run
tmpfs           5.0M  4.0K  5.0M   1% /run/lock
tmpfs           2.0G     0  2.0G   0% /sys/fs/cgroup
tmpfs           396M  140K  396M   1% /run/user/1000
/dev/sda1       234G   84M  222G   1% /media/pure/ssd
/dev/loop0       16M   66K   16M   1% /media/pure/L4T-README

dmesg

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.299 (pure@pure-OptiPlex-5040) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #1 SMP PREEMPT Tue Jan 30 14:51:58 JST 2024
[    0.000000] Boot CPU: AArch64 Processor [411fd071]
[    0.000000] OF: fdt:memory scan node memory@80000000, reg size 32,
[    0.000000] OF: fdt: - 80000000 ,  7ee00000
[    0.000000] OF: fdt: - 100000000 ,  7f200000
[    0.000000] Found tegra_fbmem: 00800000@92ca9000
[    0.000000] earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    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=1075 core_edp_ma=4000 gpt tegra_fbmem=0x800000@0x92ca9000 is_hdmi_initialised=1  earlycon=uart8250,mmio32,0x70006000  root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 quiet root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 
[    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: 29664(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: 3560076K/4159488K available (15422K kernel code, 2970K rwdata, 6836K rodata, 8640K init, 614K bss, 124276K 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 - 0xffffff8008f90000   ( 15424 KB)
[    0.000000]     .rodata : 0xffffff8008f90000 - 0xffffff8009650000   (  6912 KB)
[    0.000000]       .init : 0xffffff8009650000 - 0xffffff8009ec0000   (  8640 KB)
[    0.000000]       .data : 0xffffff8009ec0000 - 0xffffff800a1a6808   (  2971 KB)
[    0.000000]        .bss : 0xffffff800a1a6808 - 0xffffff800a24032c   (   615 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.001584] Console: colour dummy device 80x25
[    0.001595] console [tty0] enabled
[    0.001601] bootconsole [uart8250] disabled
[    0.001621] kmemleak: Kernel memory leak detector disabled
[    0.001640] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
[    0.001652] pid_max: default: 32768 minimum: 301
[    0.002104] Security Framework initialized
[    0.002323] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.002332] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.003514] ftrace: allocating 47248 entries in 185 pages
[    0.173460] sched-energy: CPU device node has no sched-energy-costs
[    0.173496] ASID allocator initialised with 65536 entries
[    0.211722] tegra-id: chipid=22117.
[    0.211735] tegra-id: opt_subrevision=0.
[    0.211752] Tegra Speedo/IDDQ fuse revision 4
[    0.211757] Tegra: CPU Speedo ID 9, SoC Speedo ID 0, GPU Speedo ID 2
[    0.211762] Tegra: CPU Process ID 0, SoC Process ID 1, GPU Process ID 0
[    0.211767] Tegra: CPU Speedo Value 2038, SoC Speedo Value 1953, GPU Speedo Value 2065
[    0.211771] Tegra: CPU IDDQ Value 1808, SoC IDDQ Value 2168, GPU IDDQ Value 2645
[    0.211790] Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 1
[    0.211807] DTS File Name: /home/pure/nvidia/nvidia_sdk/JetPack_4.6.3_Linux_JETSON_NANO_TARGETS/Linux_for_Tegra/source/public/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-b00-pscam-c2.dts
[    0.211815] DTB Build time: Apr  4 2024 16:19:03
[    0.261124] CPU1: Booted secondary processor [411fd071]
[    0.293019] CPU2: Booted secondary processor [411fd071]
[    0.324996] CPU3: Booted secondary processor [411fd071]
[    0.325084] Brought up 4 CPUs
[    0.325090] SMP: Total of 4 processors activated.
[    0.325097] CPU features: detected feature: 32-bit EL0 Support
[    0.325360] CPU: All CPU(s) started at EL2
[    0.325377] alternatives: patching kernel code
[    0.333868] devtmpfs: initialized
[    0.369782] Initilizing CustomIPI irq domain
[    0.370090] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.370111] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.381755] pinctrl core: initialized pinctrl subsystem
[    0.382336] OS set in device tree is not L4T.
[    0.382777] regulator-dummy: no parameters
[    0.383057] Initializing plugin-manager
[    0.383206] Plugin module not found
[    0.383397] node /plugin-manager/fragement@0 match with board >=3448-0000-100
[    0.383915] node /plugin-manager/fragment@1 match with board >=3448-0000-101
[    0.384901] node /plugin-manager/fragement@7 match with odm-data enable-pmic-wdt
[    0.385150] node /plugin-manager/fragement@8 match with odm-data enable-pmic-wdt
[    0.385806] node /plugin-manager/fragement@13 match with board >=3448-0000-300
[    0.389353] NET: Registered protocol family 16
[    0.390880] pstore: using zlib compression
[    0.390914] console [pstore-1] enabled
[    0.390918] pstore: Registered ramoops as persistent store backend
[    0.390924] ramoops: attached 0x200000@0xb0000000, ecc: 0/0
[    0.405143] cpuidle: using governor menu
[    0.408308] tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
[    0.410199] vdso: 2 pages (1 code @ ffffff8008f97000, 1 data @ ffffff8009ec4000)
[    0.410222] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.413680] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[    0.415917] Serial: AMBA PL011 UART driver
[    0.416485] tegra_powergate_init: DONE
[    0.416502] DTS File Name: /home/pure/nvidia/nvidia_sdk/JetPack_4.6.3_Linux_JETSON_NANO_TARGETS/Linux_for_Tegra/source/public/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-b00-pscam-c2.dts
[    0.416508] DTB Build time: Apr  4 2024 16:19:03
[    0.418278] Tegra reboot handler registered.
[    0.422819] iommu: Adding device tegra-carveouts to group 0
[    0.422954] platform tegra-carveouts: domain=ffffffc0f941b3d8 allocates as[0]=ffffffc0f9ba40a8
[    0.423319] iommu: Adding device smmu_test to group 1
[    0.423368] platform smmu_test: domain=ffffffc0f941b618 allocates as[0]=ffffffc0f9ba4110
[    0.424204] mc: mapped MMIO address: 0xffffff8008041000 -> 0x70019000
[    0.424257] mc: mapped MMIO address: 0xffffff8008067000 -> 0x7001c000
[    0.424314] mc: mapped MMIO address: 0xffffff800807b000 -> 0x7001d000
[    0.424325] nv-tegra-mc 70019000.mc: No mssnvlink node
[    0.424345] mc-err: mcerr ops are set to t21x
[    0.435255] iommu: Adding device 70090000.xusb to group 2
[    0.435536] iommu: Adding device 70006000.serial to group 3
[    0.435613] platform 70006000.serial: domain=ffffffc0f94a8558 allocates as[0]=ffffffc0f9ba4178
[    0.436039] iommu: Adding device 70006040.serial to group 4
[    0.436310] iommu: Adding device 70006200.serial to group 5
[    0.436543] iommu: Adding device sound to group 6
[    0.436592] platform sound: domain=ffffffc0f94a8a98 allocates as[0]=ffffffc0f9ba41e0
[    0.437303] iommu: Adding device 7000d400.spi to group 7
[    0.437560] iommu: Adding device 7000d600.spi to group 8
[    0.437841] iommu: Adding device 70410000.spi to group 9
[    0.438151] iommu: Adding device 50000000.host1x to group 10
[    0.438427] iommu: Adding device 54080000.vi to group 11
[    0.438819] iommu: Adding device 54600000.isp to group 12
[    0.439118] iommu: Adding device 54680000.isp to group 13
[    0.439390] iommu: Adding device tegradc.0 to group 14
[    0.439451] platform tegradc.0: domain=ffffffc0f94b39d8 allocates as[0]=ffffffc0f9ba4248
[    0.443652] platform tegradc.0: IOVA linear map 0x0000000092ca9000(800000)
[    0.444043] platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
[    0.444394] iommu: Adding device tegradc.1 to group 15
[    0.444440] platform tegradc.1: domain=ffffffc0f94b3c18 allocates as[0]=ffffffc0f9ba42b0
[    0.448645] platform tegradc.1: IOVA linear map 0x0000000092ca9000(800000)
[    0.449059] platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
[    0.449322] iommu: Adding device 54340000.vic to group 16
[    0.449529] iommu: Adding device 544c0000.nvenc to group 17
[    0.449732] iommu: Adding device 54500000.tsec to group 18
[    0.449933] iommu: Adding device 54100000.tsecb to group 19
[    0.450149] iommu: Adding device 54480000.nvdec to group 20
[    0.450347] iommu: Adding device 54380000.nvjpg to group 21
[    0.451389] iommu: Adding device 546c0000.i2c to group 22
[    0.451723] iommu: Adding device 57000000.gpu to group 23
[    0.451773] platform 57000000.gpu: domain=ffffffc0f9538c18 allocates as[0]=ffffffc0f9ba4318
[    0.451812] platform 57000000.gpu: domain=ffffffc0f9538c18 allocates as[1]=ffffffc0f9ba4380
[    0.451852] platform 57000000.gpu: domain=ffffffc0f9538c18 allocates as[2]=ffffffc0f9ba43e8
[    0.451912] platform 57000000.gpu: domain=ffffffc0f9538c18 allocates as[3]=ffffffc0f9ba4450
[    0.452799] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency thermal reset disabled.
[    0.452809] tegra-pmc 7000e400.pmc: scratch reg offset dts data not present
[    0.452821] tegra-pmc: ### PMC reset source: TEGRA_SOFTWARE_RESET
[    0.452825] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_WARM
[    0.452829] tegra-pmc: ### PMC reset status reg: 0x3
[    0.505303] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[    0.505311] tegra-pmc: Clear bootloader IO dpd settings
[    0.505330] tegra-pmc 7000e400.pmc: IO padctrl driver initialized
[    0.505398] tegra-pmc 7000e400.pmc: PMC: Successfully configure bootrom reset commands
[    0.505697] iommu: Adding device 70012000.se to group 24
[    0.506280] iommu: Adding device 1003000.pcie to group 25
[    0.506363] platform 1003000.pcie: domain=ffffffc0f941bcd8 allocates as[0]=ffffffc0f9ba44b8
[    0.506813] iommu: Adding device 7000c000.i2c to group 26
[    0.507106] iommu: Adding device 7000c400.i2c to group 27
[    0.507350] iommu: Adding device 7000c500.i2c to group 28
[    0.507609] iommu: Adding device 7000c700.i2c to group 29
[    0.507861] iommu: Adding device 7000d000.i2c to group 30
[    0.508123] iommu: Adding device 7000d100.i2c to group 31
[    0.508423] iommu: Adding device sdhci-tegra.0 to group 32
[    0.508497] platform sdhci-tegra.0: domain=ffffffc0f9402858 allocates as[0]=ffffffc0f9ba4520
[    0.509367] iommu: Adding device 700d0000.xudc to group 33
[    0.512656] vdd-ac-bat: 5000 mV 
[    0.513025] vdd-5v0-sys: 5000 mV 
[    0.513734] vdd-5v0-hdmi: 5000 mV 
[    0.514183] vdd-5v0-hdmi: supplied by vdd-5v0-sys
[    0.514471] vdd-1v8-sys: 1800 mV 
[    0.514852] vdd-fan: 5000 mV 
[    0.515078] vdd-fan: supplied by vdd-5v0-sys
[    0.515289] vdd-usb-vbus: 5000 mV 
[    0.515500] vdd-usb-vbus: supplied by vdd-5v0-sys
[    0.515868] vdd-usb-vbus2: 5000 mV 
[    0.545991] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.548325] gpio gpiochip0: gpio-line-names specifies 240 line names but there are 256 lines on the chip
[    0.549462] GPIO line 6 (system-suspend-gpio) hogged as output/high
[    0.549489] GPIO line 151 (camera-control-output-low) hogged as output/low
[    0.549509] GPIO line 152 (camera-control-output-low) hogged as output/low
[    0.549884] gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip0 (tegra-gpio)
[    0.558061] eventlib_kernel: keventlib is initialized, test id: 0
[    0.558433] SCSI subsystem initialized
[    0.558607] libata version 3.00 loaded.
[    0.558865] usbcore: registered new interface driver usbfs
[    0.558915] usbcore: registered new interface driver hub
[    0.558952] usbcore: registered new device driver usb
[    0.563062] max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
[    0.568347] vdd-core: 600 <--> 1162 mV at 1075 mV 
[    0.569227] random: fast init done
[    0.569350] vdd-ddr-1v1: Bringing 1125000uV into 1150000-1150000uV
[    0.572242] vdd-ddr-1v1: 1150 mV 
[    0.576322] vdd-pre-reg-1v35: 1350 mV 
[    0.580235] vdd-1v8: 1800 mV 
[    0.584235] avdd-sys-1v2: 1200 mV 
[    0.588238] vdd-pex-1v0: 1050 mV 
[    0.588872] vddio-sdmmc-ap: 1800 <--> 3300 mV at 3300 mV 
[    0.589408] max77620-ldo3: at 3100 mV 
[    0.592240] vdd-rtc: 850 <--> 1100 mV at 1000 mV 
[    0.592786] max77620-ldo5: at 3100 mV 
[    0.596239] vddio-sdmmc3-ap: 1800 <--> 3300 mV at 2800 mV 
[    0.600242] avdd-1v05-pll: 1050 mV 
[    0.604240] avdd-io-hdmi-dp: 1050 mV 
[    0.606795] GPIO line 505 (spmic-default-output-high) hogged as output/high
[    0.607089] gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpiochip1 (max77620-gpio)
[    0.607371] max77620 4-003c: max77620 probe successful
[    0.610177] media: Linux media interface: v0.10
[    0.610239] Linux video capture interface: v2.00
[    0.611183] pps_core: LinuxPPS API ver. 1 registered
[    0.611190] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.611218] PTP clock support registered
[    0.614474] tegra210-emc 7001b000.external-memory-controller: validated EMC DFS table
[    0.615329] Advanced Linux Sound Architecture Driver Initialized.
[    0.615998] Bluetooth: Core ver 2.22
[    0.616043] NET: Registered protocol family 31
[    0.616048] Bluetooth: HCI device and connection manager initialized
[    0.616064] Bluetooth: HCI socket layer initialized
[    0.616073] Bluetooth: L2CAP socket layer initialized
[    0.616099] Bluetooth: SCO socket layer initialized
[    0.617889] tegra210_dvfs: no clock found for sdmmc2_ddr
[    0.617905] tegra210_dvfs: no clock found for sdmmc4_ddr
[    0.617948] tegra210_dvfs: no clock found for sdmmc1_ddr
[    0.617960] tegra210_dvfs: no clock found for sdmmc3_ddr
[    0.621158] tegra_dvfs: Unable to get vdd-cpu rail for step info, defering probe
[    0.622405] vdd-3v3-sys: 3300 mV 
[    0.622787] vdd-3v3-sys: supplied by vdd-5v0-sys
[    0.622830] vdd-1v8-sys: supplied by vdd-3v3-sys
[    0.625109] vdd-usb-vbus2: supplied by vdd-3v3-sys
[    0.625541] vdd-3v3-sd: 3300 mV 
[    0.625942] vdd-3v3-sd: supplied by vdd-3v3-sys
[    0.626493] avdd-io-edp-1v05: 1050 mV 
[    0.626844] avdd-io-edp-1v05: supplied by avdd-1v05-pll
[    0.626974] vdd-usb-hub-en: 5000 mV 
[    0.627313] vdd-usb-hub-en: supplied by vdd-1v8-sys
[    0.628395] camchar: rtcpu character device driver loaded
[    0.629317] extcon-gpio-states extcon:extcon@1: Cable state:0, cable id:0
[    0.630893] clocksource: Switched to clocksource arch_sys_counter
[    0.672760] VFS: Disk quotas dquot_6.6.0
[    0.672907] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.673412] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    0.673909] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000d7000000, size=0x19000000
[    0.673926]  dma-vpr: heap size is not multiple of cma_chunk_size heap_info->num_chunks (13) rem_chunk_size(0x1000000)
[    0.674148] cma: enabled page replacement for spfn=d7000, epfn=f0000
[    0.674153] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful
[    0.674165] tegra-carveouts tegra-carveouts: assigned reserved memory node vpr-carveout
[    0.674197] tegra-carveouts tegra-carveouts: iram :dma coherent mem declare 0x0000000040001000,258048
[    0.674203] tegra-carveouts tegra-carveouts: assigned reserved memory node iram-carveout
[    0.674226] nvmap: nvmap_select_cache_ops() nvmap cache ops set to set/ways
[    0.674235] nvmap_page_pool_init: Total RAM pages: 1008803
[    0.674239] nvmap_page_pool_init: nvmap page pool size: 126100 pages (492 MB)
[    0.674328] nvmap_background_zero_thread: PP zeroing thread starting.
[    0.674794] misc nvmap: created heap iram base 0x0000000040001000 size (252KiB)
[    0.675622] misc nvmap: created heap vpr base 0x00000000d7000000 size (409600KiB)
[    0.685646] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type AO-therm
[    0.686084] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type CPU-therm
[    0.686451] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
[    0.686718] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[    0.686924] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
[    0.687181] pre_t19x_iso_plat_init(): iso emc max clk=1600000KHz
[    0.687185] pre_t19x_iso_plat_init(): max_iso_bw=11520000KB
[    0.687652] NET: Registered protocol family 2
[    0.687780] IP idents hash table entries: 65536 (order: 7, 524288 bytes)
[    0.690192] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.690408] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.691064] TCP: Hash tables configured (established 32768 bind 32768)
[    0.691234] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.691313] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.691721] NET: Registered protocol family 1
[    0.692360] RPC: Registered named UNIX socket transport module.
[    0.692365] RPC: Registered udp transport module.
[    0.692369] RPC: Registered tcp transport module.
[    0.692374] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.692386] PCI: CLS 0 bytes, default 64
[    0.692628] Trying to unpack rootfs image as initramfs...
[    0.989482] Freeing initrd memory: 6992K
[    0.999381] host1x 50000000.host1x: initialized
[    1.001438] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    1.004824] audit: initializing netlink subsys (disabled)
[    1.004922] audit: type=2000 audit(0.851:1): initialized
[    1.005630] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    1.015475] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.016945] ntfs: driver 2.1.32 [Flags: R/W].
[    1.017747] 9p: Installing v9fs 9p2000 file system support
[    1.021010] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)
[    1.021120] io scheduler noop registered
[    1.021429] io scheduler cfq registered (default)
[    1.024260] gic 702f9000.agic: GIC IRQ controller registered
[    1.027744] iommu: Adding device 702ef000.adsp to group 34
[    1.036628] iommu: Adding device aconnect@702c0000:adsp_audio to group 35
[    1.036823] tegra-aconnect aconnect@702c0000: Tegra ACONNECT bus registered
[    1.037480] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 = 0x928a415
[    1.037488] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_0 = 0x4
[    1.039282] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane = usb2-0, function = xusb
[    1.039389] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.1, lane = usb2-1, function = xusb
[    1.039495] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.2, lane = usb2-2, function = xusb
[    1.039701] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane = pcie-0, function = pcie-x1
[    1.039790] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane = pcie-1, function = pcie-x4
[    1.039883] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane = pcie-2, function = pcie-x4
[    1.039970] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane = pcie-3, function = pcie-x4
[    1.040059] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane = pcie-4, function = pcie-x4
[    1.040145] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.8, lane = pcie-5, function = xusb
[    1.040231] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.9, lane = pcie-6, function = xusb
[    1.046450] tegra-pwm 7000a000.pwm: PWM clk cannot sleep in ops
[    1.048340] tegra-dfll-pwm 70110000.pwm: DFLL pwm-rate: 12800000
[    1.050286] tegra-pcie 1003000.pcie: 4x1, 1x1 configuration
[    1.051573] tegra-pcie 1003000.pcie: PCIE: Enable power rails
[    1.051937] tegra-pcie 1003000.pcie: probing port 0, using 4 lanes
[    1.053171] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[    1.053398] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=3925327, vi_iso_bw=1875000, max_bw=3925327
[    1.053635] Adding domain tsec-pd to PM domain host1x-pd
[    1.055862] tegra-pcie 1003000.pcie: probing port 1, using 1 lanes
[    1.056826] tsec 54500000.tsec: initialized
[    1.058382] tsec 54100000.tsecb: initialized
[    1.059126] Adding domain nvdec-pd to PM domain host1x-pd
[    1.062346] nvdec 54480000.nvdec: initialized
[    1.063454] Adding domain vic03-pd to PM domain host1x-pd
[    1.063629] Adding domain msenc-pd to PM domain host1x-pd
[    1.063810] Adding domain nvjpg-pd to PM domain host1x-pd
[    1.067843] falcon 54340000.vic: initialized
[    1.069060] falcon 544c0000.nvenc: initialized
[    1.070349] falcon 54380000.nvjpg: initialized
[    1.074772] tegra_cec 70015000.tegra_cec: dt=1 start=0x70015000 end=0x70015FFF irq=97
[    1.074842] tegra_cec 70015000.tegra_cec: Enable clock result: 0.
[    1.074873] tegra_cec 70015000.tegra_cec: tegra_cec_init started
[    1.075052] tegradc tegradc.0: disp0 connected to head0->/host1x/sor1
[    1.075151] display board info: id 0x0, fab 0x0
[    1.075205] tegra_cec 70015000.tegra_cec: cec_add_sysfs ret=0
[    1.075210] tegra_cec 70015000.tegra_cec: probed
[    1.075216] generic_infoframe_type: 0x87
[    1.075363] tegradc tegradc.0: DT parsed successfully
[    1.075420] tegradc tegradc.0: Display dc.ffffff800ac00000 registered with id=0
[    1.075968] tegradc tegradc.0: Bootloader disp_param detected. Detected mode: 1920x1080 (on 0x0mm) pclk=148350781
[    1.083248] tegra-apbdma 60020000.dma: Tegra20 APB DMA driver register 32 channels
[    1.087972] tegradc tegradc.0: probed
[    1.089031] tegra-adma 702e2000.adma: Tegra210 ADMA driver registered 22 channels
[    1.090683] tegra-fuse-burn 7000f800.efuse:efuse-burn: shutdown limit check disabled
[    1.090694] tegra-fuse-burn 7000f800.efuse:efuse-burn: Fuse burn driver initialized
[    1.091364] kfuse 7000fc00.kfuse: initialized
[    1.093012] tegra-pmc-iopower pmc-iopower: Regulator supply iopower-dbg-supply not available
[    1.094014] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[    1.095863] tegra-dfll-pwm 70110000.pwm: DFLL_PWM regulator is available now
[    1.095878] vdd-cpu: 708 <--> 1322 mV at 708 mV 
[    1.096439] pwm-regulator pwm_regulators:pwm-regulator@0: PWM regulator registration passed
[    1.098031] vdd-gpu: applied init 1000000uV constraint
[    1.098040] vdd-gpu: 708 <--> 1323 mV at 997 mV 
[    1.098473] pwm-regulator pwm_regulators:pwm-regulator@1: PWM regulator registration passed
[    1.104113] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.104243] No Device Node present for smmu client: serial8250 !!
[    1.104257] platform serial8250: No iommus property found in DT node, got swgids from fixup(101004000)
[    1.104318] iommu: Adding device serial8250 to group 36
[    1.108147] console [ttyS0] disabled
[    1.108292] 70006000.serial: ttyS0 at MMIO 0x70006000 (irq = 63, base_baud = 25500000) is a Tegra
[    1.108467] console [ttyS0] enabled
[    1.109850] 70006040.serial: ttyTHS1 at MMIO 0x70006040 (irq = 64, base_baud = 0) is a TEGRA_UART
[    1.110332] serial-tegra 70006200.serial: RX in PIO mode
[    1.110451] 70006200.serial: ttyTHS2 at MMIO 0x70006200 (irq = 65, base_baud = 0) is a TEGRA_UART
[    1.111824] [drm] Initialized
[    1.121594] Console: switching to colour frame buffer device 240x67
[    1.121829] tegradc tegradc.0: fb registered
[    1.124272] brd: module loaded
[    1.129217] tegradc tegradc.0: DC initialized, skipping tegra_dc_program_mode.
[    1.129267] tegradc tegradc.0: hdmi: tmds rate:148351K prod-setting:prod_c_hdmi_75m_150m
[    1.129803] tegradc tegradc.0: hdmi: get RGB quant from REG programmed by BL.
[    1.129814] tegradc tegradc.0: hdmi: get YCC quant from REG programmed by BL.
[    1.129845] loop: module loaded
[    1.129945] tegra_profiler: version: 1.145, samples/io: 49/28
[    1.130099] tegra_profiler: auth: init
[    1.131555] THERMAL EST: found 2 subdevs
[    1.131564] THERMAL EST num_resources: 0
[    1.131570] [THERMAL EST subdev 0]
[    1.131577] [THERMAL EST subdev 1]
[    1.132028] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type thermal-fan-est
[    1.132032] THERMAL EST: thz register success.
[    1.132200] THERMAL EST: end of probe, return err: 0
[    1.133532] sd: No Scsi addr parsed to reserve index
[    1.133575] hisi_sas: driver version v1.6
[    1.138583] tegra-qspi 70410000.spi: Prod settings list not found
[    1.139917] qspi_mtd spi32766.0: MX25U3235F (4096 Kbytes)
[    1.139928] qspi_mtd spi32766.0: mtd .name = spi32766.0, .size = 0x400000 (4MiB) .erasesize = 0x00001000 (4KiB) .numeraseregions = 0
[    1.144078] tun: Universal TUN/TAP device driver, 1.6
[    1.144093] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.145278] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.145285] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.145342] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    1.145346] igb: Copyright (c) 2007-2014 Intel Corporation.
[    1.145394] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    1.145398] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.145446] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k
[    1.145450] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    1.146670] PPP generic driver version 2.4.2
[    1.146957] PPP BSD Compression module registered
[    1.146966] PPP Deflate Compression module registered
[    1.147008] PPP MPPE Compression module registered
[    1.147016] NET: Registered protocol family 24
[    1.147095] usbcore: registered new interface driver r8152
[    1.147145] usbcore: registered new interface driver asix
[    1.147203] usbcore: registered new interface driver ax88179_178a
[    1.147247] usbcore: registered new interface driver cdc_ether
[    1.147285] usbcore: registered new interface driver net1080
[    1.147317] usbcore: registered new interface driver cdc_subset
[    1.147348] usbcore: registered new interface driver zaurus
[    1.147405] usbcore: registered new interface driver cdc_ncm
[    1.147585] VFIO - User Level meta-driver version: 0.3
[    1.148946] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.148966] ehci-pci: EHCI PCI platform driver
[    1.149017] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.149031] ohci-pci: OHCI PCI platform driver
[    1.149073] ohci-platform: OHCI generic platform driver
[    1.152251] tegra-xusb 70090000.xusb: USB2 port 0 has OTG_CAP
[    1.152875] tegra-xusb-padctl 7009f000.xusb_padctl: enabled OTG on UTMI pad 0
[    1.154098] tegra-xusb 70090000.xusb: extcon 0: ffffffc0f90fc400 id
[    1.156363] extcon-disp-state extcon:disp-state: cable 47 state 1
[    1.156371] Extcon AUX1(HDMI) enable
[    1.156728] usbcore: registered new interface driver uas
[    1.156802] usbcore: registered new interface driver usb-storage
[    1.156974] usbcore: registered new interface driver usbserial
[    1.157157] tegra-xusb 70090000.xusb: Firmware timestamp: 2020-07-31 09:33:12 UTC, Version: 50.26 release
[    1.157217] tegra-xusb 70090000.xusb: xHCI Host Controller
[    1.157250] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 1
[    1.157402] tegradc tegradc.1: disp1 connected to head1->/host1x/sor
[    1.157501] tegradc tegradc.1: No lt-data, using default setting
[    1.157541] tegradc tegradc.1: No hpd-gpio in DT
[    1.157595] tegradc tegradc.1: DT parsed successfully
[    1.157655] tegradc tegradc.1: Display dc.ffffff800d580000 registered with id=1
[    1.158101] tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100 quirks 0x00050010
[    1.158169] tegra-xusb 70090000.xusb: irq 61, io mem 0x70090000
[    1.158678] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.158688] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.158693] usb usb1: Product: xHCI Host Controller
[    1.158697] usb usb1: Manufacturer: Linux 4.9.299 xhci-hcd
[    1.158702] usb usb1: SerialNumber: 70090000.xusb
[    1.159538] hub 1-0:1.0: USB hub found
[    1.159631] hub 1-0:1.0: 5 ports detected
[    1.159840] tegradc tegradc.1: dpd enable lookup fail:-19
[    1.160236] tegra-xusb 70090000.xusb: xHCI Host Controller
[    1.160249] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 2
[    1.160343] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.160446] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.160451] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.160455] usb usb2: Product: xHCI Host Controller
[    1.160459] usb usb2: Manufacturer: Linux 4.9.299 xhci-hcd
[    1.160462] usb usb2: SerialNumber: 70090000.xusb
[    1.161196] hub 2-0:1.0: USB hub found
[    1.161302] hub 2-0:1.0: 4 ports detected
[    1.161960] tegra-xudc-new 700d0000.xudc: device count: 1
[    1.162231] tegra-xusb 70090000.xusb: Upgrade port 0 to USB3.0
[    1.162236] tegra-xusb 70090000.xusb: Upgrade port 1 to USB3.0
[    1.163637] tegra-xudc-new 700d0000.xudc: USB charger detection disabled
[    1.163649] tegra-xudc-new 700d0000.xudc: vbus state: 0
[    1.163686] tegra-xudc-new 700d0000.xudc: entering ELPG
[    1.163962] tegra-xudc-new 700d0000.xudc: entering ELPG done
[    1.164682] mousedev: PS/2 mouse device common for all mice
[    1.164811] usbcore: registered new interface driver xpad
[    1.169899] tegradc tegradc.1: probed
[    1.170232] tegradc tegradc.1: fb registered
[    1.173440] hpd: state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[    1.173447] hpd: switching from state 7 (Takeover from bootloader) to state 0 (Reset)
[    1.173456] hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
[    1.173472] tegradc tegradc.1: blank - powerdown
[    1.173493] extcon-disp-state extcon:disp-state: cable 44 state 0 already set.
[    1.173499] Extcon DP: HPD disabled
[    1.173502] hpd: hpd_switch 0
[    1.173507] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[    1.173516] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[    1.173523] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[    1.183013] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 1
[    1.200711] tegradc tegradc.0: nominal-pclk:148351648 parent:148350781 div:1.0 pclk:148350781 146868084~161703244
[    1.263115] usb usb2: usb_suspend_both: status 0
[    1.290433] tegradc tegradc.0: blank - powerdown
[    1.291798] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[    1.293945] rtc rtc1: alarm rtc device
[    1.293958] tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
[    1.293986] tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
[    1.294377] i2c /dev entries driver
[    1.295927] i2c i2c-6: Added multiplexed i2c bus 7
[    1.296350] i2c i2c-6: Added multiplexed i2c bus 8
[    1.296355] i2c-mux-gpio cam_i2cmux: 2 port mux on Tegra I2C adapter adapter
[    1.297479] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[    1.299441] tegra_soctherm 700e2000.soctherm: pllx_offset tz:0 max:14, min:2
[    1.299445] tegra_soctherm 700e2000.soctherm: pllx_offset tz:2 max:8, min:4
[    1.299764] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.299777] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when cpu reaches 102500 mC
[    1.299785] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when cpu reaches 100500 mC
[    1.299906] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.299915] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when gpu reaches 103000 mC
[    1.299922] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when gpu reaches 101000 mC
[    1.300063] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.300071] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when pll reaches 127000 mC
[    1.300076] tegra_soctherm 700e2000.soctherm: throttrip: pll: missing hot temperature
[    1.300246] tegra_soctherm 700e2000.soctherm: failed to register sensor: -19
[    1.300780] tegra_aotag tegra-aotag: Registering sensor 0
[    1.300825] tegra_aotag tegra-aotag: Invalid temp readout
[    1.300845] tegra_aotag tegra-aotag: Invalid temp readout
[    1.300860] tegra_aotag tegra-aotag: Bound to TZ : ID 0
[    1.300869] tegra_aotag tegra-aotag: Probe done [SUCCESS]:0
[    1.301681] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.301695] tegra_dfll_action dfll-cdev-cap: Tegra DFLL 'cap cooling device' registered
[    1.301884] tegra_aotag tegra-aotag: Invalid temp readout
[    1.301906] tegra_dfll_action dfll-cdev-floor: Tegra DFLL 'floor cooling device' registered
[    1.302272] parse_throttle_dt_data: Num cap clks = 6
[    1.302276] parse_throttle_dt_data: clk=cclk_g type=2
[    1.302282] parse_throttle_dt_data: clk=gpu type=4
[    1.302302] parse_throttle_dt_data: clk=cap.throttle.c2bus type=0
[    1.302318] parse_throttle_dt_data: clk=cap.throttle.c3bus type=0
[    1.302336] parse_throttle_dt_data: clk=cap.throttle.sclk type=0
[    1.302339] parse_throttle_dt_data: clk=emc type=3
[    1.302669] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.302794] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.302991] tegra_throttle_probe: probe successful. #cdevs=4
[    1.303611] FAN dev name: pwm-fan
[    1.303654] FAN:gpio request success.
[    1.303696] pwm_fan_driver pwm-fan: cap state:7, cap pwm:255
[    1.303979] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[    1.304097] pwm_fan_driver pwm-fan: fan tach request irq success
[    1.304104] pwm_fan_driver pwm-fan: tach period: 1000
[    1.304177] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, state:2
[    1.304182] pwm_fan_driver pwm-fan: index 1: pwm=80, rpm=1000, rru=2, rrd=2, state:2
[    1.304186] pwm_fan_driver pwm-fan: index 2: pwm=120, rpm=2000, rru=1, rrd=1, state:2
[    1.304190] pwm_fan_driver pwm-fan: index 3: pwm=160, rpm=3000, rru=1, rrd=1, state:2
[    1.304194] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1, state:3
[    1.304198] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1, state:3
[    1.304202] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1, state:3
[    1.304205] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1, state:4
[    1.304210] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1, state:4
[    1.304213] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1, state:4
[    1.306431] device-mapper: uevent: version 1.0.3
[    1.306850] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    1.309457] tegra210-cpufreq cpufreq: probe()...completed
[    1.310179] sdhci: Secure Digital Host Controller Interface driver
[    1.310180] sdhci: Copyright(c) Pierre Ossman
[    1.310181] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.310671] sdhci-tegra sdhci-tegra.0: Got CD GPIO
[    1.311097] sdhci-tegra sdhci-tegra.0: Client registration for eMC Successful
[    1.311229] sdhci-tegra sdhci-tegra.0: wakeup init done, cdirq 300
[    1.320082] tegra-se 70012000.se: tegra_se_probe: complete
[    1.320610] hidraw: raw HID events driver (C) Jiri Kosina
[    1.321809] usbcore: registered new interface driver usbhid
[    1.321810] usbhid: USB HID core driver
[    1.323283] ashmem: initialized
[    1.324256] tegra21x_actmon 6000c800.actmon: in actmon_register()...
[    1.324434] tegra21x_actmon 6000c800.actmon: initialization Completed for the device mc_all
[    1.326679] nvpmodel: initialized successfully
[    1.327819] usbcore: registered new interface driver snd-usb-audio
[    1.327875] No Device Node present for smmu client: snd-soc-dummy !!
[    1.327880] platform snd-soc-dummy: No iommus property found in DT node, got swgids from fixup(101004000)
[    1.327897] iommu: Adding device snd-soc-dummy to group 37
[    1.338213] extcon-disp-state extcon:disp-state: cable 47 state 0
[    1.338215] Extcon AUX1(HDMI) disable
[    1.341895] input: tegra-hda HDMI/DP,pcm=3 as /devices/70030000.hda/sound/card0/input0
[    1.359038] mmc0: SDHCI controller on sdhci-tegra.0 [sdhci-tegra.0] using ADMA 64-bit with 64 bit addr
[    1.361375] OPE platform probe
[    1.361465] OPE platform probe successful
[    1.361724] OPE platform probe
[    1.361804] OPE platform probe successful
[    1.366312] tegradc tegradc.0: unblank
[    1.378613] tegradc tegradc.0: nominal-pclk:148500000 parent:148500000 div:1.0 pclk:148500000 147015000~161865000
[    1.378686] tegradc tegradc.0: hdmi: tmds rate:148500K prod-setting:prod_c_hdmi_75m_150m
[    1.379709] tegradc tegradc.0: hdmi: get YCC quant from EDID.
[    1.385443] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[    1.385572] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[    1.385701] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[    1.385828] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[    1.385953] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[    1.386085] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[    1.386212] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[    1.386336] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[    1.386471] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[    1.386599] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[    1.398008] u32 classifier
[    1.398010]     Actions configured
[    1.398083] Initializing XFRM netlink socket
[    1.398826] NET: Registered protocol family 10
[    1.399490] NET: Registered protocol family 17
[    1.399500] NET: Registered protocol family 15
[    1.399573] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    1.399621] Bluetooth: RFCOMM socket layer initialized
[    1.399629] Bluetooth: RFCOMM ver 1.11
[    1.399633] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    1.399637] Bluetooth: HIDP socket layer initialized
[    1.399653] 9pnet: Installing 9P2000 support
[    1.399691] Key type dns_resolver registered
[    1.400146] Registered cp15_barrier emulation handler
[    1.400151] Registered setend emulation handler
[    1.401183] registered taskstats version 1
[    1.401714] Adding domain ve2-pd to PM domain host1x-pd
[    1.401963] Adding domain ve-pd to PM domain host1x-pd
[    1.403947] isp 54600000.isp: initialized
[    1.404899] isp 54680000.isp: initialized
[    1.406910] usb 1-2: new high-speed USB device number 2 using tegra-xusb
[    1.414581] extcon-disp-state extcon:disp-state: cable 47 state 1
[    1.414584] Extcon AUX1(HDMI) enable
[    1.415146] last reset is due to software reset
[    1.415148] KERNEL: PMC reset status reg: 0x3
[    1.415206] BL: PMC reset status reg: 0x3
[    1.415208] BL: PMIC poweroff Event Recorder: 0x0
[    1.416616] clk_cbus_recalc_rate: no gbus parent
[    1.416620] clk_cbus_round_rate: no gbus parent
[    1.416622] clk_cbus_round_rate: no gbus parent
[    1.416629] clk_cbus_recalc_rate: no gbus parent
[    1.416726] clk_cbus_recalc_rate: no gbus parent
[    1.416729] clk_cbus_round_rate: no gbus parent
[    1.416730] clk_cbus_round_rate: no gbus parent
[    1.416733] clk_cbus_recalc_rate: no gbus parent
[    1.417431] tegra_dvfs: GPU-cap: registered
[    1.417484] tegra dvfs: vdd-cpu: nominal 1168mV, offset 708000uV, step 19200uV, scaling enabled
[    1.417486] tegra dvfs: vdd-core: nominal 1075mV, offset 600000uV, step 12500uV, scaling enabled
[    1.417488] tegra dvfs: vdd-gpu: nominal 1058mV, offset 708000uV, step 10000uV, scaling enabled
[    1.418985] tegra_dvfs: vdd-gpu-vts: registered
[    1.419692] tegra_core_action core_dvfs_cdev_floor: Tegra CORE DVFS 'floor cooling device' registered
[    1.420303] tegra_core_action core_dvfs_cdev_cap: Tegra CORE DVFS 'cap cooling device' registered
[    1.420865] input: gpio-keys as /devices/gpio-keys/input/input1
[    1.429954] tegradc tegradc.0: sync windows ret = 247
[    1.440392] usb 1-2: New USB device found, idVendor=0bda, idProduct=5411
[    1.440396] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.440399] usb 1-2: Product: 4-Port USB 2.1 Hub
[    1.440401] usb 1-2: Manufacturer: Generic
[    1.441226] hub 1-2:1.0: USB hub found
[    1.441798] hub 1-2:1.0: 4 ports detected
[    1.451896] tegra_rtc 7000e000.rtc: setting system clock to 2000-01-01 01:03:38 UTC (946688618)
[    1.452934] vi 54080000.vi: vi_probe: ++
[    1.454327] extcon-disp-state extcon:disp-state: cable 51 state 1
[    1.454330] Extcon HDMI: HPD enabled
[    1.454349] tegradc tegradc.0: hdmi: plugged
[    1.455532] vi 54080000.vi: initialized
[    1.457545] vi 54080000.vi: subdev nvcsi--2 bound
[    1.457648] vi 54080000.vi: subdev nvcsi--1 bound
[    1.458416] Disable partitions left on by BL
[    1.458420]   disb
[    1.458460] bwmgr: missing cdev-type property
[    1.458594] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    1.458601] DRAM derating cdev registered.
[    1.459588] ALSA device list:
[    1.459592]   #0: tegra-hda at 0x70038000 irq 83
[    1.459594]   #1: tegra-snd-t210ref-mobile-rt565x
[    1.463036] Freeing unused kernel memory: 8640K
[    1.489124] Root device found: mmcblk0p1
[    1.514900] tegra-pcie 1003000.pcie: link 0 down, retrying
[    1.551320] usb 2-1: new SuperSpeed USB device number 2 using tegra-xusb
[    1.579208] usb 2-1: New USB device found, idVendor=0bda, idProduct=0411
[    1.579213] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.579216] usb 2-1: Product: 4-Port USB 3.1 Hub
[    1.579219] usb 2-1: Manufacturer: Generic
[    1.582384] hub 2-1:1.0: USB hub found
[    1.583160] hub 2-1:1.0: 4 ports detected
[    1.613091] mmc0: hw tuning done ...
[    1.613127] mmc0: new ultra high speed SDR104 SDHC card at address 13ab
[    1.613551] mmcblk0: mmc0:13ab SE032 28.8 GiB 
[    1.617754]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14
[    1.694102] Found dev node: /dev/mmcblk0p1
[    1.723233] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[    1.725160] Rootfs mounted over mmcblk0p1
[    1.730908] usb 1-2.1: new full-speed USB device number 3 using tegra-xusb
[    1.745724] Switching from initrd to actual rootfs
[    1.754310] usb 1-2.1: New USB device found, idVendor=046d, idProduct=c534
[    1.754316] usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.754320] usb 1-2.1: Product: USB Receiver
[    1.754323] usb 1-2.1: Manufacturer: Logitech
[    1.757077] input: Logitech USB Receiver as /devices/70090000.xusb/usb1/1-2/1-2.1/1-2.1:1.0/0003:046D:C534.0001/input/input2
[    1.815320] hid-generic 0003:046D:C534.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-70090000.xusb-2.1/input0
[    1.818566] input: Logitech USB Receiver as /devices/70090000.xusb/usb1/1-2/1-2.1/1-2.1:1.1/0003:046D:C534.0002/input/input3
[    1.875431] hid-generic 0003:046D:C534.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-70090000.xusb-2.1/input1
[    1.875687] usb 2-1.3: new SuperSpeed USB device number 3 using tegra-xusb
[    1.891360] systemd[1]: System time before build time, advancing clock.
[    1.909744] usb 2-1.3: New USB device found, idVendor=0bda, idProduct=9210
[    1.909750] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.909753] usb 2-1.3: Product: Ugreen Storage Device
[    1.909757] usb 2-1.3: Manufacturer: Ugreen
[    1.909760] usb 2-1.3: SerialNumber: 01293800247E
[    1.919186] tegra-pcie 1003000.pcie: link 0 down, retrying
[    1.925212] ip_tables: (C) 2000-2006 Netfilter Core Team
[    1.937646] cgroup: cgroup2: unknown option "nsdelegate"
[    1.956157] 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)
[    1.956960] systemd[1]: Detected architecture arm64.
[    1.971650] scsi host0: uas
[    1.979915] systemd[1]: Set hostname to <pure-desktop>.
[    2.068879] 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.068889] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[    2.102958] tegra_cec 70015000.tegra_cec: physical address: 20:00.
[    2.167528] tegra_cec 70015000.tegra_cec: Sent <Text View On> res: -113.
[    2.167533] tegra_cec 70015000.tegra_cec: tegra_cec_init Done.
[    2.175028] random: systemd: uninitialized urandom read (16 bytes read)
[    2.175263] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    2.175364] random: systemd: uninitialized urandom read (16 bytes read)
[    2.177198] systemd[1]: Created slice System Slice.
[    2.177454] random: systemd: uninitialized urandom read (16 bytes read)
[    2.177584] systemd[1]: Listening on Journal Audit Socket.
[    2.177729] systemd[1]: Listening on fsck to fsckd communication Socket.
[    2.177883] systemd[1]: Listening on Syslog Socket.
[    2.219352] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
[    2.324919] tegra-pcie 1003000.pcie: link 0 down, retrying
[    2.326912] tegra-pcie 1003000.pcie: link 0 down, ignoring
[    2.377200] scsi 0:0:0:0: Direct-Access     EDILOCA  EN605 256GB      1.00 PQ: 0 ANSI: 6
[    2.430363] tegra-pcie 1003000.pcie: PCI host bridge to bus 0000:00
[    2.430370] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    2.430374] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
[    2.430378] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pref]
[    2.430382] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.430404] pci 0000:00:02.0: [10de:0faf] type 01 class 0x060400
[    2.430473] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.430665] iommu: Adding device 0000:00:02.0 to group 38
[    2.430744] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    2.430855] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[    2.430910] pci 0000:01:00.0: reg 0x10: [io  0x0000-0x00ff]
[    2.430944] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
[    2.430967] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
[    2.431128] pci 0000:01:00.0: supports D1 D2
[    2.431132] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.431304] iommu: Adding device 0000:01:00.0 to group 39
[    2.442808] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    2.443004] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    2.443035] pci 0000:00:02.0: BAR 14: assigned [mem 0x13000000-0x130fffff]
[    2.443040] pci 0000:00:02.0: BAR 13: assigned [io  0x1000-0x1fff]
[    2.443047] pci 0000:01:00.0: BAR 4: assigned [mem 0x13000000-0x13003fff 64bit]
[    2.443067] pci 0000:01:00.0: BAR 2: assigned [mem 0x13004000-0x13004fff 64bit]
[    2.443085] pci 0000:01:00.0: BAR 0: assigned [io  0x1000-0x10ff]
[    2.443094] pci 0000:00:02.0: PCI bridge to [bus 01]
[    2.443098] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
[    2.443105] pci 0000:00:02.0:   bridge window [mem 0x13000000-0x130fffff]
[    2.443419] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    2.443423] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    2.443429] pcie_pme 0000:00:02.0:pcie001: service driver pcie_pme loaded
[    2.443541] aer 0000:00:02.0:pcie002: service driver aer loaded
[    2.443749] r8168 0000:01:00.0: enabling device (0000 -> 0003)
[    2.443768] r8168 Gigabit Ethernet driver 8.045.08-NAPI loaded
[    2.449545] sd 0:0:0:0: [sda] Write Protect is off
[    2.449552] sd 0:0:0:0: [sda] Mode Sense: 37 00 00 08
[    2.452279] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.454415] sd 0:0:0:0: [sda] Optimal transfer size 33553920 bytes
[    2.459358] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Invalid ethernet address 00:00:00:00:00:00, trying device tree node
[    2.459432] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Found valid ethernet address 48:b0:2d:c1:5e:aa from device tree
[    2.459988] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[    2.460005] 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/>. 
[    2.473464] systemd-journald[2013]: Received request to flush runtime journal from PID 1
[    2.476933]  sda: sda1
[    2.490700] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.518077] nvgpu: 57000000.gpu           gm20b_init_clk_setup_sw:1268 [INFO]  GPCPLL initial settings: NA mode, M=1, N=34, P=3 (id = 1)
[    3.662187] using random self ethernet address
[    3.667037] using random host ethernet address
[    3.977323] random: crng init done
[    3.980756] random: 7 urandom warning(s) missed due to ratelimiting
[    4.420801] Mass Storage Function, version: 2009/09/11
[    4.420807] LUN: removable file: (no medium)
[    4.427451] using random self ethernet address
[    4.433983] using random host ethernet address
[    4.462688] pscam: PSCAM C2 I2C driver revision 1
[    4.462697] pscam_c2 7-0051: pscam_probe: probing v4l2 sensor at addr 0x51
[    4.462702] pscam_c2 7-0051: pscam_probe: probing id.name = pscam_c2, id.driver_data = 194
[    4.462751] pscam: Called pscam_parse_dt
[    4.462826] pscam_c2 7-0051: pscam_parse_dt: mclk name not present, assume sensor driven externally
[    4.462831] pscam_c2 7-0051: pscam_parse_dt: avdd, iovdd and/or dvdd reglrs. not present, assume sensor powered independently
[    4.462833] pscam: End of pscam_parse_dt successfully
[    4.462835] pscam: Called pscam_power_get
[    4.462838] pscam: End of pscam_power_get on err = 0
[    4.471029] pscam_c2 7-0051: tegracam sensor driver:pscam_c2_v2.0.6
[    4.471033] pscam: Called pscam_board_setup
[    4.471036] pscam: Called pscam_power_on
[    4.471040] pscam_c2 7-0051: pscam_power_on: power on
[    4.471042] pscam: Force GPIO-reset
[    4.471046] pscam: Skip power sequence
[    4.471048] pscam: Force GPIO-reset
[    4.494176] pscam: End of pscam_power_on successfully
[    4.494181] pscam: Read I2C byte addr = 0x3001
[    4.496038] pscam: Read data = 0xC2
[    4.496047] pscam_c2 7-0051: Connected PSCAM model number = 0x00C2
[    4.496050] pscam: Called pscam_power_off
[    4.496054] pscam_c2 7-0051: pscam_power_off: power off
[    4.496056] pscam: Force GPIO-reset
[    4.497005] pscam: End of pscam_power_off successfully
[    4.497009] pscam: End of pscam_board_setup width err = 0
[    4.497012] pscam: Start to "tegracam_v4l2subdev_register"
[    4.497055] vi 54080000.vi: subdev pscam_c2 7-0051 bound
[    4.498064] pscam: End of "tegracam_v4l2subdev_register" with err = 0
[    4.498196] pscam_c2 7-0051: pscam_probe: detected pscam sensor module
[    4.498198] pscam: End of pscam_probe
[    4.498436] pscam: PSCAM C2 I2C driver revision 1
[    4.498443] pscam_c2 8-0051: pscam_probe: probing v4l2 sensor at addr 0x51
[    4.498447] pscam_c2 8-0051: pscam_probe: probing id.name = pscam_c2, id.driver_data = 194
[    4.498498] pscam: Called pscam_parse_dt
[    4.498548] pscam_c2 8-0051: pscam_parse_dt: mclk name not present, assume sensor driven externally
[    4.498553] pscam_c2 8-0051: pscam_parse_dt: avdd, iovdd and/or dvdd reglrs. not present, assume sensor powered independently
[    4.498555] pscam: End of pscam_parse_dt successfully
[    4.498558] pscam: Called pscam_power_get
[    4.498561] pscam: End of pscam_power_get on err = 0
[    4.498666] pscam_c2 8-0051: tegracam sensor driver:pscam_c2_v2.0.6
[    4.498668] pscam: Called pscam_board_setup
[    4.498671] pscam: Called pscam_power_on
[    4.498674] pscam_c2 8-0051: pscam_power_on: power on
[    4.498676] pscam: Force GPIO-reset
[    4.498680] pscam: Skip power sequence
[    4.498681] pscam: Force GPIO-reset
[    4.521817] pscam: End of pscam_power_on successfully
[    4.521823] pscam: Read I2C byte addr = 0x3001
[    4.522318] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x51
[    4.531146] pscam_c2 8-0051: pscam_reg_read8: i2c read8 failed @ 0x3001
[    4.538452] pscam_c2 8-0051: pscam_board_setup: error during i2c read probe (-121)
[    4.547290] pscam: Called pscam_power_off
[    4.547297] pscam_c2 8-0051: pscam_power_off: power off
[    4.547299] pscam: Force GPIO-reset
[    4.547912] pscam: End of pscam_power_off successfully
[    4.547916] pscam: End of pscam_board_setup width err = -121
[    4.547920] pscam_c2 8-0051: pscam_probe: board setup failed
[    4.554119] pscam_c2: probe of 8-0051 failed with error -121
[    4.578315] rndis0: HOST MAC 22:c4:93:35:ea:fc
[    4.578581] rndis0: MAC 22:c4:93:35:ea:fd
[    4.584058] usb0: HOST MAC 22:c4:93:35:ea:fe
[    4.584090] usb0: MAC 22:c4:93:35:ea:ff
[    4.584110] tegra-xudc-new 700d0000.xudc: exiting ELPG
[    4.587505] tegra-xudc-new 700d0000.xudc: exiting ELPG done
[    4.587523] tegra-xudc-new 700d0000.xudc: ep 0 (type: 0, dir: out) enabled
[    4.587604] tegra-xudc-new 700d0000.xudc: entering ELPG
[    4.587834] tegra-xudc-new 700d0000.xudc: entering ELPG done
[    4.587858] tegra-xudc-new 700d0000.xudc: exiting ELPG
[    4.588386] tegra-xudc-new 700d0000.xudc: exiting ELPG done
[    4.588398] tegra-xudc-new 700d0000.xudc: entering ELPG
[    4.588616] tegra-xudc-new 700d0000.xudc: entering ELPG done
[    4.594750] l4tbr0: port 1(rndis0) entered blocking state
[    4.594754] l4tbr0: port 1(rndis0) entered disabled state
[    4.596001] device rndis0 entered promiscuous mode
[    4.606835] IPv6: ADDRCONF(NETDEV_UP): rndis0: link is not ready
[    4.612422] l4tbr0: port 2(usb0) entered blocking state
[    4.612427] l4tbr0: port 2(usb0) entered disabled state
[    4.613000] device usb0 entered promiscuous mode
[    4.620664] IPv6: ADDRCONF(NETDEV_UP): usb0: link is not ready
[    4.696607] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    4.696628] cpu-throttle-alert cooling device registered.
[    4.720109] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    4.720128] gpu-throttle-alert cooling device registered.
[    4.720312] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    4.720325] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    4.720338] hot-surface-alert cooling device registered.
[    5.326042] eth0: 0xffffff8013014000, 48:b0:2d:c1:5e:aa, IRQ 407
[    5.382395] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    5.511705] zram: Added device: zram0
[    5.514151] zram: Added device: zram1
[    5.515873] zram: Added device: zram2
[    5.519486] zram: Added device: zram3
[    5.537253] zram0: detected capacity change from 0 to 518508544
[    5.564222] Adding 506352k swap on /dev/zram0.  Priority:5 extents:1 across:506352k SS
[    5.575914] zram1: detected capacity change from 0 to 518508544
[    5.606526] Adding 506352k swap on /dev/zram1.  Priority:5 extents:1 across:506352k SS
[    5.615850] zram2: detected capacity change from 0 to 518508544
[    5.638177] Adding 506352k swap on /dev/zram2.  Priority:5 extents:1 across:506352k SS
[    5.646508] zram3: detected capacity change from 0 to 518508544
[    5.662507] Adding 506352k swap on /dev/zram3.  Priority:5 extents:1 across:506352k SS
[    5.986936] sd 0:0:0:0: [sda] tag#0 uas_eh_abort_handler 0 uas-tag 1 inflight: IN 
[    5.986943] sd 0:0:0:0: [sda] tag#0 CDB: opcode=0x28 28 00 00 00 00 80 00 00 90 00
[    5.987167] scsi host0: uas_eh_bus_reset_handler start
[    6.067931] usb 2-1.3: reset SuperSpeed USB device number 3 using tegra-xusb
[    6.124010] pscam_c2 7-0051: pscam_open:
[    6.149377] scsi host0: uas_eh_bus_reset_handler success
[   13.265982] Bridge firewalling registered
[   13.364591] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   13.762680] Netfilter messages via NETLINK v0.30.
[   13.784563] ctnetlink v0.93: registering with nfnetlink.
[   14.072856] IPv6: ADDRCONF(NETDEV_UP): docker0: link is not ready
[   14.106111] tegradc tegradc.0: unblank
[   14.106373] tegradc tegradc.1: blank - powerdown
[   15.369846] fuse init (API version 7.26)
[   17.637928] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   17.637939] Bluetooth: BNEP socket layer initialized
[   18.739242] tegradc tegradc.0: unblank
[   18.739254] tegradc tegradc.1: blank - powerdown
[   20.963366] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   31.866460] vdd-fan: disabling
[   31.866501] vdd-usb-vbus: disabling
[   31.866532] vdd-usb-vbus2: disabling
[   31.866629] vddio-sdmmc3-ap: disabling
[   31.867345] avdd-io-edp-1v05: disabling
[   31.867380] vdd-usb-hub-en: disabling
[   52.461814] pscam_c2 7-0051: pscam_open:
[   52.750655] pscam_c2 7-0051: pscam_open:
[   52.798984] pscam: Called pscam_power_on
[   52.798992] pscam_c2 7-0051: pscam_power_on: power on
[   52.798994] pscam: Force GPIO-reset
[   52.798998] pscam: Skip power sequence
[   52.799000] pscam: Force GPIO-reset
[   52.822194] pscam: End of pscam_power_on successfully
[   52.822208] pscam: "pscam_set_mode" Required mode 0
[   53.335111] pscam: Start streaming!
[   53.335130] vi 54080000.vi: Calibrate csi port 0
[   53.335294] pscam: Stop streaming!
[   53.335302] pscam: Called pscam_power_off
[   53.335309] pscam_c2 7-0051: pscam_power_off: power off
[   53.335313] pscam: Force GPIO-reset
[   53.335343] pscam: End of pscam_power_off successfully
[   53.335444] pscam: Called pscam_power_on
[   53.335451] pscam_c2 7-0051: pscam_power_on: power on
[   53.335455] pscam: Force GPIO-reset
[   53.335460] pscam: Skip power sequence
[   53.335463] pscam: Force GPIO-reset
[   53.358760] pscam: End of pscam_power_on successfully
[   53.364918] vi 54080000.vi: settle time reading from props
[   53.364951] vi 54080000.vi: discontinuous_clk = 0 reading from props
[   53.364978] vi 54080000.vi: cil_settingtime was autocalculated by cil_clk_mhz = 102, csi_clk_mhz = 102
[   53.365004] vi 54080000.vi: csi clock settle time: 13, cil settle time: 10
[   53.365062] pscam: "pscam_set_mode" Required mode 0
[   53.879471] pscam: Start streaming!
[   62.053676] pscam: Stop streaming!
[   62.061699] pscam: Called pscam_power_off
[   62.061710] pscam_c2 7-0051: pscam_power_off: power off
[   62.061715] pscam: Force GPIO-reset
[   62.061754] pscam: End of pscam_power_off successfully
[  595.321987] pscam_c2 7-0051: pscam_open:
[  595.372390] pscam: Called pscam_power_on
[  595.372398] pscam_c2 7-0051: pscam_power_on: power on
[  595.372400] pscam: Force GPIO-reset
[  595.372404] pscam: Skip power sequence
[  595.372406] pscam: Force GPIO-reset
[  595.395579] pscam: End of pscam_power_on successfully
[  595.395592] pscam: "pscam_set_mode" Required mode 0
[  595.927500] pscam: Start streaming!
[  595.927579] vi 54080000.vi: Calibrate csi port 0
[  595.928163] pscam: Stop streaming!
[  595.928217] pscam: Called pscam_power_off
[  595.928265] pscam_c2 7-0051: pscam_power_off: power off
[  595.928292] pscam: Force GPIO-reset
[  595.928452] pscam: End of pscam_power_off successfully
[  595.929079] pscam: Called pscam_power_on
[  595.929133] pscam_c2 7-0051: pscam_power_on: power on
[  595.929159] pscam: Force GPIO-reset
[  595.929189] pscam: Skip power sequence
[  595.929211] pscam: Force GPIO-reset
[  595.952747] pscam: End of pscam_power_on successfully
[  595.955534] vi 54080000.vi: settle time reading from props
[  595.955540] vi 54080000.vi: discontinuous_clk = 0 reading from props
[  595.955544] vi 54080000.vi: cil_settingtime was autocalculated by cil_clk_mhz = 102, csi_clk_mhz = 102
[  595.955548] vi 54080000.vi: csi clock settle time: 13, cil settle time: 10
[  595.955562] pscam: "pscam_set_mode" Required mode 0
[  596.471314] pscam: Start streaming!
[  597.986982] sd 0:0:0:0: [sda] tag#29 uas_eh_abort_handler 0 uas-tag 30 inflight: CMD OUT 
[  597.986990] sd 0:0:0:0: [sda] tag#29 CDB: opcode=0x2a 2a 00 00 01 c4 28 00 04 00 00
[  597.987237] sd 0:0:0:0: [sda] tag#28 uas_eh_abort_handler 0 uas-tag 29 inflight: CMD OUT 
[  597.987242] sd 0:0:0:0: [sda] tag#28 CDB: opcode=0x2a 2a 00 00 01 c0 28 00 04 00 00
[  597.987488] sd 0:0:0:0: [sda] tag#27 uas_eh_abort_handler 0 uas-tag 28 inflight: CMD OUT 
[  597.987492] sd 0:0:0:0: [sda] tag#27 CDB: opcode=0x2a 2a 00 00 01 bc 28 00 04 00 00
[  597.987741] sd 0:0:0:0: [sda] tag#26 uas_eh_abort_handler 0 uas-tag 27 inflight: CMD OUT 
[  597.987745] sd 0:0:0:0: [sda] tag#26 CDB: opcode=0x2a 2a 00 00 01 b8 28 00 04 00 00
[  597.987984] sd 0:0:0:0: [sda] tag#25 uas_eh_abort_handler 0 uas-tag 26 inflight: CMD OUT 
[  597.987987] sd 0:0:0:0: [sda] tag#25 CDB: opcode=0x2a 2a 00 00 01 b4 28 00 04 00 00
[  597.988231] sd 0:0:0:0: [sda] tag#24 uas_eh_abort_handler 0 uas-tag 25 inflight: CMD OUT 
[  597.988234] sd 0:0:0:0: [sda] tag#24 CDB: opcode=0x2a 2a 00 00 01 b0 28 00 04 00 00
[  597.988481] sd 0:0:0:0: [sda] tag#23 uas_eh_abort_handler 0 uas-tag 24 inflight: CMD OUT 
[  597.988485] sd 0:0:0:0: [sda] tag#23 CDB: opcode=0x2a 2a 00 00 01 ac 28 00 04 00 00
[  597.988723] sd 0:0:0:0: [sda] tag#22 uas_eh_abort_handler 0 uas-tag 23 inflight: CMD OUT 
[  597.988726] sd 0:0:0:0: [sda] tag#22 CDB: opcode=0x2a 2a 00 00 01 a8 28 00 04 00 00
[  597.988962] sd 0:0:0:0: [sda] tag#21 uas_eh_abort_handler 0 uas-tag 22 inflight: CMD OUT 
[  597.988965] sd 0:0:0:0: [sda] tag#21 CDB: opcode=0x2a 2a 00 00 01 a4 28 00 04 00 00
[  597.989198] sd 0:0:0:0: [sda] tag#20 uas_eh_abort_handler 0 uas-tag 21 inflight: CMD OUT 
[  597.989202] sd 0:0:0:0: [sda] tag#20 CDB: opcode=0x2a 2a 00 00 01 a0 28 00 04 00 00
[  597.989432] sd 0:0:0:0: [sda] tag#19 uas_eh_abort_handler 0 uas-tag 20 inflight: CMD OUT 
[  597.989436] sd 0:0:0:0: [sda] tag#19 CDB: opcode=0x2a 2a 00 00 01 9c 28 00 04 00 00
[  597.989665] sd 0:0:0:0: [sda] tag#18 uas_eh_abort_handler 0 uas-tag 19 inflight: CMD OUT 
[  597.989668] sd 0:0:0:0: [sda] tag#18 CDB: opcode=0x2a 2a 00 00 01 98 28 00 04 00 00
[  597.989895] sd 0:0:0:0: [sda] tag#17 uas_eh_abort_handler 0 uas-tag 18 inflight: CMD OUT 
[  597.989899] sd 0:0:0:0: [sda] tag#17 CDB: opcode=0x2a 2a 00 00 01 94 28 00 04 00 00
[  597.990121] sd 0:0:0:0: [sda] tag#16 uas_eh_abort_handler 0 uas-tag 17 inflight: CMD OUT 
[  597.990125] sd 0:0:0:0: [sda] tag#16 CDB: opcode=0x2a 2a 00 00 01 90 28 00 04 00 00
[  597.990345] sd 0:0:0:0: [sda] tag#15 uas_eh_abort_handler 0 uas-tag 16 inflight: CMD OUT 
[  597.990348] sd 0:0:0:0: [sda] tag#15 CDB: opcode=0x2a 2a 00 00 01 8c 28 00 04 00 00
[  597.990560] sd 0:0:0:0: [sda] tag#14 uas_eh_abort_handler 0 uas-tag 15 inflight: CMD OUT 
[  597.990564] sd 0:0:0:0: [sda] tag#14 CDB: opcode=0x2a 2a 00 00 01 88 28 00 04 00 00
[  597.990779] sd 0:0:0:0: [sda] tag#13 uas_eh_abort_handler 0 uas-tag 14 inflight: CMD OUT 
[  597.990782] sd 0:0:0:0: [sda] tag#13 CDB: opcode=0x2a 2a 00 00 01 84 28 00 04 00 00
[  597.991490] sd 0:0:0:0: [sda] tag#12 uas_eh_abort_handler 0 uas-tag 13 inflight: CMD OUT 
[  597.991497] sd 0:0:0:0: [sda] tag#12 CDB: opcode=0x2a 2a 00 00 01 80 28 00 04 00 00
[  597.991725] sd 0:0:0:0: [sda] tag#11 uas_eh_abort_handler 0 uas-tag 12 inflight: CMD OUT 
[  597.991730] sd 0:0:0:0: [sda] tag#11 CDB: opcode=0x2a 2a 00 00 01 7c 28 00 04 00 00
[  597.991937] sd 0:0:0:0: [sda] tag#10 uas_eh_abort_handler 0 uas-tag 11 inflight: CMD OUT 
[  597.991942] sd 0:0:0:0: [sda] tag#10 CDB: opcode=0x2a 2a 00 00 01 78 28 00 04 00 00
[  597.992148] sd 0:0:0:0: [sda] tag#9 uas_eh_abort_handler 0 uas-tag 10 inflight: CMD OUT 
[  597.992153] sd 0:0:0:0: [sda] tag#9 CDB: opcode=0x2a 2a 00 00 01 74 28 00 04 00 00
[  597.992355] sd 0:0:0:0: [sda] tag#8 uas_eh_abort_handler 0 uas-tag 9 inflight: CMD OUT 
[  597.992360] sd 0:0:0:0: [sda] tag#8 CDB: opcode=0x2a 2a 00 00 01 70 28 00 04 00 00
[  597.992566] sd 0:0:0:0: [sda] tag#7 uas_eh_abort_handler 0 uas-tag 8 inflight: CMD OUT 
[  597.992571] sd 0:0:0:0: [sda] tag#7 CDB: opcode=0x2a 2a 00 00 01 6c 28 00 04 00 00
[  597.992774] sd 0:0:0:0: [sda] tag#6 uas_eh_abort_handler 0 uas-tag 7 inflight: CMD OUT 
[  597.992779] sd 0:0:0:0: [sda] tag#6 CDB: opcode=0x2a 2a 00 00 01 68 28 00 04 00 00
[  597.992983] sd 0:0:0:0: [sda] tag#5 uas_eh_abort_handler 0 uas-tag 6 inflight: CMD OUT 
[  597.992988] sd 0:0:0:0: [sda] tag#5 CDB: opcode=0x2a 2a 00 00 01 64 28 00 04 00 00
[  597.993188] sd 0:0:0:0: [sda] tag#4 uas_eh_abort_handler 0 uas-tag 5 inflight: CMD OUT 
[  597.993193] sd 0:0:0:0: [sda] tag#4 CDB: opcode=0x2a 2a 00 00 01 60 28 00 04 00 00
[  597.993396] sd 0:0:0:0: [sda] tag#3 uas_eh_abort_handler 0 uas-tag 4 inflight: CMD OUT 
[  597.993401] sd 0:0:0:0: [sda] tag#3 CDB: opcode=0x2a 2a 00 00 01 5c 28 00 04 00 00
[  597.993606] sd 0:0:0:0: [sda] tag#2 uas_eh_abort_handler 0 uas-tag 3 inflight: CMD OUT 
[  597.993610] sd 0:0:0:0: [sda] tag#2 CDB: opcode=0x2a 2a 00 00 01 58 28 00 04 00 00
[  597.993813] sd 0:0:0:0: [sda] tag#1 uas_eh_abort_handler 0 uas-tag 2 inflight: CMD OUT 
[  597.993818] sd 0:0:0:0: [sda] tag#1 CDB: opcode=0x2a 2a 00 00 01 54 28 00 04 00 00
[  597.994017] sd 0:0:0:0: [sda] tag#0 uas_eh_abort_handler 0 uas-tag 1 inflight: CMD OUT 
[  597.994022] sd 0:0:0:0: [sda] tag#0 CDB: opcode=0x2a 2a 00 00 01 50 28 00 04 00 00
[  597.994302] scsi host0: uas_eh_bus_reset_handler start
[  598.080056] usb 2-1.3: reset SuperSpeed USB device number 3 using tegra-xusb
[  598.167769] scsi host0: uas_eh_bus_reset_handler success
[  608.375552] sd 0:0:0:0: [sda] tag#0 uas_eh_abort_handler 0 uas-tag 1 inflight: CMD 
[  608.375621] sd 0:0:0:0: [sda] tag#0 CDB: opcode=0x0 00 00 00 00 00 00
[  608.375671] scsi host0: uas_eh_bus_reset_handler start
[  608.468990] usb 2-1.3: reset SuperSpeed USB device number 3 using tegra-xusb
[  608.563155] scsi host0: uas_eh_bus_reset_handler success
[  608.563181] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563193] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563202] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563211] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563219] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563228] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563237] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563246] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563255] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563264] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563273] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563282] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563291] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563301] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563310] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563320] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563330] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563340] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563350] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563361] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563371] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563381] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563392] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563403] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563414] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563425] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563436] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563447] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563459] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563470] sd 0:0:0:0: Device offlined - not ready after error recovery
[  608.563515] sd 0:0:0:0: [sda] tag#0 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x06
[  608.563533] sd 0:0:0:0: [sda] tag#0 CDB: opcode=0x2a 2a 00 00 01 50 28 00 04 00 00
[  608.563547] blk_update_request: I/O error, dev sda, sector 86056
[  608.569795] sd 0:0:0:0: rejecting I/O to offline device
[  608.575035] sd 0:0:0:0: [sda] killing request
[  608.575055] sd 0:0:0:0: rejecting I/O to offline device
[  608.580288] sd 0:0:0:0: rejecting I/O to offline device
[  608.580340] JBD2: Error -5 detected when updating journal superblock for sda1-8.
[  608.580341] Aborting journal on device sda1-8.
[  608.597308] sd 0:0:0:0: rejecting I/O to offline device
[  608.602524] sd 0:0:0:0: rejecting I/O to offline device
[  608.607742] EXT4-fs warning (device sda1): ext4_end_bio:313: I/O error -5 writing to inode 13 (offset 16777216 size 3276800 starting block 15109)
[  608.620757] Buffer I/O error on device sda1, logical block 14597
[  608.626764] Buffer I/O error on device sda1, logical block 14598
[  608.632760] Buffer I/O error on device sda1, logical block 14599
[  608.638757] Buffer I/O error on device sda1, logical block 14600
[  608.644752] Buffer I/O error on device sda1, logical block 14601
[  608.650748] Buffer I/O error on device sda1, logical block 14602
[  608.656745] Buffer I/O error on device sda1, logical block 14603
[  608.662741] Buffer I/O error on device sda1, logical block 14604
[  608.668737] Buffer I/O error on device sda1, logical block 14605
[  608.674732] Buffer I/O error on device sda1, logical block 14606
[  608.681244] sd 0:0:0:0: rejecting I/O to offline device
[  608.686515] sd 0:0:0:0: rejecting I/O to offline device
[  608.691784] EXT4-fs warning (device sda1): ext4_end_bio:313: I/O error -5 writing to inode 13 (offset 16777216 size 3276800 starting block 15365)
[  608.706635] sd 0:0:0:0: rejecting I/O to offline device
[  608.711964] sd 0:0:0:0: rejecting I/O to offline device
[  608.717295] EXT4-fs warning (device sda1): ext4_end_bio:313: I/O error -5 writing to inode 13 (offset 16777216 size 3276800 starting block 15621)
[  608.733956] sd 0:0:0:0: rejecting I/O to offline device
[  608.739273] EXT4-fs warning (device sda1): ext4_end_bio:313: I/O error -5 writing to inode 13 (offset 16777216 size 3276800 starting block 15653)
[  608.753711] sd 0:0:0:0: [sda] UNKNOWN(0x2003) Result: hostbyte=0x01 driverbyte=0x00
[  608.753728] sd 0:0:0:0: [sda] CDB: opcode=0x2a 2a 00 00 01 c8 28 00 04 00 00
[  608.753738] blk_update_request: I/O error, dev sda, sector 116776
[  608.753927] sd 0:0:0:0: rejecting I/O to offline device
[  608.753939] JBD2: Error -5 detected when updating journal superblock for sda1-8.
[  608.754002] sd 0:0:0:0: [sda] tag#1 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x06
[  608.754007] sd 0:0:0:0: [sda] tag#1 CDB: opcode=0x2a 2a 00 00 01 54 28 00 04 00 00
[  608.754009] blk_update_request: I/O error, dev sda, sector 87080
[  608.754016] EXT4-fs warning (device sda1): ext4_end_bio:313: I/O error -5 writing to inode 13 (offset 0 size 8388608 starting block 11013)
[  608.754488] sd 0:0:0:0: [sda] tag#2 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x06
[  608.754491] sd 0:0:0:0: [sda] tag#2 CDB: opcode=0x2a 2a 00 00 01 58 28 00 04 00 00
[  608.754493] blk_update_request: I/O error, dev sda, sector 88104
[  608.754505] sd 0:0:0:0: [sda] tag#3 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x06
[  608.754508] sd 0:0:0:0: [sda] tag#3 CDB: opcode=0x2a 2a 00 00 01 5c 28 00 04 00 00
[  608.754510] blk_update_request: I/O error, dev sda, sector 89128
[  608.754516] EXT4-fs warning (device sda1): ext4_end_bio:313: I/O error -5 writing to inode 13 (offset 0 size 8388608 starting block 11269)
[  608.754917] sd 0:0:0:0: [sda] tag#4 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x06
[  608.754921] sd 0:0:0:0: [sda] tag#4 CDB: opcode=0x2a 2a 00 00 01 60 28 00 04 00 00
[  608.754923] blk_update_request: I/O error, dev sda, sector 90152
[  608.754938] sd 0:0:0:0: [sda] tag#5 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x06
[  608.754942] sd 0:0:0:0: [sda] tag#5 CDB: opcode=0x2a 2a 00 00 01 64 28 00 04 00 00
[  608.754943] blk_update_request: I/O error, dev sda, sector 91176
[  608.754948] EXT4-fs warning (device sda1): ext4_end_bio:313: I/O error -5 writing to inode 13 (offset 0 size 8388608 starting block 11525)
[  608.755439] sd 0:0:0:0: [sda] tag#6 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x06
[  608.755444] sd 0:0:0:0: [sda] tag#6 CDB: opcode=0x2a 2a 00 00 01 68 28 00 04 00 00
[  608.755447] blk_update_request: I/O error, dev sda, sector 92200
[  608.755464] sd 0:0:0:0: [sda] tag#7 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x06
[  608.755468] sd 0:0:0:0: [sda] tag#7 CDB: opcode=0x2a 2a 00 00 01 6c 28 00 04 00 00
[  608.755471] blk_update_request: I/O error, dev sda, sector 93224
[  608.755478] EXT4-fs warning (device sda1): ext4_end_bio:313: I/O error -5 writing to inode 13 (offset 0 size 8388608 starting block 11781)
[  608.756129] sd 0:0:0:0: [sda] tag#8 UNKNOWN(0x2003) Result: hostbyte=0x00 driverbyte=0x06
[  608.756134] sd 0:0:0:0: [sda] tag#8 CDB: opcode=0x2a 2a 00 00 01 70 28 00 04 00 00
[  608.756138] blk_update_request: I/O error, dev sda, sector 94248
[  608.756162] EXT4-fs warning (device sda1): ext4_end_bio:313: I/O error -5 writing to inode 13 (offset 0 size 8388608 starting block 12037)
[  608.756862] EXT4-fs warning (device sda1): ext4_end_bio:313: I/O error -5 writing to inode 13 (offset 0 size 8388608 starting block 12293)
[  608.895472] JBD2: Detected IO errors while flushing file data on sda1-8
[  608.895616] sd 0:0:0:0: rejecting I/O to offline device
[  608.895626] EXT4-fs error (device sda1): ext4_journal_check_start:56: Detected aborted journal
[  608.895629] EXT4-fs (sda1): Remounting filesystem read-only
[  608.895634] EXT4-fs (sda1): previous I/O error to superblock detected
[  608.895640] sd 0:0:0:0: rejecting I/O to offline device

Would you hit the same issue if you use an Ubuntu host instead of Jetson Nano?

Ubunt host does not occur the same issue.

Since we don’t have your camera, could you share the similar reproduce steps w/o using camera?

An error also occurred in the Benchmark of Disks on Jetson Nano.

Benchmark Settings
image

The Disks Benchmark of Ubunt host does not occur the same issue.

Please share the detailed steps how you use this Benchmark tool.

Just configuring as yours and Start Benchmarking will cause NVMe SSD become read-only?

Detailed steps are below.

  1. Power on the Jetson Nano
  2. Connect the SSD M.2 via USB
  3. Input “Disks” to Search your computer
  4. Launch the Disks application
  5. Select the SSD M.2
  6. Select “Benchmark Partitions…” from Additional partition options
  7. Select Start Benchmark…
  8. Enter 100 in Number of Samples of Transfer Rate
  9. Enter 10 in Sample Size(MiB) of Transfer Rate
  10. Check Perform write-benchmark
  11. Enter 1000 in Number of Samples of Access Time
  12. Execute the Start Benchmarking…

An error will occur after a few ten of seconds.

After the error occurs, the SSD is not recognized.

Hi t.kato1,

Thanks for your detailed steps.
I’ve just verified on my local Jetson Nano devkit and I can’t reproduce the similar issue about “An error will occur after a few ten of seconds.” and also the read-only issue.

Is the issue specific to your current SSD?
Have you tried other SSD with the same issue?

I also found that it would umount the SSD in “Step12: Execute the Start Benchmarking…”.

Hi KevinFFF,

Thank you for your support.

I have tried two different SSD M.2
Both are experiencing the same issue.

[Types of SSD M.2]
SSD M.2 : SAMSUNG PM981 512GB PCIe Gen3.0x4 NVMe M.2 2280
and
Case : LGB-PNV02UC M.2 PCIe NVMeSSD(2230/2242/2260/2280) USB3.2(Gen2)/USB3.1(Gen2)

SSD M.2 : EDILOCA EN605 256GB PCIe Gen3.0x4 NVMe1.3 M.2 2280
and
Case : UGREEN 90264 M.2 PCIe NVMeSSD(2280/2260/2242/2230) USB3.2 Gen2(10Gbps)/USB3.1/USB3.0/USB2.0

I also tried three Jetson Nano B01, but the same issue.

But there isn’t same issue with SSD.
[Types of SSD]
SSD : Buffalo SSD-PUT1.0U3
SSD : SSD-PST250U3

This issue only occurs with SSD M.2.

Could you share how you connect M.2 SSD on Jetson Nano devkit?

Since there’s no M.2 slot on Jetson Nano devkit, I use adapter for M.2 SSD like the following.
Jetson Nano devkit → (USB port) → adapter → (M.2 port) → NVMe SSD

I have it connected the same way too.

Jetson Nano devkit → (USB port) → adapter → (M.2 port) → NVMe SSD

I used two different adapters.

Case : LGB-PNV02UC M.2 PCIe NVMeSSD(2230/2242/2260/2280) USB3.2(Gen2)/USB3.1(Gen2)
Case : UGREEN 90264 M.2 PCIe NVMeSSD(2280/2260/2242/2230) USB3.2 Gen2(10Gbps)/USB3.1/USB3.0/USB2.0

Both are experiencing the same issue.

What I verified is the following one:
M2NVU31 M2(NVMe) PCI-E SSD to USB3.1 Gen2

Maybe the issue is not relating to the adapter but the NVMe SSD.
Have you tried other NVMe SSD?

Maybe the issue is not relating to the adapter but the NVMe SSD.
Have you tried other NVMe SSD?

I don’t currently have any other NVMe SSDs so I can’t confirm it.
I will first buy a USB3.1 Gen2 case and test it.

Thank you for the testing and let us know the result.