The GPU does not work

Hardware Platform (Jetson / GPU) jetson
• DeepStream Version 7.0
• JetPack Version (valid for Jetson only) 6.0
• TensorRT Version 8.6.2.3
• Issue Type( questions, new requirements, bugs) questions
Hello, I am currently operating on the Jetson AGX Orin using DeepStream Python, and I have enabled two Python programs to run concurrently. One program is designed to interconnect multiple RTSP streaming cameras for vehicle detection, while the other interfaces with the RTSP video stream and transmits it to an RTMP server. However, after a certain period of operation, the GPU may go offline, causing the VIC frequency to be fixed at 115 MHz. Below is my pipeline construction code:
vehicle detection code

        pipeline = Gst.Pipeline().new('vehicle-congestion-piepline')

        if not pipeline:
            log.error(" Unable to create Pipeline \n")
        log.info("Creating streamux \n ")

        # Create nvstreammux instance to form batches from one or more sources.
        streammux = Gst.ElementFactory.make("nvstreammux", "Stream-muxer")
        if not streammux:
            log.error(" Unable to create NvStreamMux \n")

        pipeline.add(streammux)
        for i in range(number_sources):
            log.info(f"Creating source_bin {i} \n ")
            url_info = self.INPUT_URLS[i]
            uri_name = url_info['url']
            source_bin = create_source_bin(i, uri_name, rtsp_reconnect=True)
            if not source_bin:
                log.error("Unable to create source bin \n")
            pipeline.add(source_bin)
            padname = "sink_%u" % i
            sinkpad = streammux.get_request_pad(padname)

            if not sinkpad:
                log.error("Unable to create sink pad bin \n")
            srcpad = source_bin.get_static_pad("src")
            if not srcpad:
                log.error("Unable to create src pad bin \n")
            srcpad.link(sinkpad)

        pgie = make_element("nvinfer", "primary-inference")
        tiler = make_element("nvmultistreamtiler", "nvtiler")
        tracker = make_element('nvtracker', 'tracker')
        nvanalytics = make_element("nvdsanalytics", "analytics")
        nvosd = make_element("nvdsosd", "nv-onscreendisplay")
        nvvidconv = make_element("nvvideoconvert", "convertor")
        nvvidconv1 = make_element("nvvideoconvert", "convertor1")
        queue = make_element("queue", 'queue')
        queue1 = make_element("queue", 'queue1')

        h265parse = make_element('h265parse', 'parse')
        h265enc = make_element('nvv4l2h265enc', 'encoder')
        h265enc.set_property("bitrate", 4000000) 
        sink = make_element("fakesink", "fakesink")
        streammux.set_property('width', 1280)
        streammux.set_property('height', 720)
        streammux.set_property('batch-size', number_sources)
        streammux.set_property('enable-padding', 1)
        streammux.set_property('live-source', 1)
        streammux.set_property('drop-pipeline-eos', True)
        streammux.set_property('nvbuf-memory-type', 4)
        streammux.set_property('sync-inputs', True)
        streammux.set_property('buffer-pool-size', 18) 
        streammux.set_property('batched-push-timeout', MUXER_BATCH_TIMEOUT_USEC)

        pgie.set_property('config-file-path', INFERENCE_PATH)
        set_tracker_config(TRACKER_PATH, tracker)
        nvanalytics.set_property("config-file", ANALYTICS_PATH)

        tiler_rows = int(math.sqrt(number_sources))
        tiler_columns = int(math.ceil((1.0 * number_sources) / tiler_rows))
        tiler.set_property("rows", tiler_rows)
        tiler.set_property("columns", tiler_columns)
        tiler.set_property("width", TILED_OUTPUT_WIDTH)
        tiler.set_property("height", TILED_OUTPUT_HEIGHT)
        log.info("Adding elements to Pipeline \n")
        pipeline.add(pgie)
        pipeline.add(queue)
        pipeline.add(queue1)
        pipeline.add(tracker)
        pipeline.add(nvanalytics)
        pipeline.add(tiler)
        pipeline.add(nvvidconv)
        pipeline.add(nvvidconv1)
        pipeline.add(h265parse)
        pipeline.add(h265enc)
        pipeline.add(nvosd)
        pipeline.add(sink)
        log.info("Linking elements in the Pipeline \n")
        streammux.link(queue)
        queue.link(pgie)
        pgie.link(tracker)
        tracker.link(nvanalytics)
        nvanalytics.link(tiler)
        tiler.link(nvvidconv1)
        nvvidconv1.link(nvosd)
        nvosd.link(nvvidconv)
        nvvidconv.link(h265enc) 
        h265enc.link(h265parse)       
        h265parse.link(queue1)
        queue1.link(sink) 

RTSP re-connects to downstream RTMP

    pipeline = Gst.Pipeline().new("multi_pipeline")
    pipeline.connect("element-added", on_element_added)
    if not pipeline:
        log.error(" Unable to create Pipeline \n")
    log.info("Creating streamux \n ")
    streammux = make_element("nvstreammux", "Stream-muxer")
    if not streammux:
        log.error(" Unable to create NvStreamMux \n")
    pipeline.add(streammux)
    for i in range(number_sources):
        log.info("Creating source_bin ", i, " \n ")
        uri_name = rtsp_urls[i]
        source_bin = create_source_bin(i, uri_name, rtsp_reconnect=True)
        if not source_bin:
            log.error("Unable to create source bin \n")
        pipeline.add(source_bin)
        padname = "sink_%u" % i
        sinkpad = streammux.get_request_pad(padname)
        if not sinkpad:
            log.error("Unable to create sink pad bin \n")
        srcpad = source_bin.get_static_pad("src")
        if not srcpad:
            log.error("Unable to create src pad bin \n")
        srcpad.link(sinkpad)

    queue999 = make_element("queue", "queue999")
    queue999.set_property('leaky', 1)
    queue999.set_property('max-size-buffers', 1024)
    queue999.set_property('max-size-bytes', 20971520)
    pipeline.add(queue999)

    nvstreamdemux = make_element('nvstreamdemux', 'nvstreamdemux')

    streammux.set_property('width', 1920)
    streammux.set_property('height', 1080)
    streammux.set_property('batch-size', number_sources)
    streammux.set_property('batched-push-timeout', MUXER_BATCH_TIMEOUT_USEC)
    streammux.set_property('sync-inputs', True)

    log.info("Adding elements to Pipeline \n")
    pipeline.add(nvstreamdemux)

    streammux.link(queue999)
    queue999.link(nvstreamdemux)

    for i in range(number_sources):

        sink = make_element("rtmpsink", f'rtmpsink{str(i)}')
        sink.set_property('sync', 0)
        sink.set_property('location', rtmp_urls[i])

        pipeline.add(sink)

        # creating queue
        queue = make_element("queue", f'queue{str(i)}')
        queue.set_property('leaky', 1)
        queue.set_property('max-size-buffers', 1024)
        queue.set_property('max-size-bytes', 20971520)
        pipeline.add(queue)

        # creating nvvidconv
        nvvideoconvert = make_element("nvvideoconvert", f'convert{str(i)}')
        pipeline.add(nvvideoconvert)

        flvmux = make_element('flvmux', f'flux{str(i)}')
        flvmux.set_property('streamable', True)
        flvmux.set_property('latency', 500000000)
        pipeline.add(flvmux)
        h264parse = make_element('h264parse', f'parse{str(i)}')
        pipeline.add(h264parse)
        encoder = make_element('nvv4l2h264enc', f'encoder{str(i)}')
        pipeline.add(encoder)
        # connect nvstreamdemux -> queue
        padname = "src_%u" % i
        demuxsrcpad = nvstreamdemux.get_request_pad(padname)
        if not demuxsrcpad:
            log.error("Unable to create demux src pad \n")

        queuesinkpad = queue.get_static_pad("sink")
        if not queuesinkpad:
            log.error("Unable to create queue sink pad \n")
        demuxsrcpad.link(queuesinkpad)
        queue.link(nvvideoconvert)
        nvvideoconvert.link(encoder)
        encoder.link(h264parse)
        h264parse.link(flvmux)
        flvmux.link(sink)

kern.log

Sep 26 10:12:37 ubuntu kernel: [313083.957511] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:12:37 ubuntu kernel: [313083.957747] tegra-vic 15340000.vic: V4L2_EncThread: job submission failed: host1x job submission failed: -4
Sep 26 10:12:37 ubuntu kernel: [313083.957791] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:12:37 ubuntu kernel: [313083.957807] tegra-vic 15340000.vic: V4L2_EncThread: job submission failed: host1x job submission failed: -4
Sep 26 10:12:37 ubuntu kernel: [313083.957848] tegra-vic 15340000.vic: V4L2_EncThread: job submission failed: host1x job submission failed: -4
Sep 26 10:12:37 ubuntu kernel: [313083.957879] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:12:37 ubuntu kernel: [313083.958023] tegra-vic 15340000.vic: V4L2_EncThread: job submission failed: host1x job submission failed: -4
Sep 26 10:12:37 ubuntu kernel: [313083.958051] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:12:37 ubuntu kernel: [313083.958077] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:12:37 ubuntu kernel: [313083.958088] tegra-vic 15340000.vic: V4L2_EncThread: job submission failed: host1x job submission failed: -4
Sep 26 10:12:40 ubuntu kernel: [313086.577480] nvmap_alloc_handle: PID 689436: python: WARNING: All NvMap Allocations must have a tag to identify the subsystem allocating memory.Please pass the tag to the API call NvRmMemHanldeAllocAttr() or relevant. 
Sep 26 10:12:40 ubuntu kernel: [313086.595179] nvmap_alloc_handle: PID 689435: python: WARNING: All NvMap Allocations must have a tag to identify the subsystem allocating memory.Please pass the tag to the API call NvRmMemHanldeAllocAttr() or relevant. 
Sep 26 10:14:04 ubuntu kernel: [313171.028098] tegra_drm_ioctl_channel_submit: 7 callbacks suppressed
Sep 26 10:14:04 ubuntu kernel: [313171.028117] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:14:04 ubuntu kernel: [313171.028418] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:14:06 ubuntu kernel: [313172.973122] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:14:06 ubuntu kernel: [313172.973176] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:14:06 ubuntu kernel: [313172.973207] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:14:06 ubuntu kernel: [313172.973212] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:14:06 ubuntu kernel: [313172.973215] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:14:06 ubuntu kernel: [313172.973275] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:14:06 ubuntu kernel: [313172.973350] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 10:15:20 ubuntu kernel: [313246.426104] cpufreq: cpu4,cur:909000,set:2201600,delta:1292600,set ndiv:172

The logs of both programs have no bus callback information after the following time

2024-09-25 20:26:05.247 | INFO     | utils.utils:perf_print_callback:378 - 
**PERF: {'stream0': 25.0, 'stream1': 19.09, 'stream2': 19.09, 'stream3': 25.0, 'stream4': 25.0, 'stream5': 25.0, 'stream6': 24.94}

2024-09-25 20:24:00.980 | INFO     | utils.utils:perf_print_callback:357 - 
**PERF: {'stream0': 24.99, 'stream1': 24.99, 'stream2': 24.99, 'stream3': 24.94}

kern.log (5.2 MB)

After the above problem, I had to restart the jetson device to get it back up and running. So, can you tell me what the reason is.

MaxN mode is an unconstraint power mode(with max CPU/GPU frequency) rather than best performance mode. We don’t suggest using the mode.
Instead, please create the custom power mode in nvpmodel configuration for your use case.

https://docs.nvidia.com/jetson/archives/r36.3/DeveloperGuide/SD/PlatformPowerAndPerformance/JetsonOrinNanoSeriesJetsonOrinNxSeriesAndJetsonAgxOrinSeries.html#supported-modes-and-power-efficiency

So is this due to the maxn mode setting?

Yes, I think it’s the cause of this issue.

Thank you, I will set nvpmodel -m 3, reduce the power to try to see if this problem still occurs

Hello, when I set up the model 3, I still had an error in the kernel after two hours
But this time the gpu is not offline

