Raspberry Pi V2.1 camera not recognized

Hi
My jetson nano 2gb can’t recognize camera module (Raspberry Pi camera v2.1):

ls /dev/video0:
ls: cannot access ‘/dev/video0’: No such file or directory

ls /lib/modules/4.9.201-tegra/kernel/drivers/media/i2c/:
imx185.ko imx185_v1.ko imx274.ko ov5693.ko tc358840.ko

Does it mean that my image (jp451) hasn’t drivers for imx219?

IMX219 driver should be builtin kernel:

zcat /proc/config.gz | grep IMX219
CONFIG_VIDEO_IMX219=y

so it is normal it is not seen as a module.

You may check if the camera was correctly probed by kernel driver at boot time.
For example, here I have only one camera connected on dev kit, so one succeed (9-0010) while the other one failed (10-0010):

dmesg | grep imx219
[    5.324229] imx219 9-0010: tegracam sensor driver:imx219_v2.0.6
[    5.352731] imx219 10-0010: tegracam sensor driver:imx219_v2.0.6
[    5.383600] imx219 10-0010: imx219_board_setup: error during i2c read probe (-121)
[    5.385595] imx219 10-0010: board setup failed
[    5.387555] imx219: probe of 10-0010 failed with error -121
[    6.633834] tegra194-vi5 15c10000.vi: subdev imx219 9-0010 bound

Be sure to connect the camera cable in the correct orientation, it may depend on model. Power off before disconnecting/reconnecting, this is not reliable for hot plug.

Thank you for reply
So, if CONFIG_VIDEO_IMX219 = y and dmesg | grep imx219 output is empty, it means that camera is not working and should I check with another camera?
(I tried reconnect camera many times and checked cable by multimeter)

If you have the driver built in kernel, but don’t see probing messages in kernel boot, I think that there is something wrong.
Do you have a customized device-tree ? Check what gives:

find /proc/device-tree/cam_i2cmux/ -name '*imx219*'

on NX I get:

/proc/device-tree/cam_i2cmux/i2c@0/rbpcv2_imx219_a@10
/proc/device-tree/cam_i2cmux/i2c@1/rbpcv2_imx219_c@10

for Nano the addresses might differ, but probably you may see entries for both connectors of devkit.
If using a different carrier board, you may check with vendor.

Also check for i2c errors during boot (the following seems ok on NX with only one CSI IMX219 camera):

dmesg | grep i2c
[    0.749248] iommu: Adding device 3160000.i2c to group 10
[    0.749690] iommu: Adding device c240000.i2c to group 11
[    0.750124] iommu: Adding device 3180000.i2c to group 12
[    0.750670] iommu: Adding device 3190000.i2c to group 13
[    0.751259] iommu: Adding device 31b0000.i2c to group 14
[    0.751686] iommu: Adding device 31c0000.i2c to group 15
[    0.752135] iommu: Adding device c250000.i2c to group 16
[    0.752552] iommu: Adding device 31e0000.i2c to group 17
[    0.874196] tegra-i2c 31e0000.i2c: could not find pctldev for node /host1x/dpaux@155F0000/pinmux@0, deferring probe
[    4.614325] i2c /dev entries driver
[    4.616804] i2c i2c-2: Added multiplexed i2c bus 9
[    4.617400] i2c i2c-2: Added multiplexed i2c bus 10
[    4.617407] i2c-mux-gpio cam_i2cmux: 2 port mux on 3180000.i2c adapter
[    4.666259] tegra-i2c 3180000.i2c: no acknowledge from address 0x10
[    4.666349] imx219 10-0010: imx219_board_setup: error during i2c read probe (-121)

or upload here the whole output of dmesg.

I got next outputs:

find /proc/device-tree/cam_i2cmux/ -name '*imx219*'
/proc/device-tree/cam_i2cmux/i2c@0/rbpcv2_imx219_a@0c
/proc/device-tree/cam_i2cmux/i2c@1/rbpcv2_imx219_e@0c

and

dmesg | grep i2c
[    0.480273] iommu: Adding device 546c0000.i2c to group 22
[    0.481820] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency thermal reset disabled.
[    0.534805] iommu: Adding device 7000c000.i2c to group 25
[    0.535072] iommu: Adding device 7000c400.i2c to group 26
[    0.535334] iommu: Adding device 7000c500.i2c to group 27
[    0.535603] iommu: Adding device 7000c700.i2c to group 28
[    0.535889] iommu: Adding device 7000d000.i2c to group 29
[    0.536156] iommu: Adding device 7000d100.i2c to group 30
[    3.930615] i2c /dev entries driver
[    3.955693] tegra-vii2c 546c0000.i2c: no acknowledge from address 0xc
[    3.955884] tegra-vii2c 546c0000.i2c: no acknowledge from address 0xc
[    3.956067] tegra-vii2c 546c0000.i2c: no acknowledge from address 0xc
[    3.977056] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x40

and

dmesg | grep 121
[    3.977262] ina3221x: probe of 6-0040 failed with error -121

and for dmesg | grep imx219 output is still empty

