Jetpack 6.0: mgbe_payload_cs_err increasing after MACsec removal on orin

Hi all,
After removing the MACsec feature, the mgbe_payload_cs_err counter is increasing. Could you please check the reason?

remove macsec patch:

diff --git a/nvethernetrm/include/config.tmk b/nvethernetrm/include/config.tmk
index 8df4e70db..02805cd1c 100644
--- a/nvethernetrm/include/config.tmk
+++ b/nvethernetrm/include/config.tmk
@@ -30,15 +30,11 @@ ifeq ($(NV_BUILD_CONFIGURATION_IS_SAFETY),1)
        OSI_STRIPPED_LIB := 1
 else
         NV_COMPONENT_CFLAGS += -DOSI_DEBUG
-        NV_COMPONENT_CFLAGS += -DDEBUG_MACSEC
        OSI_DEBUG := 1
-       DEBUG_MACSEC := 1
 endif
 NV_COMPONENT_CFLAGS += -DHSI_SUPPORT
-NV_COMPONENT_CFLAGS += -DMACSEC_SUPPORT
 NV_COMPONENT_CFLAGS += -DLOG_OSI

 #NV_COMPONENT_CFLAGS += -DMACSEC_KEY_PROGRAM
 HSI_SUPPORT := 1
-MACSEC_SUPPORT := 1
 ccflags-y += $(NV_COMPONENT_CFLAGS)
