Device: Nvidia Jetson Nano Developer Kit
Model: P3450
Problem:
I want to edit the kernel cmdline to use cgroup v1 instead of v2:
admin@jetson:~$ cat /boot/extlinux/extlinux.conf
TIMEOUT 30
DEFAULT primary
MENU TITLE L4T boot options
LABEL primary
MENU LABEL primary kernel
LINUX /boot/Image
INITRD /boot/initrd
APPEND ${cbootargs} systemd.unified_cgroup_hierarchy=0 quiet root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0
# When testing a custom kernel, it is recommended that you create a backup of
# the original kernel and add a new entry to this file so that the device can
# fallback to the original kernel. To do this:
#
# 1, Make a backup of the original kernel
# sudo cp /boot/Image /boot/Image.backup
#
# 2, Copy your custom kernel into /boot/Image
#
# 3, Uncomment below menu setting lines for the original kernel
#
# 4, Reboot
# LABEL backup
# MENU LABEL backup kernel
# LINUX /boot/Image.backup
# INITRD /boot/initrd
# APPEND ${cbootargs}
admin@jetson:~$ cat /sys/fs/cgroup/cgroup.controllers
io memory pids
as shown above, after adding systemd.unified_cgroup_hierarchy=0
, it doesn’t change cgroup version from v2 to v1 indicated by the existence of the file /sys/fs/cgroup/cgroup.controllers
. Below is the log of dmesg:
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 4.9.337-tegra (buildbrain@mobile-u64-5496-d8000) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #1 SMP PREEMPT Tue Jun 11 16:07:05 PDT 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] 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 s57816 r8192 d32296 u98304
[ 0.000000] pcpu-alloc: s57816 r8192 d32296 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] CPU features: enabling workaround for Spectre-BHB
[ 0.000000] CPU features: enabling workaround for ARM erratum 1742098
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1023544
[ 0.000000] Kernel command line: tegraid=21.1.2.0.0 ddr_die=4096M@2048M section=512M memtype=0 vpr_resize usb_port_owner_info=0 lane_owner_info=0 emc_max_dvfs=0 touch_id=0@63 video=tegrafb no_console_suspend=1 console=ttyS0,115200n8 debug_uartport=lsport,4 earlyprintk=uart8250-32bit,0x70006000 maxcpus=4 usbcore.old_scheme_first=1 lp0_vec=0x1000@0xff780000 core_edp_mv=1125 core_edp_ma=4000 gpt earlycon=uart8250,mmio32,0x70006000 root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 systemd.unified_cgroup_hierarchy=0 quiet 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: 29688(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: 3568248K/4159488K available (15486K kernel code, 2982K rwdata, 6716K rodata, 8640K init, 614K bss, 116104K 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 : 0x (ptrval) - 0x (ptrval) ( 15488 KB)
[ 0.000000] .rodata : 0x (ptrval) - 0x (ptrval) ( 6784 KB)
[ 0.000000] .init : 0x (ptrval) - 0x (ptrval) ( 8640 KB)
[ 0.000000] .data : 0x (ptrval) - 0x (ptrval) ( 2983 KB)
[ 0.000000] .bss : 0x (ptrval) - 0x (ptrval) ( 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.001737] Console: colour dummy device 80x25
[ 0.001747] console [tty0] enabled
[ 0.001753] bootconsole [uart8250] disabled
[ 0.001772] kmemleak: Kernel memory leak detector disabled
[ 0.001791] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
[ 0.001803] pid_max: default: 32768 minimum: 301
[ 0.002279] Security Framework initialized
[ 0.002520] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.002527] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.003635] ftrace: allocating 47298 entries in 185 pages
[ 0.180573] sched-energy: CPU device node has no sched-energy-costs
[ 0.192255] ASID allocator initialised with 65536 entries
[ 0.219839] tegra-id: chipid=22117.
[ 0.219853] tegra-id: opt_subrevision=0.
[ 0.219870] Tegra Speedo/IDDQ fuse revision 4
[ 0.219875] Tegra: CPU Speedo ID 9, SoC Speedo ID 0, GPU Speedo ID 2
[ 0.219879] Tegra: CPU Process ID 0, SoC Process ID 0, GPU Process ID 0
[ 0.219885] Tegra: CPU Speedo Value 1989, SoC Speedo Value 1907, GPU Speedo Value 2001
[ 0.219889] Tegra: CPU IDDQ Value 1548, SoC IDDQ Value 1992, GPU IDDQ Value 2290
[ 0.219917] Tegra Revision: A02 SKU: 0x8f CPU Process: 0 SoC Process: 0
[ 0.219931] DTS File Name: /dvs/git/dirty/git-master_linux/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-b00.dts
[ 0.219939] DTB Build time: Jun 11 2024 16:09:23
[ 0.269070] CPU1: Booted secondary processor [411fd071]
[ 0.300954] CPU2: Booted secondary processor [411fd071]
[ 0.332944] CPU3: Booted secondary processor [411fd071]
[ 0.333043] Brought up 4 CPUs
[ 0.333050] SMP: Total of 4 processors activated.
[ 0.333058] CPU features: detected feature: 32-bit EL0 Support
[ 0.333297] CPU: All CPU(s) started at EL2
[ 0.333315] alternatives: patching kernel code
[ 0.341382] devtmpfs: initialized
[ 0.379357] Initilizing CustomIPI irq domain
[ 0.379669] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.379690] futex hash table entries: 1024 (order: 4, 65536 bytes)
[ 0.391695] pinctrl core: initialized pinctrl subsystem
[ 0.392282] OS set in device tree is not L4T.
[ 0.392709] regulator-dummy: no parameters
[ 0.392976] Initializing plugin-manager
[ 0.393179] Plugin module not found
[ 0.393374] node /plugin-manager/fragement@0 match with board >=3448-0000-100
[ 0.393880] node /plugin-manager/fragment@1 match with board >=3448-0000-101
[ 0.394850] node /plugin-manager/fragement@7 match with odm-data enable-pmic-wdt
[ 0.395052] node /plugin-manager/fragement@8 match with odm-data enable-pmic-wdt
[ 0.395670] node /plugin-manager/fragement@13 match with board >=3448-0000-300
[ 0.399403] NET: Registered protocol family 16
[ 0.400797] pstore: using zlib compression
[ 0.400839] console [pstore-1] enabled
[ 0.400844] pstore: Registered ramoops as persistent store backend
[ 0.400849] ramoops: attached 0x200000@0xb0000000, ecc: 0/0
[ 0.417090] cpuidle: using governor menu
[ 0.421246] tegra_smmu 70019000.iommu: Loaded Tegra IOMMU driver
[ 0.422913] vdso: 2 pages (1 code @ (ptrval), 1 data @ (ptrval))
[ 0.422934] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.425581] atomic_pool_init():622: DMA: preallocated 1024 KiB pool for atomic allocations
[ 0.427918] Serial: AMBA PL011 UART driver
[ 0.428416] tegra_powergate_init: DONE
[ 0.428431] DTS File Name: /dvs/git/dirty/git-master_linux/kernel/kernel-4.9/arch/arm64/boot/dts/../../../../../../hardware/nvidia/platform/t210/porg/kernel-dts/tegra210-p3448-0000-p3449-0000-b00.dts
[ 0.428438] DTB Build time: Jun 11 2024 16:09:23
[ 0.430377] Tegra reboot handler registered.
[ 0.434889] iommu: Adding device tegra-carveouts to group 0
[ 0.435026] platform tegra-carveouts: domain= (ptrval) allocates as[0]= (ptrval)
[ 0.435375] iommu: Adding device smmu_test to group 1
[ 0.435421] platform smmu_test: domain= (ptrval) allocates as[0]= (ptrval)
[ 0.436228] mc: mapped MMIO address: 0x (ptrval) -> 0x70019000
[ 0.436279] mc: mapped MMIO address: 0x (ptrval) -> 0x7001c000
[ 0.436331] mc: mapped MMIO address: 0x (ptrval) -> 0x7001d000
[ 0.436340] nv-tegra-mc 70019000.mc: No mssnvlink node
[ 0.436363] mc-err: mcerr ops are set to t21x
[ 0.447031] iommu: Adding device 70090000.xusb to group 2
[ 0.447311] iommu: Adding device 70006000.serial to group 3
[ 0.447375] platform 70006000.serial: domain= (ptrval) allocates as[0]= (ptrval)
[ 0.447798] iommu: Adding device 70006040.serial to group 4
[ 0.448054] iommu: Adding device 70006200.serial to group 5
[ 0.448240] iommu: Adding device sound to group 6
[ 0.448286] platform sound: domain= (ptrval) allocates as[0]= (ptrval)
[ 0.448849] iommu: Adding device 7000d400.spi to group 7
[ 0.449161] iommu: Adding device 7000d600.spi to group 8
[ 0.449435] iommu: Adding device 70410000.spi to group 9
[ 0.449734] iommu: Adding device 50000000.host1x to group 10
[ 0.449996] iommu: Adding device 54080000.vi to group 11
[ 0.450396] iommu: Adding device 54600000.isp to group 12
[ 0.450652] iommu: Adding device 54680000.isp to group 13
[ 0.450916] iommu: Adding device tegradc.0 to group 14
[ 0.450968] platform tegradc.0: domain= (ptrval) allocates as[0]= (ptrval)
[ 0.451480] platform tegradc.0: IOVA linear map 0x00000000d7000000(19000000)
[ 0.451799] iommu: Adding device tegradc.1 to group 15
[ 0.451866] platform tegradc.1: domain= (ptrval) allocates as[0]= (ptrval)
[ 0.452370] platform tegradc.1: IOVA linear map 0x00000000d7000000(19000000)
[ 0.452617] iommu: Adding device 54340000.vic to group 16
[ 0.452815] iommu: Adding device 544c0000.nvenc to group 17
[ 0.453007] iommu: Adding device 54500000.tsec to group 18
[ 0.453239] iommu: Adding device 54100000.tsecb to group 19
[ 0.453441] iommu: Adding device 54480000.nvdec to group 20
[ 0.453629] iommu: Adding device 54380000.nvjpg to group 21
[ 0.454657] iommu: Adding device 546c0000.i2c to group 22
[ 0.454980] iommu: Adding device 57000000.gpu to group 23
[ 0.455050] platform 57000000.gpu: domain= (ptrval) allocates as[0]= (ptrval)
[ 0.455087] platform 57000000.gpu: domain= (ptrval) allocates as[1]= (ptrval)
[ 0.455124] platform 57000000.gpu: domain= (ptrval) allocates as[2]= (ptrval)
[ 0.455156] platform 57000000.gpu: domain= (ptrval) allocates as[3]= (ptrval)
[ 0.456004] tegra-pmc 7000e400.pmc: i2c-thermtrip node not found, emergency thermal reset disabled.
[ 0.456014] tegra-pmc 7000e400.pmc: scratch reg offset dts data not present
[ 0.456026] tegra-pmc: ### PMC reset source: TEGRA_SOFTWARE_RESET
[ 0.456032] tegra-pmc: ### PMC reset level: TEGRA_RESET_LEVEL_WARM
[ 0.456037] tegra-pmc: ### PMC reset status reg: 0x3
[ 0.509266] padctrl padctrl.0: Pad control driver tegra-pmc-padctrl registered
[ 0.509278] tegra-pmc: Clear bootloader IO dpd settings
[ 0.509299] tegra-pmc 7000e400.pmc: IO padctrl driver initialized
[ 0.509366] tegra-pmc 7000e400.pmc: PMC: Successfully configure bootrom reset commands
[ 0.509664] iommu: Adding device 70012000.se to group 24
[ 0.510232] iommu: Adding device 1003000.pcie to group 25
[ 0.510291] platform 1003000.pcie: domain= (ptrval) allocates as[0]= (ptrval)
[ 0.510803] iommu: Adding device 7000c000.i2c to group 26
[ 0.511115] iommu: Adding device 7000c400.i2c to group 27
[ 0.511425] iommu: Adding device 7000c500.i2c to group 28
[ 0.511729] iommu: Adding device 7000c700.i2c to group 29
[ 0.512082] iommu: Adding device 7000d000.i2c to group 30
[ 0.512397] iommu: Adding device 7000d100.i2c to group 31
[ 0.512687] iommu: Adding device sdhci-tegra.0 to group 32
[ 0.512737] platform sdhci-tegra.0: domain= (ptrval) allocates as[0]= (ptrval)
[ 0.513808] iommu: Adding device 700d0000.xudc to group 33
[ 0.518042] vdd-ac-bat: 5000 mV
[ 0.518506] vdd-5v0-sys: 5000 mV
[ 0.519420] vdd-5v0-hdmi: 5000 mV
[ 0.519896] vdd-5v0-hdmi: supplied by vdd-5v0-sys
[ 0.520204] vdd-1v8-sys: 1800 mV
[ 0.520688] vdd-fan: 5000 mV
[ 0.520999] vdd-fan: supplied by vdd-5v0-sys
[ 0.521279] vdd-usb-vbus: 5000 mV
[ 0.521498] vdd-usb-vbus: supplied by vdd-5v0-sys
[ 0.521890] vdd-usb-vbus2: 5000 mV
[ 0.550111] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.552394] gpio gpiochip0: gpio-line-names specifies 240 line names but there are 256 lines on the chip
[ 0.555394] GPIO line 6 (system-suspend-gpio) hogged as output/high
[ 0.555426] GPIO line 151 (camera-control-output-low) hogged as output/low
[ 0.555446] GPIO line 152 (camera-control-output-low) hogged as output/low
[ 0.555879] gpiochip_setup_dev: registered GPIOs 0 to 255 on device: gpiochip0 (tegra-gpio)
[ 0.564014] eventlib_kernel: keventlib is initialized, test id: 0
[ 0.564361] SCSI subsystem initialized
[ 0.564553] libata version 3.00 loaded.
[ 0.564840] usbcore: registered new interface driver usbfs
[ 0.564898] usbcore: registered new interface driver hub
[ 0.564939] usbcore: registered new device driver usb
[ 0.569158] max77620 4-003c: PMIC Version OTP:0x35 and ES:0x8
[ 0.573084] vdd-core: 600 <--> 1162 mV at 1125 mV
[ 0.574045] vdd-ddr-1v1: Bringing 1125000uV into 1150000-1150000uV
[ 0.576975] vdd-ddr-1v1: 1150 mV
[ 0.580969] vdd-pre-reg-1v35: 1350 mV
[ 0.584292] vdd-1v8: 1800 mV
[ 0.588228] avdd-sys-1v2: 1200 mV
[ 0.592228] vdd-pex-1v0: 1050 mV
[ 0.592888] vddio-sdmmc-ap: 1800 <--> 3300 mV at 3300 mV
[ 0.593429] max77620-ldo3: at 3100 mV
[ 0.596229] vdd-rtc: 850 <--> 1100 mV at 1000 mV
[ 0.596777] max77620-ldo5: at 3100 mV
[ 0.600231] vddio-sdmmc3-ap: 1800 <--> 3300 mV at 2800 mV
[ 0.604223] avdd-1v05-pll: 1050 mV
[ 0.608230] avdd-io-hdmi-dp: 1050 mV
[ 0.610766] GPIO line 505 (spmic-default-output-high) hogged as output/high
[ 0.611077] gpiochip_setup_dev: registered GPIOs 504 to 511 on device: gpiochip1 (max77620-gpio)
[ 0.611371] max77620 4-003c: max77620 probe successful
[ 0.614137] media: Linux media interface: v0.10
[ 0.614193] Linux video capture interface: v2.00
[ 0.615117] pps_core: LinuxPPS API ver. 1 registered
[ 0.615123] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.615142] PTP clock support registered
[ 0.618212] tegra210-emc 7001b000.external-memory-controller: validated EMC DFS table
[ 0.619058] Advanced Linux Sound Architecture Driver Initialized.
[ 0.619659] Bluetooth: Core ver 2.22
[ 0.619703] NET: Registered protocol family 31
[ 0.619707] Bluetooth: HCI device and connection manager initialized
[ 0.619721] Bluetooth: HCI socket layer initialized
[ 0.619729] Bluetooth: L2CAP socket layer initialized
[ 0.619759] Bluetooth: SCO socket layer initialized
[ 0.621552] tegra210_dvfs: no clock found for sdmmc2_ddr
[ 0.621569] tegra210_dvfs: no clock found for sdmmc4_ddr
[ 0.621616] tegra210_dvfs: no clock found for sdmmc1_ddr
[ 0.621630] tegra210_dvfs: no clock found for sdmmc3_ddr
[ 0.624910] tegra_dvfs: Unable to get vdd-cpu rail for step info, defering probe
[ 0.626196] vdd-3v3-sys: 3300 mV
[ 0.626551] vdd-3v3-sys: supplied by vdd-5v0-sys
[ 0.626600] vdd-1v8-sys: supplied by vdd-3v3-sys
[ 0.629361] vdd-usb-vbus2: supplied by vdd-3v3-sys
[ 0.629791] vdd-3v3-sd: 3300 mV
[ 0.630179] vdd-3v3-sd: supplied by vdd-3v3-sys
[ 0.630721] avdd-io-edp-1v05: 1050 mV
[ 0.631086] avdd-io-edp-1v05: supplied by avdd-1v05-pll
[ 0.631219] vdd-usb-hub-en: 5000 mV
[ 0.631578] vdd-usb-hub-en: supplied by vdd-1v8-sys
[ 0.632592] camchar: rtcpu character device driver loaded
[ 0.633311] extcon-gpio-states extcon:extcon@1: Cable state:1, cable id:1
[ 0.634725] clocksource: Switched to clocksource arch_sys_counter
[ 0.674566] VFS: Disk quotas dquot_6.6.0
[ 0.674695] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.675330] nvmap_heap_init: nvmap_heap_init: created heap block cache
[ 0.675764] dma_declare_coherent_resizable_cma_memory:324: resizable heap=vpr, base=0x00000000d7000000, size=0x19000000
[ 0.675783] dma-vpr: heap size is not multiple of cma_chunk_size heap_info->num_chunks (13) rem_chunk_size(0x1000000)
[ 0.675995] cma: enabled page replacement for spfn=d7000, epfn=f0000
[ 0.676002] dma_declare_coherent_resizable_cma_memory:373: resizable cma heap=vpr create successful
[ 0.676017] tegra-carveouts tegra-carveouts: assigned reserved memory node vpr-carveout
[ 0.676047] tegra-carveouts tegra-carveouts: iram :dma coherent mem declare 0x0000000040001000,258048
[ 0.676053] tegra-carveouts tegra-carveouts: assigned reserved memory node iram-carveout
[ 0.676073] nvmap: nvmap_select_cache_ops() nvmap cache ops set to set/ways
[ 0.676081] nvmap_page_pool_init: Total RAM pages: 1010846
[ 0.676085] nvmap_page_pool_init: nvmap page pool size: 126355 pages (493 MB)
[ 0.676180] nvmap_background_zero_thread: PP zeroing thread starting.
[ 0.676611] misc nvmap: created heap iram base 0x (ptrval) size (252KiB)
[ 0.677317] misc nvmap: created heap vpr base 0x (ptrval) size (409600KiB)
[ 0.687123] thermal thermal_zone0: Registering thermal zone thermal_zone0 for type AO-therm
[ 0.687554] thermal thermal_zone1: Registering thermal zone thermal_zone1 for type CPU-therm
[ 0.687906] thermal thermal_zone2: Registering thermal zone thermal_zone2 for type GPU-therm
[ 0.688164] thermal thermal_zone3: Registering thermal zone thermal_zone3 for type PLL-therm
[ 0.688342] thermal thermal_zone4: Registering thermal zone thermal_zone4 for type PMIC-Die
[ 0.688602] pre_t19x_iso_plat_init(): iso emc max clk=1600000KHz
[ 0.688608] pre_t19x_iso_plat_init(): max_iso_bw=11520000KB
[ 0.689073] NET: Registered protocol family 2
[ 0.689224] IP idents hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.707003] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.707222] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[ 0.707726] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.707880] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.707960] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.708374] NET: Registered protocol family 1
[ 0.709087] RPC: Registered named UNIX socket transport module.
[ 0.709092] RPC: Registered udp transport module.
[ 0.709095] RPC: Registered tcp transport module.
[ 0.709099] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.709114] PCI: CLS 0 bytes, default 64
[ 0.709360] Trying to unpack rootfs image as initramfs...
[ 1.016994] Freeing initrd memory: 6992K
[ 1.026969] host1x 50000000.host1x: initialized
[ 1.028854] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[ 1.032131] audit: initializing netlink subsys (disabled)
[ 1.032220] audit: type=2000 audit(0.875:1): initialized
[ 1.032918] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[ 1.042814] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 1.044286] ntfs: driver 2.1.32 [Flags: R/W].
[ 1.045084] 9p: Installing v9fs 9p2000 file system support
[ 1.048294] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 240)
[ 1.048412] io scheduler noop registered
[ 1.048724] io scheduler cfq registered (default)
[ 1.051592] gic 702f9000.agic: GIC IRQ controller registered
[ 1.054547] iommu: Adding device 702ef000.adsp to group 34
[ 1.063809] iommu: Adding device aconnect@702c0000:adsp_audio to group 35
[ 1.063992] tegra-aconnect aconnect@702c0000: Tegra ACONNECT bus registered
[ 1.064656] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_SKU_CALIB_0 = 0x71a7c0e
[ 1.064663] tegra-xusb-padctl 7009f000.xusb_padctl: TEGRA_FUSE_USB_CALIB_EXT_0 = 0x4
[ 1.066306] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.0, lane = usb2-0, function = xusb
[ 1.066412] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.1, lane = usb2-1, function = xusb
[ 1.066505] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-usb2.2, lane = usb2-2, function = xusb
[ 1.066693] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.3, lane = pcie-0, function = pcie-x1
[ 1.066826] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.4, lane = pcie-1, function = pcie-x4
[ 1.066922] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.5, lane = pcie-2, function = pcie-x4
[ 1.067011] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.6, lane = pcie-3, function = pcie-x4
[ 1.067102] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.7, lane = pcie-4, function = pcie-x4
[ 1.067185] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.8, lane = pcie-5, function = xusb
[ 1.067278] tegra-xusb-padctl 7009f000.xusb_padctl: dev = phy-pcie.9, lane = pcie-6, function = xusb
[ 1.073594] tegra-pwm 7000a000.pwm: PWM clk cannot sleep in ops
[ 1.075281] tegra-dfll-pwm 70110000.pwm: DFLL pwm-rate: 12800000
[ 1.077149] tegra-pcie 1003000.pcie: 4x1, 1x1 configuration
[ 1.078430] tegra-pcie 1003000.pcie: PCIE: Enable power rails
[ 1.078811] tegra-pcie 1003000.pcie: probing port 0, using 4 lanes
[ 1.080069] tegra_camera_platform tegra-camera-platform: tegra_camera_probe:camera_platform_driver probe
[ 1.080282] misc tegra_camera_ctrl: tegra_camera_isomgr_register isp_iso_bw=1500000, vi_iso_bw=1500000, max_bw=1500000
[ 1.080545] Adding domain tsec-pd to PM domain host1x-pd
[ 1.082879] tegra-pcie 1003000.pcie: probing port 1, using 1 lanes
[ 1.083777] tsec 54500000.tsec: initialized
[ 1.085322] tsec 54100000.tsecb: initialized
[ 1.086031] Adding domain nvdec-pd to PM domain host1x-pd
[ 1.089510] nvdec 54480000.nvdec: initialized
[ 1.090568] Adding domain vic03-pd to PM domain host1x-pd
[ 1.090771] Adding domain msenc-pd to PM domain host1x-pd
[ 1.090948] Adding domain nvjpg-pd to PM domain host1x-pd
[ 1.094955] falcon 54340000.vic: initialized
[ 1.096223] falcon 544c0000.nvenc: initialized
[ 1.097599] falcon 54380000.nvjpg: initialized
[ 1.102145] tegra_cec 70015000.tegra_cec: dt=1 start=0x70015000 end=0x70015FFF irq=97
[ 1.102193] tegra_cec 70015000.tegra_cec: Enable clock result: 0.
[ 1.102231] tegra_cec 70015000.tegra_cec: tegra_cec_init started
[ 1.102348] tegradc tegradc.0: disp0 connected to head0->/host1x/sor1
[ 1.102438] display board info: id 0x0, fab 0x0
[ 1.102496] generic_infoframe_type: 0x87
[ 1.102506] tegra_cec 70015000.tegra_cec: cec_add_sysfs ret=0
[ 1.102510] tegra_cec 70015000.tegra_cec: probed
[ 1.102640] tegradc tegradc.0: DT parsed successfully
[ 1.102699] tegradc tegradc.0: Display dc. (ptrval) registered with id=0
[ 1.110302] tegra-apbdma 60020000.dma: Tegra20 APB DMA driver register 32 channels
[ 1.115338] tegradc tegradc.0: probed
[ 1.115735] tegra-adma 702e2000.adma: Tegra210 ADMA driver registered 22 channels
[ 1.116080] Console: switching to colour frame buffer device 80x30
[ 1.116113] tegradc tegradc.0: fb registered
[ 1.116820] tegra-fuse-burn 7000f800.efuse:efuse-burn: shutdown limit check disabled
[ 1.116830] tegra-fuse-burn 7000f800.efuse:efuse-burn: Fuse burn driver initialized
[ 1.117479] kfuse 7000fc00.kfuse: initialized
[ 1.117537] tegradc tegradc.1: disp1 connected to head1->/host1x/sor
[ 1.117642] tegradc tegradc.1: No lt-data, using default setting
[ 1.117675] tegradc tegradc.1: No hpd-gpio in DT
[ 1.117726] tegradc tegradc.1: DT parsed successfully
[ 1.117777] tegradc tegradc.1: Display dc. (ptrval) registered with id=1
[ 1.118826] tegra-pmc-iopower pmc-iopower: Regulator supply iopower-dbg-supply not available
[ 1.119480] tegradc tegradc.1: dpd enable lookup fail:-19
[ 1.119778] tegra-pmc-iopower pmc-iopower: NO_IOPOWER setting 0x0
[ 1.120843] tegra-dfll-pwm 70110000.pwm: DFLL_PWM regulator is available now
[ 1.120853] vdd-cpu: 708 <--> 1322 mV at 708 mV
[ 1.121241] pwm-regulator pwm_regulators:pwm-regulator@0: PWM regulator registration passed
[ 1.122445] vdd-gpu: applied init 1000000uV constraint
[ 1.122452] vdd-gpu: 708 <--> 1323 mV at 997 mV
[ 1.625252] Host read timeout at address 545c00c4
[ 1.625303] pwm-regulator pwm_regulators:pwm-regulator@1: PWM regulator registration passed
[ 1.627092] tegradc tegradc.1: probed
[ 1.627438] tegradc tegradc.1: fb registered
[ 1.629437] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 1.629531] No Device Node present for smmu client: serial8250 !!
[ 1.629541] platform serial8250: No iommus property found in DT node, got swgids from fixup(101004000)
[ 1.629580] iommu: Adding device serial8250 to group 36
[ 1.630668] hpd: state 7 (Takeover from bootloader), hpd 0, pending_hpd_evt 1
[ 1.630675] hpd: switching from state 7 (Takeover from bootloader) to state 0 (Reset)
[ 1.630684] hpd: state 0 (Reset), hpd 0, pending_hpd_evt 0
[ 1.630700] tegradc tegradc.1: blank - powerdown
[ 1.631011] extcon-disp-state extcon:disp-state: cable 44 state 0 already set.
[ 1.631017] Extcon DP: HPD disabled
[ 1.631022] hpd: hpd_switch 0
[ 1.631028] hpd: switching from state 0 (Reset) to state 1 (Check Plug)
[ 1.631042] hpd: state 1 (Check Plug), hpd 0, pending_hpd_evt 0
[ 1.631050] hpd: switching from state 1 (Check Plug) to state 3 (Disabled)
[ 1.632190] console [ttyS0] disabled
[ 1.632248] 70006000.serial: ttyS0 at MMIO 0x70006000 (irq = 63, base_baud = 25500000) is a Tegra
[ 1.642659] console [ttyS0] enabled
[ 1.643752] 70006040.serial: ttyTHS1 at MMIO 0x70006040 (irq = 64, base_baud = 0) is a TEGRA_UART
[ 1.644061] serial-tegra 70006200.serial: RX in PIO mode
[ 1.644158] 70006200.serial: ttyTHS2 at MMIO 0x70006200 (irq = 65, base_baud = 0) is a TEGRA_UART
[ 1.645136] [drm] Initialized
[ 1.655524] brd: module loaded
[ 1.660751] loop: module loaded
[ 1.660839] tegra_profiler: version: 1.145, samples/io: 49/28
[ 1.660960] tegra_profiler: auth: init
[ 1.662360] THERMAL EST: found 2 subdevs
[ 1.662369] THERMAL EST num_resources: 0
[ 1.662376] [THERMAL EST subdev 0]
[ 1.662384] [THERMAL EST subdev 1]
[ 1.662898] thermal thermal_zone5: Registering thermal zone thermal_zone5 for type thermal-fan-est
[ 1.662903] THERMAL EST: thz register success.
[ 1.663085] THERMAL EST: end of probe, return err: 0
[ 1.664427] sd: No Scsi addr parsed to reserve index
[ 1.664466] hisi_sas: driver version v1.6
[ 1.669434] tegra-qspi 70410000.spi: Prod settings list not found
[ 1.670593] qspi_mtd spi32766.0: MX25U3235F (4096 Kbytes)
[ 1.670602] qspi_mtd spi32766.0: mtd .name = spi32766.0, .size = 0x400000 (4MiB) .erasesize = 0x00001000 (4KiB) .numeraseregions = 0
[ 1.674263] tun: Universal TUN/TAP device driver, 1.6
[ 1.674269] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 1.675603] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[ 1.675607] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 1.675658] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[ 1.675661] igb: Copyright (c) 2007-2014 Intel Corporation.
[ 1.675712] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[ 1.675716] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[ 1.675767] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k
[ 1.675771] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[ 1.676907] PPP generic driver version 2.4.2
[ 1.677116] PPP BSD Compression module registered
[ 1.677122] PPP Deflate Compression module registered
[ 1.677164] PPP MPPE Compression module registered
[ 1.677171] NET: Registered protocol family 24
[ 1.677245] usbcore: registered new interface driver r8152
[ 1.677291] usbcore: registered new interface driver asix
[ 1.677344] usbcore: registered new interface driver ax88179_178a
[ 1.677384] usbcore: registered new interface driver cdc_ether
[ 1.677421] usbcore: registered new interface driver net1080
[ 1.677461] usbcore: registered new interface driver cdc_subset
[ 1.677497] usbcore: registered new interface driver zaurus
[ 1.677564] usbcore: registered new interface driver cdc_ncm
[ 1.677744] VFIO - User Level meta-driver version: 0.3
[ 1.679294] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.679320] ehci-pci: EHCI PCI platform driver
[ 1.679365] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.679377] ohci-pci: OHCI PCI platform driver
[ 1.679418] ohci-platform: OHCI generic platform driver
[ 1.682192] tegra-xusb 70090000.xusb: USB2 port 0 has OTG_CAP
[ 1.683226] tegra-xusb-padctl 7009f000.xusb_padctl: enabled OTG on UTMI pad 0
[ 1.684445] tegra-xusb 70090000.xusb: extcon 0: (ptrval) id
[ 1.685835] usbcore: registered new interface driver uas
[ 1.685916] usbcore: registered new interface driver usb-storage
[ 1.686071] usbcore: registered new interface driver usbserial
[ 1.688661] tegra-xusb 70090000.xusb: Firmware timestamp: 2023-04-25 07:35:59 UTC, Version: 50.29 release
[ 1.688728] tegra-xusb 70090000.xusb: xHCI Host Controller
[ 1.688759] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 1
[ 1.689546] tegra-xusb 70090000.xusb: hcc params 0x0184f525 hci version 0x100 quirks 0x00050010
[ 1.689594] tegra-xusb 70090000.xusb: irq 61, io mem 0x70090000
[ 1.689802] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.689810] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.689814] usb usb1: Product: xHCI Host Controller
[ 1.689819] usb usb1: Manufacturer: Linux 4.9.337-tegra xhci-hcd
[ 1.689823] usb usb1: SerialNumber: 70090000.xusb
[ 1.690051] tegra-xudc-new 700d0000.xudc: device count: 1
[ 1.690512] hub 1-0:1.0: USB hub found
[ 1.690557] hub 1-0:1.0: 5 ports detected
[ 1.691428] tegra-xusb 70090000.xusb: xHCI Host Controller
[ 1.691440] tegra-xusb 70090000.xusb: new USB bus registered, assigned bus number 2
[ 1.691546] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 1.691653] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[ 1.691659] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.691664] usb usb2: Product: xHCI Host Controller
[ 1.691668] usb usb2: Manufacturer: Linux 4.9.337-tegra xhci-hcd
[ 1.691672] usb usb2: SerialNumber: 70090000.xusb
[ 1.692024] tegra-xudc-new 700d0000.xudc: USB charger detection disabled
[ 1.692042] tegra-xudc-new 700d0000.xudc: vbus state: 1
[ 1.692057] tegra-xudc-new 700d0000.xudc: device mode on: 0
[ 1.692086] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 0
[ 1.692113] tegra-xudc-new 700d0000.xudc: active: 0 => 1
[ 1.692224] hub 2-0:1.0: USB hub found
[ 1.692259] hub 2-0:1.0: 4 ports detected
[ 1.692858] mousedev: PS/2 mouse device common for all mice
[ 1.692977] usbcore: registered new interface driver xpad
[ 1.693156] tegra-xusb 70090000.xusb: Upgrade port 0 to USB3.0
[ 1.693162] tegra-xusb 70090000.xusb: Upgrade port 1 to USB3.0
[ 1.718811] tegra-xusb-padctl 7009f000.xusb_padctl: power on UTMI pads 1
[ 1.824155] max77686-rtc max77620-rtc: rtc core: registered max77620-rtc as rtc0
[ 1.826832] rtc rtc1: alarm rtc device
[ 1.826854] tegra_rtc 7000e000.rtc: rtc core: registered 7000e000.rtc as rtc1
[ 1.826890] tegra_rtc 7000e000.rtc: Tegra internal Real Time Clock
[ 1.827608] i2c /dev entries driver
[ 1.829767] i2c i2c-6: Added multiplexed i2c bus 7
[ 1.830273] i2c i2c-6: Added multiplexed i2c bus 8
[ 1.830281] i2c-mux-gpio cam_i2cmux: 2 port mux on Tegra I2C adapter adapter
[ 1.831296] imx219 7-0010: tegracam sensor driver:imx219_v2.0.6
[ 1.854641] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x10
[ 1.854755] imx219 7-0010: imx219_board_setup: error during i2c read probe (-121)
[ 1.862374] imx219 7-0010: board setup failed
[ 1.866839] imx219: probe of 7-0010 failed with error -121
[ 1.867433] imx219 8-0010: tegracam sensor driver:imx219_v2.0.6
[ 1.890727] tegra-vii2c 546c0000.i2c: no acknowledge from address 0x10
[ 1.890816] imx219 8-0010: imx219_board_setup: error during i2c read probe (-121)
[ 1.898384] imx219 8-0010: board setup failed
[ 1.902832] imx219: probe of 8-0010 failed with error -121
[ 1.904181] max77620-power max77620-power: Event recorder REG_NVERC : 0x0
[ 1.907099] tegra_soctherm 700e2000.soctherm: pllx_offset tz:0 max:14, min:2
[ 1.907106] tegra_soctherm 700e2000.soctherm: pllx_offset tz:2 max:8, min:4
[ 1.907569] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 1.907589] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when cpu reaches 102500 mC
[ 1.907599] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when cpu reaches 100500 mC
[ 1.907730] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 1.907741] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when gpu reaches 103000 mC
[ 1.907748] tegra_soctherm 700e2000.soctherm: throttrip: will throttle when gpu reaches 101000 mC
[ 1.907893] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 1.907904] tegra_soctherm 700e2000.soctherm: thermtrip: will shut down when pll reaches 127000 mC
[ 1.907911] tegra_soctherm 700e2000.soctherm: throttrip: pll: missing hot temperature
[ 1.908085] tegra_soctherm 700e2000.soctherm: failed to register sensor: -19
[ 1.908911] tegra_aotag tegra-aotag: Registering sensor 0
[ 1.908969] tegra_aotag tegra-aotag: Invalid temp readout
[ 1.908995] tegra_aotag tegra-aotag: Invalid temp readout
[ 1.909013] tegra_aotag tegra-aotag: Bound to TZ : ID 0
[ 1.909023] tegra_aotag tegra-aotag: Probe done [SUCCESS]:0
[ 1.909966] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 1.909989] tegra_dfll_action dfll-cdev-cap: Tegra DFLL 'cap cooling device' registered
[ 1.910178] tegra_aotag tegra-aotag: Invalid temp readout
[ 1.910207] tegra_dfll_action dfll-cdev-floor: Tegra DFLL 'floor cooling device' registered
[ 1.910633] parse_throttle_dt_data: Num cap clks = 6
[ 1.910640] parse_throttle_dt_data: clk=cclk_g type=2
[ 1.910656] parse_throttle_dt_data: clk=gpu type=4
[ 1.910686] parse_throttle_dt_data: clk=cap.throttle.c2bus type=0
[ 1.910735] parse_throttle_dt_data: clk=cap.throttle.c3bus type=0
[ 1.910761] parse_throttle_dt_data: clk=cap.throttle.sclk type=0
[ 1.910766] parse_throttle_dt_data: clk=emc type=3
[ 1.911226] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 1.911376] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 1.911572] tegra_throttle_probe: probe successful. #cdevs=4
[ 1.912532] FAN dev name: pwm-fan
[ 1.912610] FAN:gpio request success.
[ 1.912673] pwm_fan_driver pwm-fan: cap state:7, cap pwm:255
[ 1.913068] pwm_fan_driver pwm-fan: got pwm for fan. polarity is normal
[ 1.913258] pwm_fan_driver pwm-fan: fan tach request irq success
[ 1.913269] pwm_fan_driver pwm-fan: tach period: 1000
[ 1.913373] pwm_fan_driver pwm-fan: index 0: pwm=0, rpm=0, rru=40, rrd=40, state:2
[ 1.913379] pwm_fan_driver pwm-fan: index 1: pwm=80, rpm=1000, rru=2, rrd=2, state:2
[ 1.913385] pwm_fan_driver pwm-fan: index 2: pwm=120, rpm=2000, rru=1, rrd=1, state:2
[ 1.913390] pwm_fan_driver pwm-fan: index 3: pwm=160, rpm=3000, rru=1, rrd=1, state:2
[ 1.913395] pwm_fan_driver pwm-fan: index 4: pwm=255, rpm=4000, rru=1, rrd=1, state:3
[ 1.913400] pwm_fan_driver pwm-fan: index 5: pwm=255, rpm=5000, rru=1, rrd=1, state:3
[ 1.913405] pwm_fan_driver pwm-fan: index 6: pwm=255, rpm=6000, rru=1, rrd=1, state:3
[ 1.913410] pwm_fan_driver pwm-fan: index 7: pwm=255, rpm=7000, rru=1, rrd=1, state:4
[ 1.913415] pwm_fan_driver pwm-fan: index 8: pwm=255, rpm=10000, rru=1, rrd=1, state:4
[ 1.913420] pwm_fan_driver pwm-fan: index 9: pwm=255, rpm=11000, rru=1, rrd=1, state:4
[ 1.916508] device-mapper: uevent: version 1.0.3
[ 1.917080] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[ 1.922484] tegra210-cpufreq cpufreq: probe()...completed
[ 1.923235] sdhci: Secure Digital Host Controller Interface driver
[ 1.923237] sdhci: Copyright(c) Pierre Ossman
[ 1.923239] sdhci-pltfm: SDHCI platform and OF driver helper
[ 1.923730] sdhci-tegra sdhci-tegra.0: Got CD GPIO
[ 1.924086] sdhci-tegra sdhci-tegra.0: Client registration for eMC Successful
[ 1.924214] sdhci-tegra sdhci-tegra.0: wakeup init done, cdirq 300
[ 1.928495] tegra-se 70012000.se: tegra_se_probe: complete
[ 1.929045] hidraw: raw HID events driver (C) Jiri Kosina
[ 1.930100] usbcore: registered new interface driver usbhid
[ 1.930102] usbhid: USB HID core driver
[ 1.932382] ashmem: initialized
[ 1.933305] tegra21x_actmon 6000c800.actmon: in actmon_register()...
[ 1.933531] tegra21x_actmon 6000c800.actmon: initialization Completed for the device mc_all
[ 1.935868] nvpmodel: initialized successfully
[ 1.937189] usbcore: registered new interface driver snd-usb-audio
[ 1.937247] No Device Node present for smmu client: snd-soc-dummy !!
[ 1.937252] platform snd-soc-dummy: No iommus property found in DT node, got swgids from fixup(101004000)
[ 1.937272] iommu: Adding device snd-soc-dummy to group 37
[ 1.942695] input: tegra-hda HDMI/DP,pcm=3 as /devices/70030000.hda/sound/card0/input0
[ 1.942806] usb 1-2: new high-speed USB device number 2 using tegra-xusb
[ 1.950386] OPE platform probe
[ 1.950474] OPE platform probe successful
[ 1.950500] OPE platform probe
[ 1.950575] OPE platform probe successful
[ 1.970953] mmc0: SDHCI controller on sdhci-tegra.0 [sdhci-tegra.0] using ADMA 64-bit with 64 bit addr
[ 1.972278] usb 1-2: New USB device found, idVendor=0bda, idProduct=5411
[ 1.972282] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.972285] usb 1-2: Product: 4-Port USB 2.1 Hub
[ 1.972288] usb 1-2: Manufacturer: Generic
[ 1.973238] hub 1-2:1.0: USB hub found
[ 1.973861] hub 1-2:1.0: 4 ports detected
[ 1.975745] tegra-asoc: sound: ADMAIF1 <-> ADMAIF1 mapping ok
[ 1.975877] tegra-asoc: sound: ADMAIF2 <-> ADMAIF2 mapping ok
[ 1.976014] tegra-asoc: sound: ADMAIF3 <-> ADMAIF3 mapping ok
[ 1.976142] tegra-asoc: sound: ADMAIF4 <-> ADMAIF4 mapping ok
[ 1.976272] tegra-asoc: sound: ADMAIF5 <-> ADMAIF5 mapping ok
[ 1.976402] tegra-asoc: sound: ADMAIF6 <-> ADMAIF6 mapping ok
[ 1.976531] tegra-asoc: sound: ADMAIF7 <-> ADMAIF7 mapping ok
[ 1.976677] tegra-asoc: sound: ADMAIF8 <-> ADMAIF8 mapping ok
[ 1.976809] tegra-asoc: sound: ADMAIF9 <-> ADMAIF9 mapping ok
[ 1.976940] tegra-asoc: sound: ADMAIF10 <-> ADMAIF10 mapping ok
[ 1.989209] u32 classifier
[ 1.989211] Actions configured
[ 1.989283] Initializing XFRM netlink socket
[ 1.990112] NET: Registered protocol family 10
[ 1.990874] NET: Registered protocol family 17
[ 1.990886] NET: Registered protocol family 15
[ 1.990970] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 1.991067] Bluetooth: RFCOMM socket layer initialized
[ 1.991077] Bluetooth: RFCOMM ver 1.11
[ 1.991081] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 1.991086] Bluetooth: HIDP socket layer initialized
[ 1.991103] 9pnet: Installing 9P2000 support
[ 1.991151] Key type dns_resolver registered
[ 1.991569] Registered cp15_barrier emulation handler
[ 1.991576] Registered setend emulation handler
[ 1.992604] registered taskstats version 1
[ 1.993151] Adding domain ve2-pd to PM domain host1x-pd
[ 1.993400] Adding domain ve-pd to PM domain host1x-pd
[ 1.995568] isp 54600000.isp: initialized
[ 1.996587] isp 54680000.isp: initialized
[ 2.007069] last reset is due to software reset
[ 2.007073] KERNEL: PMC reset status reg: 0x3
[ 2.007132] BL: PMC reset status reg: 0x3
[ 2.007134] BL: PMIC poweroff Event Recorder: 0x0
[ 2.008582] clk_cbus_recalc_rate: no gbus parent
[ 2.008588] clk_cbus_round_rate: no gbus parent
[ 2.008590] clk_cbus_round_rate: no gbus parent
[ 2.008598] clk_cbus_recalc_rate: no gbus parent
[ 2.008700] clk_cbus_recalc_rate: no gbus parent
[ 2.008704] clk_cbus_round_rate: no gbus parent
[ 2.008706] clk_cbus_round_rate: no gbus parent
[ 2.008709] clk_cbus_recalc_rate: no gbus parent
[ 2.009384] tegra_dvfs: GPU-cap: registered
[ 2.009438] tegra dvfs: vdd-cpu: nominal 1168mV, offset 708000uV, step 19200uV, scaling enabled
[ 2.009441] tegra dvfs: vdd-core: nominal 1125mV, offset 600000uV, step 12500uV, scaling enabled
[ 2.009443] tegra dvfs: vdd-gpu: nominal 1078mV, offset 708000uV, step 10000uV, scaling enabled
[ 2.010839] tegra_dvfs: vdd-gpu-vts: registered
[ 2.011534] tegra_core_action core_dvfs_cdev_floor: Tegra CORE DVFS 'floor cooling device' registered
[ 2.012137] tegra_core_action core_dvfs_cdev_cap: Tegra CORE DVFS 'cap cooling device' registered
[ 2.012627] input: gpio-keys as /devices/gpio-keys/input/input1
[ 2.018243] tegra-pcie 1003000.pcie: link 0 down, retrying
[ 2.044908] tegra_rtc 7000e000.rtc: setting system clock to 2024-08-14 08:41:31 UTC (1723624891)
[ 2.045914] vi 54080000.vi: vi_probe: ++
[ 2.067412] vi 54080000.vi: initialized
[ 2.073838] vi 54080000.vi: subdev nvcsi--2 bound
[ 2.073946] vi 54080000.vi: subdev nvcsi--1 bound
[ 2.075450] Disable partitions left on by BL
[ 2.075454] disb
[ 2.075503] bwmgr: missing cdev-type property
[ 2.075594] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 2.075600] DRAM derating cdev registered.
[ 2.076469] ALSA device list:
[ 2.076472] #0: tegra-hda at 0x70038000 irq 83
[ 2.076475] #1: tegra-snd-t210ref-mobile-rt565x
[ 2.079865] Freeing unused kernel memory: 8640K
[ 2.087232] usb 2-1: new SuperSpeed USB device number 2 using tegra-xusb
[ 2.106798] tegra_cec 70015000.tegra_cec: Can't find physical addresse.
[ 2.106802] tegra_cec 70015000.tegra_cec: tegra_cec_init Done.
[ 2.106862] tegra-xusb-padctl 7009f000.xusb_padctl: power down UTMI pad 1
[ 2.113606] Root device found: mmcblk0p1
[ 2.121014] usb 2-1: New USB device found, idVendor=0bda, idProduct=0411
[ 2.121019] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.121022] usb 2-1: Product: 4-Port USB 3.1 Hub
[ 2.121025] usb 2-1: Manufacturer: Generic
[ 2.126299] hub 2-1:1.0: USB hub found
[ 2.127323] hub 2-1:1.0: 4 ports detected
[ 2.130730] usb 1-2: usb_suspend_both: status 0
[ 2.169296] mmc0: hw tuning done ...
[ 2.169332] mmc0: new ultra high speed SDR104 SDXC card at address 59b4
[ 2.169711] mmcblk0: mmc0:59b4 232 GiB
[ 2.172843] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14
[ 2.198937] usb usb1: usb_suspend_both: status 0
[ 2.290792] usb 2-1: usb_suspend_both: status 0
[ 2.290908] usb usb2: usb_suspend_both: status 0
[ 2.318876] Found dev node: /dev/mmcblk0p1
[ 2.364686] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
[ 2.366523] Rootfs mounted over mmcblk0p1
[ 2.383315] Switching from initrd to actual rootfs
[ 2.423817] tegra-pcie 1003000.pcie: link 0 down, retrying
[ 2.593238] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 2.604561] cgroup: cgroup2: unknown option "nsdelegate,memory_recursiveprot"
[ 2.613527] cgroup: cgroup2: unknown option "nsdelegate"
[ 2.644972] cgroup: cgroup: disabling cgroup2 socket matching due to net_prio or net_cls activation
[ 2.840967] tegra-pcie 1003000.pcie: link 0 down, retrying
[ 2.843040] tegra-pcie 1003000.pcie: link 0 down, ignoring
[ 2.947550] tegra-pcie 1003000.pcie: PCI host bridge to bus 0000:00
[ 2.947556] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
[ 2.947559] pci_bus 0000:00: root bus resource [mem 0x13000000-0x1fffffff]
[ 2.947562] pci_bus 0000:00: root bus resource [mem 0x20000000-0x3fffffff pref]
[ 2.947566] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 2.947585] pci 0000:00:02.0: [10de:0faf] type 01 class 0x060400
[ 2.947649] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 2.947773] iommu: Adding device 0000:00:02.0 to group 38
[ 2.947840] pci 0000:00:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 2.947945] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[ 2.947971] pci 0000:01:00.0: reg 0x10: [io 0x0000-0x00ff]
[ 2.948004] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
[ 2.948027] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
[ 2.948187] pci 0000:01:00.0: supports D1 D2
[ 2.948190] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 2.948338] iommu: Adding device 0000:01:00.0 to group 39
[ 2.958852] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[ 2.958879] pci 0000:00:02.0: BAR 14: assigned [mem 0x13000000-0x130fffff]
[ 2.958882] pci 0000:00:02.0: BAR 13: assigned [io 0x1000-0x1fff]
[ 2.958888] pci 0000:01:00.0: BAR 4: assigned [mem 0x13000000-0x13003fff 64bit]
[ 2.958906] pci 0000:01:00.0: BAR 2: assigned [mem 0x13004000-0x13004fff 64bit]
[ 2.958923] pci 0000:01:00.0: BAR 0: assigned [io 0x1000-0x10ff]
[ 2.958931] pci 0000:00:02.0: PCI bridge to [bus 01]
[ 2.958934] pci 0000:00:02.0: bridge window [io 0x1000-0x1fff]
[ 2.958939] pci 0000:00:02.0: bridge window [mem 0x13000000-0x130fffff]
[ 2.959200] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[ 2.959203] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[ 2.959208] pcie_pme 0000:00:02.0:pcie001: service driver pcie_pme loaded
[ 2.959288] aer 0000:00:02.0:pcie002: service driver aer loaded
[ 2.959469] r8168 0000:01:00.0: enabling device (0000 -> 0003)
[ 2.959486] r8168 Gigabit Ethernet driver 8.045.08-NAPI loaded
[ 2.974303] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Invalid ethernet address 00:00:00:00:00:00, trying device tree node
[ 2.974365] r8168 0000:01:00.0 (unnamed net_device) (uninitialized): Found valid ethernet address 48:b0:2d:3d:4e:28 from device tree
[ 2.974824] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[ 2.974837] 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.106367] random: systemd: uninitialized urandom read (16 bytes read)
[ 3.109720] random: systemd: uninitialized urandom read (16 bytes read)
[ 3.112014] random: systemd: uninitialized urandom read (16 bytes read)
[ 3.163747] fuse init (API version 7.26)
[ 3.202925] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
[ 3.411973] systemd-journald[1938]: Received client request to flush runtime journal.
[ 3.962795] tegra-xusb 70090000.xusb: entering ELPG
[ 3.963816] tegra-pmc: PMC tegra_pmc_utmi_phy_enable_sleepwalk : port 1, speed 3
[ 3.963994] tegra-pmc: PMC tegra_pmc_utmi_phy_enable_sleepwalk : port 2, speed 0
[ 3.964876] tegra-xusb 70090000.xusb: entering ELPG done
[ 4.069118] proc: unrecognized mount option "hidepid=invisible" or missing value
[ 4.119504] random: systemd: uninitialized urandom read (16 bytes read)
[ 4.127264] random: systemd: uninitialized urandom read (16 bytes read)
[ 4.136396] random: systemd: uninitialized urandom read (16 bytes read)
[ 4.197149] proc: unrecognized mount option "hidepid=invisible" or missing value
[ 4.351531] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 4.351554] cpu-throttle-alert cooling device registered.
[ 4.351674] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 4.351689] gpu-throttle-alert cooling device registered.
[ 4.351829] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 4.351842] tegra_soctherm 700e2000.soctherm: soctherm: trip temperature -2147483647 forced to -127000
[ 4.351855] hot-surface-alert cooling device registered.
[ 4.412845] proc: unrecognized mount option "hidepid=invisible" or missing value
[ 4.429584] eth0: 0xffffff800ab8f000, 48:b0:2d:3d:4e:28, IRQ 407
[ 4.470741] nvgpu: 57000000.gpu gm20b_init_clk_setup_sw:1268 [INFO] GPCPLL initial settings: NA mode, M=1, N=34, P=3 (id = 1)
[ 4.504923] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 5.124791] random: ln: uninitialized urandom read (6 bytes read)
[ 5.137900] random: ln: uninitialized urandom read (6 bytes read)
[ 5.147323] random: ln: uninitialized urandom read (6 bytes read)
[ 7.578736] r8168: eth0: link up
[ 7.578759] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 7.888466] random: systemd: uninitialized urandom read (16 bytes read)
[ 8.036230] zram: Added device: zram0
[ 8.036581] zram: Added device: zram1
[ 8.039189] zram: Added device: zram2
[ 8.039534] zram: Added device: zram3
[ 8.056100] zram0: detected capacity change from 0 to 519557120
[ 8.128948] proc: unrecognized mount option "hidepid=invisible" or missing value
[ 8.778735] random: crng init done
[ 8.782144] random: 371 urandom warning(s) missed due to ratelimiting
[ 8.885643] Adding 507376k swap on /dev/zram0. Priority:5 extents:1 across:507376k SS
[ 8.888399] zram1: detected capacity change from 0 to 519557120
[ 8.898658] Adding 507376k swap on /dev/zram1. Priority:5 extents:1 across:507376k SS
[ 8.901502] zram2: detected capacity change from 0 to 519557120
[ 8.914326] Adding 507376k swap on /dev/zram2. Priority:5 extents:1 across:507376k SS
[ 8.917112] zram3: detected capacity change from 0 to 519557120
[ 8.928870] Adding 507376k swap on /dev/zram3. Priority:5 extents:1 across:507376k SS
[ 11.392315] NFS: bad mount option value specified: minorversion=1
[ 13.548701] Bridge firewalling registered
[ 13.586232] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[ 13.656635] Netfilter messages via NETLINK v0.30.
[ 13.771938] ctnetlink v0.93: registering with nfnetlink.
[ 13.859739] IPv6: ADDRCONF(NETDEV_UP): docker0: link is not ready
[ 13.934627] IPv6: ADDRCONF(NETDEV_UP): docker_gwbridge: link is not ready
[ 14.865433] tegra-i2c 7000c000.i2c: no acknowledge from address 0x50
[ 14.873732] tegra-i2c 7000c400.i2c: no acknowledge from address 0x50
[ 14.924768] br0: renamed from ov-001000-wg425
[ 14.975478] vxlan0: renamed from vx-001000-wg425
[ 14.995487] br0: port 1(vxlan0) entered blocking state
[ 14.995492] br0: port 1(vxlan0) entered disabled state
[ 14.995620] device vxlan0 entered promiscuous mode
[ 14.995931] br0: port 1(vxlan0) entered blocking state
[ 14.995935] br0: port 1(vxlan0) entered forwarding state
[ 15.039643] veth0: renamed from vethb1d9990
[ 15.055584] br0: port 2(veth0) entered blocking state
[ 15.055588] br0: port 2(veth0) entered disabled state
[ 15.055710] device veth0 entered promiscuous mode
[ 15.055893] br0: port 2(veth0) entered blocking state
[ 15.055897] br0: port 2(veth0) entered forwarding state
[ 15.166097] eth0: renamed from veth2733190
[ 15.194567] docker_gwbridge: port 1(vethaf6f749) entered blocking state
[ 15.194572] docker_gwbridge: port 1(vethaf6f749) entered disabled state
[ 15.194693] device vethaf6f749 entered promiscuous mode
[ 15.194983] IPv6: ADDRCONF(NETDEV_UP): vethaf6f749: link is not ready
[ 15.194988] docker_gwbridge: port 1(vethaf6f749) entered blocking state
[ 15.194991] docker_gwbridge: port 1(vethaf6f749) entered forwarding state
[ 15.195099] docker_gwbridge: port 1(vethaf6f749) entered disabled state
[ 15.235552] eth1: renamed from veth0f89123
[ 15.260472] IPv6: ADDRCONF(NETDEV_CHANGE): vethaf6f749: link becomes ready
[ 15.260542] docker_gwbridge: port 1(vethaf6f749) entered blocking state
[ 15.260546] docker_gwbridge: port 1(vethaf6f749) entered forwarding state
[ 15.260633] IPv6: ADDRCONF(NETDEV_CHANGE): docker_gwbridge: link becomes ready
[ 15.315409] IPVS: Registered protocols (TCP, UDP)
[ 15.316343] IPVS: Connection hash table configured (size=4096, memory=64Kbytes)
[ 15.316406] IPVS: Creating netns size=1928 id=0
[ 15.316444] IPVS: Creating netns size=1928 id=1
[ 15.316480] IPVS: Creating netns size=1928 id=2
[ 15.316515] IPVS: Creating netns size=1928 id=3
[ 15.316554] IPVS: ipvs loaded.
[ 15.417554] IPVS: [rr] scheduler registered.
[ 33.917409] vdd-fan: disabling
[ 33.917455] vdd-usb-vbus: disabling
[ 33.917487] vdd-usb-vbus2: disabling
[ 33.917597] vddio-sdmmc3-ap: disabling
[ 33.918300] avdd-io-edp-1v05: disabling
[ 33.918332] vdd-usb-hub-en: disabling
There’s one line that says “Kernel command line:”, and it shows systemd.unified_cgroup_hierarchy=0
is feeded in.
Hope someone can guide the path, thanks.