Full dmesg
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.9.201-tegra (wong@wong-ThinkPad-T430s) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #3 SMP PREEMPT Tue Mar 2 20:02:16 CST 2021
[    0.000000] Boot CPU: AArch64 Processor [411fd071]
[    0.000000] OF: fdt:memory scan node memory@80000000, reg size 48,
[    0.000000] OF: fdt: - 80000000 ,  3f800000
[    0.000000] OF: fdt: - bfa00000 ,  3fe00000
[    0.000000] OF: fdt: - ffa00000 ,  600000
[    0.000000] Found tegra_fbmem: 00800000@92ca9000
[    0.000000] earlycon: uart8250 at MMIO32 0x0000000070006000 (options '')
[    0.000000] bootconsole [uart8250] enabled
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb0_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb0_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb1_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: fdt:Reserved memory: failed to reserve memory for node 'fb1_carveout': base 0x0000000000000000, size 0 MiB
[    0.000000] OF: 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 0x00000000fb800000
[    0.000000] On node 0 totalpages: 522752
[    0.000000]   DMA zone: 8192 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 522752 pages, LIFO batch:31
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.0 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 24 pages/cpu s57560 r8192 d32552 u98304
[    0.000000] pcpu-alloc: s57560 r8192 d32552 u98304 alloc=24*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.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: 514560
[    0.000000] Kernel command line: tegraid=21.1.2.0.0 ddr_die=2048M@2048M section=256M memtype=0 vpr_resize usb_port_owner_info=0 lane_owner_info=0 emc_max_dvfs=0 touch_id=0@63 video=tegrafb no_console_suspend=1 console=ttyS0,115200n8 debug_uartport=lsport,4 earlyprintk=uart8250-32bit,0x70006000 maxcpus=4 usbcore.old_scheme_first=1 core_edp_mv=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  
[    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: 29472(89%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.000000] Memory: 1527684K/2091008K available (15294K kernel code, 2942K rwdata, 6740K rodata, 8576K init, 609K bss, 88188K 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 - 0xffffff8008f70000   ( 15296 KB)
[    0.000000]     .rodata : 0xffffff8008f70000 - 0xffffff8009610000   (  6784 KB)
[    0.000000]       .init : 0xffffff8009610000 - 0xffffff8009e70000   (  8576 KB)
[    0.000000]       .data : 0xffffff8009e70000 - 0xffffff800a14f808   (  2943 KB)
[    0.000000]        .bss : 0xffffff800a14f808 - 0xffffff800a1e7cbc   (   610 KB)
[    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 KB)
[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 MB)
[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 GB maximum)
[    0.000000]               0xffffffbf00000000 - 0xffffffbf02000000   (    32 MB actual)
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc080000000   (  2048 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.010016] Console: colour dummy device 80x25
[    0.014675] console [tty0] enabled
[    0.018187] bootconsole [uart8250] disabled
[    0.022514] kmemleak: Kernel memory leak detector disabled
[    0.022540] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
[    0.022565] pid_max: default: 32768 minimum: 301
[    0.023026] Security Framework initialized
[    0.023252] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.023263] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.024399] ftrace: allocating 47233 entries in 185 pages
[    0.194260] sched-energy: CPU device node has no sched-energy-costs
[    0.194295] ASID allocator initialised with 65536 entries
[    0.232444] tegra-id: chipid=22117.
[    0.232504] tegra-id: opt_subrevision=0.
[    0.232527] Tegra Speedo/IDDQ fuse revision 4
[    0.232536] Tegra: CPU Speedo ID 9, SoC Speedo ID 0, GPU Speedo ID 2
[    0.232546] Tegra: CPU Process ID 0, SoC Process ID 1, GPU Process ID 0
[    0.232557] Tegra: CPU Speedo Value 2063, SoC Speedo Value 1976, GPU Speedo Value 2071
[    0.232568] Tegra: CPU IDDQ Value 2012, SoC IDDQ Value 2264, GPU IDDQ Value 2665
[    0.232594] Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 1
[    0.232616] DTS File Name: /home/wong/Jetson/l4t-32.5.1/Linux_for_Tegra/source/public/kernel_src/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-b00-arducam.dts
[    0.232645] DTB Build time: Mar  2 2021 18:19:46
[    0.281351] CPU1: Booted secondary processor [411fd071]
[    0.313225] CPU2: Booted secondary processor [411fd071]
[    0.345195] CPU3: Booted secondary processor [411fd071]
[    0.345288] Brought up 4 CPUs
[    0.345344] SMP: Total of 4 processors activated.
[    0.345361] CPU features: detected feature: 32-bit EL0 Support
[    0.345652] CPU: All CPU(s) started at EL2
[    0.345683] alternatives: patching kernel code
[    0.353470] devtmpfs: initialized
[    0.391887] Initilizing CustomIPI irq domain
[    0.392311] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.392360] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.403494] pinctrl core: initialized pinctrl subsystem
[    0.404133] OS set in device tree is not L4T.
[    0.404680] regulator-dummy: no parameters
[    0.404970] Initializing plugin-manager
[    0.405145] Plugin module not found
[    0.405507] node /plugin-manager/fragment@1 match with board >=3448-0003-400
[    0.406824] node /plugin-manager/fragement@7 match with odm-data enable-pmic-wdt
[    0.407062] node /plugin-manager/fragement@8 match with odm-data enable-pmic-wdt
[    0.407539] node /plugin-manager/fragement@9 match with board >=3448-0003-000
[    0.408944] node /plugin-manager/fragment@12 match with board >=3448-0003-400
[    0.409215] node /plugin-manager/fragement@13 match with board >=3448-0003-400
[    0.412805] NET: Registered protocol family 16
[    0.414126] pstore: using zlib compression
[    0.414663] console [pstore-1] enabled
[    0.414680] pstore: Registered ramoops as persistent store backend
[    0.414698] ramoops: attached 0x200000@0xb0000000, ecc: 0/0
[    0.433372] cpuidle: using governor menu
[    0.436813] tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
[    0.438689] vdso: 2 pages (1 code @ ffffff8008f77000, 1 data @ ffffff8009e74000)
[    0.438737] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.441916] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[    0.444511] Serial: AMBA PL011 UART driver
[    0.445072] tegra_powergate_init: DONE
[    0.445103] DTS File Name: /home/wong/Jetson/l4t-32.5.1/Linux_for_Tegra/source/public/kernel_src/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-b00-arducam.dts
[    0.445146] DTB Build time: Mar  2 2021 18:19:46
[    0.447226] Tegra reboot handler registered.
[    0.451916] iommu: Adding device tegra-carveouts to group 0
[    0.452052] platform tegra-carveouts: domain=ffffffc078b07258 allocates as[0]=ffffffc078be40a8
[    0.452417] iommu: Adding device smmu_test to group 1
[    0.452482] platform smmu_test: domain=ffffffc078b07498 allocates as[0]=ffffffc078be4110
[    0.453336] mc: mapped MMIO address: 0xffffff800802e000 -> 0x70019000
[    0.453449] mc: mapped MMIO address: 0xffffff8008065000 -> 0x7001c000
[    0.453524] mc: mapped MMIO address: 0xffffff8008079000 -> 0x7001d000
[    0.453548] nv-tegra-mc 70019000.mc: No mssnvlink node
[    0.453598] mc-err: mcerr ops are set to t21x
[    0.464011] iommu: Adding device 70090000.xusb to group 2
[    0.464343] iommu: Adding device 70006000.serial to group 3
[    0.464418] platform 70006000.serial: domain=ffffffc078b58b58 allocates as[0]=ffffffc078be4178
[    0.464873] iommu: Adding device 70006040.serial to group 4
[    0.465143] iommu: Adding device 70006200.serial to group 5
[    0.465384] iommu: Adding device sound to group 6
[    0.465452] platform sound: domain=ffffffc0784b10d8 allocates as[0]=ffffffc078be41e0
[    0.466048] iommu: Adding device 7000d400.spi to group 7
[    0.466325] iommu: Adding device 7000d600.spi to group 8
[    0.466639] iommu: Adding device 70410000.spi to group 9
[    0.466955] iommu: Adding device 50000000.host1x to group 10
[    0.467240] iommu: Adding device 54080000.vi to group 11
[    0.467663] iommu: Adding device 54600000.isp to group 12
[    0.467939] iommu: Adding device 54680000.isp to group 13
[    0.468222] iommu: Adding device tegradc.0 to group 14
[    0.468287] platform tegradc.0: domain=ffffffc078511018 allocates as[0]=ffffffc078be4248
[    0.472479] platform tegradc.0: IOVA linear map 0x0000000092ca9000(800000)
[    0.472888] platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
[    0.473241] iommu: Adding device tegradc.1 to group 15
[    0.473300] platform tegradc.1: domain=ffffffc078511258 allocates as[0]=ffffffc078be42b0
[    0.477481] platform tegradc.1: IOVA linear map 0x0000000092ca9000(800000)
[    0.477889] platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
[    0.478178] iommu: Adding device 54340000.vic to group 16
[    0.478400] iommu: Adding device 544c0000.nvenc to group 17
[    0.478608] iommu: Adding device 54500000.tsec to group 18
[    0.478812] iommu: Adding device 54100000.tsecb to group 19
[    0.479030] iommu: Adding device 54480000.nvdec to group 20
[    0.479230] iommu: Adding device 54380000.nvjpg to group 21
[    0.480273] iommu: Adding device 546c0000.i2c to group 22
[    0.480625] iommu: Adding device 57000000.gpu to group 23
[    0.480694] platform 57000000.gpu: domain=ffffffc078525258 allocates as[0]=ffffffc078be4318
[    0.480770] platform 57000000.gpu: domain=ffffffc078525258 allocates as[1]=ffffffc078be4380
[    0.480827] platform 57000000.gpu: domain=ffffffc078525258 allocates as[2]=ffffffc078be43e8
[    0.480880] platform 57000000.gpu: domain=ffffffc078525258 allocates as[3]=ffffffc078be4450
[    0.481820] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency thermal reset disabled.
[    0.481857] tegra-pmc 7000e400.pmc: scratch reg offset dts data not present
[    0.481884] tegra-pmc: ### PMC reset source: TEGRA_POWER_ON_RESET
[    0.481902] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_WARM
[    0.481919] tegra-pmc: ### PMC reset status reg: 0x0
[    0.533537] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[    0.533569] tegra-pmc: Clear bootloader IO dpd settings
[    0.533601] tegra-pmc 7000e400.pmc: IO padctrl driver initialized
[    0.533681] tegra-pmc 7000e400.pmc: PMC: Successfully configure bootrom reset commands
[    0.534001] iommu: Adding device 70012000.se to group 24
[    0.534805] iommu: Adding device 7000c000.i2c to group 25
[    0.535072] iommu: Adding device 7000c400.i2c to group 26
[    0.535334] iommu: Adding device 7000c500.i2c to group 27
[    0.535603] iommu: Adding device 7000c700.i2c to group 28
[    0.535889] iommu: Adding device 7000d000.i2c to group 29
[    0.536156] iommu: Adding device 7000d100.i2c to group 30
[    0.536462] iommu: Adding device sdhci-tegra.0 to group 31
[    0.536530] platform sdhci-tegra.0: domain=ffffffc07859f3d8 allocates as[0]=ffffffc078be44b8
[    0.537430] iommu: Adding device 700d0000.xudc to group 32
[    0.540596] vdd-ac-bat: 5000 mV 
[    0.540978] vdd-5v0-sys: 5000 mV 
[    0.542011] vdd-5v0-hdmi: supplied by vdd-5v0-sys
[    0.542081] vdd-5v0-hdmi: 5000 mV 
[    0.542519] vdd-1v8-sys: 1800 mV 
[    0.542982] vdd-fan: supplied by vdd-5v0-sys
[    0.543038] vdd-fan: 5000 mV 
[    0.543428] vdd-usb-vbus: supplied by vdd-5v0-sys
[    0.543470] vdd-usb-vbus: 5000 mV 
[    0.544018] vdd-usb-vbus2: 5000 mV 
[    0.574473] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.577018] gpio gpiochip0: gpio-line-names specifies 240 line names but there are 256 lines on the chip
[    0.578183] GPIO line 151 (camera-control-output-low) hogged as output/low
[    0.578219] GPIO line 152 (camera-control-output-low) hogged as output/low
[    0.578267] GPIO line 6 (system-suspend-gpio) hogged as output/high
[    0.578681] gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip0 (tegra-gpio)
[    0.586831] eventlib_kernel: keventlib is initialized, test id: 0
[    0.587241] SCSI subsystem initialized
[    0.587499] libata version 3.00 loaded.
[    0.587747] usbcore: registered new interface driver usbfs
[    0.587817] usbcore: registered new interface driver hub
[    0.587909] usbcore: registered new device driver usb
[    0.591910] max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
[    0.594339] random: fast init done
[    0.597578] vdd-core: 600 <--> 1162 mV at 1075 mV 
[    0.598640] vdd-ddr-1v1: Bringing 1125000uV into 1150000-1150000uV
[    0.601363] vdd-ddr-1v1: 1150 mV 
[    0.605263] vdd-pre-reg-1v35: 1350 mV 
[    0.609218] vdd-1v8: 1800 mV 
[    0.613210] avdd-sys-1v2: 1200 mV 
[    0.617219] vdd-pex-1v0: 1050 mV 
[    0.617873] vddio-sdmmc-ap: 1800 <--> 3300 mV at 3300 mV 
[    0.618459] max77620-ldo3: at 3100 mV 
[    0.621216] vdd-rtc: 850 <--> 1100 mV at 1000 mV 
[    0.621765] max77620-ldo5: at 3100 mV 
[    0.622315] max77620-ldo6: at 2800 mV 
[    0.625215] avdd-1v05-pll: 1050 mV 
[    0.629211] avdd-io-hdmi-dp: 1050 mV 
[    0.631921] GPIO line 505 (spmic-default-output-high) hogged as output/high
[    0.632224] gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpiochip1 (max77620-gpio)
[    0.632537] max77620 4-003c: max77620 probe successful
[    0.635449] media: Linux media interface: v0.10
[    0.635524] Linux video capture interface: v2.00
[    0.636469] pps_core: LinuxPPS API ver. 1 registered
[    0.636497] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.636541] PTP clock support registered
[    0.639799] tegra210-emc 7001b000.external-memory-controller: validated EMC DFS table
[    0.640733] Advanced Linux Sound Architecture Driver Initialized.
[    0.641447] Bluetooth: Core ver 2.22
[    0.641518] NET: Registered protocol family 31
[    0.641536] Bluetooth: HCI device and connection manager initialized
[    0.641562] Bluetooth: HCI socket layer initialized
[    0.641583] Bluetooth: L2CAP socket layer initialized
[    0.641646] Bluetooth: SCO socket layer initialized
[    0.643445] tegra210_dvfs: no clock found for sdmmc2_ddr
[    0.643484] tegra210_dvfs: no clock found for sdmmc4_ddr
[    0.643544] tegra210_dvfs: no clock found for sdmmc1_ddr
[    0.643572] tegra210_dvfs: no clock found for sdmmc3_ddr
[    0.647286] tegra_dvfs: Unable to get vdd-cpu rail for step info, defering probe
[    0.648604] vdd-3v3-sys: supplied by vdd-5v0-sys
[    0.648693] vdd-3v3-sys: 3300 mV 
[    0.649000] vdd-1v8-sys: supplied by vdd-3v3-sys
[    0.653426] vdd-usb-vbus2: supplied by vdd-3v3-sys
[    0.653962] vdd-3v3-sd: supplied by vdd-3v3-sys
[    0.654020] vdd-3v3-sd: 3300 mV 
[    0.655177] avdd-io-edp-1v05: supplied by avdd-1v05-pll
[    0.655233] avdd-io-edp-1v05: 1050 mV 
[    0.655673] vdd-usb-hub-en: supplied by vdd-1v8-sys
[    0.655727] vdd-usb-hub-en: 5000 mV 
[    0.657121] camchar: rtcpu character device driver loaded
[    0.658016] extcon-gpio-states extcon:extcon@1: Cable state:0, cable id:0
[    0.659301] clocksource: Switched to clocksource arch_sys_counter
[    0.700345] VFS: Disk quotas dquot_6.6.0
[    0.700541] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.701052] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    0.701480] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000d7000000, size=0x19000000
[    0.701525]  dma-vpr: heap size is not multiple of cma_chunk_size heap_info->num_chunks (13) rem_chunk_size(0x1000000)
[    0.701794] cma: enabled page replacement for spfn=d7000, epfn=f0000
[    0.701816] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful
[    0.701844] tegra-carveouts tegra-carveouts: assigned reserved memory node vpr-carveout
[    0.701899] tegra-carveouts tegra-carveouts: iram :dma coherent mem declare 0x0000000040001000,258048
[    0.701924] tegra-carveouts tegra-carveouts: assigned reserved memory node iram-carveout
[    0.701953] nvmap: nvmap_select_cache_ops() nvmap cache ops set to set/ways
[    0.701974] nvmap_page_pool_init: Total RAM pages: 500705
[    0.701990] nvmap_page_pool_init: nvmap page pool size: 62588 pages (244 MB)
[    0.702084] nvmap_background_zero_thread: PP zeroing thread starting.
[    0.702573] misc nvmap: created heap iram base 0x0000000040001000 size (252KiB)
[    0.703506] misc nvmap: created heap vpr base 0x00000000d7000000 size (409600KiB)
[    0.712497] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type AO-therm
[    0.712998] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type CPU-therm
[    0.713395] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
[    0.713698] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[    0.713901] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
[    0.714209] pre_t19x_iso_plat_init(): iso emc max clk=1600000KHz
[    0.714227] pre_t19x_iso_plat_init(): max_iso_bw=11520000KB
[    0.714674] NET: Registered protocol family 2
[    0.715693] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[    0.715827] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[    0.716099] TCP: Hash tables configured (established 16384 bind 16384)
[    0.716266] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[    0.716324] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[    0.716688] NET: Registered protocol family 1
[    0.717420] RPC: Registered named UNIX socket transport module.
[    0.717444] RPC: Registered udp transport module.
[    0.717460] RPC: Registered tcp transport module.
[    0.717476] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.717501] PCI: CLS 0 bytes, default 64
[    0.717740] Trying to unpack rootfs image as initramfs...
[    1.021763] Freeing initrd memory: 6992K
[    1.031812] host1x 50000000.host1x: initialized
[    1.033600] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    1.036953] audit: initializing netlink subsys (disabled)
[    1.037073] audit: type=2000 audit(0.875:1): initialized
[    1.037894] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[    1.047845] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.049356] ntfs: driver 2.1.32 [Flags: R/W].
[    1.050162] 9p: Installing v9fs 9p2000 file system support
[    1.053755] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)
[    1.053927] io scheduler noop registered
[    1.054238] io scheduler cfq registered (default)
[    1.057002] gic 702f9000.agic: GIC IRQ controller registered
[    1.060035] iommu: Adding device 702ef000.adsp to group 33
[    1.069245] iommu: Adding device aconnect@702c0000:adsp_audio to group 34
[    1.069429] tegra-aconnect aconnect@702c0000: Tegra ACONNECT bus registered
[    1.070028] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 = 0x8a49410
[    1.070059] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_0 = 0x4
[    1.071876] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane = usb2-0, function = xusb
[    1.072015] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.1, lane = usb2-1, function = xusb
[    1.072134] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.2, lane = usb2-2, function = xusb
[    1.072345] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane = pcie-0, function = pcie-x1
[    1.072453] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane = pcie-1, function = pcie-x4
[    1.072565] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane = pcie-2, function = pcie-x4
[    1.072674] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane = pcie-3, function = pcie-x4
[    1.072782] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane = pcie-4, function = pcie-x4
[    1.072887] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.8, lane = pcie-5, function = xusb
[    1.072998] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.9, lane = pcie-6, function = xusb
[    1.079120] tegra-pwm 7000a000.pwm: PWM clk cannot sleep in ops
[    1.081019] tegra-dfll-pwm 70110000.pwm: DFLL pwm-rate: 12800000
[    1.082954] tegra-pcie 1003000.pcie: 4x1, 1x1 configuration
[    1.084290] tegra-pcie 1003000.pcie: PCIE: Enable power rails
[    1.084666] tegra-pcie 1003000.pcie: probing port 0, using 4 lanes
[    1.085862] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[    1.086113] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=1500000, vi_iso_bw=750000, max_bw=1500000
[    1.086386] Adding domain tsec-pd to PM domain host1x-pd
[    1.088753] tegra-pcie 1003000.pcie: probing port 1, using 1 lanes
[    1.089683] tsec 54500000.tsec: initialized
[    1.091333] tsec 54100000.tsecb: initialized
[    1.092097] Adding domain nvdec-pd to PM domain host1x-pd
[    1.095750] nvdec 54480000.nvdec: initialized
[    1.096864] Adding domain vic03-pd to PM domain host1x-pd
[    1.097070] Adding domain msenc-pd to PM domain host1x-pd
[    1.097243] Adding domain nvjpg-pd to PM domain host1x-pd
[    1.101543] falcon 54340000.vic: initialized
[    1.102863] falcon 544c0000.nvenc: initialized
[    1.104257] falcon 54380000.nvjpg: initialized
[    1.108582] tegra_cec 70015000.tegra_cec: dt=1 start=0x70015000 end=0x70015FFF irq=97
[    1.108669] tegra_cec 70015000.tegra_cec: Enable clock result: 0.
[    1.108701] tegradc tegradc.0: disp0 connected to head0->/host1x/sor1
[    1.108715] tegra_cec 70015000.tegra_cec: tegra_cec_init started
[    1.108824] display board info: id 0x0, fab 0x0
[    1.108899] generic_infoframe_type: 0x87
[    1.109008] tegra_cec 70015000.tegra_cec: cec_add_sysfs ret=0
[    1.109031] tegra_cec 70015000.tegra_cec: probed
[    1.109047] tegradc tegradc.0: DT parsed successfully
[    1.109113] tegradc tegradc.0: Display dc.ffffff800ab80000 registered with id=0
[    1.109681] tegradc tegradc.0: Bootloader disp_param detected. Detected mode: 1920x1080 (on 0x0mm) pclk=148350781
[    1.117031] tegra-apbdma 60020000.dma: Tegra20 APB DMA driver register 32 channels
[    1.117594] tegradc tegradc.0: probed
[    1.123697] tegra-adma 702e2000.adma: Tegra210 ADMA driver registered 22 channels
[    1.125186] tegra-fuse-burn 7000f800.efuse:efuse-burn: shutdown limit check disabled
[    1.125227] tegra-fuse-burn 7000f800.efuse:efuse-burn: Fuse burn driver initialized
[    1.125701] kfuse 7000fc00.kfuse: initialized
[    1.127494] tegra-pmc-iopower pmc-iopower: Regulator supply iopower-dbg-supply not available
[    1.128522] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[    1.130021] tegra-dfll-pwm 70110000.pwm: DFLL_PWM regulator is available now
[    1.130061] vdd-cpu: 708 <--> 1322 mV at 708 mV 
[    1.130598] pwm-regulator pwm_regulators:pwm-regulator@0: PWM regulator registration passed
[    1.132371] vdd-gpu: applied init 1000000uV constraint
[    1.132408] vdd-gpu: 708 <--> 1323 mV at 997 mV 
[    1.132868] pwm-regulator pwm_regulators:pwm-regulator@1: PWM regulator registration passed
[    1.137790] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.137989] No Device Node present for smmu client: serial8250 !!
[    1.138016] platform serial8250: No iommus property found in DT node, got swgids from fixup(101004000)
[    1.138100] iommu: Adding device serial8250 to group 35
[    1.142011] console [ttyS0] disabled
[    1.142244] 70006000.serial: ttyS0 at MMIO 0x70006000 (irq = 63, base_baud = 25500000) is a Tegra
[    1.594692] tegra-pcie 1003000.pcie: link 0 down, retrying
[    1.999140] tegra-pcie 1003000.pcie: link 0 down, retrying
[    2.119329] tegra_cec 70015000.tegra_cec: Can't find physical addresse.
[    2.119334] tegra_cec 70015000.tegra_cec: tegra_cec_init Done.
[    2.402973] tegra-pcie 1003000.pcie: link 0 down, retrying
[    2.404990] tegra-pcie 1003000.pcie: link 0 down, ignoring
[    2.511143] tegra-pcie 1003000.pcie: PCI host bridge to bus 0000:00
[    2.511155] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    2.511160] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
[    2.511165] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pref]
[    2.511171] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.511215] pci 0000:00:02.0: [10de:0faf] type 01 class 0x060400
[    2.511358] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.511603] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    2.511753] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[    2.511782] pci 0000:01:00.0: reg 0x10: [io  0x0000-0x00ff]
[    2.511814] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
[    2.511837] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
[    2.511987] pci 0000:01:00.0: supports D1 D2
[    2.511991] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.523403] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[    2.523452] pci 0000:00:02.0: BAR 14: assigned [mem 0x13000000-0x130fffff]
[    2.523459] pci 0000:00:02.0: BAR 13: assigned [io  0x1000-0x1fff]
[    2.523468] pci 0000:01:00.0: BAR 4: assigned [mem 0x13000000-0x13003fff 64bit]
[    2.523489] pci 0000:01:00.0: BAR 2: assigned [mem 0x13004000-0x13004fff 64bit]
[    2.523508] pci 0000:01:00.0: BAR 0: assigned [io  0x1000-0x10ff]
[    2.523518] pci 0000:00:02.0: PCI bridge to [bus 01]
[    2.523524] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
[    2.523530] pci 0000:00:02.0:   bridge window [mem 0x13000000-0x130fffff]
[    2.523923] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    2.523928] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    2.523934] pcie_pme 0000:00:02.0:pcie001: service driver pcie_pme loaded
[    2.524066] aer 0000:00:02.0:pcie002: service driver aer loaded
[    3.612021] console [ttyS0] enabled
[    3.612629] Console: switching to colour frame buffer device 240x67
[    3.613408] 70006040.serial: ttyTHS1 at MMIO 0x70006040 (irq = 64, base_baud = 0) is a TEGRA_UART
[    3.613764] serial-tegra 70006200.serial: RX in PIO mode
[    3.613850] 70006200.serial: ttyTHS2 at MMIO 0x70006200 (irq = 65, base_baud = 0) is a TEGRA_UART
[    3.614746] [drm] Initialized
[    3.648713] tegradc tegradc.0: fb registered
[    3.652472] brd: module loaded
[    3.661278] loop: module loaded
[    3.663215] tegradc tegradc.0: DC initialized, skipping tegra_dc_program_mode.
[    3.663259] tegradc tegradc.0: hdmi: tmds rate:148351K prod-setting:prod_c_hdmi_75m_150m
[    3.663798] tegradc tegradc.0: hdmi: get RGB quant from REG programmed by BL.
[    3.663810] tegradc tegradc.0: hdmi: get YCC quant from REG programmed by BL.
[    3.689947] extcon-disp-state extcon:disp-state: cable 47 state 1
[    3.689952] Extcon AUX1(HDMI) enable
[    3.690934] tegradc tegradc.1: disp1 connected to head1->/host1x/sor
[    3.691005] tegradc tegradc.1: No lt-data, using default setting
[    3.691033] tegradc tegradc.1: No hpd-gpio in DT
[    3.691063] tegradc tegradc.1: DT parsed successfully
[    3.691120] tegradc tegradc.1: Display dc.ffffff800d500000 registered with id=1
[    3.692632] tegradc tegradc.1: dpd enable lookup fail:-19
[    3.696937] tegradc tegradc.1: probed
[    3.727391] tegradc tegradc.0: nominal-pclk:148351648 parent:148350781 div:1.0 pclk:148350781 146868084~161703244
[    3.752533] tegradc tegradc.1: fb registered
[    3.752604] tegra_profiler: version: 1.143, samples/io: 48/28
[    3.752709] tegra_profiler: auth: init
[    3.753294] THERMAL EST: found 2 subdevs
[    3.753298] THERMAL EST num_resources: 0
[    3.753302] [THERMAL EST subdev 0]
[    3.753306] [THERMAL EST subdev 1]
[    3.753614] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type thermal-fan-est
[    3.753616] THERMAL EST: thz register success.
[    3.753722] THERMAL EST: end of probe, return err: 0
[    3.754338] sd: No Scsi addr parsed to reserve index
[    3.754359] hisi_sas: driver version v1.6
[    3.758086] tegra-qspi 70410000.spi: Prod settings list not found
[    3.758928] qspi_mtd spi32766.0: MX25U3235F (4096 Kbytes)
[    3.758935] qspi_mtd spi32766.0: mtd .name = spi32766.0, .size = 0x400000 (4MiB) .erasesize = 0x00001000 (4KiB) .numeraseregions = 0
[    3.771210] libphy: Fixed MDIO Bus: probed
[    3.771768] tun: Universal TUN/TAP device driver, 1.6
[    3.771770] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    3.773046] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    3.773048] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    3.773092] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    3.773094] igb: Copyright (c) 2007-2014 Intel Corporation.
[    3.773140] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    3.773142] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    3.773185] Intel(R) 10GbE PCI Express Linux Network Driver - version 4.6.4
[    3.773187] Copyright(c) 1999 - 2017 Intel Corporation.
[    3.773840] r8168 0000:01:00.0: enabling device (0000 -> 0003)
[    3.773859] r8168 Gigabit Ethernet driver 8.045.08-NAPI loaded
[    3.788431] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Invalid ethernet address 00:00:00:00:00:00, trying device tree node
[    3.788493] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Found valid ethernet address 48:b0:2d:2e:c0:56 from device tree
[    3.788913] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[    3.788945] r8168  Copyright (C) 2017  Realtek NIC software team <nicfae@realtek.com> 
                This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>. 
                This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>. 