diff --git a/nvidia-oot/drivers/net/ethernet/nvidia/nvethernet/macsec.h b/nvidia-oot/drivers/net/ethernet/nvidia/nvethernet/macsec.h
index 6cdb828a8..3d20dd326 100644
--- a/nvidia-oot/drivers/net/ethernet/nvidia/nvethernet/macsec.h
+++ b/nvidia-oot/drivers/net/ethernet/nvidia/nvethernet/macsec.h
@@ -237,8 +237,10 @@ struct macsec_priv_data {
        unsigned int pn_window;
        /** MACsec controller init reference count */
        atomic_t ref_count;
+#ifdef MACSEC_SUPPORT
        /** supplicant instance specific data */
        struct macsec_supplicant_data supplicant[OSI_MAX_NUM_SC];
+#endif
        /** next supplicant instance index */
        unsigned short next_supp_idx;
        /** macsec mutex lock */

Thanks

Hi,
If the device cannot be flashed/booted, please refer to the page to get uart log from the device:
Jetson/General debug - eLinux.org
And get logs of host PC and Jetson device for reference. If you are using custom board, you can compare uart log of developer kit and custom board to get more information.
Also please check FAQs:
Jetson AGX Orin FAQ
If possible, we would suggest follow quick start in developer guide to re-flash the system:
Quick Start — NVIDIA Jetson Linux Developer Guide 1 documentation
And see if the issue still persists on a clean-flashed system.
Thanks!

system info

# cat /etc/os-release
PRETTY_NAME="Ubuntu 22.04.4 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.4 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=jammy


# cat /etc/nv_tegra_release
# R36 (release), REVISION: 3.0, GCID: 36191598, BOARD: generic, EABI: aarch64, DATE: Mon May  6 17:34:21 UTC 2024
# KERNEL_VARIANT: oot
TARGET_USERSPACE_LIB_DIR=nvidia
TARGET_USERSPACE_LIB_DIR_PATH=usr/lib/aarch64-linux-gnu/nvidia

# uname -a
Linux gen4orin1 5.15.136-tegra #1 SMP PREEMPT Mon May 6 09:56:39 PDT 2024 aarch64 aarch64 aarch64 GNU/Linux

# iperf3 -v
iperf 3.16 (cJSON 1.7.15)

Reproduction method

we re-flashed the system, but the kernel issue still occurs when testing with iperf3 after apply the MACsec patch.

Orin iperf3 test commands:

taskset -c 5 iperf3 -s -p 30000

taskset -c 4 iperf3 -c xxxx -p 29999 -J -i 1 -b "9.4G" -P 1

other machine iperf3 test commands:

taskset -c 5 iperf3 -s -p 29999

taskset -c 4 iperf3 -c xxxx -p 30000 -J -i 1 -b "9.4G" -P 1

After observing for a while, we will see the mgbe_payload_cs_err counter increase on Orin.

root@orin:~$ ethtool -S eth1 |grep mgbe_payload_cs_err

mgbe_payload_cs_err: 6

Thanks

Hi,

One question here. Why are you modifying some codes there by yourself but not just set MACSEC_SUPPORT to disabled?

I mean your change to macsec.h seems not needed?

Any reason that you want to disable MACsec?

MACsec adds an overhead of 34 bytes per packet. For example, if the MTU is set to 9000, the actual usable MTU will be 8966. Therefore, we would like to disable the MACsec feature.

Just to clarify. Besides the mgbe_payload_cs_err, is there any other functional problem on your side?

There are no other functional issues on our side besides mgbe_payload_cs_err.

Is this situation able to reproduce with NV devkit?

We are using Jetson Linux R36.3.0 .

That didn’t answer my question…

What is the NV devkit?

Orin AGX NVIDIA developer kit.

If you make your own carrier board then we call it custom board.

We are using a custom board. The testing and the error occur on the XFI interface in Jetson Orin Modules.

Hi @Chent

Could you share the dmesg on your device before you applied any patch? I just checked locally but I didn’t see MACsec is enabled by default.

Which means I don’t know why you need to do this test.

We are using the source packages from https://developer.nvidia.com/downloads/embedded/l4t/r36_release_v3.0/sources/public_sources.tbz2.
the kernel source is the downloaded file kernel_src.tbz2, and the network driver source in kernel_oot_modules_src.tbz2.
It is necessary to apply the following patch to the kernel source; otherwise, the network interface cannot be up. The patch is as follows:

diff --git a/hardware/nvidia/t23x/nv-public/nv-platform/tegra234-p3737-0000.dtsi b/hardware/nvidia/t23x/nv-public/nv-platform/tegra234-p3737-0000.dtsi
index 007947449..6520e771d 100644
--- a/hardware/nvidia/t23x/nv-public/nv-platform/tegra234-p3737-0000.dtsi
+++ b/hardware/nvidia/t23x/nv-public/nv-platform/tegra234-p3737-0000.dtsi
@@ -62,26 +62,10 @@
                        nvidia,max-platform-mtu = <16383>;
                        /* 1=enable, 0=disable */
                        nvidia,pause_frames = <1>;
-                       phy-handle = <&mgbe0_aqr113c_phy>;
+                       /* 1:10G, 0:5G */
+                       nvidia,uphy-gbe-mode = <1>;
                        /* 0:XFI 10G, 1:XFI 5G, 2:USXGMII 10G, 3:USXGMII 5G */
                        nvidia,phy-iface-mode = <0>;
-                       nvidia,phy-reset-gpio = <&gpio TEGRA234_MAIN_GPIO(Y, 1) 0>;
-                       nvidia,mdio_addr = <0>;
-
-                       mdio {
-                               compatible = "nvidia,eqos-mdio";
-                               #address-cells = <1>;
-                               #size-cells = <0>;
-
-                               mgbe0_aqr113c_phy: phy@0 {
-                                       compatible = "ethernet-phy-ieee802.3-c45";
-                                       reg = <0x0>;
-                                       nvidia,phy-rst-pdelay-msec = <150>; /* msec */
-                                       nvidia,phy-rst-duration-usec = <221000>; /* usec */
-                                       interrupt-parent = <&gpio>;
-                                       interrupts = <TEGRA234_MAIN_GPIO(Y, 3) IRQ_TYPE_LEVEL_LOW>;
-                               };
-                       };
                };

                nvpps {
diff --git a/hardware/nvidia/t23x/nv-public/tegra234-p3737-0000+p3701-0000.dts b/hardware/nvidia/t23x/nv-public/tegra234-p3737-0000+p3701-0000.dts
index 575970de0..8e5b58671 100644
--- a/hardware/nvidia/t23x/nv-public/tegra234-p3737-0000+p3701-0000.dts
+++ b/hardware/nvidia/t23x/nv-public/tegra234-p3737-0000+p3701-0000.dts
@@ -167,20 +167,10 @@

                ethernet@6800000 {
                        status = "okay";
-
-                       phy-handle = <&mgbe0_phy>;
-                       phy-mode = "10gbase-r";
-
-                       mdio {
-                               #address-cells = <1>;
-                               #size-cells = <0>;
-
-                               mgbe0_phy: phy@0 {
-                                       compatible = "ethernet-phy-ieee802.3-c45";
-                                       reg = <0x0>;
-
-                                       #phy-cells = <0>;
-                               };
+                       nvidia,if-name = "eth1";
+                       fixed-link {
+                               speed = <10000>;
+                               full-duplex;
                        };
                };

dmesg:

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd421]
[    0.000000] Linux version 5.15.136-voyager-1.0-tegra (root@13619bb65dba) (aarch64-buildroot-linux-gnu-gcc.br_real (Buildroot 2022.08) 11.3.0, GNU ld (GNU Binutils) 2.38) #1 SMP PREEMPT Wed Dec 11 07:47:55 Asia 2024 ()
[    0.000000] Machine model: NVIDIA Jetson AGX Orin Developer Kit
[    0.000000] efi: EFI v2.70 by EDK II
[    0.000000] efi: RTPROP=0x82804f198 SMBIOS=0xffff0000 SMBIOS 3.0=0x827a20000 MEMATTR=0x821be4018 ESRT=0x821c77098 RNG=0x814ed0018 MEMRESERVE=0x815a13c18
[    0.000000] random: crng init done
[    0.000000] secureboot: Secure boot disabled
[    0.000000] esrt: Reserving ESRT space from 0x0000000821c77098 to 0x0000000821c770d0.
[    0.000000] Reserved memory: created CMA memory pool at 0x0000000804000000, size 256 MiB
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[    0.000000] NUMA: No NUMA configuration found
[    0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x0000000833ffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x828cc9800-0x828ccbfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x0000000833ffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x00000000fffdffff]
[    0.000000]   node   0: [mem 0x00000000fffe0000-0x00000000ffffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x0000000818ae3fff]
[    0.000000]   node   0: [mem 0x0000000818ae4000-0x0000000818c2bfff]
[    0.000000]   node   0: [mem 0x0000000818c2c000-0x000000082610ffff]
[    0.000000]   node   0: [mem 0x0000000826110000-0x000000082804ffff]
[    0.000000]   node   0: [mem 0x0000000828050000-0x000000082c5fffff]
[    0.000000]   node   0: [mem 0x000000082c600000-0x000000082c7fffff]
[    0.000000]   node   0: [mem 0x000000082c800000-0x000000082cd6ffff]
[    0.000000]   node   0: [mem 0x000000082d700000-0x000000082d7fffff]
[    0.000000]   node   0: [mem 0x0000000832000000-0x0000000833ffffff]
[    0.000000] mminit::pageflags_layout_widths Section 0 Node 4 Zone 2 Lastcpupid 16 Kasantag 0 Flags 24
[    0.000000] mminit::pageflags_layout_shifts Section 21 Node 4 Zone 2 Lastcpupid 16 Kasantag 0
[    0.000000] mminit::pageflags_layout_pgshifts Section 0 Node 60 Zone 58 Lastcpupid 42 Kasantag 0
[    0.000000] mminit::pageflags_layout_nodezoneid Node/Zone ID: 64 -> 58
[    0.000000] mminit::pageflags_layout_usage location: 64 -> 42 layout 42 -> 24 unused 24 -> 0 page-flags
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000833ffffff]
[    0.000000] mminit::memmap_init Initialising map node 0 zone 0 pfns 524288 -> 1048576
[    0.000000] mminit::memmap_init Initialising map node 0 zone 2 pfns 1048576 -> 8601600
[    0.000000] On node 0, zone Normal: 2448 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 18432 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 16384 pages in unavailable ranges
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 29 pages/cpu s80408 r8192 d30184 u118784
[    0.000000] pcpu-alloc: s80408 r8192 d30184 u118784 alloc=29*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: Address authentication (architected algorithm)
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: Spectre-BHB
[    0.000000] CPU features: kernel page table isolation forced ON by KASLR
[    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
[    0.000000] alternatives: patching kernel code
[    0.000000] mminit::zonelist general 0:DMA = 0:DMA
[    0.000000] mminit::zonelist general 0:Normal = 0:Normal 0:DMA
[    0.000000] mminit::zonelist thisnode 0:DMA = 0:DMA
[    0.000000] mminit::zonelist thisnode 0:Normal = 0:Normal 0:DMA
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 7930224
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 mminit_loglevel=4 console=ttyTCU0,115200 console=ttyAMA0,115200 firmware_class.path=/etc/firmware fbcon=map:0 net.ifnames=0 nospectre_bhb video=efifb:off console=tty0 bl_prof_dataptr=2031616@0x82C610000 bl_prof_ro_ptr=65536@0x82C600000
[    0.000000] Unknown kernel command line parameters "bl_prof_dataptr=2031616@0x82C610000 bl_prof_ro_ptr=65536@0x82C600000", will be passed to user space.
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000fbfe0000-0x00000000fffe0000] (64MB)
[    0.000000] Memory: 31146208K/32225728K available (19392K kernel code, 4376K rwdata, 17256K rodata, 8128K init, 530K bss, 817376K reserved, 262144K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] trace event string verifier disabled
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[    0.000000]  Trampoline variant of Tasks RCU enabled.
[    0.000000]  Rude variant of Tasks RCU enabled.
[    0.000000]  Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 960 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000f440000
[    0.000000] arch_timer: cp15 timer(s) running at 31.25MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xe6a171046, max_idle_ns: 881590405314 ns
[    0.000002] sched_clock: 56 bits at 31MHz, resolution 32ns, wraps every 4398046511088ns
[    0.000519] Console: colour dummy device 80x25
[    0.000540] printk: console [tty0] enabled
[    0.000674] Calibrating delay loop (skipped), value calculated using timer frequency.. 62.50 BogoMIPS (lpj=125000)
[    0.000692] pid_max: default: 32768 minimum: 301
[    0.000757] LSM: Security Framework initializing
[    0.000802] Yama: becoming mindful.
[    0.000841] SELinux:  Initializing.
[    0.001079] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.001183] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.003722] rcu: Hierarchical SRCU implementation.
[    0.008934] Tegra Revision: A01 SKU: 210 CPU Process: 0 SoC Process: 0
[    0.009233] Remapping and enabling EFI services.
[    0.010361] smp: Bringing up secondary CPUs ...
[    0.011220] Detected PIPT I-cache on CPU1
[    0.011315] GICv3: CPU1: found redistributor 100 region 0:0x000000000f460000
[    0.011379] CPU1: Booted secondary processor 0x0000000100 [0x410fd421]
[    0.012126] Detected PIPT I-cache on CPU2
[    0.012140] GICv3: CPU2: found redistributor 200 region 0:0x000000000f480000
[    0.012161] CPU2: Booted secondary processor 0x0000000200 [0x410fd421]
[    0.012847] Detected PIPT I-cache on CPU3
[    0.012859] GICv3: CPU3: found redistributor 300 region 0:0x000000000f4a0000
[    0.012877] CPU3: Booted secondary processor 0x0000000300 [0x410fd421]
[    0.015606] Detected PIPT I-cache on CPU4
[    0.015633] GICv3: CPU4: found redistributor 10000 region 0:0x000000000f4c0000
[    0.015665] CPU4: Booted secondary processor 0x0000010000 [0x410fd421]
[    0.016368] Detected PIPT I-cache on CPU5
[    0.016381] GICv3: CPU5: found redistributor 10100 region 0:0x000000000f4e0000
[    0.016402] CPU5: Booted secondary processor 0x0000010100 [0x410fd421]
[    0.017053] Detected PIPT I-cache on CPU6
[    0.017067] GICv3: CPU6: found redistributor 10200 region 0:0x000000000f500000
[    0.017087] CPU6: Booted secondary processor 0x0000010200 [0x410fd421]
[    0.017784] Detected PIPT I-cache on CPU7
[    0.017797] GICv3: CPU7: found redistributor 10300 region 0:0x000000000f520000
[    0.017817] CPU7: Booted secondary processor 0x0000010300 [0x410fd421]
[    0.017887] smp: Brought up 1 node, 8 CPUs
[    0.017895] SMP: Total of 8 processors activated.
[    0.017900] CPU features: detected: 32-bit EL0 Support
[    0.017902] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.017907] CPU features: detected: Common not Private translations
[    0.017909] CPU features: detected: CRC32 instructions
[    0.017911] CPU features: detected: Data cache clean to Point of Persistence
[    0.017913] CPU features: detected: Generic authentication (architected algorithm)
[    0.017914] CPU features: detected: RCpc load-acquire (LDAPR)
[    0.017915] CPU features: detected: LSE atomic instructions
[    0.017917] CPU features: detected: Privileged Access Never
[    0.017919] CPU features: detected: RAS Extension Support
[    0.017923] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.045183] spectre-bhb mitigation disabled by command line option
[    0.071842] CPU: All CPU(s) started at EL2
[    0.077063] devtmpfs: initialized
[    0.095470] KASLR enabled
[    0.095687] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.095716] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.100639] pinctrl core: initialized pinctrl subsystem
[    0.101657] SMBIOS 3.6.0 present.
[    0.101670] DMI: NVIDIA NVIDIA Jetson AGX Orin Developer Kit/Jetson, BIOS 36.3.0-gcid-36191598 05/06/2024
[    0.102263] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.104303] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.104671] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.105016] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.105074] audit: initializing netlink subsys (disabled)
[    0.105214] audit: type=2000 audit(0.100:1): state=initialized audit_enabled=0 res=1
[    0.106769] thermal_sys: Registered thermal governor 'step_wise'
[    0.106773] thermal_sys: Registered thermal governor 'user_space'
[    0.106774] thermal_sys: Registered thermal governor 'power_allocator'
[    0.110733] cpuidle: using governor menu
[    0.110917] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.111025] ASID allocator initialised with 32768 entries
[    0.113023] Serial: AMBA PL011 UART driver
[    0.123665] 31d0000.serial: ttyAMA0 at MMIO 0x31d0000 (irq = 118, base_baud = 0) is a SBSA
[    0.123709] printk: console [ttyAMA0] enabled
[    0.134980] platform bpmp: Fixing up cyclic dependency with 2c60000.external-memory-controller
[    0.143660] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.143666] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.143668] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.143669] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.144602] cryptd: max_cpu_qlen set to 1000
[    0.146357] ACPI: Interpreter disabled.
[    0.148412] iommu: Default domain type: Translated
[    0.148419] iommu: DMA domain TLB invalidation policy: strict mode
[    0.148706] SCSI subsystem initialized
[    0.148796] libata version 3.00 loaded.
[    0.148878] vgaarb: loaded
[    0.149045] usbcore: registered new interface driver usbfs
[    0.149070] usbcore: registered new interface driver hub
[    0.149087] usbcore: registered new device driver usb
[    0.149497] pps_core: LinuxPPS API ver. 1 registered
[    0.149504] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.149516] PTP clock support registered
[    0.149581] EDAC MC: Ver: 3.0.0
[    0.150601] Registered efivars operations
[    0.151217] FPGA manager framework
[    0.151313] Advanced Linux Sound Architecture Driver Initialized.
[    0.152287] clocksource: Switched to clocksource arch_sys_counter
[    0.188738] VFS: Disk quotas dquot_6.6.0
[    0.188803] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.189048] pnp: PnP ACPI: disabled
[    0.192460] NET: Registered PF_INET protocol family
[    0.193004] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.195396] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.195436] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.195471] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.195686] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.197057] TCP: Hash tables configured (established 262144 bind 65536)
[    0.197283] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.197358] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.197604] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.198030] RPC: Registered named UNIX socket transport module.
[    0.198035] RPC: Registered udp transport module.
[    0.198035] RPC: Registered tcp transport module.
[    0.198036] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.198050] PCI: CLS 0 bytes, default 64
[    0.198322] Unpacking initramfs...
[    0.209315] hw perfevents: enabled with armv8_cortex_a78 PMU driver, 7 counters available
[    0.209627] kvm [1]: IPA Size Limit: 48 bits
[    0.209666] kvm [1]: GICv3: no GICV resource entry
[    0.209674] kvm [1]: disabling GICv2 emulation
[    0.209696] kvm [1]: GIC system register CPU interface enabled
[    0.209793] kvm [1]: vgic interrupt IRQ9
[    0.209972] kvm [1]: VHE mode initialized successfully
[    0.213277] Initialise system trusted keyrings
[    0.213450] workingset: timestamp_bits=42 max_order=23 bucket_order=0
[    0.217186] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.217653] NFS: Registering the id_resolver key type
[    0.217683] Key type id_resolver registered
[    0.217685] Key type id_legacy registered
[    0.217746] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.217767] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    0.217793] ntfs: driver 2.1.32 [Flags: R/O].
[    0.218000] 9p: Installing v9fs 9p2000 file system support
[    0.230043] Key type asymmetric registered
[    0.230049] Asymmetric key parser 'x509' registered
[    0.230124] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.230132] io scheduler mq-deadline registered
[    0.230138] io scheduler kyber registered
[    0.241350] EINJ: ACPI disabled.
[    0.254348] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.256208] SuperH (H)SCI(F) driver initialized
[    0.256559] msm_serial: driver initialized
[    0.257189] printk: console [ttyTCU0] enabled
[    0.258074] arm-smmu 8000000.iommu: probing hardware configuration...
[    0.258080] arm-smmu 8000000.iommu: SMMUv2 with:
[    0.258085] arm-smmu 8000000.iommu:  stage 1 translation
[    0.258089] arm-smmu 8000000.iommu:  stage 2 translation
[    0.258093] arm-smmu 8000000.iommu:  nested translation
[    0.258100] arm-smmu 8000000.iommu:  stream matching with 128 register groups
[    0.258107] arm-smmu 8000000.iommu:  128 context banks (0 stage-2 only)
[    0.258138] arm-smmu 8000000.iommu:  Supported page sizes: 0x61311000
[    0.258141] arm-smmu 8000000.iommu:  Stage-1: 48-bit VA -> 48-bit IPA
[    0.258147] arm-smmu 8000000.iommu:  Stage-2: 48-bit IPA -> 48-bit PA
[    0.259155] arm-smmu 10000000.iommu: probing hardware configuration...
[    0.259158] arm-smmu 10000000.iommu: SMMUv2 with:
[    0.259160] arm-smmu 10000000.iommu:         stage 1 translation
[    0.259161] arm-smmu 10000000.iommu:         stage 2 translation
[    0.259162] arm-smmu 10000000.iommu:         nested translation
[    0.259166] arm-smmu 10000000.iommu:         stream matching with 128 register groups
[    0.259168] arm-smmu 10000000.iommu:         128 context banks (0 stage-2 only)
[    0.259172] arm-smmu 10000000.iommu:         Supported page sizes: 0x61311000
[    0.259173] arm-smmu 10000000.iommu:         Stage-1: 48-bit VA -> 48-bit IPA
[    0.259174] arm-smmu 10000000.iommu:         Stage-2: 48-bit IPA -> 48-bit PA
[    0.259528] arm-smmu 12000000.iommu: probing hardware configuration...
[    0.259533] arm-smmu 12000000.iommu: SMMUv2 with:
[    0.259534] arm-smmu 12000000.iommu:         stage 1 translation
[    0.259535] arm-smmu 12000000.iommu:         stage 2 translation
[    0.259535] arm-smmu 12000000.iommu:         nested translation
[    0.259538] arm-smmu 12000000.iommu:         stream matching with 128 register groups
[    0.259540] arm-smmu 12000000.iommu:         128 context banks (0 stage-2 only)
[    0.259545] arm-smmu 12000000.iommu:         Supported page sizes: 0x61311000
[    0.259546] arm-smmu 12000000.iommu:         Stage-1: 48-bit VA -> 48-bit IPA
[    0.259547] arm-smmu 12000000.iommu:         Stage-2: 48-bit IPA -> 48-bit PA
[    0.268236] loop: module loaded
[    0.269035] megasas: 07.717.02.00-rc1
[    0.273032] tun: Universal TUN/TAP device driver, 1.6
[    0.273656] thunder_xcv, ver 1.0
[    0.273688] thunder_bgx, ver 1.0
[    0.273706] nicpf, ver 1.0
[    0.274553] hclge is initializing
[    0.274587] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
[    0.274592] hns3: Copyright (c) 2017 Huawei Corporation.
[    0.274628] e1000: Intel(R) PRO/1000 Network Driver
[    0.274633] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    0.274658] e1000e: Intel(R) PRO/1000 Network Driver
[    0.274663] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    0.274687] igb: Intel(R) Gigabit Ethernet Network Driver
[    0.274694] igb: Copyright (c) 2007-2014 Intel Corporation.
[    0.274716] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    0.274721] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    0.274934] sky2: driver version 1.30
[    0.275600] VFIO - User Level meta-driver version: 0.3
[    0.277136] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.277163] ehci-pci: EHCI PCI platform driver
[    0.277194] ehci-platform: EHCI generic platform driver
[    0.277276] ehci-orion: EHCI orion driver
[    0.277349] ehci-exynos: EHCI Exynos driver
[    0.277410] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.277426] ohci-pci: OHCI PCI platform driver
[    0.277450] ohci-platform: OHCI generic platform driver
[    0.277532] ohci-exynos: OHCI Exynos driver
[    0.277951] usbcore: registered new interface driver usb-storage
[    0.279819] i2c_dev: i2c /dev entries driver
[    0.281140] pps pps0: new PPS source ktimer
[    0.281151] pps pps0: ktimer PPS source registered
[    0.281157] pps_ldisc: PPS line discipline registered
[    0.283286] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[    0.285273] sdhci: Secure Digital Host Controller Interface driver
[    0.285279] sdhci: Copyright(c) Pierre Ossman
[    0.285722] Synopsys Designware Multimedia Card Interface Driver
[    0.286351] sdhci-pltfm: SDHCI platform and OF driver helper
[    0.287479] ledtrig-cpu: registered to indicate activity on CPUs
[    0.288435] SMCCC: SOC_ID: ID = jep106:036b:0234 Revision = 0x00000401
[    0.288987] tegra-bpmp bpmp: Adding to iommu group 0
[    0.290412] tegra-bpmp bpmp: firmware: 2aafe334513692db071c-3b0e1a33cf8
[    0.383172] Freeing initrd memory: 11440K
[    1.785877] clocksource: tsc: mask: 0xffffffffffffff max_cycles: 0xe6a171046, max_idle_ns: 881590405314 ns
[    1.785908] clocksource: osc: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 49772407460 ns
[    1.785911] clocksource: usec: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275 ns
[    1.786147] hid: raw HID events driver (C) Jiri Kosina
[    1.786507] usbcore: registered new interface driver usbhid
[    1.786511] usbhid: USB HID core driver
[    1.790391] optee: probing for conduit method.
[    1.790440] optee: revision 3.22 (e7b5ff3f)
[    1.849849] optee: dynamic shared memory is enabled
[    1.850110] optee: initialized driver
[    1.852677] usbcore: registered new interface driver snd-usb-audio
[    1.854168] NET: Registered PF_PACKET protocol family
[    1.854433] 9pnet: Installing 9P2000 support
[    1.854541] Key type dns_resolver registered
[    1.855675] printk: console [tty0]: printing thread started
[    1.856493] printk: console [ttyTCU0]: printing thread started
[    1.857234] printk: console [ttyAMA0]: printing thread started
[    1.857329] Loading compiled-in X.509 certificates
[    1.870198] Loaded X.509 cert 'Build time autogenerated kernel key: 1865142e48e9d396de717c29c27247841ab4438a'
[    1.924897] tegra-gpcdma 2600000.dma-controller: Adding to iommu group 1
[    1.927028] tegra-gpcdma 2600000.dma-controller: GPC DMA driver register 31 channels
[    1.929383] serial-tegra 3100000.serial: RX in PIO mode
[    1.929389] serial-tegra 3100000.serial: TX in PIO mode
[    1.929528] 3100000.serial: ttyTHS1 at MMIO 0x3100000 (irq = 112, base_baud = 0) is a TEGRA_UART
[    1.931441] serial-tegra 3110000.serial: RX in PIO mode
[    1.931448] serial-tegra 3110000.serial: TX in PIO mode
[    1.931566] 3110000.serial: ttyTHS2 at MMIO 0x3110000 (irq = 207, base_baud = 0) is a TEGRA_UART
[    1.937007] tegra_rtc c2a0000.rtc: registered as rtc1
[    1.937025] tegra_rtc c2a0000.rtc: Tegra internal Real Time Clock
[    1.937682] tegra-i2c 3160000.i2c: Adding to iommu group 1
[    1.945394] tegra-i2c 3180000.i2c: Adding to iommu group 1
[    1.950501] tegra-i2c 3190000.i2c: Adding to iommu group 1
[    1.955497] tegra-i2c 31b0000.i2c: Adding to iommu group 1
[    1.960405] tegra-i2c 31c0000.i2c: Adding to iommu group 1
[    1.966133] tegra-i2c 31e0000.i2c: Adding to iommu group 1
[    1.972310] tegra-i2c c240000.i2c: Adding to iommu group 1
[    1.980037] tegra-i2c c250000.i2c: Adding to iommu group 1
[    2.011222] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 2010000 KHz, changing to: 2035200 KHz
[    2.014359] cpufreq: cpufreq_online: CPU4: Running at unlisted initial frequency: 2012000 KHz, changing to: 2035200 KHz
[    2.016957] sdhci-tegra 3460000.mmc: Adding to iommu group 2
[    2.017988] sdhci-tegra 3400000.mmc: Adding to iommu group 3
[    2.019009] irq: IRQ234: trimming hierarchy from :bus@0:pmc@c360000
[    2.019072] irq: IRQ235: trimming hierarchy from :bus@0:interrupt-controller@f400000-1
[    2.019117] irq: IRQ236: trimming hierarchy from :bus@0:pmc@c360000
[    2.019174] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[    2.426160] ALSA device list:
[    2.426164]   No soundcards found.
[    2.428356] mmc0: CQHCI version 5.10
[    2.464219] mmc0: SDHCI controller on 3460000.mmc [3460000.mmc] using ADMA 64-bit
[    2.478430] mmc1: SDHCI controller on 3400000.mmc [3400000.mmc] using ADMA 64-bit
[    2.479310] Freeing unused kernel memory: 8128K
[    2.479529] Run /init as init process
[    2.479531]   with arguments:
[    2.479533]     /init
[    2.479534]   with environment:
[    2.479534]     HOME=/
[    2.479535]     TERM=linux
[    2.479535]     bl_prof_dataptr=2031616@0x82C610000
[    2.479536]     bl_prof_ro_ptr=65536@0x82C600000
[    2.491181] Checking overlayfs setting...
[    2.500522] Overlayfs is disabled...
[    2.506430] Root device found: mmcblk0p1
[    2.570685] mmc0: Command Queue Engine enabled
[    2.570695] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    2.570956] mmcblk0: mmc0:0001 G1M15M 59.3 GiB
[    2.571879] mmc1: new HS200 MMC card at address 0001
[    2.572049] mmcblk1: mmc1:0001 DJUD4R 119 GiB
[    2.572851] mmcblk1boot0: mmc1:0001 DJUD4R 31.9 MiB
[    2.573304] mmcblk1boot1: mmc1:0001 DJUD4R 31.9 MiB
[    2.573676] mmcblk1rpmb: mmc1:0001 DJUD4R 4.00 MiB, chardev (511:0)
[    2.574566]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15
[    2.574994] mmcblk0boot0: mmc0:0001 G1M15M 31.5 MiB
[    2.575357] mmcblk0boot1: mmc0:0001 G1M15M 31.5 MiB
[    2.575675] mmcblk0rpmb: mmc0:0001 G1M15M 4.00 MiB, chardev (511:1)
[    2.659762] Found dev node: /dev/mmcblk0p1
[    2.676592] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[    2.680369] Rootfs mounted over mmcblk0p1
[    2.692142] Switching from initrd to actual rootfs
[    2.856851] systemd[1]: System time before build time, advancing clock.
[    3.097370] NET: Registered PF_INET6 protocol family
[    3.098680] Segment Routing with IPv6
[    3.098687] In-situ OAM (IOAM) with IPv6
[    3.160337] systemd[1]: systemd 249.11-0ubuntu3.12 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    3.160652] systemd[1]: Detected architecture arm64.
[    3.255962] systemd[1]: Hostname set to <gen4orin1>.
[    3.272419] systemd[1]: Using hardware watchdog 'NVIDIA Tegra186 WDT', version 0, device /dev/watchdog
[    3.272435] systemd[1]: Set hardware watchdog to 2min.
[    3.454688] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[    3.479389] systemd[1]: Configuration file /etc/systemd/system/sys_test_server.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    3.498606] systemd[1]: /etc/systemd/system/nvs-service.service:41: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
[    3.506071] systemd[1]: /etc/systemd/system/nvargus-daemon.service:42: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
[    3.556484] systemd[1]: Queued start job for default target Graphical Interface.
[    3.557895] systemd[1]: Created slice Slice /system/modprobe.
[    3.599721] systemd[1]: Created slice Slice /system/serial-getty.
[    3.642215] systemd[1]: Created slice User and Session Slice.
[    3.686048] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    3.735107] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    3.790844] systemd[1]: Reached target Slice Units.
[    3.831713] systemd[1]: Reached target Mounting snaps.
[    3.886157] systemd[1]: Reached target Mounted snaps.
[    3.939976] systemd[1]: Reached target Swaps.
[    3.997986] systemd[1]: Reached target Local Verity Protected Volumes.
[    4.050744] systemd[1]: Listening on RPCbind Server Activation Socket.
[    4.090689] systemd[1]: Listening on Syslog Socket.
[    4.135551] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.184368] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    4.256579] systemd[1]: Listening on Journal Audit Socket.
[    4.362645] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.415467] systemd[1]: Listening on Journal Socket.
[    4.452004] systemd[1]: Listening on Network Service Netlink Socket.
[    4.452253] systemd[1]: Listening on udev Control Socket.
[    4.464752] systemd[1]: Listening on udev Kernel Socket.
[    4.465725] systemd[1]: Mounting Huge Pages File System...
[    4.466713] systemd[1]: Mounting POSIX Message Queue File System...
[    4.467664] systemd[1]: Mounting Kernel Debug File System...
[    4.468867] systemd[1]: Mounting Kernel Trace File System...
[    4.500468] systemd[1]: Starting Journal Service...
[    4.501716] systemd[1]: Starting Set the console keyboard layout...
[    4.502874] systemd[1]: Starting Create List of Static Device Nodes...
[    4.504105] systemd[1]: Starting Load Kernel Module configfs...
[    4.505292] systemd[1]: Starting Load Kernel Module drm...
[    4.536855] systemd[1]: Starting Load Kernel Module efi_pstore...
[    4.537998] systemd[1]: Starting Load Kernel Module fuse...
[    4.543084] systemd[1]: Condition check resulted in OpenVSwitch configuration for cleanup being skipped.
[    4.544651] systemd[1]: Starting NVIDIA specific first-boot udev script...
[    4.571225] systemd[1]: Started Nameserver information manager.
[    4.571498] systemd[1]: Reached target Preparation for Network.
[    4.571711] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    4.602732] systemd[1]: Starting Load Kernel Modules...
[    4.603759] systemd[1]: Starting Remount Root and Kernel File Systems...
[    4.604755] systemd[1]: Starting Coldplug All udev Devices...
[    4.625605] systemd[1]: Started Journal Service.
[    4.627458] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null). Quota mode: none.
[    4.658928] fuse: init (API version 7.34)
[    4.669997] systemd-journald[237]: Received client request to flush runtime journal.
[    4.699932] nvsciipc: loading out-of-tree module taints kernel.
[    4.701108] nvsciipc: loaded module
[    4.766795] nvmap_heap_init: nvmap_heap_init: created heap block cache
[    4.767382] nvmap_co_device_init: vpr :dma coherent mem declare 0x0000000849800000,914358272
[    4.767393] tegra-carveouts tegra-carveouts: assigned reserved memory node vpr-carveout
[    4.767405] nvmap_page_pool_init: Total RAM pages: 7856980
[    4.767407] nvmap_page_pool_init: nvmap page pool size: 982122 pages (3836 MB)
[    4.767744] nvmap_background_zero_thread: PP zeroing thread starting.
[    4.767770] nvmap_heap_create: created heap vpr base 0x0000000849800000 size (892928KiB)
[    4.767798] nvmap_heap_create: fsi :dma coherent mem declare 0x000000082f000000,16777216
[    4.767800] nvmap_heap_create: created heap fsi base 0x000000082f000000 size (16384KiB)
[    4.831928] tegra-host1x 13e00000.host1x: Adding to iommu group 4
[    4.833114] host1x-context host1x-ctx.0: Adding to iommu group 5
[    4.833227] host1x-context host1x-ctx.1: Adding to iommu group 6
[    4.833320] host1x-context host1x-ctx.2: Adding to iommu group 7
[    4.833412] host1x-context host1x-ctx.3: Adding to iommu group 8
[    4.833499] host1x-context host1x-ctx.4: Adding to iommu group 9
[    4.833586] host1x-context host1x-ctx.5: Adding to iommu group 10
[    4.833667] host1x-context host1x-ctx.6: Adding to iommu group 11
[    4.833751] host1x-context host1x-ctx.7: Adding to iommu group 12
[    4.833841] host1x-context host1x-ctx.8: Adding to iommu group 13
[    4.833930] host1x-context host1x-ctx.9: Adding to iommu group 14
[    4.834016] host1x-context host1x-ctx.10: Adding to iommu group 15
[    4.834099] host1x-context host1x-ctx.11: Adding to iommu group 16
[    4.834184] host1x-context host1x-ctx.12: Adding to iommu group 17
[    4.834270] host1x-context host1x-ctx.13: Adding to iommu group 18
[    4.834356] host1x-context host1x-ctx.14: Adding to iommu group 19
[    4.834444] host1x-context host1x-ctx.15: Adding to iommu group 20
[    5.272919] spi-tegra114 3210000.spi: Adding to iommu group 1
[    5.275312] spi-tegra114 3230000.spi: Adding to iommu group 1
[    5.288496] Inserting ivc_ext.ko module
[    5.318383] at24 0-0050: 256 byte 24c02 EEPROM, read-only
[    5.319532] nvvrs11 4-0020: NVVRS11 Vendor ID: 0x11
[    5.319827] nvvrs11 4-0020: NVVRS11 Model Rev: 0xE1
[    5.319829] nvvrs11 4-0020: NVVRS11 probe successful
[    5.321736] nvvrs11 4-0022: NVVRS11 Vendor ID: 0x11
[    5.324211] nvvrs11 4-0022: NVVRS11 Model Rev: 0xE1
[    5.324213] nvvrs11 4-0022: NVVRS11 probe successful
[    5.325434] tegra-soc-hwpm f100000.hwpm: Adding to iommu group 21
[    5.331772] nvvrs_pseq 4-003c: NVVRS Vendor ID: 0x9
[    5.332059] nvvrs_pseq 4-003c: NVVRS Model Rev: 0x82
[    5.332503] nvvrs_pseq 4-003c: NVVRS PSEQ probe successful
[    5.354828] tegra194-pcie 141a0000.pcie: Adding to iommu group 22
[    5.400928] tsec 15500000.tsec: Adding to iommu group 23
[    5.420116] nvpps c6a0000.nvpps: nvpps_probe
[    5.420220] nvpps c6a0000.nvpps: primary-emac found ethernet@6800000
[    5.420234] nvpps c6a0000.nvpps: primary emac base address 0x6810000
[    5.420237] nvpps c6a0000.nvpps: using ptp notifier method on emac ethernet@6800000
[    5.420238] nvpps c6a0000.nvpps: tsc_res_ns(32)
[    5.420248] nvpps c6a0000.nvpps: PPS GPIO not provided in DT, only Timer mode available
[    5.420809] nvpps c6a0000.nvpps: nvpps cdev(506:0)
[    5.420839] nvpps c6a0000.nvpps: TSC config ptx 0x113
[    5.473925] gic 2a41000.interrupt-controller: GIC IRQ controller registered
[    5.473978] tegra-aconnect bus@0:aconnect@2900000: Tegra ACONNECT bus registered
[    5.480858] tegra194-pcie 141a0000.pcie: host bridge /bus@0/pcie@141a0000 ranges:
[    5.480881] tegra194-pcie 141a0000.pcie:      MEM 0x2800000000..0x2b27ffffff -> 0x2800000000
[    5.480887] tegra194-pcie 141a0000.pcie:      MEM 0x2b28000000..0x2b2fffffff -> 0x0040000000
[    5.480890] tegra194-pcie 141a0000.pcie:       IO 0x003a100000..0x003a1fffff -> 0x003a100000
[    5.481246] tegra194-pcie 141a0000.pcie: iATU unroll: enabled
[    5.481249] tegra194-pcie 141a0000.pcie: Detected iATU regions: 8 outbound, 2 inbound
[    5.483951] tegra234-aon c000000.aon: Adding to iommu group 24
[    5.484474]  c000000.aon:hsp: probed
[    5.484591] tegra234-aon c000000.aon: init done
[    5.508669] thermal-trip-event cpu-throttle-alert: cooling device registered.
[    5.508838] thermal-trip-event gpu-throttle-alert: cooling device registered.
[    5.508971] thermal-trip-event cv0-throttle-alert: cooling device registered.
[    5.509102] thermal-trip-event cv1-throttle-alert: cooling device registered.
[    5.509233] thermal-trip-event cv2-throttle-alert: cooling device registered.
[    5.509364] thermal-trip-event soc0-throttle-alert: cooling device registered.
[    5.509486] thermal-trip-event soc1-throttle-alert: cooling device registered.
[    5.509608] thermal-trip-event soc2-throttle-alert: cooling device registered.
[    5.510328] thermal-trip-event hot-surface-alert: cooling device registered.
[    5.517990] tegra-dce d800000.dce: Adding to iommu group 25
[    5.518368] dce: dce_ipc_channel_init:311  Invalid Channel State [0x0] for ch_type [2]
[    5.518562] dce: tegra_dce_probe:245  Found display consumer device
[    5.519053] dce: dce_mailbox_set_full_interrupt:157  Intr bit set multiple times for MB : [0x5]
[    5.519059] dce: dce_mailbox_set_full_interrupt:157  Intr bit set multiple times for MB : [0x5]
[    5.519312] dce: dce_admin_send_cmd_ver:456  version : [0x3] err : [0x0]
[    5.519511] dce: dce_mailbox_set_full_interrupt:157  Intr bit set multiple times for MB : [0x1]
[    5.519517] dce: dce_admin_setup_clients_ipc:585  Channel Reset Complete for Type [1] ...
[    5.519519] dce: dce_admin_setup_clients_ipc:561  Get queue info failed for [2]
[    5.519713] dce: dce_mailbox_set_full_interrupt:157  Intr bit set multiple times for MB : [0x2]
[    5.519717] dce: dce_mailbox_set_full_interrupt:157  Intr bit set multiple times for MB : [0x2]
[    5.519719] dce: dce_admin_setup_clients_ipc:585  Channel Reset Complete for Type [3] ...
[    5.520693] dce: dce_start_boot_flow:166  DCE_BOOT_DONE
[    5.532040] CAN device driver interface
[    5.547242] tegra-hda 3510000.hda: Adding to iommu group 26
[    5.549096] tegra186-cam-rtcpu bc00000.rtcpu: Adding to iommu group 27
[    5.549987] tegra186-cam-rtcpu bc00000.rtcpu: Trace buffer configured at IOVA=0xbff00000
[    5.556596] tegra-ivc-bus bc00000.rtcpu:ivc-bus: region 0: iova=0xbfec0000-0xbfee027f size=131712
[    5.556633] tegra-ivc-bus bc00000.rtcpu:ivc-bus:echo@0: echo: ver=0 grp=1 RX[16x64]=0x1000-0x1480 TX[16x64]=0x1480-0x1900
[    5.556662] tegra-ivc-bus bc00000.rtcpu:ivc-bus:dbg@1: dbg: ver=0 grp=1 RX[1x512]=0x1900-0x1b80 TX[1x512]=0x1b80-0x1e00
[    5.556683] tegra-ivc-bus bc00000.rtcpu:ivc-bus:dbg@2: dbg: ver=0 grp=1 RX[1x8192]=0x1e00-0x3e80 TX[1x8192]=0x3e80-0x5f00
[    5.556703] tegra-ivc-bus bc00000.rtcpu:ivc-bus:ivccontrol@3: ivccontrol: ver=0 grp=1 RX[64x320]=0x5f00-0xaf80 TX[64x320]=0xaf80-0x10000
[    5.556728] tegra-ivc-bus bc00000.rtcpu:ivc-bus:ivccapture@4: ivccapture: ver=0 grp=1 RX[512x64]=0x10000-0x18080 TX[512x64]=0x18080-0x20100
[    5.556748] tegra-ivc-bus bc00000.rtcpu:ivc-bus:diag@5: diag: ver=0 grp=1 RX[1x64]=0x20100-0x201c0 TX[1x64]=0x201c0-0x20280
[    5.556881] tegra186-cam-rtcpu bc00000.rtcpu: using cam RTCPU IRQ (232)
[    5.556883] tegra186-cam-rtcpu bc00000.rtcpu: tegra_camrtc_mon_create is successful
[    5.557144] tegra186-cam-rtcpu bc00000.rtcpu: firmware version cpu=rce cmd=6 sha1=e2238c99959d2df9350d393f04e1f44e5bef98cb
[    5.557272] tegra-ivc-bus bc00000.rtcpu:ivc-bus:echo@0: ivc channel driver missing
[    5.557274] tegra-ivc-bus bc00000.rtcpu:ivc-bus:dbg@1: ivc channel driver missing
[    5.557275] tegra-ivc-bus bc00000.rtcpu:ivc-bus:dbg@2: ivc channel driver missing
[    5.557276] tegra-ivc-bus bc00000.rtcpu:ivc-bus:ivccontrol@3: ivc channel driver missing
[    5.557277] tegra-ivc-bus bc00000.rtcpu:ivc-bus:ivccapture@4: ivc channel driver missing
[    5.557278] tegra-ivc-bus bc00000.rtcpu:ivc-bus:diag@5: ivc channel driver missing
[    5.557289] tegra-hsp b950000.tegra-hsp: Try increasing MBOX_TX_QUEUE_LEN
[    5.557295] tegra-hsp b950000.tegra-hsp: Try increasing MBOX_TX_QUEUE_LEN
[    5.557297] tegra-hsp b950000.tegra-hsp: Try increasing MBOX_TX_QUEUE_LEN
[    5.557300] tegra-hsp b950000.tegra-hsp: Try increasing MBOX_TX_QUEUE_LEN
[    5.557308] tegra-hsp b950000.tegra-hsp: Try increasing MBOX_TX_QUEUE_LEN
[    5.557310] tegra-hsp b950000.tegra-hsp: Try increasing MBOX_TX_QUEUE_LEN
[    5.557311] tegra-hsp b950000.tegra-hsp: Try increasing MBOX_TX_QUEUE_LEN
[    5.557312] tegra-hsp b950000.tegra-hsp: Try increasing MBOX_TX_QUEUE_LEN
[    5.588299] tegra194-pcie 141a0000.pcie: Link up
[    5.598744] tegra194-pcie 141a0000.pcie: Link up
[    5.598833] tegra194-pcie 141a0000.pcie: PCI host bridge to bus 0005:00
[    5.598837] pci_bus 0005:00: root bus resource [io  0x0000-0xfffff] (bus address [0x3a100000-0x3a1fffff])
[    5.598840] pci_bus 0005:00: root bus resource [mem 0x2b28000000-0x2b2fffffff] (bus address [0x40000000-0x47ffffff])
[    5.598843] pci_bus 0005:00: root bus resource [bus 00-ff]
[    5.598844] pci_bus 0005:00: root bus resource [mem 0x2800000000-0x2b27ffffff pref]
[    5.598887] pci 0005:00:00.0: [10de:229a] type 01 class 0x060400
[    5.599028] pci 0005:00:00.0: PME# supported from D0 D3hot
[    5.602595] pci 0005:01:00.0: [11f8:4328] type 00 class 0x068000
[    5.603316] pci 0005:01:00.0: reg 0x10: [mem 0x00000000-0x00ffffff 64bit pref]
[    5.603586] pci 0005:01:00.0: reg 0x18: [mem 0x00000000-0x03ffffff 64bit pref]
[    5.603816] pci 0005:01:00.0: reg 0x20: [mem 0x00000000-0x03ffffff 64bit pref]
[    5.604204] pci 0005:01:00.0: enabling Extended Tags
[    5.604296] [RCE] TCU debug prints will be routed to traces.
[    5.606183] pci 0005:01:00.0: PME# supported from D0 D3hot D3cold
[    5.607216] irq: IRQ253: trimming hierarchy from :bus@0:pmc@c360000
[    5.607781] pci 0005:01:00.0: 126.024 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x8 link at 0005:00:00.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[    5.607954] ucsi_ccg 1-0008: i2c_transfer failed -121
[    5.607956] ucsi_ccg 1-0008: ucsi_ccg_init failed - -121
[    5.607959] ucsi_ccg: probe of 1-0008 failed with error -121
[    5.608462] pci 0005:01:00.1: [11f8:4328] type 00 class 0x088000
[    5.608818] pci 0005:01:00.1: reg 0x10: [mem 0x00000000-0x007fffff 64bit]
[    5.609532] pci 0005:01:00.1: enabling Extended Tags
[    5.610773] pci 0005:01:00.1: PME# supported from D0 D3hot D3cold
[    5.614479] pci 0005:00:00.0: BAR 15: assigned [mem 0x2800000000-0x2809ffffff 64bit pref]
[    5.614484] pci 0005:00:00.0: BAR 14: assigned [mem 0x2b28000000-0x2b287fffff]
[    5.614487] pci 0005:01:00.0: BAR 2: assigned [mem 0x2800000000-0x2803ffffff 64bit pref]
[    5.614638] pci 0005:01:00.0: BAR 4: assigned [mem 0x2804000000-0x2807ffffff 64bit pref]
[    5.614798] pci 0005:01:00.0: BAR 0: assigned [mem 0x2808000000-0x2808ffffff 64bit pref]
[    5.615059] pci 0005:01:00.1: BAR 0: assigned [mem 0x2b28000000-0x2b287fffff 64bit]
[    5.615190] pci 0005:00:00.0: PCI bridge to [bus 01-ff]
[    5.615201] pci 0005:00:00.0:   bridge window [mem 0x2b28000000-0x2b287fffff]
[    5.615203] pci 0005:00:00.0:   bridge window [mem 0x2800000000-0x2809ffffff 64bit pref]
[    5.615329] pcieport 0005:00:00.0: Adding to iommu group 22
[    5.615421] pcieport 0005:00:00.0: PME: Signaling with IRQ 205
[    5.615540] pcieport 0005:00:00.0: AER: enabled with IRQ 205
[    5.616593] tegra194-pcie 14100000.pcie: Adding to iommu group 28
[    5.618421] tegra194-pcie 14100000.pcie: host bridge /bus@0/pcie@14100000 ranges:
[    5.618439] tegra194-pcie 14100000.pcie:      MEM 0x2080000000..0x20a7ffffff -> 0x2080000000
[    5.618444] tegra194-pcie 14100000.pcie:      MEM 0x20a8000000..0x20afffffff -> 0x0040000000
[    5.618446] tegra194-pcie 14100000.pcie:       IO 0x0030100000..0x00301fffff -> 0x0030100000
[    5.618700] tegra194-pcie 14100000.pcie: iATU unroll: enabled
[    5.618702] tegra194-pcie 14100000.pcie: Detected iATU regions: 8 outbound, 2 inbound
[    5.623174] TT CAN feature is not supported
[    5.623686]   Message RAM Configuration
                | base addr   |0x0c312000|
                | sidfc_flssa |0x00000000|
                | xidfc_flesa |0x00000040|
                | rxf0c_f0sa  |0x000000c0|
                | rxf1c_f1sa  |0x000009c0|
                | rxbc_rbsa   |0x000009c0|
                | txefc_efsa  |0x000009c0|
                | txbc_tbsa   |0x00000a40|
                | tmc_tmsa    |0x00000ec0|
                | mram size   |0x00001000|