Sep 26 16:45:46 ubuntu kernel: [928737.858511] cpufreq: cpu0,cur:1139000,set:729600,delta:409400,set ndiv:57
Sep 26 16:46:07 ubuntu kernel: [928758.395323] nvgpu: 17000000.gpu                 tpc_pg_mask_store:1116 [INFO]  no value change, same mask already set
Sep 26 16:46:12 ubuntu kernel: [928763.230658] cpufreq: cpu0,cur:1022000,set:729600,delta:292400,set ndiv:57
Sep 26 16:46:18 ubuntu kernel: [928769.537093] rfkill: input handler enabled
Sep 26 16:46:18 ubuntu kernel: [928769.540106] rtk_btusb: btusb_flush add delay 
Sep 26 16:46:18 ubuntu kernel: [928769.560335] rtk_btusb: btusb_close
Sep 26 16:46:18 ubuntu kernel: [928769.571042] rtk_btcoex: Close BTCOEX
Sep 26 16:46:18 ubuntu kernel: [928769.571050] rtk_btcoex: -x
Sep 26 16:46:18 ubuntu kernel: [928769.749819] NVRM rpcRmApiControl_dce: NVRM_RPC_DCE: Failed RM ctrl call cmd:0x731341 result 0xffff:
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd421]
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Linux version 5.15.136-tegra (buildbrain@mobile-u64-6367-d8000) (aarch64-buildroot-linux-gnu-gcc.br_real (Buildroot 2022.08) 11.3.0, GNU ld (GNU Binutils) 2.38) #1 SMP PREEMPT Mon May 6 09:56:39 PDT 2024 ()
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Machine model: NVIDIA Jetson AGX Orin Developer Kit
Sep 26 16:47:01 ubuntu kernel: [    0.000000] efi: EFI v2.70 by EDK II
Sep 26 16:47:01 ubuntu kernel: [    0.000000] efi: RTPROP=0x1027fbf198 SMBIOS=0xffff0000 SMBIOS 3.0=0x1027990000 MEMATTR=0x1021195018 ESRT=0x10236b8398 RNG=0x10155b0018 MEMRESERVE=0x10160f0c18 
Sep 26 16:47:01 ubuntu kernel: [    0.000000] random: crng init done
Sep 26 16:47:01 ubuntu kernel: [    0.000000] secureboot: Secure boot disabled
Sep 26 16:47:01 ubuntu kernel: [    0.000000] esrt: Reserving ESRT space from 0x00000010236b8398 to 0x00000010236b83d0.
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Reserved memory: created CMA memory pool at 0x0000000ff5000000, size 512 MiB
Sep 26 16:47:01 ubuntu kernel: [    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
Sep 26 16:47:01 ubuntu kernel: [    0.000000] NUMA: No NUMA configuration found
Sep 26 16:47:01 ubuntu kernel: [    0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x0000001033ffffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000] NUMA: NODE_DATA [mem 0x1022d1a6c0-0x1022d1cebf]
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Zone ranges:
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   DMA32    empty
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   Normal   [mem 0x0000000100000000-0x0000001033ffffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Movable zone start for each node
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Early memory node ranges
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   node   0: [mem 0x0000000080000000-0x00000000fffdffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   node   0: [mem 0x00000000fffe0000-0x00000000ffffffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   node   0: [mem 0x0000000100000000-0x0000001018a30fff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   node   0: [mem 0x0000001018a31000-0x0000001018b9bfff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   node   0: [mem 0x0000001018b9c000-0x000000102607ffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   node   0: [mem 0x0000001026080000-0x0000001027fbffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   node   0: [mem 0x0000001027fc0000-0x000000102c5fffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   node   0: [mem 0x000000102c600000-0x000000102c7fffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   node   0: [mem 0x000000102c800000-0x000000102cd6ffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   node   0: [mem 0x000000102d700000-0x000000102d7fffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000]   node   0: [mem 0x0000001032000000-0x0000001033ffffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000] mminit::pageflags_layout_widths Section 0 Node 4 Zone 2 Lastcpupid 16 Kasantag 0 Flags 24
Sep 26 16:47:01 ubuntu kernel: [    0.000000] mminit::pageflags_layout_shifts Section 21 Node 4 Zone 2 Lastcpupid 16 Kasantag 0
Sep 26 16:47:01 ubuntu kernel: [    0.000000] mminit::pageflags_layout_pgshifts Section 0 Node 60 Zone 58 Lastcpupid 42 Kasantag 0
Sep 26 16:47:01 ubuntu kernel: [    0.000000] mminit::pageflags_layout_nodezoneid Node/Zone ID: 64 -> 58
Sep 26 16:47:01 ubuntu kernel: [    0.000000] mminit::pageflags_layout_usage location: 64 -> 42 layout 42 -> 24 unused 24 -> 0 page-flags
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000001033ffffff]
Sep 26 16:47:01 ubuntu kernel: [    0.000000] mminit::memmap_init Initialising map node 0 zone 0 pfns 524288 -> 1048576
Sep 26 16:47:01 ubuntu kernel: [    0.000000] mminit::memmap_init Initialising map node 0 zone 2 pfns 1048576 -> 16990208
Sep 26 16:47:01 ubuntu kernel: [    0.000000] On node 0, zone Normal: 2448 pages in unavailable ranges
Sep 26 16:47:01 ubuntu kernel: [    0.000000] On node 0, zone Normal: 18432 pages in unavailable ranges
Sep 26 16:47:01 ubuntu kernel: [    0.000000] On node 0, zone Normal: 16384 pages in unavailable ranges
Sep 26 16:47:01 ubuntu kernel: [    0.000000] psci: probing for conduit method from DT.
Sep 26 16:47:01 ubuntu kernel: [    0.000000] psci: PSCIv1.1 detected in firmware.
Sep 26 16:47:01 ubuntu kernel: [    0.000000] psci: Using standard PSCI v0.2 function IDs
Sep 26 16:47:01 ubuntu kernel: [    0.000000] psci: Trusted OS migration not required
Sep 26 16:47:01 ubuntu kernel: [    0.000000] psci: SMC Calling Convention v1.2
Sep 26 16:47:01 ubuntu kernel: [    0.000000] percpu: Embedded 29 pages/cpu s80408 r8192 d30184 u118784
Sep 26 16:47:01 ubuntu kernel: [    0.000000] pcpu-alloc: s80408 r8192 d30184 u118784 alloc=29*4096
Sep 26 16:47:01 ubuntu kernel: [    0.000000] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 
Sep 26 16:47:01 ubuntu kernel: [    0.000000] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Detected PIPT I-cache on CPU0
Sep 26 16:47:01 ubuntu kernel: [    0.000000] CPU features: detected: Address authentication (architected algorithm)
Sep 26 16:47:01 ubuntu kernel: [    0.000000] CPU features: detected: GIC system register CPU interface
Sep 26 16:47:01 ubuntu kernel: [    0.000000] CPU features: detected: Virtualization Host Extensions
Sep 26 16:47:01 ubuntu kernel: [    0.000000] CPU features: detected: Hardware dirty bit management
Sep 26 16:47:01 ubuntu kernel: [    0.000000] CPU features: detected: Spectre-v4
Sep 26 16:47:01 ubuntu kernel: [    0.000000] CPU features: detected: Spectre-BHB
Sep 26 16:47:01 ubuntu kernel: [    0.000000] CPU features: kernel page table isolation forced ON by KASLR
Sep 26 16:47:01 ubuntu kernel: [    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
Sep 26 16:47:01 ubuntu kernel: [    0.000000] alternatives: patching kernel code
Sep 26 16:47:01 ubuntu kernel: [    0.000000] mminit::zonelist general 0:DMA = 0:DMA 
Sep 26 16:47:01 ubuntu kernel: [    0.000000] mminit::zonelist general 0:Normal = 0:Normal 0:DMA 
Sep 26 16:47:01 ubuntu kernel: [    0.000000] mminit::zonelist thisnode 0:DMA = 0:DMA 
Sep 26 16:47:01 ubuntu kernel: [    0.000000] mminit::zonelist thisnode 0:Normal = 0:Normal 0:DMA 
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 16187760
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Policy zone: Normal
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Kernel command line: root=PARTUUID=f68c79f9-a563-4f8e-91d2-ebee596c0470 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 nv-auto-config bl_prof_dataptr=2031616@0x102C610000 bl_prof_ro_ptr=65536@0x102C600000 
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Unknown kernel command line parameters "nv-auto-config bl_prof_dataptr=2031616@0x102C610000 bl_prof_ro_ptr=65536@0x102C600000", will be passed to user space.
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
Sep 26 16:47:01 ubuntu kernel: [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
Sep 26 16:47:01 ubuntu kernel: [    0.000000] software IO TLB: mapped [mem 0x00000000fbfe0000-0x00000000fffe0000] (64MB)
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Memory: 63806144K/65780160K available (19712K kernel code, 4056K rwdata, 9968K rodata, 7680K init, 529K bss, 1449728K reserved, 524288K cma-reserved)
Sep 26 16:47:01 ubuntu kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
Sep 26 16:47:01 ubuntu kernel: [    0.000000] trace event string verifier disabled
Sep 26 16:47:01 ubuntu kernel: [    0.000000] rcu: Preemptible hierarchical RCU implementation.
Sep 26 16:47:01 ubuntu kernel: [    0.000000] rcu: 	RCU event tracing is enabled.
Sep 26 16:47:01 ubuntu kernel: [    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=12.
Sep 26 16:47:01 ubuntu kernel: [    0.000000] 	Trampoline variant of Tasks RCU enabled.
Sep 26 16:47:01 ubuntu kernel: [    0.000000] 	Rude variant of Tasks RCU enabled.
Sep 26 16:47:01 ubuntu kernel: [    0.000000] 	Tracing variant of Tasks RCU enabled.
Sep 26 16:47:01 ubuntu kernel: [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Sep 26 16:47:01 ubuntu kernel: [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
Sep 26 16:47:01 ubuntu kernel: [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
Sep 26 16:47:01 ubuntu kernel: [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
Sep 26 16:47:01 ubuntu kernel: [    0.000000] GICv3: 960 SPIs implemented
Sep 26 16:47:01 ubuntu kernel: [    0.000000] GICv3: 0 Extended SPIs implemented
Sep 26 16:47:01 ubuntu kernel: [    0.000000] GICv3: Distributor has no Range Selector support
Sep 26 16:47:01 ubuntu kernel: [    0.000000] Root IRQ handler: gic_handle_irq
Sep 26 16:47:01 ubuntu kernel: [    0.000000] GICv3: 16 PPIs implemented
Sep 26 16:47:01 ubuntu kernel: [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000f440000
Sep 26 16:47:01 ubuntu kernel: [    0.000000] arch_timer: cp15 timer(s) running at 31.25MHz (phys).
Sep 26 16:47:01 ubuntu kernel: [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xe6a171046, max_idle_ns: 881590405314 ns
Sep 26 16:47:01 ubuntu kernel: [    0.000003] sched_clock: 56 bits at 31MHz, resolution 32ns, wraps every 4398046511088ns
Sep 26 16:47:01 ubuntu kernel: [    0.000562] Console: colour dummy device 80x25
Sep 26 16:47:01 ubuntu kernel: [    0.000585] printk: console [tty0] enabled
Sep 26 16:47:01 ubuntu kernel: [    0.000711] Calibrating delay loop (skipped), value calculated using timer frequency.. 62.50 BogoMIPS (lpj=125000)
Sep 26 16:47:01 ubuntu kernel: [    0.000731] pid_max: default: 32768 minimum: 301
Sep 26 16:47:01 ubuntu kernel: [    0.000800] LSM: Security Framework initializing
Sep 26 16:47:01 ubuntu kernel: [    0.000848] Yama: becoming mindful.
Sep 26 16:47:01 ubuntu kernel: [    0.000886] SELinux:  Initializing.
Sep 26 16:47:01 ubuntu kernel: [    0.001228] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Sep 26 16:47:01 ubuntu kernel: [    0.001410] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Sep 26 16:47:01 ubuntu kernel: [    0.004592] rcu: Hierarchical SRCU implementation.
Sep 26 16:47:01 ubuntu kernel: [    0.008788] Tegra Revision: A01 SKU: 208 CPU Process: 0 SoC Process: 0
Sep 26 16:47:01 ubuntu kernel: [    0.009164] Remapping and enabling EFI services.
Sep 26 16:47:01 ubuntu kernel: [    0.010427] smp: Bringing up secondary CPUs ...
Sep 26 16:47:01 ubuntu kernel: [    0.011325] Detected PIPT I-cache on CPU1
Sep 26 16:47:01 ubuntu kernel: [    0.011439] GICv3: CPU1: found redistributor 100 region 0:0x000000000f460000
Sep 26 16:47:01 ubuntu kernel: [    0.011522] CPU1: Booted secondary processor 0x0000000100 [0x410fd421]
Sep 26 16:47:01 ubuntu kernel: [    0.012285] Detected PIPT I-cache on CPU2
Sep 26 16:47:01 ubuntu kernel: [    0.012299] GICv3: CPU2: found redistributor 200 region 0:0x000000000f480000
Sep 26 16:47:01 ubuntu kernel: [    0.012319] CPU2: Booted secondary processor 0x0000000200 [0x410fd421]
Sep 26 16:47:01 ubuntu kernel: [    0.012986] Detected PIPT I-cache on CPU3
Sep 26 16:47:01 ubuntu kernel: [    0.012997] GICv3: CPU3: found redistributor 300 region 0:0x000000000f4a0000
Sep 26 16:47:01 ubuntu kernel: [    0.013019] CPU3: Booted secondary processor 0x0000000300 [0x410fd421]
Sep 26 16:47:01 ubuntu kernel: [    0.015724] Detected PIPT I-cache on CPU4
Sep 26 16:47:01 ubuntu kernel: [    0.015752] GICv3: CPU4: found redistributor 10000 region 0:0x000000000f4c0000
Sep 26 16:47:01 ubuntu kernel: [    0.015788] CPU4: Booted secondary processor 0x0000010000 [0x410fd421]
Sep 26 16:47:01 ubuntu kernel: [    0.016485] Detected PIPT I-cache on CPU5
Sep 26 16:47:01 ubuntu kernel: [    0.016501] GICv3: CPU5: found redistributor 10100 region 0:0x000000000f4e0000
Sep 26 16:47:01 ubuntu kernel: [    0.016524] CPU5: Booted secondary processor 0x0000010100 [0x410fd421]
Sep 26 16:47:01 ubuntu kernel: [    0.017202] Detected PIPT I-cache on CPU6
Sep 26 16:47:01 ubuntu kernel: [    0.017217] GICv3: CPU6: found redistributor 10200 region 0:0x000000000f500000
Sep 26 16:47:01 ubuntu kernel: [    0.017242] CPU6: Booted secondary processor 0x0000010200 [0x410fd421]
Sep 26 16:47:01 ubuntu kernel: [    0.017923] Detected PIPT I-cache on CPU7
Sep 26 16:47:01 ubuntu kernel: [    0.017938] GICv3: CPU7: found redistributor 10300 region 0:0x000000000f520000
Sep 26 16:47:01 ubuntu kernel: [    0.017962] CPU7: Booted secondary processor 0x0000010300 [0x410fd421]
Sep 26 16:47:01 ubuntu kernel: [    0.020695] Detected PIPT I-cache on CPU8
Sep 26 16:47:01 ubuntu kernel: [    0.020727] GICv3: CPU8: found redistributor 20000 region 0:0x000000000f540000
Sep 26 16:47:01 ubuntu kernel: [    0.020761] CPU8: Booted secondary processor 0x0000020000 [0x410fd421]
Sep 26 16:47:01 ubuntu kernel: [    0.021485] Detected PIPT I-cache on CPU9
Sep 26 16:47:01 ubuntu kernel: [    0.021503] GICv3: CPU9: found redistributor 20100 region 0:0x000000000f560000
Sep 26 16:47:01 ubuntu kernel: [    0.021524] CPU9: Booted secondary processor 0x0000020100 [0x410fd421]
Sep 26 16:47:01 ubuntu kernel: [    0.022211] Detected PIPT I-cache on CPU10
Sep 26 16:47:01 ubuntu kernel: [    0.022224] GICv3: CPU10: found redistributor 20200 region 0:0x000000000f580000
Sep 26 16:47:01 ubuntu kernel: [    0.022243] CPU10: Booted secondary processor 0x0000020200 [0x410fd421]
Sep 26 16:47:01 ubuntu kernel: [    0.022939] Detected PIPT I-cache on CPU11
Sep 26 16:47:01 ubuntu kernel: [    0.022952] GICv3: CPU11: found redistributor 20300 region 0:0x000000000f5a0000
Sep 26 16:47:01 ubuntu kernel: [    0.022973] CPU11: Booted secondary processor 0x0000020300 [0x410fd421]
Sep 26 16:47:01 ubuntu kernel: [    0.023050] smp: Brought up 1 node, 12 CPUs
Sep 26 16:47:01 ubuntu kernel: [    0.023060] SMP: Total of 12 processors activated.
Sep 26 16:47:01 ubuntu kernel: [    0.023065] CPU features: detected: 32-bit EL0 Support
Sep 26 16:47:01 ubuntu kernel: [    0.023068] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
Sep 26 16:47:01 ubuntu kernel: [    0.023072] CPU features: detected: Common not Private translations
Sep 26 16:47:01 ubuntu kernel: [    0.023074] CPU features: detected: CRC32 instructions
Sep 26 16:47:01 ubuntu kernel: [    0.023077] CPU features: detected: Data cache clean to Point of Persistence
Sep 26 16:47:01 ubuntu kernel: [    0.023079] CPU features: detected: Generic authentication (architected algorithm)
Sep 26 16:47:01 ubuntu kernel: [    0.023081] CPU features: detected: RCpc load-acquire (LDAPR)
Sep 26 16:47:01 ubuntu kernel: [    0.023081] CPU features: detected: LSE atomic instructions
Sep 26 16:47:01 ubuntu kernel: [    0.023083] CPU features: detected: Privileged Access Never
Sep 26 16:47:01 ubuntu kernel: [    0.023085] CPU features: detected: RAS Extension Support
Sep 26 16:47:01 ubuntu kernel: [    0.023090] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
Sep 26 16:47:01 ubuntu kernel: [    0.050143] spectre-bhb mitigation disabled by command line option
Sep 26 16:47:01 ubuntu kernel: [    0.050143] spectre-bhb mitigation disabled by command line option
Sep 26 16:47:01 ubuntu kernel: [    0.076835] CPU: All CPU(s) started at EL2
Sep 26 16:47:01 ubuntu kernel: [    0.085259] devtmpfs: initialized
Sep 26 16:47:01 ubuntu kernel: [    0.109375] KASLR enabled
Sep 26 16:47:01 ubuntu kernel: [    0.109572] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Sep 26 16:47:01 ubuntu kernel: [    0.109598] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
Sep 26 16:47:01 ubuntu kernel: [    0.119204] pinctrl core: initialized pinctrl subsystem
Sep 26 16:47:01 ubuntu kernel: [    0.120298] SMBIOS 3.6.0 present.
Sep 26 16:47:01 ubuntu kernel: [    0.120310] DMI: NVIDIA NVIDIA Jetson AGX Orin Developer Kit/Jetson, BIOS 36.3.0-gcid-36191598 05/06/2024
Sep 26 16:47:01 ubuntu kernel: [    0.120903] NET: Registered PF_NETLINK/PF_ROUTE protocol family
Sep 26 16:47:01 ubuntu kernel: [    0.123393] DMA: preallocated 8192 KiB GFP_KERNEL pool for atomic allocations
Sep 26 16:47:01 ubuntu kernel: [    0.124086] DMA: preallocated 8192 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Sep 26 16:47:01 ubuntu kernel: [    0.124763] DMA: preallocated 8192 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Sep 26 16:47:01 ubuntu kernel: [    0.124824] audit: initializing netlink subsys (disabled)
Sep 26 16:47:01 ubuntu kernel: [    0.124972] audit: type=2000 audit(0.124:1): state=initialized audit_enabled=0 res=1
Sep 26 16:47:01 ubuntu kernel: [    0.127052] thermal_sys: Registered thermal governor 'step_wise'
Sep 26 16:47:01 ubuntu kernel: [    0.127055] thermal_sys: Registered thermal governor 'user_space'
Sep 26 16:47:01 ubuntu kernel: [    0.127056] thermal_sys: Registered thermal governor 'power_allocator'
Sep 26 16:47:01 ubuntu kernel: [    0.132180] cpuidle: using governor menu
Sep 26 16:47:01 ubuntu kernel: [    0.132394] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
Sep 26 16:47:01 ubuntu kernel: [    0.132560] ASID allocator initialised with 32768 entries
Sep 26 16:47:01 ubuntu kernel: [    0.134832] Serial: AMBA PL011 UART driver
Sep 26 16:47:01 ubuntu kernel: [    0.146291] 31d0000.serial: ttyAMA0 at MMIO 0x31d0000 (irq = 118, base_baud = 0) is a SBSA
Sep 26 16:47:01 ubuntu kernel: [    0.146340] printk: console [ttyAMA0] enabled
Sep 26 16:47:01 ubuntu kernel: [    0.158122] platform bpmp: Fixing up cyclic dependency with 2c60000.external-memory-controller
Sep 26 16:47:01 ubuntu kernel: [    0.167521] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Sep 26 16:47:01 ubuntu kernel: [    0.167530] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
Sep 26 16:47:01 ubuntu kernel: [    0.167531] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Sep 26 16:47:01 ubuntu kernel: [    0.167532] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
Sep 26 16:47:01 ubuntu kernel: [    0.168491] cryptd: max_cpu_qlen set to 1000
Sep 26 16:47:01 ubuntu kernel: [    0.170246] ACPI: Interpreter disabled.
Sep 26 16:47:01 ubuntu kernel: [    0.172196] iommu: Default domain type: Translated 
Sep 26 16:47:01 ubuntu kernel: [    0.172202] iommu: DMA domain TLB invalidation policy: strict mode 
Sep 26 16:47:01 ubuntu kernel: [    0.172554] SCSI subsystem initialized
Sep 26 16:47:01 ubuntu kernel: [    0.172653] libata version 3.00 loaded.
Sep 26 16:47:01 ubuntu kernel: [    0.172741] vgaarb: loaded
Sep 26 16:47:01 ubuntu kernel: [    0.172908] usbcore: registered new interface driver usbfs
Sep 26 16:47:01 ubuntu kernel: [    0.172936] usbcore: registered new interface driver hub
Sep 26 16:47:01 ubuntu kernel: [    0.172956] usbcore: registered new device driver usb
Sep 26 16:47:01 ubuntu kernel: [    0.173376] pps_core: LinuxPPS API ver. 1 registered
Sep 26 16:47:01 ubuntu kernel: [    0.173383] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Sep 26 16:47:01 ubuntu kernel: [    0.173394] PTP clock support registered
Sep 26 16:47:01 ubuntu kernel: [    0.173464] EDAC MC: Ver: 3.0.0
Sep 26 16:47:01 ubuntu kernel: [    0.174527] Registered efivars operations
Sep 26 16:47:01 ubuntu kernel: [    0.175125] FPGA manager framework
Sep 26 16:47:01 ubuntu kernel: [    0.175204] Advanced Linux Sound Architecture Driver Initialized.
Sep 26 16:47:01 ubuntu kernel: [    0.176114] clocksource: Switched to clocksource arch_sys_counter
Sep 26 16:47:01 ubuntu kernel: [    0.214690] VFS: Disk quotas dquot_6.6.0
Sep 26 16:47:01 ubuntu kernel: [    0.214765] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Sep 26 16:47:01 ubuntu kernel: [    0.214992] pnp: PnP ACPI: disabled
Sep 26 16:47:01 ubuntu kernel: [    0.218394] NET: Registered PF_INET protocol family
Sep 26 16:47:01 ubuntu kernel: [    0.218921] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Sep 26 16:47:01 ubuntu kernel: [    0.221306] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear)
Sep 26 16:47:01 ubuntu kernel: [    0.221366] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Sep 26 16:47:01 ubuntu kernel: [    0.221415] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Sep 26 16:47:01 ubuntu kernel: [    0.221847] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Sep 26 16:47:01 ubuntu kernel: [    0.223178] TCP: Hash tables configured (established 524288 bind 65536)
Sep 26 16:47:01 ubuntu kernel: [    0.223423] UDP hash table entries: 32768 (order: 8, 1048576 bytes, linear)
Sep 26 16:47:01 ubuntu kernel: [    0.223549] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, linear)
Sep 26 16:47:01 ubuntu kernel: [    0.223886] NET: Registered PF_UNIX/PF_LOCAL protocol family
Sep 26 16:47:01 ubuntu kernel: [    0.224406] RPC: Registered named UNIX socket transport module.
Sep 26 16:47:01 ubuntu kernel: [    0.224412] RPC: Registered udp transport module.
Sep 26 16:47:01 ubuntu kernel: [    0.224412] RPC: Registered tcp transport module.
Sep 26 16:47:01 ubuntu kernel: [    0.224414] RPC: Registered tcp NFSv4.1 backchannel transport module.
Sep 26 16:47:01 ubuntu kernel: [    0.224436] PCI: CLS 0 bytes, default 64
Sep 26 16:47:01 ubuntu kernel: [    0.224743] Unpacking initramfs...
Sep 26 16:47:01 ubuntu kernel: [    0.237281] hw perfevents: enabled with armv8_cortex_a78 PMU driver, 7 counters available
Sep 26 16:47:01 ubuntu kernel: [    0.237678] kvm [1]: IPA Size Limit: 48 bits
Sep 26 16:47:01 ubuntu kernel: [    0.237718] kvm [1]: GICv3: no GICV resource entry
Sep 26 16:47:01 ubuntu kernel: [    0.237728] kvm [1]: disabling GICv2 emulation
Sep 26 16:47:01 ubuntu kernel: [    0.237756] kvm [1]: GIC system register CPU interface enabled
Sep 26 16:47:01 ubuntu kernel: [    0.237890] kvm [1]: vgic interrupt IRQ9
Sep 26 16:47:01 ubuntu kernel: [    0.238117] kvm [1]: VHE mode initialized successfully
Sep 26 16:47:01 ubuntu kernel: [    0.241472] Initialise system trusted keyrings
Sep 26 16:47:01 ubuntu kernel: [    0.241599] workingset: timestamp_bits=42 max_order=24 bucket_order=0
Sep 26 16:47:01 ubuntu kernel: [    0.245202] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Sep 26 16:47:01 ubuntu kernel: [    0.245638] NFS: Registering the id_resolver key type
Sep 26 16:47:01 ubuntu kernel: [    0.245670] Key type id_resolver registered
Sep 26 16:47:01 ubuntu kernel: [    0.245674] Key type id_legacy registered
Sep 26 16:47:01 ubuntu kernel: [    0.245728] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
Sep 26 16:47:01 ubuntu kernel: [    0.245745] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
Sep 26 16:47:01 ubuntu kernel: [    0.245770] ntfs: driver 2.1.32 [Flags: R/O].
Sep 26 16:47:01 ubuntu kernel: [    0.245986] 9p: Installing v9fs 9p2000 file system support
Sep 26 16:47:01 ubuntu kernel: [    0.257810] Key type asymmetric registered
Sep 26 16:47:01 ubuntu kernel: [    0.257819] Asymmetric key parser 'x509' registered
Sep 26 16:47:01 ubuntu kernel: [    0.257947] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
Sep 26 16:47:01 ubuntu kernel: [    0.257957] io scheduler mq-deadline registered
Sep 26 16:47:01 ubuntu kernel: [    0.257966] io scheduler kyber registered
Sep 26 16:47:01 ubuntu kernel: [    0.268791] EINJ: ACPI disabled.
Sep 26 16:47:01 ubuntu kernel: [    0.280409] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Sep 26 16:47:01 ubuntu kernel: [    0.282244] SuperH (H)SCI(F) driver initialized
Sep 26 16:47:01 ubuntu kernel: [    0.282575] msm_serial: driver initialized
Sep 26 16:47:01 ubuntu kernel: [    0.283134] printk: console [ttyTCU0] enabled
Sep 26 16:47:01 ubuntu kernel: [    0.284031] arm-smmu 8000000.iommu: probing hardware configuration...
Sep 26 16:47:01 ubuntu kernel: [    0.284037] arm-smmu 8000000.iommu: SMMUv2 with:
Sep 26 16:47:01 ubuntu kernel: [    0.284044] arm-smmu 8000000.iommu: 	stage 1 translation
Sep 26 16:47:01 ubuntu kernel: [    0.284046] arm-smmu 8000000.iommu: 	stage 2 translation
Sep 26 16:47:01 ubuntu kernel: [    0.284048] arm-smmu 8000000.iommu: 	nested translation
Sep 26 16:47:01 ubuntu kernel: [    0.284055] arm-smmu 8000000.iommu: 	stream matching with 128 register groups
Sep 26 16:47:01 ubuntu kernel: [    0.284062] arm-smmu 8000000.iommu: 	128 context banks (0 stage-2 only)
Sep 26 16:47:01 ubuntu kernel: [    0.284076] arm-smmu 8000000.iommu: 	Supported page sizes: 0x61311000
Sep 26 16:47:01 ubuntu kernel: [    0.284079] arm-smmu 8000000.iommu: 	Stage-1: 48-bit VA -> 48-bit IPA
Sep 26 16:47:01 ubuntu kernel: [    0.284080] arm-smmu 8000000.iommu: 	Stage-2: 48-bit IPA -> 48-bit PA
Sep 26 16:47:01 ubuntu kernel: [    0.285097] arm-smmu 10000000.iommu: probing hardware configuration...
Sep 26 16:47:01 ubuntu kernel: [    0.285100] arm-smmu 10000000.iommu: SMMUv2 with:
Sep 26 16:47:01 ubuntu kernel: [    0.285103] arm-smmu 10000000.iommu: 	stage 1 translation
Sep 26 16:47:01 ubuntu kernel: [    0.285105] arm-smmu 10000000.iommu: 	stage 2 translation
Sep 26 16:47:01 ubuntu kernel: [    0.285105] arm-smmu 10000000.iommu: 	nested translation
Sep 26 16:47:01 ubuntu kernel: [    0.285108] arm-smmu 10000000.iommu: 	stream matching with 128 register groups
Sep 26 16:47:01 ubuntu kernel: [    0.285112] arm-smmu 10000000.iommu: 	128 context banks (0 stage-2 only)
Sep 26 16:47:01 ubuntu kernel: [    0.285116] arm-smmu 10000000.iommu: 	Supported page sizes: 0x61311000
Sep 26 16:47:01 ubuntu kernel: [    0.285118] arm-smmu 10000000.iommu: 	Stage-1: 48-bit VA -> 48-bit IPA
Sep 26 16:47:01 ubuntu kernel: [    0.285119] arm-smmu 10000000.iommu: 	Stage-2: 48-bit IPA -> 48-bit PA
Sep 26 16:47:01 ubuntu kernel: [    0.285464] arm-smmu 12000000.iommu: probing hardware configuration...
Sep 26 16:47:01 ubuntu kernel: [    0.285469] arm-smmu 12000000.iommu: SMMUv2 with:
Sep 26 16:47:01 ubuntu kernel: [    0.285471] arm-smmu 12000000.iommu: 	stage 1 translation
Sep 26 16:47:01 ubuntu kernel: [    0.285472] arm-smmu 12000000.iommu: 	stage 2 translation
Sep 26 16:47:01 ubuntu kernel: [    0.285473] arm-smmu 12000000.iommu: 	nested translation
Sep 26 16:47:01 ubuntu kernel: [    0.285477] arm-smmu 12000000.iommu: 	stream matching with 128 register groups
Sep 26 16:47:01 ubuntu kernel: [    0.285479] arm-smmu 12000000.iommu: 	128 context banks (0 stage-2 only)
Sep 26 16:47:01 ubuntu kernel: [    0.285483] arm-smmu 12000000.iommu: 	Supported page sizes: 0x61311000
Sep 26 16:47:01 ubuntu kernel: [    0.285484] arm-smmu 12000000.iommu: 	Stage-1: 48-bit VA -> 48-bit IPA
Sep 26 16:47:01 ubuntu kernel: [    0.285485] arm-smmu 12000000.iommu: 	Stage-2: 48-bit IPA -> 48-bit PA
Sep 26 16:47:01 ubuntu kernel: [    0.296162] loop: module loaded
Sep 26 16:47:01 ubuntu kernel: [    0.297037] megasas: 07.717.02.00-rc1
Sep 26 16:47:01 ubuntu kernel: [    0.301275] tun: Universal TUN/TAP device driver, 1.6
Sep 26 16:47:01 ubuntu kernel: [    0.301892] thunder_xcv, ver 1.0
Sep 26 16:47:01 ubuntu kernel: [    0.301916] thunder_bgx, ver 1.0
Sep 26 16:47:01 ubuntu kernel: [    0.301941] nicpf, ver 1.0
Sep 26 16:47:01 ubuntu kernel: [    0.302771] hclge is initializing
Sep 26 16:47:01 ubuntu kernel: [    0.302806] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
Sep 26 16:47:01 ubuntu kernel: [    0.302815] hns3: Copyright (c) 2017 Huawei Corporation.
Sep 26 16:47:01 ubuntu kernel: [    0.302874] e1000: Intel(R) PRO/1000 Network Driver
Sep 26 16:47:01 ubuntu kernel: [    0.302880] e1000: Copyright (c) 1999-2006 Intel Corporation.
Sep 26 16:47:01 ubuntu kernel: [    0.302910] e1000e: Intel(R) PRO/1000 Network Driver
Sep 26 16:47:01 ubuntu kernel: [    0.302914] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Sep 26 16:47:01 ubuntu kernel: [    0.302936] igb: Intel(R) Gigabit Ethernet Network Driver
Sep 26 16:47:01 ubuntu kernel: [    0.302941] igb: Copyright (c) 2007-2014 Intel Corporation.
Sep 26 16:47:01 ubuntu kernel: [    0.302960] igbvf: Intel(R) Gigabit Virtual Function Network Driver
Sep 26 16:47:01 ubuntu kernel: [    0.302966] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
Sep 26 16:47:01 ubuntu kernel: [    0.303184] sky2: driver version 1.30
Sep 26 16:47:01 ubuntu kernel: [    0.303860] VFIO - User Level meta-driver version: 0.3
Sep 26 16:47:01 ubuntu kernel: [    0.305297] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Sep 26 16:47:01 ubuntu kernel: [    0.305310] ehci-pci: EHCI PCI platform driver
Sep 26 16:47:01 ubuntu kernel: [    0.305333] ehci-platform: EHCI generic platform driver
Sep 26 16:47:01 ubuntu kernel: [    0.305407] ehci-orion: EHCI orion driver
Sep 26 16:47:01 ubuntu kernel: [    0.305472] ehci-exynos: EHCI Exynos driver
Sep 26 16:47:01 ubuntu kernel: [    0.305548] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Sep 26 16:47:01 ubuntu kernel: [    0.305579] ohci-pci: OHCI PCI platform driver
Sep 26 16:47:01 ubuntu kernel: [    0.305609] ohci-platform: OHCI generic platform driver
Sep 26 16:47:01 ubuntu kernel: [    0.305683] ohci-exynos: OHCI Exynos driver
Sep 26 16:47:01 ubuntu kernel: [    0.306105] usbcore: registered new interface driver usb-storage
Sep 26 16:47:01 ubuntu kernel: [    0.307925] i2c_dev: i2c /dev entries driver
Sep 26 16:47:01 ubuntu kernel: [    0.309248] pps pps0: new PPS source ktimer
Sep 26 16:47:01 ubuntu kernel: [    0.309257] pps pps0: ktimer PPS source registered
Sep 26 16:47:01 ubuntu kernel: [    0.309267] pps_ldisc: PPS line discipline registered
Sep 26 16:47:01 ubuntu kernel: [    0.311260] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
Sep 26 16:47:01 ubuntu kernel: [    0.313274] sdhci: Secure Digital Host Controller Interface driver
Sep 26 16:47:01 ubuntu kernel: [    0.313279] sdhci: Copyright(c) Pierre Ossman
Sep 26 16:47:01 ubuntu kernel: [    0.313724] Synopsys Designware Multimedia Card Interface Driver
Sep 26 16:47:01 ubuntu kernel: [    0.314354] sdhci-pltfm: SDHCI platform and OF driver helper
Sep 26 16:47:01 ubuntu kernel: [    0.315544] ledtrig-cpu: registered to indicate activity on CPUs
Sep 26 16:47:01 ubuntu kernel: [    0.316469] SMCCC: SOC_ID: ID = jep106:036b:0234 Revision = 0x00000401
Sep 26 16:47:01 ubuntu kernel: [    0.317039] tegra-bpmp bpmp: Adding to iommu group 0
Sep 26 16:47:01 ubuntu kernel: [    0.318441] tegra-bpmp bpmp: firmware: 2aafe334513692db071c-3b0e1a33cf8
Sep 26 16:47:01 ubuntu kernel: [    0.410418] Freeing initrd memory: 11448K
Sep 26 16:47:01 ubuntu kernel: [    3.980696] clocksource: tsc: mask: 0xffffffffffffff max_cycles: 0xe6a171046, max_idle_ns: 881590405314 ns
Sep 26 16:47:01 ubuntu kernel: [    3.980716] clocksource: osc: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 49772407460 ns
Sep 26 16:47:01 ubuntu kernel: [    3.980720] clocksource: usec: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275 ns
Sep 26 16:47:01 ubuntu kernel: [    3.980924] hid: raw HID events driver (C) Jiri Kosina
Sep 26 16:47:01 ubuntu kernel: [    3.981344] usbcore: registered new interface driver usbhid
Sep 26 16:47:01 ubuntu kernel: [    3.981349] usbhid: USB HID core driver
Sep 26 16:47:01 ubuntu kernel: [    3.986337] optee: probing for conduit method.
Sep 26 16:47:01 ubuntu kernel: [    3.986392] optee: revision 3.22 (e7b5ff3f)
Sep 26 16:47:01 ubuntu kernel: [    4.045751] optee: dynamic shared memory is enabled
Sep 26 16:47:01 ubuntu kernel: [    4.046016] optee: initialized driver
Sep 26 16:47:01 ubuntu kernel: [    4.048740] usbcore: registered new interface driver snd-usb-audio
Sep 26 16:47:01 ubuntu kernel: [    4.050389] NET: Registered PF_PACKET protocol family
Sep 26 16:47:01 ubuntu kernel: [    4.050587] 9pnet: Installing 9P2000 support
Sep 26 16:47:01 ubuntu kernel: [    4.050692] Key type dns_resolver registered
Sep 26 16:47:01 ubuntu kernel: [    4.052118] printk: console [tty0]: printing thread started
Sep 26 16:47:01 ubuntu kernel: [    4.053183] printk: console [ttyTCU0]: printing thread started
Sep 26 16:47:01 ubuntu kernel: [    4.054192] printk: console [ttyAMA0]: printing thread started
Sep 26 16:47:01 ubuntu kernel: [    4.054294] Loading compiled-in X.509 certificates
Sep 26 16:47:01 ubuntu kernel: [    4.067548] Loaded X.509 cert 'Build time autogenerated kernel key: dbaa37291f9eb1704a33bc5cf19ca9266fdea8e6'
Sep 26 16:47:01 ubuntu kernel: [    4.144597] gpio-394 (camera-control-output-low): hogged as output/low
Sep 26 16:47:01 ubuntu kernel: [    4.144629] gpio-397 (camera-control-output-low): hogged as output/low
Sep 26 16:47:01 ubuntu kernel: [    4.144651] gpio-487 (camera-control-output-low): hogged as output/low
Sep 26 16:47:01 ubuntu kernel: [    4.144667] gpio-486 (camera-control-output-low): hogged as output/low
Sep 26 16:47:01 ubuntu kernel: [    4.148165] tegra-gpcdma 2600000.dma-controller: Adding to iommu group 1
Sep 26 16:47:01 ubuntu kernel: [    4.150001] tegra-gpcdma 2600000.dma-controller: GPC DMA driver register 31 channels
Sep 26 16:47:01 ubuntu kernel: [    4.151770] serial-tegra 3100000.serial: RX in PIO mode
Sep 26 16:47:01 ubuntu kernel: [    4.151775] serial-tegra 3100000.serial: TX in PIO mode
Sep 26 16:47:01 ubuntu kernel: [    4.151847] 3100000.serial: ttyTHS1 at MMIO 0x3100000 (irq = 112, base_baud = 0) is a TEGRA_UART
Sep 26 16:47:01 ubuntu kernel: [    4.152401] serial-tegra 3110000.serial: RX in PIO mode
Sep 26 16:47:01 ubuntu kernel: [    4.152405] serial-tegra 3110000.serial: TX in PIO mode
Sep 26 16:47:01 ubuntu kernel: [    4.152445] 3110000.serial: ttyTHS2 at MMIO 0x3110000 (irq = 207, base_baud = 0) is a TEGRA_UART
Sep 26 16:47:01 ubuntu kernel: [    4.154720] tegra_rtc c2a0000.rtc: registered as rtc1
Sep 26 16:47:01 ubuntu kernel: [    4.154729] tegra_rtc c2a0000.rtc: Tegra internal Real Time Clock
Sep 26 16:47:01 ubuntu kernel: [    4.155143] tegra-i2c 3160000.i2c: Adding to iommu group 1
Sep 26 16:47:01 ubuntu kernel: [    4.159805] tegra-i2c 3180000.i2c: Adding to iommu group 1
Sep 26 16:47:01 ubuntu kernel: [    4.165667] tegra-i2c 3190000.i2c: Adding to iommu group 1
Sep 26 16:47:01 ubuntu kernel: [    4.171818] tegra-i2c 31b0000.i2c: Adding to iommu group 1
Sep 26 16:47:01 ubuntu kernel: [    4.177767] tegra-i2c 31c0000.i2c: Adding to iommu group 1
Sep 26 16:47:01 ubuntu kernel: [    4.186134] tegra-i2c 31e0000.i2c: Adding to iommu group 1
Sep 26 16:47:01 ubuntu kernel: [    4.191954] tegra-i2c c240000.i2c: Adding to iommu group 1
Sep 26 16:47:01 ubuntu kernel: [    4.198438] tegra-i2c c250000.i2c: Adding to iommu group 1
Sep 26 16:47:01 ubuntu kernel: [    4.235766] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 2009000 KHz, changing to: 2035200 KHz
Sep 26 16:47:01 ubuntu kernel: [    4.241339] cpufreq: cpufreq_online: CPU4: Running at unlisted initial frequency: 2007000 KHz, changing to: 2035200 KHz
Sep 26 16:47:01 ubuntu kernel: [    4.250501] cpufreq: cpufreq_online: CPU8: Running at unlisted initial frequency: 2010000 KHz, changing to: 2035200 KHz
Sep 26 16:47:01 ubuntu kernel: [    4.253629] sdhci-tegra 3460000.mmc: Adding to iommu group 2
Sep 26 16:47:01 ubuntu kernel: [    4.254604] sdhci-tegra 3400000.mmc: Adding to iommu group 3
Sep 26 16:47:01 ubuntu kernel: [    4.255733] irq: IRQ234: trimming hierarchy from :bus@0:pmc@c360000
Sep 26 16:47:01 ubuntu kernel: [    4.255790] irq: IRQ235: trimming hierarchy from :bus@0:interrupt-controller@f400000-1
Sep 26 16:47:01 ubuntu kernel: [    4.255834] irq: IRQ236: trimming hierarchy from :bus@0:pmc@c360000
Sep 26 16:47:01 ubuntu kernel: [    4.255889] input: gpio-keys as /devices/platform/gpio-keys/input/input0
Sep 26 16:47:01 ubuntu kernel: [    4.741212] ALSA device list:
Sep 26 16:47:01 ubuntu kernel: [    4.741217]   No soundcards found.
Sep 26 16:47:01 ubuntu kernel: [    4.741590] sdhci-tegra 3400000.mmc: Got CD GPIO
Sep 26 16:47:01 ubuntu kernel: [    4.755481] mmc0: CQHCI version 5.10
Sep 26 16:47:01 ubuntu kernel: [    4.791930] mmc0: SDHCI controller on 3460000.mmc [3460000.mmc] using ADMA 64-bit
Sep 26 16:47:01 ubuntu kernel: [    4.794575] irq: IRQ237: trimming hierarchy from :bus@0:interrupt-controller@f400000-1
Sep 26 16:47:01 ubuntu kernel: [    4.795949] mmc1: SDHCI controller on 3400000.mmc [3400000.mmc] using ADMA 64-bit
Sep 26 16:47:01 ubuntu kernel: [    4.796793] Freeing unused kernel memory: 7680K
Sep 26 16:47:01 ubuntu kernel: [    4.797118] Run /init as init process
Sep 26 16:47:01 ubuntu kernel: [    4.797120]   with arguments:
Sep 26 16:47:01 ubuntu kernel: [    4.797120]     /init
Sep 26 16:47:01 ubuntu kernel: [    4.797121]     nv-auto-config
Sep 26 16:47:01 ubuntu kernel: [    4.797122]   with environment:
Sep 26 16:47:01 ubuntu kernel: [    4.797122]     HOME=/
Sep 26 16:47:01 ubuntu kernel: [    4.797122]     TERM=linux
Sep 26 16:47:01 ubuntu kernel: [    4.797123]     bl_prof_dataptr=2031616@0x102C610000
Sep 26 16:47:01 ubuntu kernel: [    4.797123]     bl_prof_ro_ptr=65536@0x102C600000
Sep 26 16:47:01 ubuntu kernel: [    4.889831] mmc0: Command Queue Engine enabled
Sep 26 16:47:01 ubuntu kernel: [    4.889843] mmc0: new HS400 Enhanced strobe MMC card at address 0001
Sep 26 16:47:01 ubuntu kernel: [    4.890095] mmcblk0: mmc0:0001 DG4064 59.2 GiB 
Sep 26 16:47:01 ubuntu kernel: [    4.893441]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15
Sep 26 16:47:01 ubuntu kernel: [    4.893930] mmcblk0boot0: mmc0:0001 DG4064 4.00 MiB 
Sep 26 16:47:01 ubuntu kernel: [    4.894354] mmcblk0boot1: mmc0:0001 DG4064 4.00 MiB 
Sep 26 16:47:01 ubuntu kernel: [    4.894740] mmcblk0rpmb: mmc0:0001 DG4064 4.00 MiB, chardev (511:0)
Sep 26 16:47:01 ubuntu kernel: [    7.811266] tegra194-pcie 14100000.pcie: Adding to iommu group 4
Sep 26 16:47:01 ubuntu kernel: [    7.813289] tegra194-pcie 14100000.pcie: host bridge /bus@0/pcie@14100000 ranges:
Sep 26 16:47:01 ubuntu kernel: [    7.813304] tegra194-pcie 14100000.pcie:      MEM 0x2080000000..0x20a7ffffff -> 0x2080000000
Sep 26 16:47:01 ubuntu kernel: [    7.813309] tegra194-pcie 14100000.pcie:      MEM 0x20a8000000..0x20afffffff -> 0x0040000000
Sep 26 16:47:01 ubuntu kernel: [    7.813312] tegra194-pcie 14100000.pcie:       IO 0x0030100000..0x00301fffff -> 0x0030100000
Sep 26 16:47:01 ubuntu kernel: [    7.813596] tegra194-pcie 14100000.pcie: iATU unroll: enabled
Sep 26 16:47:01 ubuntu kernel: [    7.813598] tegra194-pcie 14100000.pcie: Detected iATU regions: 8 outbound, 2 inbound
Sep 26 16:47:01 ubuntu kernel: [    7.883845] irq: IRQ238: trimming hierarchy from :bus@0:pmc@c360000
Sep 26 16:47:01 ubuntu kernel: [    7.920114] tegra194-pcie 14100000.pcie: Link up
Sep 26 16:47:01 ubuntu kernel: [    7.923098] tegra194-pcie 14100000.pcie: Link up
Sep 26 16:47:01 ubuntu kernel: [    7.923148] tegra194-pcie 14100000.pcie: PCI host bridge to bus 0001:00
Sep 26 16:47:01 ubuntu kernel: [    7.923153] pci_bus 0001:00: root bus resource [io  0x0000-0xfffff] (bus address [0x30100000-0x301fffff])
Sep 26 16:47:01 ubuntu kernel: [    7.923155] pci_bus 0001:00: root bus resource [mem 0x20a8000000-0x20afffffff] (bus address [0x40000000-0x47ffffff])
Sep 26 16:47:01 ubuntu kernel: [    7.923158] pci_bus 0001:00: root bus resource [bus 00-ff]
Sep 26 16:47:01 ubuntu kernel: [    7.923159] pci_bus 0001:00: root bus resource [mem 0x2080000000-0x20a7ffffff pref]
Sep 26 16:47:01 ubuntu kernel: [    7.923208] pci 0001:00:00.0: [10de:229e] type 01 class 0x060400
Sep 26 16:47:01 ubuntu kernel: [    7.923376] pci 0001:00:00.0: PME# supported from D0 D3hot
Sep 26 16:47:01 ubuntu kernel: [    7.926881] pci 0001:01:00.0: [10ec:c822] type 00 class 0x028000
Sep 26 16:47:01 ubuntu kernel: [    7.927052] pci 0001:01:00.0: reg 0x10: [io  0x0000-0x00ff]
Sep 26 16:47:01 ubuntu kernel: [    7.927252] pci 0001:01:00.0: reg 0x18: [mem 0x20a8000000-0x20a800ffff 64bit]
Sep 26 16:47:01 ubuntu kernel: [    7.928279] pci 0001:01:00.0: supports D1 D2
Sep 26 16:47:01 ubuntu kernel: [    7.928282] pci 0001:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Sep 26 16:47:01 ubuntu kernel: [    7.943195] pci 0001:00:00.0: BAR 14: assigned [mem 0x20a8000000-0x20a80fffff]
Sep 26 16:47:01 ubuntu kernel: [    7.943201] pci 0001:00:00.0: BAR 13: assigned [io  0x1000-0x1fff]
Sep 26 16:47:01 ubuntu kernel: [    7.943204] pci 0001:01:00.0: BAR 2: assigned [mem 0x20a8000000-0x20a800ffff 64bit]
Sep 26 16:47:01 ubuntu kernel: [    7.943307] pci 0001:01:00.0: BAR 0: assigned [io  0x1000-0x10ff]
Sep 26 16:47:01 ubuntu kernel: [    7.943337] pci 0001:00:00.0: PCI bridge to [bus 01-ff]
Sep 26 16:47:01 ubuntu kernel: [    7.943341] pci 0001:00:00.0:   bridge window [io  0x1000-0x1fff]
Sep 26 16:47:01 ubuntu kernel: [    7.943346] pci 0001:00:00.0:   bridge window [mem 0x20a8000000-0x20a80fffff]
Sep 26 16:47:01 ubuntu kernel: [    7.943465] pcieport 0001:00:00.0: Adding to iommu group 4
Sep 26 16:47:01 ubuntu kernel: [    7.943568] pcieport 0001:00:00.0: PME: Signaling with IRQ 201
Sep 26 16:47:01 ubuntu kernel: [    7.943861] pcieport 0001:00:00.0: AER: enabled with IRQ 201
Sep 26 16:47:01 ubuntu kernel: [    7.944612] tegra194-pcie 14160000.pcie: Adding to iommu group 5
Sep 26 16:47:01 ubuntu kernel: [    7.946952] tegra194-pcie 14160000.pcie: host bridge /bus@0/pcie@14160000 ranges:
Sep 26 16:47:01 ubuntu kernel: [    7.946963] tegra194-pcie 14160000.pcie:      MEM 0x2140000000..0x2427ffffff -> 0x2140000000
Sep 26 16:47:01 ubuntu kernel: [    7.946969] tegra194-pcie 14160000.pcie:      MEM 0x2428000000..0x242fffffff -> 0x0040000000
Sep 26 16:47:01 ubuntu kernel: [    7.946973] tegra194-pcie 14160000.pcie:       IO 0x0036100000..0x00361fffff -> 0x0036100000
Sep 26 16:47:01 ubuntu kernel: [    7.947434] tegra194-pcie 14160000.pcie: iATU unroll: enabled
Sep 26 16:47:01 ubuntu kernel: [    7.947436] tegra194-pcie 14160000.pcie: Detected iATU regions: 8 outbound, 2 inbound
Sep 26 16:47:01 ubuntu kernel: [    8.156120] tegra194-pcie 14160000.pcie: Link up
Sep 26 16:47:01 ubuntu kernel: [    8.166103] tegra194-pcie 14160000.pcie: Link up
Sep 26 16:47:01 ubuntu kernel: [    8.166153] tegra194-pcie 14160000.pcie: PCI host bridge to bus 0004:00
Sep 26 16:47:01 ubuntu kernel: [    8.166157] pci_bus 0004:00: root bus resource [io  0x100000-0x1fffff] (bus address [0x36100000-0x361fffff])
Sep 26 16:47:01 ubuntu kernel: [    8.166159] pci_bus 0004:00: root bus resource [mem 0x2428000000-0x242fffffff] (bus address [0x40000000-0x47ffffff])
Sep 26 16:47:01 ubuntu kernel: [    8.166161] pci_bus 0004:00: root bus resource [bus 00-ff]
Sep 26 16:47:01 ubuntu kernel: [    8.166162] pci_bus 0004:00: root bus resource [mem 0x2140000000-0x2427ffffff pref]
Sep 26 16:47:01 ubuntu kernel: [    8.166203] pci 0004:00:00.0: [10de:229c] type 01 class 0x060400
Sep 26 16:47:01 ubuntu kernel: [    8.166342] pci 0004:00:00.0: PME# supported from D0 D3hot
Sep 26 16:47:01 ubuntu kernel: [    8.169522] pci 0004:01:00.0: [2646:501d] type 00 class 0x010802
Sep 26 16:47:01 ubuntu kernel: [    8.169702] pci 0004:01:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
Sep 26 16:47:01 ubuntu kernel: [    8.170884] pci 0004:01:00.0: PME# supported from D0 D3hot D3cold
Sep 26 16:47:01 ubuntu kernel: [    8.174473] pci 0004:00:00.0: BAR 14: assigned [mem 0x2428000000-0x24280fffff]
Sep 26 16:47:01 ubuntu kernel: [    8.174477] pci 0004:01:00.0: BAR 0: assigned [mem 0x2428000000-0x2428003fff 64bit]
Sep 26 16:47:01 ubuntu kernel: [    8.174555] pci 0004:00:00.0: PCI bridge to [bus 01-ff]
Sep 26 16:47:01 ubuntu kernel: [    8.174559] pci 0004:00:00.0:   bridge window [mem 0x2428000000-0x24280fffff]
Sep 26 16:47:01 ubuntu kernel: [    8.174639] pcieport 0004:00:00.0: Adding to iommu group 5
Sep 26 16:47:01 ubuntu kernel: [    8.174712] pcieport 0004:00:00.0: PME: Signaling with IRQ 203
Sep 26 16:47:01 ubuntu kernel: [    8.175125] pcieport 0004:00:00.0: AER: enabled with IRQ 203
Sep 26 16:47:01 ubuntu kernel: [    8.175276] nvme 0004:01:00.0: Adding to iommu group 5
Sep 26 16:47:01 ubuntu kernel: [    8.175565] nvme nvme0: pci function 0004:01:00.0
Sep 26 16:47:01 ubuntu kernel: [    8.175744] nvme 0004:01:00.0: enabling device (0000 -> 0002)
Sep 26 16:47:01 ubuntu kernel: [    8.176058] tegra194-pcie 141a0000.pcie: Adding to iommu group 6
Sep 26 16:47:01 ubuntu kernel: [    8.190292] nvme nvme0: allocated 64 MiB host memory buffer.
Sep 26 16:47:01 ubuntu kernel: [    8.285351] tegra194-pcie 141a0000.pcie: host bridge /bus@0/pcie@141a0000 ranges:
Sep 26 16:47:01 ubuntu kernel: [    8.285376] tegra194-pcie 141a0000.pcie:      MEM 0x2800000000..0x2b27ffffff -> 0x2800000000
Sep 26 16:47:01 ubuntu kernel: [    8.285381] tegra194-pcie 141a0000.pcie:      MEM 0x2b28000000..0x2b2fffffff -> 0x0040000000
Sep 26 16:47:01 ubuntu kernel: [    8.285384] tegra194-pcie 141a0000.pcie:       IO 0x003a100000..0x003a1fffff -> 0x003a100000
Sep 26 16:47:01 ubuntu kernel: [    8.286019] tegra194-pcie 141a0000.pcie: iATU unroll: enabled
Sep 26 16:47:01 ubuntu kernel: [    8.286023] tegra194-pcie 141a0000.pcie: Detected iATU regions: 8 outbound, 2 inbound
Sep 26 16:47:01 ubuntu kernel: [    8.290931] nvme nvme0: 12/0/0 default/read/poll queues
Sep 26 16:47:01 ubuntu kernel: [    8.294582]  nvme0n1: p1
Sep 26 16:47:01 ubuntu kernel: [    8.482097] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
Sep 26 16:47:01 ubuntu kernel: [    8.671922] NET: Registered PF_INET6 protocol family
Sep 26 16:47:01 ubuntu kernel: [    8.672238] Segment Routing with IPv6
Sep 26 16:47:01 ubuntu kernel: [    8.672244] In-situ OAM (IOAM) with IPv6
Sep 26 16:47:01 ubuntu kernel: [    9.218894] fuse: init (API version 7.34)
Sep 26 16:47:01 ubuntu kernel: [    9.251980] nvsciipc: loading out-of-tree module taints kernel.
Sep 26 16:47:01 ubuntu kernel: [    9.256303] nvsciipc: loaded module
Sep 26 16:47:01 ubuntu kernel: [    9.266440] nvmap_heap_init: nvmap_heap_init: created heap block cache
Sep 26 16:47:01 ubuntu kernel: [    9.266855] nvmap_co_device_init: vpr :dma coherent mem declare 0x0000001049800000,914358272
Sep 26 16:47:01 ubuntu kernel: [    9.266860] tegra-carveouts tegra-carveouts: assigned reserved memory node vpr-carveout
Sep 26 16:47:01 ubuntu kernel: [    9.266866] nvmap_page_pool_init: Total RAM pages: 16087390
Sep 26 16:47:01 ubuntu kernel: [    9.266867] nvmap_page_pool_init: nvmap page pool size: 2010923 pages (3759 MB)
Sep 26 16:47:01 ubuntu kernel: [    9.266923] nvmap_background_zero_thread: PP zeroing thread starting.
Sep 26 16:47:01 ubuntu kernel: [    9.266944] nvmap_heap_create: created heap vpr base 0x0000001049800000 size (892928KiB)
Sep 26 16:47:01 ubuntu kernel: [    9.266966] nvmap_heap_create: fsi :dma coherent mem declare 0x000000102f000000,16777216
Sep 26 16:47:01 ubuntu kernel: [    9.266968] nvmap_heap_create: created heap fsi base 0x000000102f000000 size (16384KiB)
Sep 26 16:47:01 ubuntu kernel: [    9.283810] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null). Quota mode: none.
Sep 26 16:47:01 ubuntu kernel: [    9.287526] tegra-host1x 13e00000.host1x: Adding to iommu group 7
Sep 26 16:47:01 ubuntu kernel: [    9.288600] host1x-context host1x-ctx.0: Adding to iommu group 8
Sep 26 16:47:01 ubuntu kernel: [    9.288725] host1x-context host1x-ctx.1: Adding to iommu group 9
Sep 26 16:47:01 ubuntu kernel: [    9.288835] host1x-context host1x-ctx.2: Adding to iommu group 10
Sep 26 16:47:01 ubuntu kernel: [    9.288943] host1x-context host1x-ctx.3: Adding to iommu group 11
Sep 26 16:47:01 ubuntu kernel: [    9.289050] host1x-context host1x-ctx.4: Adding to iommu group 12
Sep 26 16:47:01 ubuntu kernel: [    9.289151] host1x-context host1x-ctx.5: Adding to iommu group 13
Sep 26 16:47:01 ubuntu kernel: [    9.289256] host1x-context host1x-ctx.6: Adding to iommu group 14
Sep 26 16:47:01 ubuntu kernel: [    9.289371] host1x-context host1x-ctx.7: Adding to iommu group 15
Sep 26 16:47:01 ubuntu kernel: [    9.289484] host1x-context host1x-ctx.8: Adding to iommu group 16
Sep 26 16:47:01 ubuntu kernel: [    9.289592] host1x-context host1x-ctx.9: Adding to iommu group 17
Sep 26 16:47:01 ubuntu kernel: [    9.289701] host1x-context host1x-ctx.10: Adding to iommu group 18
Sep 26 16:47:01 ubuntu kernel: [    9.289806] host1x-context host1x-ctx.11: Adding to iommu group 19
Sep 26 16:47:01 ubuntu kernel: [    9.289914] host1x-context host1x-ctx.12: Adding to iommu group 20
Sep 26 16:47:01 ubuntu kernel: [    9.290018] host1x-context host1x-ctx.13: Adding to iommu group 21
Sep 26 16:47:01 ubuntu kernel: [    9.290126] host1x-context host1x-ctx.14: Adding to iommu group 22
Sep 26 16:47:01 ubuntu kernel: [    9.290228] host1x-context host1x-ctx.15: Adding to iommu group 23
Sep 26 16:47:01 ubuntu kernel: [    9.365182] nvgpu: 17000000.gpu          nvgpu_nvhost_syncpt_init:122  [INFO]  syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
Sep 26 16:47:01 ubuntu kernel: [    9.365182] 
Sep 26 16:47:01 ubuntu kernel: [    9.388117] tegra194-pcie 141a0000.pcie: Phy link never came up
Sep 26 16:47:01 ubuntu kernel: [    9.671752] mc: Linux media interface: v0.10
Sep 26 16:47:01 ubuntu kernel: [    9.672988] tegra-se 15820000.se: Adding to iommu group 24
Sep 26 16:47:01 ubuntu kernel: [    9.676487] tsec 15500000.tsec: Adding to iommu group 25
Sep 26 16:47:01 ubuntu kernel: [    9.676846] tegra-se 15840000.se: Adding to iommu group 26
Sep 26 16:47:01 ubuntu kernel: [    9.677136] tegra-soc-hwpm f100000.hwpm: Adding to iommu group 27
Sep 26 16:47:01 ubuntu kernel: [    9.677285] tegra-se 15820000.se: registered AES algorithms
Sep 26 16:47:01 ubuntu kernel: [    9.677603] tegra-se 15840000.se: registered HASH algorithms
Sep 26 16:47:01 ubuntu kernel: [    9.678498] scare-pigeon 13e00000.host1x:vi0-thi@15f00000: syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
Sep 26 16:47:01 ubuntu kernel: [    9.683077] scare-pigeon 13e00000.host1x:vi1-thi@14f00000: syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
Sep 26 16:47:01 ubuntu kernel: [    9.684681] scare-pigeon 13e00000.host1x:isp-thi@14b00000: syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
Sep 26 16:47:01 ubuntu kernel: [    9.692789] videodev: Linux video capture interface: v2.00
Sep 26 16:47:01 ubuntu kernel: [    9.695752] pva 16000000.pva0: Adding to iommu group 28
Sep 26 16:47:01 ubuntu kernel: [    9.695950] nvdla 15880000.nvdla0: Adding to iommu group 29
Sep 26 16:47:01 ubuntu kernel: [    9.713491] nvdla 15880000.nvdla0: syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
Sep 26 16:47:01 ubuntu kernel: [    9.715745] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx0: Adding to iommu group 30
Sep 26 16:47:01 ubuntu kernel: [    9.720595] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx0: initialized (streamid=18, iommu=smmu.0x0000000008000000)
Sep 26 16:47:01 ubuntu kernel: [    9.722730] nvdla 158c0000.nvdla1: Adding to iommu group 32
Sep 26 16:47:01 ubuntu kernel: [    9.723513] tegra-vic 15340000.vic: Adding to iommu group 31
Sep 26 16:47:01 ubuntu kernel: [    9.726497] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx1: Adding to iommu group 33
Sep 26 16:47:01 ubuntu kernel: [    9.728167] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx1: initialized (streamid=19, iommu=smmu.0x0000000008000000)
Sep 26 16:47:01 ubuntu kernel: [    9.729596] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx2: Adding to iommu group 34
Sep 26 16:47:01 ubuntu kernel: [    9.729702] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx2: initialized (streamid=20, iommu=smmu.0x0000000008000000)
Sep 26 16:47:01 ubuntu kernel: [    9.730066] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx3: Adding to iommu group 35
Sep 26 16:47:01 ubuntu kernel: [    9.730150] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx3: initialized (streamid=21, iommu=smmu.0x0000000008000000)
Sep 26 16:47:01 ubuntu kernel: [    9.730406] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx4: Adding to iommu group 36
Sep 26 16:47:01 ubuntu kernel: [    9.730488] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx4: initialized (streamid=22, iommu=smmu.0x0000000008000000)
Sep 26 16:47:01 ubuntu kernel: [    9.730706] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx5: Adding to iommu group 37
Sep 26 16:47:01 ubuntu kernel: [    9.730785] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx5: initialized (streamid=23, iommu=smmu.0x0000000008000000)
Sep 26 16:47:01 ubuntu kernel: [    9.730995] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx6: Adding to iommu group 38
Sep 26 16:47:01 ubuntu kernel: [    9.731075] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx6: initialized (streamid=24, iommu=smmu.0x0000000008000000)
Sep 26 16:47:01 ubuntu kernel: [    9.731284] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx7: Adding to iommu group 39
Sep 26 16:47:01 ubuntu kernel: [    9.731363] pva_iommu_context_dev 16000000.pva0:pva0_niso1_ctx7: initialized (streamid=25, iommu=smmu.0x0000000008000000)
Sep 26 16:47:01 ubuntu kernel: [    9.731378] pva 16000000.pva0: pdata->version is HW_GEN2
Sep 26 16:47:01 ubuntu kernel: [    9.733938] nvdla 158c0000.nvdla1: syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
Sep 26 16:47:01 ubuntu kernel: [    9.740690] tegra-nvdec 15480000.nvdec: Adding to iommu group 40
Sep 26 16:47:01 ubuntu kernel: [    9.744070] pva 16000000.pva0: Completed nvhost_client_device_init
Sep 26 16:47:01 ubuntu kernel: [    9.745302] pva 16000000.pva0: syncpt_unit_base 60000000 syncpt_unit_size 4000000 size 10000
Sep 26 16:47:01 ubuntu kernel: [    9.746064] Inserting ivc_ext.ko module
Sep 26 16:47:01 ubuntu kernel: [    9.763807] tegra-nvenc 154c0000.nvenc: Adding to iommu group 41
Sep 26 16:47:01 ubuntu kernel: [    9.786273] tegra-nvjpg 15380000.nvjpg: Adding to iommu group 42
Sep 26 16:47:01 ubuntu kernel: [    9.792005] tsec 15500000.tsec: tsec fw req success in 100 ms
Sep 26 16:47:01 ubuntu kernel: [    9.794400] tsec 15500000.tsec: RISC-V boot using kernel allocated Mem
Sep 26 16:47:01 ubuntu kernel: [    9.799165] tegra186-cam-rtcpu bc00000.rtcpu: Adding to iommu group 43
Sep 26 16:47:01 ubuntu kernel: [    9.801006] tegra186-cam-rtcpu bc00000.rtcpu: Trace buffer configured at IOVA=0xbff00000
Sep 26 16:47:01 ubuntu kernel: [    9.801109] tsec 15500000.tsec: RISC-V boot success
Sep 26 16:47:01 ubuntu kernel: [    9.803660] tegra-nvjpg 15540000.nvjpg: Adding to iommu group 44
Sep 26 16:47:01 ubuntu kernel: [    9.806371] tegra-ivc-bus bc00000.rtcpu:ivc-bus: region 0: iova=0xbfec0000-0xbfee027f size=131712
Sep 26 16:47:01 ubuntu kernel: [    9.806954] tegra-ivc-bus bc00000.rtcpu:ivc-bus:echo@0: echo: ver=0 grp=1 RX[16x64]=0x1000-0x1480 TX[16x64]=0x1480-0x1900
Sep 26 16:47:01 ubuntu kernel: [    9.807546] tegra-ivc-bus bc00000.rtcpu:ivc-bus:dbg@1: dbg: ver=0 grp=1 RX[1x512]=0x1900-0x1b80 TX[1x512]=0x1b80-0x1e00
Sep 26 16:47:01 ubuntu kernel: [    9.808297] tegra-ivc-bus bc00000.rtcpu:ivc-bus:dbg@2: dbg: ver=0 grp=1 RX[1x8192]=0x1e00-0x3e80 TX[1x8192]=0x3e80-0x5f00
Sep 26 16:47:01 ubuntu kernel: [    9.809992] tegra-ivc-bus bc00000.rtcpu:ivc-bus:ivccontrol@3: ivccontrol: ver=0 grp=1 RX[64x320]=0x5f00-0xaf80 TX[64x320]=0xaf80-0x10000
Sep 26 16:47:01 ubuntu kernel: [    9.811272] tegra-ivc-bus bc00000.rtcpu:ivc-bus:ivccapture@4: ivccapture: ver=0 grp=1 RX[512x64]=0x10000-0x18080 TX[512x64]=0x18080-0x20100
Sep 26 16:47:01 ubuntu kernel: [    9.812728] tegra-ivc-bus bc00000.rtcpu:ivc-bus:diag@5: diag: ver=0 grp=1 RX[1x64]=0x20100-0x201c0 TX[1x64]=0x201c0-0x20280
Sep 26 16:47:01 ubuntu kernel: [    9.816172] tegra186-cam-rtcpu bc00000.rtcpu: using cam RTCPU IRQ (232)
Sep 26 16:47:01 ubuntu kernel: [    9.816175] tegra186-cam-rtcpu bc00000.rtcpu: tegra_camrtc_mon_create is successful
Sep 26 16:47:01 ubuntu kernel: [    9.816437] tegra186-cam-rtcpu bc00000.rtcpu: firmware version cpu=rce cmd=6 sha1=e2238c99959d2df9350d393f04e1f44e5bef98cb
Sep 26 16:47:01 ubuntu kernel: [    9.816558] tegra-ivc-bus bc00000.rtcpu:ivc-bus:echo@0: ivc channel driver missing
Sep 26 16:47:01 ubuntu kernel: [    9.816560] tegra-ivc-bus bc00000.rtcpu:ivc-bus:dbg@1: ivc channel driver missing
Sep 26 16:47:01 ubuntu kernel: [    9.816561] tegra-ivc-bus bc00000.rtcpu:ivc-bus:dbg@2: ivc channel driver missing
Sep 26 16:47:01 ubuntu kernel: [    9.816562] tegra-ivc-bus bc00000.rtcpu:ivc-bus:ivccontrol@3: ivc channel driver missing
Sep 26 16:47:01 ubuntu kernel: [    9.816563] tegra-ivc-bus bc00000.rtcpu:ivc-bus:ivccapture@4: ivc channel driver missing
Sep 26 16:47:01 ubuntu kernel: [    9.816564] tegra-ivc-bus bc00000.rtcpu:ivc-bus:diag@5: ivc channel driver missing
Sep 26 16:47:01 ubuntu kernel: [    9.818097] tegra-ofa 15a50000.ofa: Adding to iommu group 45
Sep 26 16:47:01 ubuntu kernel: [    9.828558] drm drm: [drm] Cannot find any crtc or sizes
Sep 26 16:47:01 ubuntu kernel: [    9.834162] [drm] Initialized tegra 1.0.99 20120330 for drm on minor 0
Sep 26 16:47:01 ubuntu kernel: [    9.864120] [RCE] TCU debug prints will be routed to traces.
Sep 26 16:47:01 ubuntu kernel: [   10.046026] tegra-camrtc-capture-vi tegra-capture-vi: ep of_device is not enabled endpoint.
Sep 26 16:47:01 ubuntu kernel: [   10.046035] tegra-camrtc-capture-vi tegra-capture-vi: ep of_device is not enabled endpoint.
Sep 26 16:47:01 ubuntu kernel: [   10.046038] tegra-camrtc-capture-vi tegra-capture-vi: ep of_device is not enabled endpoint.
Sep 26 16:47:01 ubuntu kernel: [   10.046040] tegra-camrtc-capture-vi tegra-capture-vi: ep of_device is not enabled endpoint.
Sep 26 16:47:01 ubuntu kernel: [   10.046041] tegra-camrtc-capture-vi tegra-capture-vi: ep of_device is not enabled endpoint.
Sep 26 16:47:01 ubuntu kernel: [   10.046043] tegra-camrtc-capture-vi tegra-capture-vi: ep of_device is not enabled endpoint.
Sep 26 16:47:01 ubuntu kernel: [   10.051092] tegra194-isp5 14800000.isp: Adding to iommu group 46
Sep 26 16:47:01 ubuntu kernel: [   10.069218] tegra194-vi5 13e00000.host1x:vi0@15c00000: Adding to iommu group 47
Sep 26 16:47:01 ubuntu kernel: [   10.081072] tegra194-vi5 13e00000.host1x:vi1@14c00000: Adding to iommu group 48
Sep 26 16:47:01 ubuntu kernel: [   10.081682] (NULL device *): fops function table already registered
Sep 26 16:47:01 ubuntu kernel: [   10.123425] tegra-dce d800000.dce: Adding to iommu group 49
Sep 26 16:47:01 ubuntu kernel: [   10.123775] dce: dce_ipc_channel_init:311  Invalid Channel State [0x0] for ch_type [2]
Sep 26 16:47:01 ubuntu kernel: [   10.123958] dce: tegra_dce_probe:245  Found display consumer device
Sep 26 16:47:01 ubuntu kernel: [   10.124403] dce: dce_mailbox_set_full_interrupt:157  Intr bit set multiple times for MB : [0x5]
Sep 26 16:47:01 ubuntu kernel: [   10.124408] dce: dce_mailbox_set_full_interrupt:157  Intr bit set multiple times for MB : [0x5]
Sep 26 16:47:01 ubuntu kernel: [   10.124412] dce: dce_mailbox_set_full_interrupt:157  Intr bit set multiple times for MB : [0x5]
Sep 26 16:47:01 ubuntu kernel: [   10.124619] dce: dce_admin_send_cmd_ver:456  version : [0x3] err : [0x0]
Sep 26 16:47:01 ubuntu kernel: [   10.124775] dce: dce_mailbox_set_full_interrupt:157  Intr bit set multiple times for MB : [0x1]
Sep 26 16:47:01 ubuntu kernel: [   10.124781] dce: dce_admin_setup_clients_ipc:585  Channel Reset Complete for Type [1] ...
Sep 26 16:47:01 ubuntu kernel: [   10.124782] dce: dce_admin_setup_clients_ipc:561  Get queue info failed for [2]
Sep 26 16:47:01 ubuntu kernel: [   10.124933] dce: dce_mailbox_set_full_interrupt:157  Intr bit set multiple times for MB : [0x2]
Sep 26 16:47:01 ubuntu kernel: [   10.124937] dce: dce_mailbox_set_full_interrupt:157  Intr bit set multiple times for MB : [0x2]
Sep 26 16:47:01 ubuntu kernel: [   10.124942] dce: dce_admin_setup_clients_ipc:585  Channel Reset Complete for Type [3] ...
Sep 26 16:47:01 ubuntu kernel: [   10.125847] dce: dce_start_boot_flow:166  DCE_BOOT_DONE
Sep 26 16:47:01 ubuntu kernel: [   10.125996] nvvrs_pseq 4-003c: NVVRS Vendor ID: 0x9
Sep 26 16:47:01 ubuntu kernel: [   10.128532] nvvrs_pseq 4-003c: NVVRS Model Rev: 0x82
Sep 26 16:47:01 ubuntu kernel: [   10.129447] nvvrs11 4-0020: NVVRS11 Vendor ID: 0x11 
Sep 26 16:47:01 ubuntu kernel: [   10.129978] nvvrs11 4-0020: NVVRS11 Model Rev: 0x81
Sep 26 16:47:01 ubuntu kernel: [   10.129979] nvvrs11 4-0020: NVVRS11 probe successful
Sep 26 16:47:01 ubuntu kernel: [   10.132014] nvvrs_pseq 4-003c: NVVRS PSEQ probe successful
Sep 26 16:47:01 ubuntu kernel: [   10.133831] nvvrs11 4-0022: NVVRS11 Vendor ID: 0x11 
Sep 26 16:47:01 ubuntu kernel: [   10.134105] nvvrs11 4-0022: NVVRS11 Model Rev: 0x81
Sep 26 16:47:01 ubuntu kernel: [   10.134109] nvvrs11 4-0022: NVVRS11 probe successful
Sep 26 16:47:01 ubuntu kernel: [   10.150262] nv_platform 13800000.display: Adding to iommu group 50
Sep 26 16:47:01 ubuntu kernel: [   10.164933] spi-tegra114 3210000.spi: Adding to iommu group 1
Sep 26 16:47:01 ubuntu kernel: [   10.165332] at24 0-0050: 256 byte 24c02 EEPROM, read-only
Sep 26 16:47:01 ubuntu kernel: [   10.166363] platform 13800000.display:nvdisplay-niso: Adding to iommu group 51
Sep 26 16:47:01 ubuntu kernel: [   10.166541] spi-tegra114 3230000.spi: Adding to iommu group 1
Sep 26 16:47:01 ubuntu kernel: [   10.171306] at24 0-0056: 256 byte 24c02 EEPROM, read-only
Sep 26 16:47:01 ubuntu kernel: [   10.209866] cfg80211: Loading compiled-in X.509 certificates for regulatory database
Sep 26 16:47:01 ubuntu kernel: [   10.213531] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Sep 26 16:47:01 ubuntu kernel: [   10.218409] tegra-hda 3510000.hda: Adding to iommu group 52
Sep 26 16:47:01 ubuntu kernel: [   10.269622] nvpps c6a0000.nvpps: nvpps_probe
Sep 26 16:47:01 ubuntu kernel: [   10.269737] nvpps c6a0000.nvpps: primary-emac found ethernet@6800000
Sep 26 16:47:01 ubuntu kernel: [   10.269750] nvpps c6a0000.nvpps: primary emac base address 0x6810000
Sep 26 16:47:01 ubuntu kernel: [   10.269752] nvpps c6a0000.nvpps: using ptp notifier method on emac ethernet@6800000
Sep 26 16:47:01 ubuntu kernel: [   10.269754] nvpps c6a0000.nvpps: tsc_res_ns(32)
Sep 26 16:47:01 ubuntu kernel: [   10.269762] nvpps c6a0000.nvpps: PPS GPIO not provided in DT, only Timer mode available
Sep 26 16:47:01 ubuntu kernel: [   10.271195] nvpps c6a0000.nvpps: nvpps cdev(488:0)
Sep 26 16:47:01 ubuntu kernel: [   10.271220] nvpps c6a0000.nvpps: TSC config ptx 0x113
Sep 26 16:47:01 ubuntu kernel: [   10.283388] nvethernet 6800000.ethernet: Adding to iommu group 53
Sep 26 16:47:01 ubuntu kernel: [   10.284453] nvethernet 6800000.ethernet: failed to read skip mac reset flag, default 0
Sep 26 16:47:01 ubuntu kernel: [   10.284459] nvethernet 6800000.ethernet: setting to default DMA bit mask
Sep 26 16:47:01 ubuntu kernel: [   10.284468] nvethernet 6800000.ethernet: failed to read UPHY GBE mode- default to 10G
Sep 26 16:47:01 ubuntu kernel: [   10.293247] CAN device driver interface
Sep 26 16:47:01 ubuntu kernel: [   10.310496] rtl88x2ce 0001:01:00.0: Adding to iommu group 4
Sep 26 16:47:01 ubuntu kernel: [   10.311488] rtl88x2ce 0001:01:00.0: enabling device (0000 -> 0003)
Sep 26 16:47:01 ubuntu kernel: [   10.319604] TT CAN feature is not supported
Sep 26 16:47:01 ubuntu kernel: [   10.320245] 	 Message RAM Configuration
Sep 26 16:47:01 ubuntu kernel: [   10.320245] 	| base addr   |0x0c312000|
Sep 26 16:47:01 ubuntu kernel: [   10.320245] 	| sidfc_flssa |0x00000000|
Sep 26 16:47:01 ubuntu kernel: [   10.320245] 	| xidfc_flesa |0x00000040|
Sep 26 16:47:01 ubuntu kernel: [   10.320245] 	| rxf0c_f0sa  |0x000000c0|
Sep 26 16:47:01 ubuntu kernel: [   10.320245] 	| rxf1c_f1sa  |0x000009c0|
Sep 26 16:47:01 ubuntu kernel: [   10.320245] 	| rxbc_rbsa   |0x000009c0|
Sep 26 16:47:01 ubuntu kernel: [   10.320245] 	| txefc_efsa  |0x000009c0|
Sep 26 16:47:01 ubuntu kernel: [   10.320245] 	| txbc_tbsa   |0x00000a40|
Sep 26 16:47:01 ubuntu kernel: [   10.320245] 	| tmc_tmsa    |0x00000ec0|
Sep 26 16:47:01 ubuntu kernel: [   10.320245] 	| mram size   |0x00001000|
Sep 26 16:47:01 ubuntu kernel: [   10.321890] Release 3.2.3 from 09.06.2018
Sep 26 16:47:01 ubuntu kernel: [   10.322162] net can0: mttcan device registered (regs=0000000037f02d79, irq=212)
Sep 26 16:47:01 ubuntu kernel: [   10.327494] TT CAN feature is not supported
Sep 26 16:47:01 ubuntu kernel: [   10.328256] thermal-trip-event cpu-throttle-alert: cooling device registered.
Sep 26 16:47:01 ubuntu kernel: [   10.329270] 	 Message RAM Configuration
Sep 26 16:47:01 ubuntu kernel: [   10.329270] 	| base addr   |0x0c322000|
Sep 26 16:47:01 ubuntu kernel: [   10.329270] 	| sidfc_flssa |0x00000000|
Sep 26 16:47:01 ubuntu kernel: [   10.329270] 	| xidfc_flesa |0x00000040|
Sep 26 16:47:01 ubuntu kernel: [   10.329270] 	| rxf0c_f0sa  |0x000000c0|
Sep 26 16:47:01 ubuntu kernel: [   10.329270] 	| rxf1c_f1sa  |0x000009c0|
Sep 26 16:47:01 ubuntu kernel: [   10.329270] 	| rxbc_rbsa   |0x000009c0|
Sep 26 16:47:01 ubuntu kernel: [   10.329270] 	| txefc_efsa  |0x000009c0|
Sep 26 16:47:01 ubuntu kernel: [   10.329270] 	| txbc_tbsa   |0x00000a40|
Sep 26 16:47:01 ubuntu kernel: [   10.329270] 	| tmc_tmsa    |0x00000ec0|
Sep 26 16:47:01 ubuntu kernel: [   10.329270] 	| mram size   |0x00001000|
Sep 26 16:47:01 ubuntu kernel: [   10.330097] thermal-trip-event gpu-throttle-alert: cooling device registered.
Sep 26 16:47:01 ubuntu kernel: [   10.330574] Release 3.2.3 from 09.06.2018
Sep 26 16:47:01 ubuntu kernel: [   10.337655] thermal-trip-event cv0-throttle-alert: cooling device registered.
Sep 26 16:47:01 ubuntu kernel: [   10.338732] gic 2a41000.interrupt-controller: GIC IRQ controller registered
Sep 26 16:47:01 ubuntu kernel: [   10.338812] tegra-aconnect bus@0:aconnect@2900000: Tegra ACONNECT bus registered
Sep 26 16:47:01 ubuntu kernel: [   10.341748] thermal-trip-event cv1-throttle-alert: cooling device registered.
Sep 26 16:47:01 ubuntu kernel: [   10.342499] input: NVIDIA Jetson AGX Orin HDA HDMI/DP,pcm=3 as /devices/platform/bus@0/3510000.hda/sound/card0/input1
Sep 26 16:47:01 ubuntu kernel: [   10.346830] input: NVIDIA Jetson AGX Orin HDA HDMI/DP,pcm=7 as /devices/platform/bus@0/3510000.hda/sound/card0/input2
Sep 26 16:47:01 ubuntu kernel: [   10.347143] net can1: mttcan device registered (regs=00000000cbd7b85f, irq=213)
Sep 26 16:47:01 ubuntu kernel: [   10.350791] thermal-trip-event cv2-throttle-alert: cooling device registered.
Sep 26 16:47:01 ubuntu kernel: [   10.358043] input: NVIDIA Jetson AGX Orin HDA HDMI/DP,pcm=8 as /devices/platform/bus@0/3510000.hda/sound/card0/input3
Sep 26 16:47:01 ubuntu kernel: [   10.359194] thermal-trip-event soc0-throttle-alert: cooling device registered.
Sep 26 16:47:01 ubuntu kernel: [   10.372652] thermal-trip-event soc1-throttle-alert: cooling device registered.
Sep 26 16:47:01 ubuntu kernel: [   10.376769] input: NVIDIA Jetson AGX Orin HDA HDMI/DP,pcm=9 as /devices/platform/bus@0/3510000.hda/sound/card0/input4
Sep 26 16:47:01 ubuntu kernel: [   10.379409] thermal-trip-event soc2-throttle-alert: cooling device registered.
Sep 26 16:47:01 ubuntu kernel: [   10.381494] thermal-trip-event hot-surface-alert: cooling device registered.
Sep 26 16:47:01 ubuntu kernel: [   10.388115] tegra194-pcie 141a0000.pcie: Phy link never came up
Sep 26 16:47:01 ubuntu kernel: [   10.390762] tegra194-pcie 141a0000.pcie: PCI host bridge to bus 0005:00
Sep 26 16:47:01 ubuntu kernel: [   10.390769] pci_bus 0005:00: root bus resource [io  0x200000-0x2fffff] (bus address [0x3a100000-0x3a1fffff])
Sep 26 16:47:01 ubuntu kernel: [   10.390773] pci_bus 0005:00: root bus resource [mem 0x2b28000000-0x2b2fffffff] (bus address [0x40000000-0x47ffffff])
Sep 26 16:47:01 ubuntu kernel: [   10.390777] pci_bus 0005:00: root bus resource [bus 00-ff]
Sep 26 16:47:01 ubuntu kernel: [   10.390780] pci_bus 0005:00: root bus resource [mem 0x2800000000-0x2b27ffffff pref]
Sep 26 16:47:01 ubuntu kernel: [   10.390832] pci 0005:00:00.0: [10de:229a] type 01 class 0x060400
Sep 26 16:47:01 ubuntu kernel: [   10.390999] pci 0005:00:00.0: PME# supported from D0 D3hot
Sep 26 16:47:01 ubuntu kernel: [   10.394208] scf-pmu-drv scf-pmu: Registered T23x SCF Uncore PMU
Sep 26 16:47:01 ubuntu kernel: [   10.412688] pci 0005:00:00.0: PCI bridge to [bus 01-ff]
Sep 26 16:47:01 ubuntu kernel: [   10.417009] pcieport 0005:00:00.0: Adding to iommu group 6
Sep 26 16:47:01 ubuntu kernel: [   10.425019] pcieport 0005:00:00.0: PME: Signaling with IRQ 205
Sep 26 16:47:01 ubuntu kernel: [   10.453761] pcieport 0005:00:00.0: AER: enabled with IRQ 205
Sep 26 16:47:01 ubuntu kernel: [   10.454415] pci_bus 0005:01: busn_res: [bus 01-ff] is released
Sep 26 16:47:01 ubuntu kernel: [   10.456936] pci 0005:00:00.0: Removing from iommu group 6
Sep 26 16:47:01 ubuntu kernel: [   10.456971] pci_bus 0005:00: busn_res: [bus 00-ff] is released
Sep 26 16:47:01 ubuntu kernel: [   10.470956] tegra-xusb 3610000.usb: Adding to iommu group 54
Sep 26 16:47:01 ubuntu kernel: [   10.493243] tegra-xusb 3610000.usb: Firmware timestamp: 2023-02-10 03:48:10 UTC
Sep 26 16:47:01 ubuntu kernel: [   10.493253] tegra-xusb 3610000.usb: xHCI Host Controller
Sep 26 16:47:01 ubuntu kernel: [   10.493359] tegra-xusb 3610000.usb: new USB bus registered, assigned bus number 1
Sep 26 16:47:01 ubuntu kernel: [   10.494091] tegra-xusb 3610000.usb: hcc params 0x0180ff05 hci version 0x120 quirks 0x0000000000010810
Sep 26 16:47:01 ubuntu kernel: [   10.494118] tegra-xusb 3610000.usb: irq 127, io mem 0x03610000
Sep 26 16:47:01 ubuntu kernel: [   10.494224] tegra-xusb 3610000.usb: xHCI Host Controller
Sep 26 16:47:01 ubuntu kernel: [   10.494228] tegra-xusb 3610000.usb: new USB bus registered, assigned bus number 2
Sep 26 16:47:01 ubuntu kernel: [   10.494231] tegra-xusb 3610000.usb: Host supports USB 3.1 Enhanced SuperSpeed
Sep 26 16:47:01 ubuntu kernel: [   10.506708] hub 1-0:1.0: USB hub found
Sep 26 16:47:01 ubuntu kernel: [   10.506734] hub 1-0:1.0: 4 ports detected
Sep 26 16:47:01 ubuntu kernel: [   10.521229] hub 2-0:1.0: USB hub found
Sep 26 16:47:01 ubuntu kernel: [   10.521259] hub 2-0:1.0: 4 ports detected
Sep 26 16:47:01 ubuntu kernel: [   10.551672] EXT4-fs (nvme0n1p1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
Sep 26 16:47:01 ubuntu kernel: [   10.551893] tegra-xudc 3550000.usb: Adding to iommu group 55
Sep 26 16:47:01 ubuntu kernel: [   10.563549] nvvrs-pseq-rtc nvvrs-pseq-rtc: registered as rtc0
Sep 26 16:47:01 ubuntu kernel: [   10.565172] nvvrs-pseq-rtc nvvrs-pseq-rtc: setting system clock to 2024-09-26T08:47:01 UTC (1727340421)
Sep 26 16:47:01 ubuntu kernel: [   10.606981] tegra-adma 2930000.dma-controller: Tegra210 ADMA driver registered 32 channels
Sep 26 16:47:01 ubuntu kernel: [   10.614930] platform 2901000.i2s: Fixing up cyclic dependency with 8-001c
Sep 26 16:47:01 ubuntu kernel: [   10.671732] nvethernet 6800000.ethernet: Ethernet MAC address: 3c:6d:66:02:d2:2f
Sep 26 16:47:01 ubuntu kernel: [   10.672404] -->macsec_probe()
Sep 26 16:47:01 ubuntu kernel: [   10.672447] -->macsec_get_platform_res()
Sep 26 16:47:01 ubuntu kernel: [   10.672515] <--macsec_get_platform_res()
Sep 26 16:47:01 ubuntu kernel: [   10.672516] -->macsec_enable_car()
Sep 26 16:47:01 ubuntu kernel: [   10.672749] <--macsec_enable_car()
Sep 26 16:47:01 ubuntu kernel: [   10.672760] <--macsec_probe()
Sep 26 16:47:01 ubuntu kernel: [   10.672762] nvethernet 6800000.ethernet: Macsec not enabled
Sep 26 16:47:01 ubuntu kernel: [   10.672764] nvethernet 6800000.ethernet: Macsec: Reduced MTU: 1466 Max: 16383
Sep 26 16:47:01 ubuntu kernel: [   10.674682] nvethernet 6800000.ethernet: eth0 (HW ver: 31) created with 10 DMA channels
Sep 26 16:47:01 ubuntu kernel: [   10.674846] irq: IRQ301: trimming hierarchy from :bus@0:pmc@c360000
Sep 26 16:47:01 ubuntu kernel: [   10.766263] tegra210-admaif 290f000.admaif: Adding to iommu group 56
Sep 26 16:47:01 ubuntu kernel: [   10.848138] usb 1-3: new full-speed USB device number 2 using tegra-xusb
Sep 26 16:47:01 ubuntu kernel: [   10.863499] input: NVIDIA Jetson AGX Orin APE Headset Jack as /devices/platform/sound/sound/card1/input5
Sep 26 16:47:01 ubuntu kernel: [   10.998665] using random self ethernet address
Sep 26 16:47:01 ubuntu kernel: [   10.998671] using random host ethernet address
Sep 26 16:47:01 ubuntu kernel: [   11.039771] loop0: detected capacity change from 0 to 32768
Sep 26 16:47:02 ubuntu kernel: [   11.091577] loop1: detected capacity change from 0 to 8
Sep 26 16:47:02 ubuntu kernel: [   11.133038] usb 2-3: new SuperSpeed Plus Gen 2x1 USB device number 2 using tegra-xusb
Sep 26 16:47:02 ubuntu kernel: [   11.173796] nvsciipc: set_db start
Sep 26 16:47:02 ubuntu kernel: [   11.173824] nvsciipc: set_db done
Sep 26 16:47:02 ubuntu kernel: [   11.182782] hub 2-3:1.0: USB hub found
Sep 26 16:47:02 ubuntu kernel: [   11.184977] hub 2-3:1.0: 4 ports detected
Sep 26 16:47:02 ubuntu kernel: [   11.198926] Mass Storage Function, version: 2009/09/11
Sep 26 16:47:02 ubuntu kernel: [   11.198932] LUN: removable file: (no medium)
Sep 26 16:47:02 ubuntu kernel: [   11.205953] using random self ethernet address
Sep 26 16:47:02 ubuntu kernel: [   11.205960] using random host ethernet address
Sep 26 16:47:02 ubuntu kernel: [   11.288197] usb 1-4: new high-speed USB device number 3 using tegra-xusb
Sep 26 16:47:02 ubuntu kernel: [   11.437094] nvgpu: 17000000.gpu                 tpc_pg_mask_store:1116 [INFO]  no value change, same mask already set
Sep 26 16:47:02 ubuntu kernel: [   11.448733] pstore: Using crash dump compression: deflate
Sep 26 16:47:02 ubuntu kernel: [   11.448866] printk: console [ramoops-1]: printing thread started
Sep 26 16:47:02 ubuntu kernel: [   11.448882] printk: console [ramoops-1] enabled
Sep 26 16:47:02 ubuntu kernel: [   11.448884] pstore: Registered ramoops as persistent store backend
Sep 26 16:47:02 ubuntu kernel: [   11.448885] ramoops: using 0x200000@0x102cdf0000, ecc: 0
Sep 26 16:47:02 ubuntu kernel: [   11.461338] hub 1-4:1.0: USB hub found
Sep 26 16:47:02 ubuntu kernel: [   11.462608] hub 1-4:1.0: 4 ports detected
Sep 26 16:47:02 ubuntu kernel: [   11.500070] Bluetooth: Core ver 2.22
Sep 26 16:47:02 ubuntu kernel: [   11.500150] NET: Registered PF_BLUETOOTH protocol family
Sep 26 16:47:02 ubuntu kernel: [   11.500152] Bluetooth: HCI device and connection manager initialized
Sep 26 16:47:02 ubuntu kernel: [   11.500161] Bluetooth: HCI socket layer initialized
Sep 26 16:47:02 ubuntu kernel: [   11.500165] Bluetooth: L2CAP socket layer initialized
Sep 26 16:47:02 ubuntu kernel: [   11.500172] Bluetooth: SCO socket layer initialized
Sep 26 16:47:02 ubuntu kernel: [   11.510262] usbcore: registered new interface driver btusb
Sep 26 16:47:02 ubuntu kernel: [   11.514692] rtk_btusb: Realtek Bluetooth USB driver ver 3.1.6fd4e69.20220818-105856
Sep 26 16:47:02 ubuntu kernel: [   11.514698] rtk_btcoex: rtk_btcoex_init: version: 1.2
Sep 26 16:47:02 ubuntu kernel: [   11.514700] rtk_btcoex: create workqueue
Sep 26 16:47:02 ubuntu kernel: [   11.514911] rtk_btcoex: alloc buffers 1792, 2432 for ev and l2
Sep 26 16:47:02 ubuntu kernel: [   11.514940] rtk_btusb: btusb_probe intf->cur_altsetting->desc.bInterfaceNumber 0
Sep 26 16:47:02 ubuntu kernel: [   11.514942] rtk_btusb: btusb_probe can_wakeup 1, may wakeup 0
Sep 26 16:47:02 ubuntu kernel: [   11.514944] rtk_btusb: patch_add
Sep 26 16:47:02 ubuntu kernel: [   11.514945] rtk_btusb: auto suspend is disabled
Sep 26 16:47:02 ubuntu kernel: [   11.514947] rtk_btusb: pid = 0x3549
Sep 26 16:47:02 ubuntu kernel: [   11.514950] rtk_btusb: patch_add: Reset gEVersion to 0xff
Sep 26 16:47:02 ubuntu kernel: [   11.514958] rtk_btusb: set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Sep 26 16:47:02 ubuntu kernel: [   11.515140] rtk_btusb: btusb_probe: done
Sep 26 16:47:02 ubuntu kernel: [   11.515171] usbcore: registered new interface driver rtk_btusb
Sep 26 16:47:02 ubuntu kernel: [   11.515203] rtk_btusb: btusb_open start
Sep 26 16:47:02 ubuntu kernel: [   11.515206] rtk_btusb: btusb_open hdev->promisc ==0
Sep 26 16:47:02 ubuntu kernel: [   11.515207] rtk_btusb: download_patch start
Sep 26 16:47:02 ubuntu kernel: [   11.515208] rtk_btusb: chip type value: 0x73
Sep 26 16:47:02 ubuntu kernel: [   11.516787] rtk_btusb: chip_type->status = 0x0, chip_type->chip = 0xbeef
Sep 26 16:47:02 ubuntu kernel: [   11.516790] rtk_btusb: HCI reset.
Sep 26 16:47:02 ubuntu kernel: [   11.527772] rtk_btusb: read_ver_rsp->lmp_subver = 0x8822
Sep 26 16:47:02 ubuntu kernel: [   11.527774] rtk_btusb: read_ver_rsp->hci_rev = 0xc
Sep 26 16:47:02 ubuntu kernel: [   11.527774] rtk_btusb: patch_entry->lmp_sub = 0x8822
Sep 26 16:47:02 ubuntu kernel: [   11.527775] rtk_btusb: load_firmware start
Sep 26 16:47:02 ubuntu kernel: [   11.527776] rtk_btusb: lmp_version = 0x8822
Sep 26 16:47:02 ubuntu kernel: [   11.527777] rtk_btusb: config filename rtl8822cu_config
Sep 26 16:47:02 ubuntu kernel: [   11.528498] rtk_btusb: no bdaddr file /opt/bdaddr
Sep 26 16:47:02 ubuntu kernel: [   11.528501] rtk_btusb: Origin cfg len 6
Sep 26 16:47:02 ubuntu kernel: [   11.528502] rtk_btusb: 55 ab 23 87 00 00
Sep 26 16:47:02 ubuntu kernel: [   11.528504] rtk_btusb: New cfg len 6
Sep 26 16:47:02 ubuntu kernel: [   11.528505] rtk_btusb: 55 ab 23 87 00 00
Sep 26 16:47:02 ubuntu kernel: [   11.528510] rtk_btusb: fw name is  rtl8822cu_fw
Sep 26 16:47:02 ubuntu kernel: [   11.529148] rtk_btusb: This is not 8723a, use new patch style!
Sep 26 16:47:02 ubuntu kernel: [   11.529150] rtk_btusb: rtk_get_eversion: gEVersion 255
Sep 26 16:47:02 ubuntu kernel: [   11.530773] rtk_btusb: eversion->status = 0x0, eversion->version = 0x3
Sep 26 16:47:02 ubuntu kernel: [   11.530776] rtk_btusb: load_firmware: New gEVersion 3
Sep 26 16:47:02 ubuntu kernel: [   11.530777] rtk_btusb: rtk_get_fw_project_id: opcode 0, len 1, data 13
Sep 26 16:47:02 ubuntu kernel: [   11.530779] rtk_btusb: lmp_version is 8822, project_id is 8822, match!
Sep 26 16:47:02 ubuntu kernel: [   11.530780] rtk_btusb: fw_version = 0x9a8cbc9
Sep 26 16:47:02 ubuntu kernel: [   11.530781] rtk_btusb: number_of_total_patch = 3
Sep 26 16:47:02 ubuntu kernel: [   11.530782] rtk_btusb: chipID 4
Sep 26 16:47:02 ubuntu kernel: [   11.530782] rtk_btusb: patch_length 0x8590
Sep 26 16:47:02 ubuntu kernel: [   11.530783] rtk_btusb: start_offset 0x00005d00
Sep 26 16:47:02 ubuntu kernel: [   11.530784] rtk_btusb: Svn version: 1940234490
Sep 26 16:47:02 ubuntu kernel: [   11.530785] rtk_btusb: Coexistence: BTCOEX_20210106-2020
Sep 26 16:47:02 ubuntu kernel: [   11.530786] rtk_btusb: buf_len = 0x8596
Sep 26 16:47:02 ubuntu kernel: [   11.530796] rtk_btusb: fw: exists, config file: exists
Sep 26 16:47:02 ubuntu kernel: [   11.530797] rtk_btusb: load_firmware done
Sep 26 16:47:02 ubuntu kernel: [   11.530806] rtk_btusb: download_data start
Sep 26 16:47:02 ubuntu kernel: [   11.627701] irq: IRQ302: trimming hierarchy from :bus@0:interrupt-controller@f400000-1
Sep 26 16:47:02 ubuntu kernel: [   11.628670] hwmon hwmon8: temp1_input not attached to any thermal zone
Sep 26 16:47:02 ubuntu kernel: [   11.636907] nvgpu: 17000000.gpu                  gk20a_scale_init:541  [INFO]  enabled scaling for GPU
Sep 26 16:47:02 ubuntu kernel: [   11.636907] 
Sep 26 16:47:02 ubuntu kernel: [   11.698785] rtk_btusb: download_data done
Sep 26 16:47:02 ubuntu kernel: [   11.698794] rtk_btusb: HCI reset.
Sep 26 16:47:02 ubuntu kernel: [   11.709780] rtk_btusb: read_ver_rsp->lmp_subver = 0xcbc9
Sep 26 16:47:02 ubuntu kernel: [   11.709785] rtk_btusb: read_ver_rsp->hci_rev = 0x9a8
Sep 26 16:47:02 ubuntu kernel: [   11.709787] rtk_btusb: patch_entry->lmp_sub = 0x8822
Sep 26 16:47:02 ubuntu kernel: [   11.709795] rtk_btusb: Rtk patch end 0
Sep 26 16:47:02 ubuntu kernel: [   11.709798] rtk_btusb: btusb_open set HCI UP RUNNING
Sep 26 16:47:02 ubuntu kernel: [   11.709831] rtk_btcoex: Open BTCOEX
Sep 26 16:47:02 ubuntu kernel: [   11.709836] rtk_btcoex: rtk_vendor_cmd_to_fw: opcode 0xfc1b
Sep 26 16:47:02 ubuntu kernel: [   11.709845] rtk_btusb: btusb_open end
Sep 26 16:47:02 ubuntu kernel: [   11.711812] rtk_btcoex: unknown hci command
Sep 26 16:47:02 ubuntu kernel: [   11.713792] rtk_btcoex: BTCOEX hci_rev 0x09a8
Sep 26 16:47:02 ubuntu kernel: [   11.713797] rtk_btcoex: BTCOEX lmp_subver 0xcbc9
Sep 26 16:47:02 ubuntu kernel: [   11.733777] rtk_btusb: btusb_notify: hci0 evt 3
Sep 26 16:47:02 ubuntu kernel: [   11.777269] NET: Registered PF_ALG protocol family
Sep 26 16:47:03 ubuntu kernel: [   12.528488] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
Sep 26 16:47:03 ubuntu kernel: [   12.528630] Aquantia AQR113C 6800000.ethernet:00: No AQR phy_mode setting in DT
Sep 26 16:47:03 ubuntu kernel: [   12.851792] zram: Added device: zram0
Sep 26 16:47:03 ubuntu kernel: [   12.852773] zram: Added device: zram1
Sep 26 16:47:03 ubuntu kernel: [   12.853107] zram: Added device: zram2
Sep 26 16:47:03 ubuntu kernel: [   12.855396] zram: Added device: zram3
Sep 26 16:47:03 ubuntu kernel: [   12.859481] zram: Added device: zram4
Sep 26 16:47:03 ubuntu kernel: [   12.859825] zram: Added device: zram5
Sep 26 16:47:03 ubuntu kernel: [   12.862509] zram: Added device: zram6
Sep 26 16:47:03 ubuntu kernel: [   12.862714] zram: Added device: zram7
Sep 26 16:47:03 ubuntu kernel: [   12.862902] zram: Added device: zram8
Sep 26 16:47:03 ubuntu kernel: [   12.867039] zram: Added device: zram9
Sep 26 16:47:03 ubuntu kernel: [   12.867465] zram: Added device: zram10
Sep 26 16:47:03 ubuntu kernel: [   12.873152] zram: Added device: zram11
Sep 26 16:47:03 ubuntu kernel: [   12.889041] usb0: HOST MAC 2a:aa:fb:87:45:e8
Sep 26 16:47:03 ubuntu kernel: [   12.889050] usb0: MAC 2a:aa:fb:87:45:e9
Sep 26 16:47:03 ubuntu kernel: [   12.889413] usb1: HOST MAC 2a:aa:fb:87:45:ea
Sep 26 16:47:03 ubuntu kernel: [   12.889417] usb1: MAC 2a:aa:fb:87:45:eb
Sep 26 16:47:03 ubuntu kernel: [   12.890421] tegra-xudc 3550000.usb: EP 0 (type: ctrl, dir: out) enabled
Sep 26 16:47:03 ubuntu kernel: [   12.893440] l4tbr0: port 1(usb0) entered blocking state
Sep 26 16:47:03 ubuntu kernel: [   12.893468] l4tbr0: port 1(usb0) entered disabled state
Sep 26 16:47:03 ubuntu kernel: [   12.893626] device usb0 entered promiscuous mode
Sep 26 16:47:03 ubuntu kernel: [   12.895446] zram0: detected capacity change from 0 to 5362464
Sep 26 16:47:03 ubuntu kernel: [   12.900807] l4tbr0: port 2(usb1) entered blocking state
Sep 26 16:47:03 ubuntu kernel: [   12.900827] l4tbr0: port 2(usb1) entered disabled state
Sep 26 16:47:03 ubuntu kernel: [   12.901493] device usb1 entered promiscuous mode
Sep 26 16:47:03 ubuntu kernel: [   12.908520] Adding 2681228k swap on /dev/zram0.  Priority:5 extents:1 across:2681228k SS
Sep 26 16:47:03 ubuntu kernel: [   12.913417] zram1: detected capacity change from 0 to 5362464
Sep 26 16:47:03 ubuntu kernel: [   12.917941] loop0: detected capacity change from 0 to 32768
Sep 26 16:47:03 ubuntu kernel: [   12.920126] Adding 2681228k swap on /dev/zram1.  Priority:5 extents:1 across:2681228k SS
Sep 26 16:47:03 ubuntu kernel: [   12.923145] zram2: detected capacity change from 0 to 5362464
Sep 26 16:47:03 ubuntu kernel: [   12.930003] Adding 2681228k swap on /dev/zram2.  Priority:5 extents:1 across:2681228k SS
Sep 26 16:47:03 ubuntu kernel: [   12.933141] zram3: detected capacity change from 0 to 5362464
Sep 26 16:47:03 ubuntu kernel: [   12.939870] Adding 2681228k swap on /dev/zram3.  Priority:5 extents:1 across:2681228k SS
Sep 26 16:47:03 ubuntu kernel: [   12.942935] zram4: detected capacity change from 0 to 5362464
Sep 26 16:47:03 ubuntu kernel: [   12.949567] Adding 2681228k swap on /dev/zram4.  Priority:5 extents:1 across:2681228k SS
Sep 26 16:47:03 ubuntu kernel: [   12.952524] zram5: detected capacity change from 0 to 5362464
Sep 26 16:47:03 ubuntu kernel: [   12.959963] Adding 2681228k swap on /dev/zram5.  Priority:5 extents:1 across:2681228k SS
Sep 26 16:47:03 ubuntu kernel: [   12.963116] zram6: detected capacity change from 0 to 5362464
Sep 26 16:47:03 ubuntu kernel: [   12.969921] Adding 2681228k swap on /dev/zram6.  Priority:5 extents:1 across:2681228k SS
Sep 26 16:47:03 ubuntu kernel: [   12.973020] zram7: detected capacity change from 0 to 5362464
Sep 26 16:47:03 ubuntu kernel: [   12.979569] Adding 2681228k swap on /dev/zram7.  Priority:5 extents:1 across:2681228k SS
Sep 26 16:47:03 ubuntu kernel: [   12.983021] zram8: detected capacity change from 0 to 5362464
Sep 26 16:47:03 ubuntu kernel: [   12.990229] Adding 2681228k swap on /dev/zram8.  Priority:5 extents:1 across:2681228k SS
Sep 26 16:47:03 ubuntu kernel: [   12.993225] zram9: detected capacity change from 0 to 5362464
Sep 26 16:47:03 ubuntu kernel: [   12.999817] Adding 2681228k swap on /dev/zram9.  Priority:5 extents:1 across:2681228k SS
Sep 26 16:47:03 ubuntu kernel: [   13.003304] zram10: detected capacity change from 0 to 5362464
Sep 26 16:47:03 ubuntu kernel: [   13.010296] Adding 2681228k swap on /dev/zram10.  Priority:5 extents:1 across:2681228k SS
Sep 26 16:47:03 ubuntu kernel: [   13.013494] zram11: detected capacity change from 0 to 5362464
Sep 26 16:47:03 ubuntu kernel: [   13.020099] Adding 2681228k swap on /dev/zram11.  Priority:5 extents:1 across:2681228k SS
Sep 26 16:47:06 ubuntu kernel: [   15.293316] nvidia-modeset: Loading NVIDIA UNIX Open Kernel Mode Setting Driver for aarch64  540.3.0  Release Build  (buildbrain@mobile-u64-6367-d8000)  Mon May  6 10:21:06 PDT 2024
Sep 26 16:47:06 ubuntu kernel: [   15.547324] NVRM rpcRmApiControl_dce: NVRM_RPC_DCE: Failed RM ctrl call cmd:0x731341 result 0xffff:
Sep 26 16:47:06 ubuntu kernel: [   15.728448] nvethernet 6800000.ethernet: [xpcs_lane_bring_up][477][type:0x4][loga-0x0] PCS block lock SUCCESS
Sep 26 16:47:06 ubuntu kernel: [   15.728519] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Sep 26 16:47:06 ubuntu kernel: [   15.728781] nvethernet 6800000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Sep 26 16:47:08 ubuntu kernel: [   17.097619] nvmap_alloc_handle: PID 1570: python: WARNING: All NvMap Allocations must have a tag to identify the subsystem allocating memory.Please pass the tag to the API call NvRmMemHanldeAllocAttr() or relevant. 
Sep 26 16:47:08 ubuntu kernel: [   17.576983] nvmap_alloc_handle: PID 1568: python: WARNING: All NvMap Allocations must have a tag to identify the subsystem allocating memory.Please pass the tag to the API call NvRmMemHanldeAllocAttr() or relevant. 
Sep 26 16:47:08 ubuntu kernel: [   17.601289] nvmap_alloc_handle: PID 1569: python: WARNING: All NvMap Allocations must have a tag to identify the subsystem allocating memory.Please pass the tag to the API call NvRmMemHanldeAllocAttr() or relevant. 
Sep 26 16:47:09 ubuntu kernel: [   18.911519] rfkill: input handler disabled
Sep 26 16:47:12 ubuntu kernel: [   21.129730] ACK 04 d4
Sep 26 16:47:12 ubuntu kernel: [   21.133092] ACK 04 d4
Sep 26 16:47:12 ubuntu kernel: [   21.166882] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Sep 26 18:41:12 ubuntu kernel: [ 6862.078034] tegra-vic 15340000.vic: V4L2_EncThread: job submission failed: host1x job submission failed: -4
Sep 26 18:41:12 ubuntu kernel: [ 6862.078110] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 18:41:12 ubuntu kernel: [ 6862.078116] tegra-vic 15340000.vic: V4L2_EncThread: job submission failed: host1x job submission failed: -4
Sep 26 18:41:12 ubuntu kernel: [ 6862.078141] tegra-vic 15340000.vic: V4L2_EncThread: job submission failed: host1x job submission failed: -4
Sep 26 18:41:12 ubuntu kernel: [ 6862.078239] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4
Sep 26 18:41:12 ubuntu kernel: [ 6862.078377] tegra-vic 15340000.vic: V4L2_EncThread: job submission failed: host1x job submission failed: -4
Sep 26 18:41:12 ubuntu kernel: [ 6862.078693] tegra-vic 15340000.vic: queue:src: job submission failed: host1x job submission failed: -4

Hi,
Please try the setup(on Jetpack 6.0GA) and run your use-case:

  1. Apply the binary:

Jetson/L4T/r36.3.x patches - eLinux.org
[Power] Segmentation fault of nvpmodel service

  1. Run the script:

VPI - Vision Programming Interface: Performance Benchmark

If the issue is still observed, please share the steps to replicate the issue. We will set up developer kit and check.

Will running the script cause the computer to crash?
Now setting up the model 50w, there are more gpu offline cases

Hi,
If you’re using custom carrier board, please try developer kit to clarify whether it is specific to the custom board.