[    3.789351] PPP generic driver version 2.4.2
[    3.789488] PPP BSD Compression module registered
[    3.789491] PPP Deflate Compression module registered
[    3.789504] PPP MPPE Compression module registered
[    3.789508] NET: Registered protocol family 24
[    3.789559] usbcore: registered new interface driver r8152
[    3.789599] usbcore: registered new interface driver asix
[    3.789642] usbcore: registered new interface driver ax88179_178a
[    3.789675] usbcore: registered new interface driver cdc_ether
[    3.789708] usbcore: registered new interface driver net1080
[    3.789739] usbcore: registered new interface driver cdc_subset
[    3.789773] usbcore: registered new interface driver zaurus
[    3.789818] usbcore: registered new interface driver cdc_ncm
[    3.789954] VFIO - User Level meta-driver version: 0.3
[    3.790898] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.790909] ehci-pci: EHCI PCI platform driver
[    3.790948] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.790956] ohci-pci: OHCI PCI platform driver
[    3.790991] ohci-platform: OHCI generic platform driver
[    3.793014] tegra-xusb 70090000.xusb: USB2 port 0 has OTG_CAP
[    3.793563] tegra-xusb-padctl 7009f000.xusb_padctl: enabled OTG on UTMI pad 0
[    3.794618] tegra-xusb 70090000.xusb: extcon 0: ffffffc078029000 id
[    3.796096] usbcore: registered new interface driver uas
[    3.796141] usbcore: registered new interface driver usb-storage
[    3.796207] usbcore: registered new interface driver usbserial
[    3.797056] tegra-xusb 70090000.xusb: Firmware timestamp: 2019-10-17 15:58:59 UTC, Version: 50.25 release
[    3.797086] tegra-xusb 70090000.xusb: xHCI Host Controller
[    3.797102] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 1
[    3.797818] tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100 quirks 0x00050010
[    3.797855] tegra-xusb 70090000.xusb: irq 61, io mem 0x70090000
[    3.798004] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.798010] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.798014] usb usb1: Product: xHCI Host Controller
[    3.798017] usb usb1: Manufacturer: Linux 4.9.201-tegra xhci-hcd
[    3.798021] usb usb1: SerialNumber: 70090000.xusb
[    3.798428] hub 1-0:1.0: USB hub found
[    3.798461] hub 1-0:1.0: 5 ports detected
[    3.799004] tegra-xusb 70090000.xusb: xHCI Host Controller
[    3.799013] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 2
[    3.799083] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    3.799176] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    3.799181] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.799184] usb usb2: Product: xHCI Host Controller
[    3.799188] usb usb2: Manufacturer: Linux 4.9.201-tegra xhci-hcd
[    3.799192] usb usb2: SerialNumber: 70090000.xusb
[    3.799661] hub 2-0:1.0: USB hub found
[    3.799692] hub 2-0:1.0: 4 ports detected
[    3.800404] tegra-xusb 70090000.xusb: Upgrade port 0 to USB3.0
[    3.800409] tegra-xusb 70090000.xusb: Upgrade port 1 to USB3.0
[    3.800727] tegra-xudc-new 700d0000.xudc: device count: 1
[    3.801687] tegra-xudc-new 700d0000.xudc: USB charger detection disabled
[    3.801696] tegra-xudc-new 700d0000.xudc: vbus state: 0
[    3.801717] tegra-xudc-new 700d0000.xudc: entering ELPG
[    3.801950] tegra-xudc-new 700d0000.xudc: entering ELPG done
[    3.802407] mousedev: PS/2 mouse device common for all mice
[    3.802471] usbcore: registered new interface driver xpad
[    3.895373] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 1
[    3.895432] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 2
[    3.903534] usb usb2: usb_suspend_both: status 0
[    3.928110] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[    3.930245] rtc rtc1: alarm rtc device
[    3.930257] tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
[    3.930274] tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
[    3.930615] i2c /dev entries driver
[    3.955693] tegra-vii2c 546c0000.i2c: no acknowledge from address 0xc
[    3.955884] tegra-vii2c 546c0000.i2c: no acknowledge from address 0xc
[    3.956067] tegra-vii2c 546c0000.i2c: no acknowledge from address 0xc
[    3.956127] arducam-csi2: arducam_read: Reading register 0x103 failed
[    3.956131] arducam-csi2 6-000c: probe failed
[    3.956158] arducam-csi2 6-000c: Failed to setup board.
[    3.956703] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[    3.958553] tegra_soctherm 700e2000.soctherm: pllx_offset tz:0 max:14, min:2
[    3.958558] tegra_soctherm 700e2000.soctherm: pllx_offset tz:2 max:8, min:4
[    3.958858] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    3.958870] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when cpu reaches 102500 mC
[    3.958876] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when cpu reaches 100500 mC
[    3.959003] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    3.959012] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when gpu reaches 103000 mC
[    3.959019] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when gpu reaches 101000 mC
[    3.959162] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    3.959171] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when pll reaches 127000 mC
[    3.959175] tegra_soctherm 700e2000.soctherm: throttrip: pll: missing hot temperature
[    3.959368] tegra_soctherm 700e2000.soctherm: failed to register sensor: -19
[    3.959884] tegra_aotag tegra-aotag: Registering sensor 0
[    3.959930] tegra_aotag tegra-aotag: Invalid temp readout
[    3.959949] tegra_aotag tegra-aotag: Invalid temp readout
[    3.959965] tegra_aotag tegra-aotag: Bound to TZ : ID 0
[    3.959973] tegra_aotag tegra-aotag: Probe done [SUCCESS]:0
[    3.960734] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    3.960748] tegra_dfll_action dfll-cdev-cap: Tegra DFLL 'cap cooling device' registered
[    3.960897] tegra_aotag tegra-aotag: Invalid temp readout
[    3.960919] tegra_dfll_action dfll-cdev-floor: Tegra DFLL 'floor cooling device' registered
[    3.961257] parse_throttle_dt_data: Num cap clks = 6
[    3.961262] parse_throttle_dt_data: clk=cclk_g type=2
[    3.961269] parse_throttle_dt_data: clk=gpu type=4
[    3.961288] parse_throttle_dt_data: clk=cap.throttle.c2bus type=0
[    3.961308] parse_throttle_dt_data: clk=cap.throttle.c3bus type=0
[    3.961329] parse_throttle_dt_data: clk=cap.throttle.sclk type=0
[    3.961332] parse_throttle_dt_data: clk=emc type=3
[    3.961624] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    3.961713] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    3.961830] tegra_throttle_probe: probe successful. #cdevs=4
[    3.962390] FAN dev name: pwm-fan
[    3.962435] FAN:gpio request success.
[    3.962485] pwm_fan_driver pwm-fan: cap state:7, cap pwm:255
[    3.962718] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[    3.962832] pwm_fan_driver pwm-fan: fan tach request irq success
[    3.962839] pwm_fan_driver pwm-fan: tach period: 1000
[    3.962918] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, state:2
[    3.962923] pwm_fan_driver pwm-fan: index 1: pwm=80, rpm=1000, rru=2, rrd=2, state:2
[    3.962927] pwm_fan_driver pwm-fan: index 2: pwm=120, rpm=2000, rru=1, rrd=1, state:2
[    3.962931] pwm_fan_driver pwm-fan: index 3: pwm=160, rpm=3000, rru=1, rrd=1, state:2
[    3.962935] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1, state:3
[    3.962938] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1, state:3
[    3.962942] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1, state:3
[    3.962946] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1, state:4
[    3.962950] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1, state:4
[    3.962954] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1, state:4
[    3.965034] device-mapper: uevent: version 1.0.3
[    3.965518] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    3.968182] tegra210-cpufreq cpufreq: probe()...completed
[    3.968843] sdhci: Secure Digital Host Controller Interface driver
[    3.968844] sdhci: Copyright(c) Pierre Ossman
[    3.968845] sdhci-pltfm: SDHCI platform and OF driver helper
[    3.969309] sdhci-tegra sdhci-tegra.0: Got CD GPIO
[    3.969654] sdhci-tegra sdhci-tegra.0: Client registration for eMC Successful
[    3.969774] sdhci-tegra sdhci-tegra.0: wakeup init done, cdirq 300
[    3.974630] tegra-se 70012000.se: tegra_se_probe: complete
[    3.975118] hidraw: raw HID events driver (C) Jiri Kosina
[    3.976176] usbcore: registered new interface driver usbhid
[    3.976178] usbhid: USB HID core driver
[    3.977056] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x40
[    3.977115] ina3221x 6-0040: ina3221 reset failure status: 0xffffff87
[    3.977262] ina3221x: probe of 6-0040 failed with error -121
[    3.978238] tegra21x_actmon 6000c800.actmon: in actmon_register()...
[    3.978412] tegra21x_actmon 6000c800.actmon: initialization Completed for the device mc_all
[    3.980257] nvpmodel: initialized successfully
[    3.981371] usbcore: registered new interface driver snd-usb-audio
[    3.981428] No Device Node present for smmu client: snd-soc-dummy !!
[    3.981432] platform snd-soc-dummy: No iommus property found in DT node, got swgids from fixup(101004000)
[    3.981450] iommu: Adding device snd-soc-dummy to group 36
[    3.998549] input: tegra-hda HDMI/DP,pcm=3 as /devices/70030000.hda/sound/card0/input0
[    4.007931] OPE platform probe
[    4.008016] OPE platform probe successful
[    4.008296] OPE platform probe
[    4.008374] OPE platform probe successful
[    4.019681] mmc0: SDHCI controller on sdhci-tegra.0 [sdhci-tegra.0] using ADMA 64-bit with 64 bit addr
[    4.031921] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[    4.032049] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[    4.032174] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[    4.032296] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[    4.032416] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[    4.032547] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[    4.032666] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[    4.032785] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[    4.032908] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[    4.033027] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[    4.045166] u32 classifier
[    4.045168]     Actions configured
[    4.045239] Initializing XFRM netlink socket
[    4.045939] NET: Registered protocol family 10
[    4.046680] NET: Registered protocol family 17
[    4.046691] NET: Registered protocol family 15
[    4.046763] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    4.046808] Bluetooth: RFCOMM socket layer initialized
[    4.046816] Bluetooth: RFCOMM ver 1.11
[    4.046820] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    4.046824] Bluetooth: HIDP socket layer initialized
[    4.046842] 9pnet: Installing 9P2000 support
[    4.046879] Key type dns_resolver registered
[    4.050100] Registered cp15_barrier emulation handler
[    4.050157] Registered setend emulation handler
[    4.051204] registered taskstats version 1
[    4.051855] Adding domain ve2-pd to PM domain host1x-pd
[    4.052111] Adding domain ve-pd to PM domain host1x-pd
[    4.132148] usb 1-2: new low-speed USB device number 2 using tegra-xusb
[    4.162900] usb 1-2: New USB device found, idVendor=1c4f, idProduct=0002
[    4.162904] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.162907] usb 1-2: Product: USB Keyboard
[    4.162909] usb 1-2: Manufacturer: SIGMACHIP
[    4.170289] input: SIGMACHIP USB Keyboard as /devices/70090000.xusb/usb1/1-2/1-2:1.0/0003:1C4F:0002.0001/input/input1
[    4.226940] mmc0: Applying tuning correction
[    4.226953] mmc0: Tap value after applying correction 57
[    4.226969] mmc0: hw tuning done ...
[    4.227000] mmc0: new ultra high speed SDR104 SDXC card at address aaaa
[    4.227396] mmcblk0: mmc0:aaaa SN64G 59.5 GiB 
[    4.231668] hid-generic 0003:1C4F:0002.0001: input,hidraw0: USB HID v1.10 Keyboard [SIGMACHIP USB Keyboard] on usb-70090000.xusb-2/input0
[    4.231860]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14
[    4.234849] input: SIGMACHIP USB Keyboard as /devices/70090000.xusb/usb1/1-2/1-2:1.1/0003:1C4F:0002.0002/input/input2
[    4.291589] hid-generic 0003:1C4F:0002.0002: input,hidraw1: USB HID v1.10 Device [SIGMACHIP USB Keyboard] on usb-70090000.xusb-2/input1
[    4.415307] usb 1-3: new high-speed USB device number 3 using tegra-xusb
[    4.435679] usb 1-3: New USB device found, idVendor=1a40, idProduct=0801
[    4.435683] usb 1-3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    4.435685] usb 1-3: Product: USB 2.0 Hub
[    4.436448] hub 1-3:1.0: USB hub found
[    4.436516] hub 1-3:1.0: 4 ports detected
[    4.723309] usb 1-3.1: new high-speed USB device number 4 using tegra-xusb
[    4.743922] usb 1-3.1: New USB device found, idVendor=0bda, idProduct=c811
[    4.743925] usb 1-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.743928] usb 1-3.1: Product: 802.11ac NIC
[    4.743931] usb 1-3.1: Manufacturer: Realtek
[    4.743933] usb 1-3.1: SerialNumber: 123456
[    4.843310] usb 1-3.2: new full-speed USB device number 5 using tegra-xusb
[    4.866112] usb 1-3.2: New USB device found, idVendor=1d57, idProduct=fa60
[    4.866115] usb 1-3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.866118] usb 1-3.2: Product: 2.4G Receiver
[    4.866120] usb 1-3.2: Manufacturer: Compx
[    4.868672] input: Compx 2.4G Receiver as /devices/70090000.xusb/usb1/1-3/1-3.2/1-3.2:1.0/0003:1D57:FA60.0003/input/input3
[    4.927640] hid-generic 0003:1D57:FA60.0003: input,hidraw2: USB HID v1.00 Keyboard [Compx 2.4G Receiver] on usb-70090000.xusb-3.2/input0
[    4.929191] input: Compx 2.4G Receiver as /devices/70090000.xusb/usb1/1-3/1-3.2/1-3.2:1.1/0003:1D57:FA60.0004/input/input4
[    4.929492] hid-generic 0003:1D57:FA60.0004: input,hidraw3: USB HID v1.00 Mouse [Compx 2.4G Receiver] on usb-70090000.xusb-3.2/input1
[    4.931381] input: Compx 2.4G Receiver as /devices/70090000.xusb/usb1/1-3/1-3.2/1-3.2:1.2/0003:1D57:FA60.0005/input/input5
[    4.987572] hid-generic 0003:1D57:FA60.0005: input,hidraw4: USB HID v1.00 Device [Compx 2.4G Receiver] on usb-70090000.xusb-3.2/input2
[    5.300421] tegradc tegradc.0: blank - powerdown
[    5.303471] hpd: state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[    5.303474] hpd: switching from state 7 (Takeover from bootloader) to state 0 (Reset)
[    5.303479] hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
[    5.304599] isp 54600000.isp: initialized
[    5.305405] isp 54680000.isp: initialized
[    5.315799] last reset is due to power on reset
[    5.315802] KERNEL: PMC reset status reg: 0x0
[    5.315860] BL: PMC reset status reg: 0x0
[    5.315862] BL: PMIC poweroff Event Recorder: 0x40
[    5.317332] clk_cbus_recalc_rate: no gbus parent
[    5.317336] clk_cbus_round_rate: no gbus parent
[    5.317338] clk_cbus_round_rate: no gbus parent
[    5.317345] clk_cbus_recalc_rate: no gbus parent
[    5.317443] clk_cbus_recalc_rate: no gbus parent
[    5.317446] clk_cbus_round_rate: no gbus parent
[    5.317447] clk_cbus_round_rate: no gbus parent
[    5.317451] clk_cbus_recalc_rate: no gbus parent
[    5.317464] tegra_dvfs: GPU-cap: registered
[    5.317522] tegra dvfs: vdd-cpu: nominal 1168mV, offset 708000uV, step 19200uV, scaling enabled
[    5.317524] tegra dvfs: vdd-core: nominal 1075mV, offset 600000uV, step 12500uV, scaling enabled
[    5.317526] tegra dvfs: vdd-gpu: nominal 1058mV, offset 708000uV, step 10000uV, scaling enabled
[    5.318910] tegra_dvfs: vdd-gpu-vts: registered
[    5.319597] tegra_core_action core_dvfs_cdev_floor: Tegra CORE DVFS 'floor cooling device' registered
[    5.320212] tegra_core_action core_dvfs_cdev_cap: Tegra CORE DVFS 'cap cooling device' registered
[    5.320762] input: gpio-keys as /devices/gpio-keys/input/input6
[    5.350654] extcon-disp-state extcon:disp-state: cable 47 state 0
[    5.350656] Extcon AUX1(HDMI) disable
[    5.351954] tegra_rtc 7000e000.rtc: setting system clock to 2000-01-01 01:00:16 UTC (946688416)
[    5.352980] vi 54080000.vi: vi_probe: ++
[    5.355643] vi 54080000.vi: initialized
[    5.357630] vi 54080000.vi: subdev nvcsi--1 bound
[    5.357883] mmcblk mmc0:aaaa: Card claimed for testing.
[    5.358483] Disable partitions left on by BL
[    5.358486]   disb
[    5.358525] bwmgr: missing cdev-type property
[    5.358651] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    5.358657] DRAM derating cdev registered.
[    5.359635] ALSA device list:
[    5.359638]   #0: tegra-hda at 0x70038000 irq 83
[    5.359640]   #1: tegra-snd-t210ref-mobile-rt565x
[    5.378522] tegradc tegradc.0: unblank
[    5.414431] tegradc tegradc.0: nominal-pclk:148500000 parent:148500000 div:1.0 pclk:148500000 147015000~161865000
[    5.414478] tegradc tegradc.0: hdmi: tmds rate:148500K prod-setting:prod_c_hdmi_75m_150m
[    5.415466] tegradc tegradc.0: hdmi: get YCC quant from EDID.
[    5.450265] extcon-disp-state extcon:disp-state: cable 47 state 1
[    5.450267] Extcon AUX1(HDMI) enable
[    5.465709] tegradc tegradc.0: sync windows ret = 246
[    5.841323] tegradc tegradc.1: blank - powerdown
[    5.847753] extcon-disp-state extcon:disp-state: cable 44 state 0 already set.
[    5.847757] Extcon DP: HPD disabled
[    5.847759] hpd: hpd_switch 0
[    5.847761] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[    5.847769] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[    5.847774] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[    5.891741] extcon-disp-state extcon:disp-state: cable 51 state 1
[    5.891743] Extcon HDMI: HPD enabled
[    5.891758] tegradc tegradc.0: hdmi: plugged
[    5.914192] Freeing unused kernel memory: 8576K
[    5.944959] Root device found: mmcblk0p1
[    5.952194] Found dev node: /dev/mmcblk0p1
[    5.995304] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[    6.007094] Rootfs mounted over mmcblk0p1
[    6.042665] Switching from initrd to actual rootfs
[    6.243014] systemd[1]: System time before build time, advancing clock.
[    6.273984] ip_tables: (C) 2000-2006 Netfilter Core Team
[    6.293412] cgroup: cgroup2: unknown option "nsdelegate"
[    6.316030] 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)
[    6.342075] systemd[1]: Detected architecture arm64.
[    6.383355] systemd[1]: Set hostname to <creep-pc>.
[    6.539351] 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.
[    6.558463] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[    6.769115] random: systemd: uninitialized urandom read (16 bytes read)
[    6.779613] systemd[1]: Created slice System Slice.
[    6.789318] random: systemd: uninitialized urandom read (16 bytes read)
[    6.798302] systemd[1]: Listening on Journal Audit Socket.
[    6.808432] random: systemd: uninitialized urandom read (16 bytes read)
[    6.817469] systemd[1]: Listening on udev Control Socket.
[    6.827673] systemd[1]: Listening on fsck to fsckd communication Socket.
[    6.839855] systemd[1]: Created slice User and Session Slice.
[    6.984574] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
[    7.110467] systemd-journald[2002]: Received request to flush runtime journal from PID 1
[    7.135342] nvgpu: 57000000.gpu           gm20b_init_clk_setup_sw:1268 [INFO]  GPCPLL initial settings: NA mode, M=1, N=34, P=3 (id = 1)
[    7.140218] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.140240] cpu-throttle-alert cooling device registered.
[    7.140451] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.140464] gpu-throttle-alert cooling device registered.
[    7.140624] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.140635] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[    7.140647] hot-surface-alert cooling device registered.
[    7.395224] Adding 4194300k swap on /swapfile.  Priority:-1 extents:5 across:4481020k SS
[    8.149295] using random self ethernet address
[    8.155297] using random host ethernet address
[    8.299568] random: crng init done
[    8.304441] random: 7 urandom warning(s) missed due to ratelimiting
[    9.242405] Mass Storage Function, version: 2009/09/11
[    9.242411] LUN: removable file: (no medium)
[    9.248911] using random self ethernet address
[    9.254944] using random host ethernet address
[    9.342256] rndis0: HOST MAC 02:36:54:6f:70:f4
[    9.342491] rndis0: MAC 02:36:54:6f:70:f5
[    9.343890] usb0: HOST MAC 02:36:54:6f:70:f6
[    9.343920] usb0: MAC 02:36:54:6f:70:f7
[    9.343943] tegra-xudc-new 700d0000.xudc: exiting ELPG
[    9.344690] tegra-xudc-new 700d0000.xudc: exiting ELPG done
[    9.344710] tegra-xudc-new 700d0000.xudc: ep 0 (type: 0, dir: out) enabled
[    9.347597] tegra-xudc-new 700d0000.xudc: entering ELPG
[    9.347859] tegra-xudc-new 700d0000.xudc: entering ELPG done
[    9.347887] tegra-xudc-new 700d0000.xudc: exiting ELPG
[    9.348384] tegra-xudc-new 700d0000.xudc: exiting ELPG done
[    9.348397] tegra-xudc-new 700d0000.xudc: entering ELPG
[    9.348621] tegra-xudc-new 700d0000.xudc: entering ELPG done
[    9.352916] l4tbr0: port 1(rndis0) entered blocking state
[    9.352921] l4tbr0: port 1(rndis0) entered disabled state
[    9.353091] device rndis0 entered promiscuous mode
[    9.363208] IPv6: ADDRCONF(NETDEV_UP): rndis0: link is not ready
[    9.370524] l4tbr0: port 2(usb0) entered blocking state
[    9.370529] l4tbr0: port 2(usb0) entered disabled state
[    9.371448] device usb0 entered promiscuous mode
[    9.379706] IPv6: ADDRCONF(NETDEV_UP): usb0: link is not ready
[   10.523598] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   10.524697] eth0: 0xffffff800a42c000, 48:b0:2d:2e:c0:56, IRQ 406
[   10.608208] zram: Added device: zram0
[   10.608722] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   10.612509] zram: Added device: zram1
[   10.617658] zram: Added device: zram2
[   10.620778] zram: Added device: zram3
[   10.647762] zram0: detected capacity change from 0 to 258355200
[   10.719398] Adding 252296k swap on /dev/zram0.  Priority:5 extents:1 across:252296k SS
[   10.727788] zram1: detected capacity change from 0 to 258355200
[   10.741095] Adding 252296k swap on /dev/zram1.  Priority:5 extents:1 across:252296k SS
[   10.752654] zram2: detected capacity change from 0 to 258355200
[   10.774987] Adding 252296k swap on /dev/zram2.  Priority:5 extents:1 across:252296k SS
[   10.778130] zram3: detected capacity change from 0 to 258355200
[   10.810521] Adding 252296k swap on /dev/zram3.  Priority:5 extents:1 across:252296k SS
[   11.038032] usbcore: registered new interface driver rtl8821cu
[   11.092932] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   11.865155] start_addr=(0x8000), end_addr=(0x10000), buffer_size=(0x8000), smp_number_max=(4096)
[   11.879701] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   11.961839] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   11.972363] tegradc tegradc.0: unblank
[   11.972743] tegradc tegradc.1: blank - powerdown
[   13.196459] fuse init (API version 7.26)
[   16.268409] start_addr=(0x8000), end_addr=(0x10000), buffer_size=(0x8000), smp_number_max=(4096)
[   16.385735] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   30.908952] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   30.908963] Bluetooth: BNEP socket layer initialized
[   35.971463] vdd-fan: disabling
[   35.971467] vdd-usb-vbus: disabling
[   35.971470] vdd-usb-vbus2: disabling
[   35.971479] avdd-io-edp-1v05: disabling
[   35.971481] vdd-usb-hub-en: disabling
[    0.232616] DTS File Name: /home/wong/Jetson/l4t-32.5.1/Linux_for_Tegra/source/public/kernel_src/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-b00-arducam.dts
[    0.232645] DTB Build time: Mar  2 2021 18:19:46