[    5.624981] Release 3.2.3 from 09.06.2018
[    5.625153] net can0: mttcan device registered (regs=00000000e4aaa61e, irq=212)
[    5.626654] TT CAN feature is not supported
[    5.627038]   Message RAM Configuration
                | base addr   |0x0c322000|
                | sidfc_flssa |0x00000000|
                | xidfc_flesa |0x00000040|
                | rxf0c_f0sa  |0x000000c0|
                | rxf1c_f1sa  |0x000009c0|
                | rxbc_rbsa   |0x000009c0|
                | txefc_efsa  |0x000009c0|
                | txbc_tbsa   |0x00000a40|
                | tmc_tmsa    |0x00000ec0|
                | mram size   |0x00001000|
[    5.628367] Release 3.2.3 from 09.06.2018
[    5.628576] net can1: mttcan device registered (regs=000000007d545ef5, irq=213)
[    5.667150] scf-pmu-drv scf-pmu: Registered T23x SCF Uncore PMU
[    5.704106] input: NVIDIA Jetson AGX Orin HDA HDMI/DP,pcm=3 as /devices/platform/bus@0/3510000.hda/sound/card0/input1
[    5.705839] input: NVIDIA Jetson AGX Orin HDA HDMI/DP,pcm=7 as /devices/platform/bus@0/3510000.hda/sound/card0/input2
[    5.705900] input: NVIDIA Jetson AGX Orin HDA HDMI/DP,pcm=8 as /devices/platform/bus@0/3510000.hda/sound/card0/input3
[    5.705944] input: NVIDIA Jetson AGX Orin HDA HDMI/DP,pcm=9 as /devices/platform/bus@0/3510000.hda/sound/card0/input4
[    5.710181] tsec 15500000.tsec: tsec fw req success in 100 ms
[    5.711657] nvethernet 6800000.ethernet: Adding to iommu group 29
[    5.713319] nvethernet 6800000.ethernet: failed to read skip mac reset flag, default 0
[    5.713326] nvethernet 6800000.ethernet: failed to read MDIO address
[    5.713332] nvethernet 6800000.ethernet: setting to default DMA bit mask
[    5.719679] nvethernet 6800000.ethernet: failed to get phy reset gpio error: -2
[    5.724826] nvethernet 6800000.ethernet: Ethernet MAC address: 3c:6d:66:0c:02:4d
[    5.725598] -->macsec_probe()
[    5.725637] -->macsec_get_platform_res()
[    5.725669] <--macsec_get_platform_res()
[    5.725670] -->macsec_enable_car()
[    5.725891] <--macsec_enable_car()
[    5.725901] <--macsec_probe()
[    5.725903] nvethernet 6800000.ethernet: Macsec not enabled
[    5.725904] nvethernet 6800000.ethernet: Macsec: Reduced MTU: 1466 Max: 16383
[    5.726247] tsec 15500000.tsec: RISC-V boot using kernel allocated Mem
[    5.731643] nvethernet 6800000.ethernet: eth1 (HW ver: 31) created with 10 DMA channels
[    5.732729] tsec 15500000.tsec: RISC-V boot success
[    5.758410] mc: Linux media interface: v0.10
[    5.761106] nv_platform 13800000.display: Adding to iommu group 30
[    5.762146] platform 13800000.display:nvdisplay-niso: Adding to iommu group 31
[    5.885268] scare-pigeon 13e00000.host1x:vi0-thi@15f00000: syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
[    5.887616] scare-pigeon 13e00000.host1x:vi1-thi@14f00000: syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
[    5.889280] scare-pigeon 13e00000.host1x:isp-thi@14b00000: syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
[    5.920255] videodev: Linux video capture interface: v2.00
[    5.941408] nvdla 15880000.nvdla0: Adding to iommu group 32
[    5.988131] nvdla 15880000.nvdla0: syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
[    5.988429] nvdla 158c0000.nvdla1: Adding to iommu group 33
[    6.016474] nvdla 158c0000.nvdla1: syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
[    6.022725] pva 16000000.pva0: Adding to iommu group 34
[    6.040364] nvvrs-pseq-rtc nvvrs-pseq-rtc: registered as rtc0
[    6.041978] nvvrs-pseq-rtc nvvrs-pseq-rtc: setting system clock to 2025-04-07T10:05:53 UTC (1744020353)
[    6.066155] platform 2901000.i2s: Fixing up cyclic dependency with 8-001c
[    6.073670] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx0: Adding to iommu group 35
[    6.073784] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx0: initialized (streamid=18, iommu=smmu.0x0000000008000000)
[    6.074498] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx1: Adding to iommu group 36
[    6.074565] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx1: initialized (streamid=19, iommu=smmu.0x0000000008000000)
[    6.074827] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx2: Adding to iommu group 37
[    6.074890] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx2: initialized (streamid=20, iommu=smmu.0x0000000008000000)
[    6.075117] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx3: Adding to iommu group 38
[    6.075179] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx3: initialized (streamid=21, iommu=smmu.0x0000000008000000)
[    6.075397] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx4: Adding to iommu group 39
[    6.075461] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx4: initialized (streamid=22, iommu=smmu.0x0000000008000000)
[    6.075738] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx5: Adding to iommu group 40
[    6.075803] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx5: initialized (streamid=23, iommu=smmu.0x0000000008000000)
[    6.076054] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx6: Adding to iommu group 41
[    6.076122] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx6: initialized (streamid=24, iommu=smmu.0x0000000008000000)
[    6.088969] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx7: Adding to iommu group 42
[    6.089384] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx7: initialized (streamid=25, iommu=smmu.0x0000000008000000)
[    6.093454] pva 16000000.pva0: pdata->version is HW_GEN2
[    6.095513] tegra-se 15820000.se: Adding to iommu group 43
[    6.098091] tegra-se 15840000.se: Adding to iommu group 44
[    6.098794] tegra-adma 2930000.dma-controller: Tegra210 ADMA driver registered 32 channels
[    6.102426] tegra-se 15820000.se: registered AES algorithms
[    6.103351] tegra-se 15840000.se: registered HASH algorithms
[    6.104555] pva 16000000.pva0: Completed nvhost_client_device_init
[    6.110995] pva 16000000.pva0: syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
[    6.372928] tegra-vic 15340000.vic: Adding to iommu group 45
[    6.377135] tegra210-admaif 290f000.admaif: Adding to iommu group 46
[    6.433516] tegra-nvdec 15480000.nvdec: Adding to iommu group 47
[    6.450350] tegra-nvenc 154c0000.nvenc: Adding to iommu group 48
[    6.473384] tegra-nvjpg 15380000.nvjpg: Adding to iommu group 49
[    6.473861] tegra194-vi5 13e00000.host1x:vi0@15c00000: Adding to iommu group 50
[    6.474178] tegra194-isp5 14800000.isp: Adding to iommu group 51
[    6.474837] driver not enabled, cannot register any devices
[    6.476434] driver not enabled, cannot register any devices
[    6.476610] tegra194-vi5 13e00000.host1x:vi1@14c00000: Adding to iommu group 52
[    6.476771] (NULL device *): fops function table already registered
[    6.476939] driver not enabled, cannot register any devices
[    6.477690] driver not enabled, cannot register any devices
[    6.478482] tegra-nvjpg 15540000.nvjpg: Adding to iommu group 53
[    6.481859] tegra-ofa 15a50000.ofa: Adding to iommu group 54
[    6.482686] drm drm: [drm] Cannot find any crtc or sizes
[    6.482839] [drm] Initialized tegra 1.0.99 20120330 for drm on minor 0
[    6.725744] tegra194-pcie 14100000.pcie: Phy link never came up
[    7.583476] nvgpu: 17000000.gpu          nvgpu_nvhost_syncpt_init:122  [INFO]  syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000