Seems you are running with a custom arducam device tree. This may be the root cause, but I can’t tell more, I have no knowledge of this device tree (and no Nano).

oh, my bad
Last time I downloaded image for jetson 4GB
Reinstalled system and got next outputs:

find /proc/device-tree/cam_i2cmux/ -name '*imx219*'
/proc/device-tree/cam_i2cmux/i2c@0/rbpcv2_imx219_a@10
/proc/device-tree/cam_i2cmux/i2c@1/rbpcv2_imx219_e@10

and

dmesg | grep i2c
[    0.442086] iommu: Adding device 546c0000.i2c to group 21
[    0.443508] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency thermal reset disabled.
[    0.494431] iommu: Adding device 7000c000.i2c to group 24
[    0.494742] iommu: Adding device 7000c400.i2c to group 25
[    0.495047] iommu: Adding device 7000c500.i2c to group 26
[    0.495352] iommu: Adding device 7000c700.i2c to group 27
[    0.495674] iommu: Adding device 7000d000.i2c to group 28
[    0.495977] iommu: Adding device 7000d100.i2c to group 29
[    1.262227] i2c /dev entries driver
[    1.287228] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x10
[    1.287303] imx219 6-0010: imx219_board_setup: error during i2c read probe (-121)

and

dmesg | grep imx219
[    1.264013] imx219 6-0010: tegracam sensor driver:imx219_v2.0.6
[    1.287303] imx219 6-0010: imx219_board_setup: error during i2c read probe (-121)
[    1.287374] imx219 6-0010: board setup failed
[    1.287427] imx219: probe of 6-0010 failed with error -121

It looks like camera module doesn’t work(

Maybe the camera is broken, but not sure yet.
Again, I have no Nano so someone else with a Nano and an IMX219 sensor may better help, but it seems a bit surprizing to me that you don’t have something like:

[    4.614325] i2c /dev entries driver
[    4.616804] i2c i2c-2: Added multiplexed i2c bus 9
[    4.617400] i2c i2c-2: Added multiplexed i2c bus 10

It looks ok that one imx219 probe failed for the connector having no camera, but I see no success nor failure for the other one… Be sure to use CSI0 connector. Also attach your full dmesg.log.

I think try with another camera module it’s easiest way.
You helped me a lot, thank you

but I see no success nor failure for the other one… Be sure to use CSI0 connector.

It’s because 2GB version has only one slot for camera