[    7.724283] tegra194-pcie 14100000.pcie: Phy link never came up
[    7.724383] tegra194-pcie 14100000.pcie: PCI host bridge to bus 0001:00
[    7.724387] pci_bus 0001:00: root bus resource [io  0x100000-0x1fffff] (bus address [0x30100000-0x301fffff])
[    7.724389] pci_bus 0001:00: root bus resource [mem 0x20a8000000-0x20afffffff] (bus address [0x40000000-0x47ffffff])
[    7.724392] pci_bus 0001:00: root bus resource [bus 00-ff]
[    7.724393] pci_bus 0001:00: root bus resource [mem 0x2080000000-0x20a7ffffff pref]
[    7.724441] pci 0001:00:00.0: [10de:229e] type 01 class 0x060400
[    7.724608] pci 0001:00:00.0: PME# supported from D0 D3hot
[    7.729389] pci 0001:00:00.0: PCI bridge to [bus 01-ff]
[    7.729527] pcieport 0001:00:00.0: Adding to iommu group 28
[    7.729638] pcieport 0001:00:00.0: PME: Signaling with IRQ 201
[    7.729781] pcieport 0001:00:00.0: AER: enabled with IRQ 201
[    7.731519] pci_bus 0001:01: busn_res: [bus 01-ff] is released
[    7.731911] pci 0001:00:00.0: Removing from iommu group 28
[    7.731933] pci_bus 0001:00: busn_res: [bus 00-ff] is released
[    7.733766] tegra194-pcie 14160000.pcie: Adding to iommu group 55
[    7.735594] tegra194-pcie 14160000.pcie: host bridge /bus@0/pcie@14160000 ranges:
[    7.735610] tegra194-pcie 14160000.pcie:      MEM 0x2140000000..0x2427ffffff -> 0x2140000000
[    7.735616] tegra194-pcie 14160000.pcie:      MEM 0x2428000000..0x242fffffff -> 0x0040000000
[    7.735619] tegra194-pcie 14160000.pcie:       IO 0x0036100000..0x00361fffff -> 0x0036100000
[    7.735920] tegra194-pcie 14160000.pcie: iATU unroll: enabled
[    7.735922] tegra194-pcie 14160000.pcie: Detected iATU regions: 8 outbound, 2 inbound
[    7.840296] tegra194-pcie 14160000.pcie: Link up
[    7.841781] tegra194-pcie 14160000.pcie: Link up
[    7.841869] tegra194-pcie 14160000.pcie: PCI host bridge to bus 0004:00
[    7.841874] pci_bus 0004:00: root bus resource [io  0x200000-0x2fffff] (bus address [0x36100000-0x361fffff])
[    7.841877] pci_bus 0004:00: root bus resource [mem 0x2428000000-0x242fffffff] (bus address [0x40000000-0x47ffffff])
[    7.841880] pci_bus 0004:00: root bus resource [bus 00-ff]
[    7.841882] pci_bus 0004:00: root bus resource [mem 0x2140000000-0x2427ffffff pref]
[    7.841925] pci 0004:00:00.0: [10de:229c] type 01 class 0x060400
[    7.842074] pci 0004:00:00.0: PME# supported from D0 D3hot
[    7.844914] pci 0004:01:00.0: [14e4:a00b] type 00 class 0x020000
[    7.845091] pci 0004:01:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit]
[    7.845196] pci 0004:01:00.0: reg 0x18: [mem 0x00000000-0x0003ffff 64bit]
[    7.845301] pci 0004:01:00.0: reg 0x20: [mem 0x00000000-0x0000ffff 64bit]
[    7.846195] pci 0004:01:00.0: PME# supported from D0 D3hot D3cold
[    7.846558] pci 0004:01:00.0: reg 0x1ac: [mem 0x00000000-0x0000ffff 64bit]
[    7.846560] pci 0004:01:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0002ffff 64bit] (contains BAR0 for 3 VFs)
[    7.846665] pci 0004:01:00.0: reg 0x1b4: [mem 0x00000000-0x0003ffff 64bit]
[    7.846667] pci 0004:01:00.0: VF(n) BAR2 space: [mem 0x00000000-0x000bffff 64bit] (contains BAR2 for 3 VFs)
[    7.846771] pci 0004:01:00.0: reg 0x1bc: [mem 0x00000000-0x0000ffff 64bit]
[    7.846773] pci 0004:01:00.0: VF(n) BAR4 space: [mem 0x00000000-0x0002ffff 64bit] (contains BAR4 for 3 VFs)
[    7.858780] pci 0004:00:00.0: BAR 14: assigned [mem 0x2428000000-0x24281fffff]
[    7.858788] pci 0004:01:00.0: BAR 2: assigned [mem 0x2428000000-0x242803ffff 64bit]
[    7.858871] pci 0004:01:00.0: BAR 9: assigned [mem 0x2428040000-0x24280fffff 64bit]
[    7.858907] pci 0004:01:00.0: BAR 0: assigned [mem 0x2428100000-0x242810ffff 64bit]
[    7.858989] pci 0004:01:00.0: BAR 4: assigned [mem 0x2428110000-0x242811ffff 64bit]
[    7.859072] pci 0004:01:00.0: BAR 7: assigned [mem 0x2428120000-0x242814ffff 64bit]
[    7.859108] pci 0004:01:00.0: BAR 11: assigned [mem 0x2428150000-0x242817ffff 64bit]
[    7.859143] pci 0004:00:00.0: PCI bridge to [bus 01-ff]
[    7.859147] pci 0004:00:00.0:   bridge window [mem 0x2428000000-0x24281fffff]
[    7.859285] pcieport 0004:00:00.0: Adding to iommu group 55
[    7.859382] pcieport 0004:00:00.0: PME: Signaling with IRQ 203
[    7.859488] pcieport 0004:00:00.0: AER: enabled with IRQ 203
[    7.859805] irq: IRQ286: trimming hierarchy from :bus@0:pmc@c360000
[    7.860273] rt5640 8-001c: Device with ID register 0xffff0000 is not rt5640/39
[    8.141123] brcm-xgbe-pf 0004:01:00.0: Adding to iommu group 55
[    8.141278] brcm-xgbe-pf 0004:01:00.0: enabling device (0000 -> 0002)
[    8.141441] brcm-xgbe-pf 0004:01:00.0: xgmac ioremap done
[    8.142513] brcm-xgbe-pf 0004:01:00.0: multi MSI/MSI-X enablement passed ret=13
[    8.142567] Detected BCM8989X B0 Chip
[    8.142573] BCM8989X-B0 Firmware Rev = 0x50a0
[    8.143838] brcm-xgbe-pf 0004:01:00.0 eth2: net device enabled
[    8.143841] brcm-xgbe-pf 0004:01:00.0: xgbe_config_netdev done
[    8.143888] brcm_xgbe: driver version: 2.0.1
[    8.228678] loop0: detected capacity change from 0 to 8
[    8.255903] nv_nvsciipc_init.sh[659]: found /dev/nvsciipc
[    8.274271] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    8.283207] nvsciipc: set_db start
[    8.283231] nvsciipc: set_db done
[    8.306270] br0: port 1(eth2) entered blocking state
[    8.306285] br0: port 1(eth2) entered disabled state
[    8.306518] device eth2 entered promiscuous mode
[    8.307270] br0: port 2(eth1) entered blocking state
[    8.307277] br0: port 2(eth1) entered disabled state
[    8.307369] device eth1 entered promiscuous mode
[    8.315105] SBMR Programmed is 0x3f3f0809
[    8.356659] nvethernet 6800000.ethernet: [xpcs_lane_bring_up][477][type:0x4][loga-0x0] PCS block lock SUCCESS
[    8.357169] br0: port 2(eth1) entered blocking state
[    8.357174] br0: port 2(eth1) entered forwarding state
[    8.357486] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
[    8.357876] nvethernet 6800000.ethernet eth1: Link is Up - 10Gbps/Full - flow control off
[    8.622402] pstore: Using crash dump compression: deflate
[    8.622480] printk: console [ramoops-1]: printing thread started
[    8.622492] printk: console [ramoops-1] enabled
[    8.622494] pstore: Registered ramoops as persistent store backend
[    8.622495] ramoops: using 0x200000@0x82cdf0000, ecc: 0
[    8.886308] nvgpu: 17000000.gpu                  gk20a_scale_init:541  [INFO]  enabled scaling for GPU

[    9.284318] IPv6: ADDRCONF(NETDEV_CHANGE): eth2: link becomes ready
[    9.284430] br0: port 1(eth2) entered blocking state
[    9.284444] br0: port 1(eth2) entered forwarding state
[    9.578752] zram: Added device: zram0
[    9.579437] zram: Added device: zram1
[    9.579662] zram: Added device: zram2
[    9.579889] zram: Added device: zram3
[    9.582196] zram: Added device: zram4
[    9.584077] zram: Added device: zram5
[    9.585667] zram: Added device: zram6
[    9.585823] zram: Added device: zram7
[    9.615213] zram0: detected capacity change from 0 to 3928496
[    9.629504] Adding 1964244k swap on /dev/zram0.  Priority:5 extents:1 across:1964244k SS
[    9.633012] zram1: detected capacity change from 0 to 3928496
[    9.637972] Adding 1964244k swap on /dev/zram1.  Priority:5 extents:1 across:1964244k SS
[    9.640044] zram2: detected capacity change from 0 to 3928496
[    9.645152] Adding 1964244k swap on /dev/zram2.  Priority:5 extents:1 across:1964244k SS
[    9.647085] zram3: detected capacity change from 0 to 3928496
[    9.652805] Adding 1964244k swap on /dev/zram3.  Priority:5 extents:1 across:1964244k SS
[    9.654733] zram4: detected capacity change from 0 to 3928496
[    9.660141] Adding 1964244k swap on /dev/zram4.  Priority:5 extents:1 across:1964244k SS
[    9.662466] zram5: detected capacity change from 0 to 3928496
[    9.667495] Adding 1964244k swap on /dev/zram5.  Priority:5 extents:1 across:1964244k SS
[    9.669519] zram6: detected capacity change from 0 to 3928496
[    9.674217] Adding 1964244k swap on /dev/zram6.  Priority:5 extents:1 across:1964244k SS
[    9.676189] zram7: detected capacity change from 0 to 3928496
[    9.681421] Adding 1964244k swap on /dev/zram7.  Priority:5 extents:1 across:1964244k SS
[   10.366065] nvidia-modeset: Loading NVIDIA UNIX Open Kernel Mode Setting Driver for aarch64  540.3.0  Release Build  (root@13619bb65dba)  Wed Dec 11 07:51:53 Asia 2024
[   10.623287] NVRM rpcRmApiControl_dce: NVRM_RPC_DCE: Failed RM ctrl call cmd:0x731341 result 0xffff:
[   12.800918] rfkill: input handler disabled

Hi,

Please check whether macsec is enabled by default on your side or not. This log seems not enabled but also enabled. Check what is the exact setting you saw in the driver.
If this is switch case, then it seems not default path for XFI PHY.

The related code is shown below. Our server ret=0, which indicates that macsec_probe was successful. It might just be that the dev_info log message is incorrect?

#ifdef MACSEC_SUPPORT
        ret = macsec_probe(pdata);
        if (ret < 0) {
                dev_err(&pdev->dev, "failed to setup macsec\n");
                goto err_macsec;
        } else if (ret == 1) {
                /* Nothing to do, macsec is not supported */
                dev_info(&pdev->dev, "Macsec not supported/Not enabled in DT\n");
        } else {
                dev_info(&pdev->dev, "Macsec not enabled\n");
                /* Macsec is supported, reduce MTU */
                ndev->mtu -= MACSEC_TAG_ICV_LEN;
                dev_info(&pdev->dev, "Macsec: Reduced MTU: %d Max: %d\n",
                         ndev->mtu, ndev->max_mtu);
        }
#endif /*  MACSEC_SUPPORT */

Hi @Chent

Our default device tree -hardware/nvidia/t23x/nv-public/nv-soc/tegra234-base-overlay.dtsi has “nvidia,macsec-enable = <0>” setting which should disable macsec by default, could you check if that thing is still there in your DT? I think this should be sufficient to disable MACsec and you don’t need to change from the source code.

Please use this method to test whether mgbe_payload_cs_err is increasing or not.

Hi @WayneWWW
After setting nvidia,macsec-enable to 0, the dmesg output :

[Wed Apr  9 15:23:28 2025] nvethernet 6800000.ethernet: Ethernet MAC address: 3c:6d:66:0c:02:4d
[Wed Apr  9 15:23:28 2025] tsec 15500000.tsec: RISC-V boot using kernel allocated Mem
[Wed Apr  9 15:23:28 2025] -->macsec_probe()
[Wed Apr  9 15:23:28 2025] nvethernet 6800000.ethernet: macsec param in DT is missing or disabled
[Wed Apr  9 15:23:28 2025] <--macsec_probe()
[Wed Apr  9 15:23:28 2025] nvethernet 6800000.ethernet: Macsec not supported/Not enabled in DT
[Wed Apr  9 15:23:28 2025] tsec 15500000.tsec: RISC-V boot success

the mgbe_payload_cs_err counter continues to increase.

# ethtool -S eth1 |grep mgbe_payload_cs_err
     mgbe_payload_cs_err: 0
# ethtool -S eth1 |grep mgbe_payload_cs_err
     mgbe_payload_cs_err: 1