Advertisement
rogersjcaleb

sleeptest2

May 15th, 2025
658
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 108.04 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="utf-8">
  6.     <title>Linux s2idle Power Report</title>
  7.     <style>
  8.         h1 {
  9.             color: #00b0f0;
  10.             font-family: sans-serif;
  11.             font-size: 42pt;
  12.         }
  13.  
  14.         h2 {
  15.             font-size: 15pt;
  16.             font-family: sans-serif;
  17.             color: #00b0f0;
  18.             margin-top: 2em;
  19.             margin-bottom: 0em;
  20.             letter-spacing: 0.08em;
  21.         }
  22.  
  23.         h3,
  24.         h4,
  25.         h5 {
  26.             font-family: sans-serif;
  27.             margin-top: 1em;
  28.             margin-bottom: 0em;
  29.             letter-spacing: 0.08em;
  30.         }
  31.  
  32.         body {
  33.  
  34.             font-family: sans-serif;
  35.             letter-spacing: 0.02em;
  36.             background-color: #ffffff;
  37.             color: #000000;
  38.             margin: 0em 5.5em 0em 5.5em;
  39.  
  40.         }
  41.  
  42.         table,
  43.         th,
  44.         td {
  45.             border-width: 0;
  46.             table-layout: fixed;
  47.             font-family: sans-serif;
  48.             letter-spacing: 0.02em;
  49.             color: #000000;
  50.             margin-bottom: 10px;
  51.         }
  52.  
  53.         .β—‹ {
  54.             font-family: "Fira Code", monospace;
  55.             color: #000000;
  56.         }
  57.  
  58.         .❌ {
  59.             color: #ff0000;
  60.             font-family: "Fira Code", monospace;
  61.         }
  62.  
  63.         .🚦 {
  64.             color: #a4a100;
  65.             font-family: "Fira Code", monospace;
  66.         }
  67.  
  68.         .🦟 {
  69.             color: #848484;
  70.             font-family: "Fira Code", monospace;
  71.         }
  72.  
  73.         .hidden-by-default {
  74.             display: none;
  75.             border: 0px;
  76.             border-spacing: 0px;
  77.             border-collapse: collapse;
  78.         }
  79.  
  80.         .hide-borders {
  81.             border: 0px;
  82.             border-collapse: collapse;
  83.         }
  84.  
  85.         .row-disabled {
  86.             display: none;
  87.             border: 0px;
  88.             border-collapse: collapse;
  89.         }
  90.  
  91.         .arrow::before {
  92.             content: "\23f5";
  93.         }
  94.  
  95.         .arrow-expanded::before {
  96.             content: "\23F7";
  97.  
  98.         }
  99.  
  100.         .row-low {
  101.             background-color: #ace3ac;
  102.             text-align: center;
  103.         }
  104.  
  105.         .row-low:hover {
  106.             background-color: #caedca;
  107.             text-align: center;
  108.         }
  109.  
  110.         .row-neutral {
  111.             background-color: #e0e0e0;
  112.             text-align: center;
  113.         }
  114.  
  115.         .row-neutral:hover {
  116.             background-color: #f0f0f0;
  117.             text-align: center;
  118.         }
  119.  
  120.         .row-high {
  121.             background-color: #ffb2aa;
  122.             text-align: center;
  123.         }
  124.  
  125.         .row-high:hover {
  126.             background-color: #ffd5d1;
  127.             text-align: center;
  128.         }
  129.     </style>
  130. </head>
  131.  
  132. <body>
  133.     <script>
  134.         function select_changed(selector, row) {
  135.             var x = document.getElementById(selector).value;
  136.             var y;
  137.             var rows = document.querySelectorAll(row + " tr.row-disabled");
  138.             for (var i = 0; i < rows.length; i++) {
  139.                rows[i].style.display = "none";
  140.            }
  141.            if (x != "0") {
  142.                document.querySelector(row + x).style.display = "table-row";
  143.                if (row == row + x)
  144.                    document.getElementById(selector).value = 0;
  145.            }
  146.        }
  147.        function cycle_data_changed() {
  148.            select_changed("cycles", "#cycledata")
  149.        }
  150.  
  151.        function failure_data_changed() {
  152.            select_changed("failures", "#failuredata")
  153.        }
  154.  
  155.        function debug_data_changed() {
  156.            select_changed("debug", "#debugdata")
  157.            if (document.getElementById("debug").value != "0") {
  158.                document.getElementById("debug_label").style.display = "";
  159.            } else {
  160.                document.getElementById("debug_label").style.display = "none";
  161.            }
  162.        }
  163.  
  164.        function prereq_debug_data_changed() {
  165.            var table = document.getElementById("prereqdebugdata");
  166.            var arrow = document.getElementById("prereqdata-arrow")
  167.            if (table.classList.contains("hidden-by-default")) {
  168.                table.className = "hide-borders";
  169.                arrow.className = "arrow-expanded";
  170.            } else {
  171.                table.className = "hidden-by-default";
  172.                arrow.className = "arrow"
  173.            }
  174.        }
  175.  
  176.        function parseTimeToSeconds(timeString) {
  177.            var timeParts = timeString.split(":");
  178.            var hours = parseInt(timeParts[0]);
  179.            var minutes = parseInt(timeParts[1]);
  180.            var seconds = parseInt(timeParts[2]);
  181.            return (hours * 3600) + (minutes * 60) + seconds;
  182.        }
  183.  
  184.        function pick_data_for_cycle(num) {
  185.            //show cycles messages for this cycle
  186.            document.getElementById("cycles").selectedIndex = num + 1;
  187.            cycle_data_changed();
  188.            
  189.            //show failures messages for this cycle
  190.            document.getElementById("failures").value = num + 1;
  191.            failure_data_changed();
  192.            
  193.            
  194.            //show debug data for this cycle
  195.            document.getElementById("debug").selectedIndex = num + 1;
  196.            debug_data_changed();
  197.            
  198.        }
  199.  
  200.        function summary_data_changed() {
  201.            var table = document.getElementById("summary");
  202.            const start_select = document.getElementById('start_select');
  203.            const end_select = document.getElementById('end_select');
  204.            var start = parseInt(start_select.value);
  205.            var end = parseInt(end_select.value);
  206.            var min_duration = 0;
  207.  
  208.            // if duration filter activated, hide rows that don't match
  209.            if (document.getElementById('med_duration').checked)
  210.                min_duration = document.getElementById("med_duration").value;
  211.            else if (document.getElementById('min_duration').checked)
  212.                min_duration = document.getElementById("min_duration").value;
  213.            // reset end if start was picked bigger than end
  214.            if (start > end) {
  215.                 end_select.selectedIndex = start;
  216.                 end = start;
  217.             }
  218.  
  219.             // show all rows between start and end
  220.             for (var i = 1; i < table.rows.length; i++) {
  221.                var row = table.rows[i];
  222.                var index = parseInt(row.cells[0].textContent);
  223.                var row_duration = parseTimeToSeconds(row.cells[2].textContent);
  224.  
  225.                if (row_duration >= min_duration &&
  226.                    index >= start && index <= end) {
  227.                    row.style.display = "";
  228.                 } else {
  229.                     row.style.display = "none";
  230.                 }
  231.             }
  232.  
  233.             // reset other tables if we now show more than one cycle
  234.             if (end - start > 0) {
  235.                 // reset cycle data selector
  236.                 document.getElementById("cycles").selectedIndex = 0;
  237.                 cycle_data_changed();
  238.                
  239.                 //reset failure data selector
  240.                 document.getElementById("failures").value = 0;
  241.                 failure_data_changed();
  242.                
  243.                
  244.                 //reset debug data selector
  245.                 document.getElementById("debug").selectedIndex = 0;
  246.                 debug_data_changed();
  247.                
  248.             } else if (start = end)
  249.                 pick_data_for_cycle(start)
  250.         }
  251.  
  252.         function populate_summary_selectors() {
  253.             const table = document.getElementById('summary');
  254.             const start_select = document.getElementById('start_select');
  255.             const end_select = document.getElementById('end_select');
  256.  
  257.             for (let i = 0; i < table.rows.length; i++) {
  258.                const start_option = document.createElement('option');
  259.                const end_option = document.createElement('option');
  260.                var columns = table.rows[i].getElementsByTagName("td");
  261.  
  262.                //Populate all start/end selector values
  263.                if (i != table.rows.length - 1) {
  264.                    start_option.text = `Cycle ${i}`;
  265.                    start_option.value = i
  266.                    end_option.text = `Cycle ${i}`;
  267.                    end_option.value = i
  268.                    start_select.add(start_option);
  269.                    end_select.add(end_option);
  270.                }
  271.  
  272.                //apply coloring to hardware sleep
  273.                if (i != 0) {
  274.                    if (parseFloat(columns[2].innerHTML) < 85)
  275.                        table.rows[i].className = "row-high";
  276.                }
  277.            }
  278.  
  279.            // Pick the end selector for last column
  280.            end_select.selectedIndex = table.rows.length - 2;
  281.  
  282.            // if we only have one selector then pick it
  283.            if (start_select.selectedIndex == end_select.selectedIndex) {
  284.                pick_summary_cycle(start_select.selectedIndex)
  285.            }
  286.        }
  287.  
  288.        function pick_summary_cycle(num) {
  289.            //narrow down filter to just the selected cycle
  290.            document.getElementById('start_select').selectedIndex = num;
  291.            document.getElementById('end_select').selectedIndex = num;
  292.            summary_data_changed();
  293.            pick_data_for_cycle(num);
  294.        }
  295.  
  296.        function reset_clicked() {
  297.            const table = document.getElementById('summary');
  298.            document.getElementById('start_select').selectedIndex = 0;
  299.            console.log(table.rows.length);
  300.            document.getElementById('end_select').selectedIndex = table.rows.length - 2;
  301.            document.getElementById('all_time').checked = true;
  302.            summary_data_changed();
  303.        }
  304.  
  305.        window.addEventListener('load', populate_summary_selectors);
  306.    </script>
  307.     <h1>Linux s2idle Power Report</h1>
  308.     <p>s2idle report created 2025-05-15 16:22:07.210792 using amd-s2idle 0.2.0</p>
  309.    
  310.     <table class="hide-borders">
  311.        
  312.         <TR>
  313.             <TD>πŸ’»</TD>
  314.             <TD>AMD Ryzen AI 9 HX 370 w/ Radeon 890M (family 1a model 24)</TD>
  315.         </TR>
  316.        
  317.         <TR>
  318.             <TD>πŸ’»</TD>
  319.             <TD>Framework Laptop 13 (AMD Ryzen AI 300 Series) (Laptop)</TD>
  320.         </TR>
  321.        
  322.         <TR>
  323.             <TD>🐧</TD>
  324.             <TD>Manjaro Linux</TD>
  325.         </TR>
  326.        
  327.         <TR>
  328.             <TD>🐧</TD>
  329.             <TD>Kernel 6.12.28-1-MANJARO</TD>
  330.         </TR>
  331.        
  332.         <TR>
  333.             <TD>πŸ”‹</TD>
  334.             <TD>Battery BAT1 (NVT FRANGWA) is operating at 96.09% of design</TD>
  335.         </TR>
  336.        
  337.         <TR>
  338.             <TD>βœ…</TD>
  339.             <TD>ASPM policy set to 'default'</TD>
  340.         </TR>
  341.        
  342.         <TR>
  343.             <TD>βœ…</TD>
  344.             <TD>GPIO driver `pinctrl_amd` available</TD>
  345.         </TR>
  346.        
  347.         <TR>
  348.             <TD>βœ…</TD>
  349.             <TD>PMC driver `amd_pmc` loaded (Program 11 Firmware 93.4.0)</TD>
  350.         </TR>
  351.        
  352.         <TR>
  353.             <TD>βœ…</TD>
  354.             <TD>USB3 driver `xhci_hcd` bound to 0000:c1:00.4</TD>
  355.         </TR>
  356.        
  357.         <TR>
  358.             <TD>βœ…</TD>
  359.             <TD>USB3 driver `xhci_hcd` bound to 0000:c3:00.0</TD>
  360.         </TR>
  361.        
  362.         <TR>
  363.             <TD>βœ…</TD>
  364.             <TD>USB3 driver `xhci_hcd` bound to 0000:c3:00.3</TD>
  365.         </TR>
  366.        
  367.         <TR>
  368.             <TD>βœ…</TD>
  369.             <TD>USB3 driver `xhci_hcd` bound to 0000:c3:00.4</TD>
  370.         </TR>
  371.        
  372.         <TR>
  373.             <TD>βœ…</TD>
  374.             <TD>USB4 driver `thunderbolt` bound to 0000:c3:00.5</TD>
  375.         </TR>
  376.        
  377.         <TR>
  378.             <TD>βœ…</TD>
  379.             <TD>USB4 driver `thunderbolt` bound to 0000:c3:00.6</TD>
  380.         </TR>
  381.        
  382.         <TR>
  383.             <TD>βœ…</TD>
  384.             <TD>System is configured for s2idle</TD>
  385.         </TR>
  386.        
  387.         <TR>
  388.             <TD>βœ…</TD>
  389.             <TD>GPU driver `amdgpu` bound to 0000:c1:00.0</TD>
  390.         </TR>
  391.        
  392.         <TR>
  393.             <TD>βœ…</TD>
  394.             <TD>AMD Ryzen AI 9 HX 370 w/ Radeon 890M (family 1a model 24)</TD>
  395.         </TR>
  396.        
  397.         <TR>
  398.             <TD>βœ…</TD>
  399.             <TD>PC6 and CC6 enabled</TD>
  400.         </TR>
  401.        
  402.         <TR>
  403.             <TD>βœ…</TD>
  404.             <TD>PC6 and CC6 enabled</TD>
  405.         </TR>
  406.        
  407.         <TR>
  408.             <TD>βœ…</TD>
  409.             <TD>SMT enabled</TD>
  410.         </TR>
  411.        
  412.         <TR>
  413.             <TD>βœ…</TD>
  414.             <TD>IOMMU properly configured</TD>
  415.         </TR>
  416.        
  417.         <TR>
  418.             <TD>βœ…</TD>
  419.             <TD>ACPI FADT supports Low-power S0 idle</TD>
  420.         </TR>
  421.        
  422.         <TR>
  423.             <TD>βœ…</TD>
  424.             <TD>LPS0 _DSM enabled</TD>
  425.         </TR>
  426.        
  427.         <TR>
  428.             <TD>βœ…</TD>
  429.             <TD>WLAN driver `mt7921e` bound to 0000:c0:00.0</TD>
  430.         </TR>
  431.        
  432.     </table>
  433.    
  434.    
  435.     <h3>
  436.         <label id="prereqdata-arrow" for="prereqdebugdata" onclick="prereq_debug_data_changed()"
  437.            class="arrow">Prerequisites</label>
  438.     </h3>
  439.     <table id="prereqdebugdata" class="hidden-by-default">
  440.        
  441.         <TR>
  442.             <TD>
  443.                 <pre>DMI data:
  444. bios_date: 03/10/2025
  445. bios_release: 3.3
  446. bios_vendor: INSYDE Corp.
  447. bios_version: 03.03
  448. board_name: FRANMGCP09
  449. board_vendor: Framework
  450. board_version: A9
  451. chassis_type: 10
  452. chassis_vendor: Framework
  453. chassis_version: A9
  454. product_sku: FRANMGCP09
  455. product_version: A9</pre>
  456.             </TD>
  457.         </TR>
  458.        
  459.         <TR>
  460.             <TD>
  461.                 <pre>VCE feature version: 0, firmware version: 0x00000000
  462. UVD feature version: 0, firmware version: 0x00000000
  463. MC feature version: 0, firmware version: 0x00000000
  464. ME feature version: 35, firmware version: 0x0000001d
  465. PFP feature version: 35, firmware version: 0x00000029
  466. CE feature version: 0, firmware version: 0x00000000
  467. RLC feature version: 1, firmware version: 0x11510542
  468. RLC SRLC feature version: 0, firmware version: 0x00000000
  469. RLC SRLG feature version: 0, firmware version: 0x00000000
  470. RLC SRLS feature version: 0, firmware version: 0x00000000
  471. RLCP feature version: 1, firmware version: 0x11510341
  472. RLCV feature version: 0, firmware version: 0x00000000
  473. MEC feature version: 35, firmware version: 0x0000001d
  474. IMU feature version: 0, firmware version: 0x0b332000
  475. SOS feature version: 0, firmware version: 0x00000000
  476. ASD feature version: 553648364, firmware version: 0x210000ec
  477. TA XGMI feature version: 0x00000000, firmware version: 0x00000000
  478. TA RAS feature version: 0x00000000, firmware version: 0x00000000
  479. TA HDCP feature version: 0x00000000, firmware version: 0x17000043
  480. TA DTM feature version: 0x00000000, firmware version: 0x12000018
  481. TA RAP feature version: 0x00000000, firmware version: 0x00000000
  482. TA SECUREDISPLAY feature version: 0x00000000, firmware version: 0x00000000
  483. SMC feature version: 0, program: 11, firmware version: 0x0b5d0400 (93.4.0)
  484. SDMA0 feature version: 60, firmware version: 0x0000000b
  485. VCN feature version: 0, firmware version: 0x09117009
  486. DMCU feature version: 0, firmware version: 0x00000000
  487. DMCUB feature version: 0, firmware version: 0x09001b00
  488. TOC feature version: 0, firmware version: 0x0000000b
  489. MES_KIQ feature version: 6, firmware version: 0x0000006d
  490. MES feature version: 1, firmware version: 0x00000074
  491. VPE feature version: 60, firmware version: 0x00000036
  492. VBIOS version: 113-STRIXEMU-001</pre>
  493.             </TD>
  494.         </TR>
  495.        
  496.         <TR>
  497.             <TD>
  498.                 <pre>LOGIND: configuration changes:</pre>
  499.             </TD>
  500.         </TR>
  501.        
  502.         <TR>
  503.             <TD>
  504.                 <pre>handlepowerkey: hibernate</pre>
  505.             </TD>
  506.         </TR>
  507.        
  508.         <TR>
  509.             <TD>
  510.                 <pre>handlelidswitch: suspend</pre>
  511.             </TD>
  512.         </TR>
  513.        
  514.         <TR>
  515.             <TD>
  516.                 <pre>PCI devices
  517. β”‚ 0000:00:00.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:1507]
  518. β”‚ 0000:00:00.2 : Advanced Micro Devices, Inc. [AMD] IOMMU [1022:1508]
  519. β”‚ 0000:00:01.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:1509]
  520. β”‚ 0000:00:01.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150a] : \_SB_.PCI0.GPP0
  521. β”‚ 0000:00:01.2 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150a] : \_SB_.PCI0.GPP1
  522. β”‚ 0000:00:02.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:1509]
  523. β”‚ 0000:00:02.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150b] : \_SB_.PCI0.GPP3
  524. β”œβ”€ 0000:bf:00.0 : Sandisk Corp Non-Volatile memory controller [15b7:5030] : \_SB_.PCI0.GPP3.NVME
  525. β”‚ 0000:00:02.3 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150b] : \_SB_.PCI0.GPP5
  526. β”œβ”€ 0000:c0:00.0 : MEDIATEK Corp. Network controller [14c3:0616] : \_SB_.PCI0.GPP5.WLAN
  527. β”‚ 0000:00:03.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:1509]
  528. β”‚ 0000:00:08.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:1509]
  529. β”‚ 0000:00:08.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150c] : \_SB_.PCI0.GPPA
  530. β”œβ”€ 0000:c1:00.0 : Advanced Micro Devices, Inc. [AMD/ATI] Display controller [1002:150e] : \_SB_.PCI0.GPPA.VGA_
  531. β”œβ”€ 0000:c1:00.1 : Advanced Micro Devices, Inc. [AMD/ATI] Audio device [1002:1640] : \_SB_.PCI0.GPPA.HDAU
  532. β”œβ”€ 0000:c1:00.2 : Advanced Micro Devices, Inc. [AMD] Encryption controller [1022:17e0] : \_SB_.PCI0.GPPA.PSP_
  533. β”œβ”€ 0000:c1:00.4 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:151e] : \_SB_.PCI0.GPPA.XHC1
  534. β”œβ”€ 0000:c1:00.5 : Advanced Micro Devices, Inc. [AMD] Multimedia controller [1022:15e2] : \_SB_.PCI0.GPPA.ACP_
  535. β”œβ”€ 0000:c1:00.6 : Advanced Micro Devices, Inc. [AMD] Audio device [1022:15e3] : \_SB_.PCI0.GPPA.AZAL
  536. β”‚ 0000:00:08.2 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150c] : \_SB_.PCI0.GPPB
  537. β”œβ”€ 0000:c2:00.0 : Advanced Micro Devices, Inc. [AMD]  [1022:150d]
  538. β”œβ”€ 0000:c2:00.1 : Advanced Micro Devices, Inc. [AMD] Signal processing controller [1022:17f0] : \_SB_.PCI0.GPPB.IPU_
  539. β”‚ 0000:00:08.3 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150c] : \_SB_.PCI0.GPPC
  540. β”œβ”€ 0000:c3:00.0 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:151f] : \_SB_.PCI0.GPPC.XHC0
  541. β”œβ”€ 0000:c3:00.3 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:151a] : \_SB_.PCI0.GPPC.XHC3
  542. β”œβ”€ 0000:c3:00.4 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:151b] : \_SB_.PCI0.GPPC.XHC4
  543. β”œβ”€ 0000:c3:00.5 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:151c] : \_SB_.PCI0.GPPC.NHI0
  544. β”œβ”€ 0000:c3:00.6 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:151d] : \_SB_.PCI0.GPPC.NHI1
  545. β”‚ 0000:00:14.0 : Advanced Micro Devices, Inc. [AMD] SMBus [1022:790b] : \_SB_.PCI0.SMBS
  546. β”‚ 0000:00:14.3 : Advanced Micro Devices, Inc. [AMD] ISA bridge [1022:790e] : \_SB_.PCI0.LPC0
  547. β”‚ 0000:00:18.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16f8]
  548. β”‚ 0000:00:18.1 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16f9]
  549. β”‚ 0000:00:18.2 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16fa]
  550. β”‚ 0000:00:18.3 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16fb]
  551. β”‚ 0000:00:18.4 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16fc]
  552. β”‚ 0000:00:18.5 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16fd]
  553. β”‚ 0000:00:18.6 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16fe]
  554. └─0000:00:18.7 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16ff]</pre>
  555.             </TD>
  556.         </TR>
  557.        
  558.         <TR>
  559.             <TD>
  560.                 <pre>I2C HID devices:
  561. | "FRMW0004:00 32AC:0006 Wireless Radio Control" [FRMW0004] : \_SB_.I2CB.ECKB
  562. | "FRMW0004:00 32AC:0006 Consumer Control" [FRMW0004] : \_SB_.I2CB.ECKB
  563. | "PIXA3854:00 093A:0274 Touchpad" [PIXA3854] : \_SB_.I2CD.TPAD
  564. └─"PIXA3854:00 093A:0274 Mouse" [PIXA3854] : \_SB_.I2CD.TPAD</pre>
  565.             </TD>
  566.         </TR>
  567.        
  568.         <TR>
  569.             <TD>
  570.                 <pre>Windows GPIO 0 debounce: disabled</pre>
  571.             </TD>
  572.         </TR>
  573.        
  574.         <TR>
  575.             <TD>
  576.                 <pre><table border="1" class="dataframe" id="gpio">
  577.   <thead>
  578.     <tr style="text-align: right;">
  579.       <th>gpio</th>
  580.       <th>int</th>
  581.       <th>active</th>
  582.       <th>trigger</th>
  583.       <th>S0i3</th>
  584.       <th>S3</th>
  585.       <th>S4/S5</th>
  586.       <th>Z</th>
  587.       <th>wake</th>
  588.       <th>pull</th>
  589.       <th>orient</th>
  590.       <th>debounce</th>
  591.       <th>reg</th>
  592.     </tr>
  593.   </thead>
  594.   <tbody>
  595.     <tr>
  596.       <td>#0</td>
  597.       <td>πŸ˜›</td>
  598.       <td>↑</td>
  599.       <td>edge</td>
  600.       <td>⏰</td>
  601.       <td>⏰</td>
  602.       <td></td>
  603.       <td>⏰</td>
  604.       <td></td>
  605.       <td>↑</td>
  606.       <td>input  β†‘</td>
  607.       <td>b (πŸ•‘ 046875us)</td>
  608.       <td>0x81578e3</td>
  609.     </tr>
  610.     <tr>
  611.       <td>#2</td>
  612.       <td>😷</td>
  613.       <td>↓</td>
  614.       <td>level</td>
  615.       <td></td>
  616.       <td></td>
  617.       <td></td>
  618.       <td></td>
  619.       <td></td>
  620.       <td>↑</td>
  621.       <td>input  β†‘</td>
  622.       <td></td>
  623.       <td>0x150b00</td>
  624.     </tr>
  625.     <tr>
  626.       <td>#5</td>
  627.       <td>πŸ˜›</td>
  628.       <td>↓</td>
  629.       <td>level</td>
  630.       <td></td>
  631.       <td></td>
  632.       <td></td>
  633.       <td></td>
  634.       <td></td>
  635.       <td></td>
  636.       <td>input  β†‘</td>
  637.       <td></td>
  638.       <td>0x51b00</td>
  639.     </tr>
  640.     <tr>
  641.       <td>#8</td>
  642.       <td>πŸ˜›</td>
  643.       <td>↓</td>
  644.       <td>level</td>
  645.       <td></td>
  646.       <td></td>
  647.       <td></td>
  648.       <td>⏰</td>
  649.       <td></td>
  650.       <td>↑</td>
  651.       <td>input  β†‘</td>
  652.       <td></td>
  653.       <td>0x8151b00</td>
  654.     </tr>
  655.     <tr>
  656.       <td>#18</td>
  657.       <td>πŸ˜›</td>
  658.       <td>↓</td>
  659.       <td>edge</td>
  660.       <td>⏰</td>
  661.       <td>⏰</td>
  662.       <td></td>
  663.       <td></td>
  664.       <td></td>
  665.       <td></td>
  666.       <td>input  β†‘</td>
  667.       <td></td>
  668.       <td>0x57a00</td>
  669.     </tr>
  670.     <tr>
  671.       <td>#44</td>
  672.       <td>😷</td>
  673.       <td>↑</td>
  674.       <td>edge</td>
  675.       <td></td>
  676.       <td></td>
  677.       <td></td>
  678.       <td></td>
  679.       <td></td>
  680.       <td></td>
  681.       <td>input  β†“</td>
  682.       <td></td>
  683.       <td>0x800</td>
  684.     </tr>
  685.     <tr>
  686.       <td>#52</td>
  687.       <td>😷</td>
  688.       <td>↑</td>
  689.       <td>level</td>
  690.       <td></td>
  691.       <td></td>
  692.       <td></td>
  693.       <td></td>
  694.       <td></td>
  695.       <td></td>
  696.       <td>input  β†“</td>
  697.       <td></td>
  698.       <td>0x900</td>
  699.     </tr>
  700.     <tr>
  701.       <td>#54</td>
  702.       <td>πŸ˜›</td>
  703.       <td>↑</td>
  704.       <td>edge</td>
  705.       <td></td>
  706.       <td></td>
  707.       <td></td>
  708.       <td></td>
  709.       <td></td>
  710.       <td></td>
  711.       <td>input  β†“</td>
  712.       <td></td>
  713.       <td>0x1800</td>
  714.     </tr>
  715.     <tr>
  716.       <td>#58</td>
  717.       <td>πŸ˜›</td>
  718.       <td>↑</td>
  719.       <td>level</td>
  720.       <td>⏰</td>
  721.       <td>⏰</td>
  722.       <td></td>
  723.       <td>⏰</td>
  724.       <td></td>
  725.       <td></td>
  726.       <td>input  β†“</td>
  727.       <td></td>
  728.       <td>0x8007900</td>
  729.     </tr>
  730.     <tr>
  731.       <td>#59</td>
  732.       <td>πŸ˜›</td>
  733.       <td>↑</td>
  734.       <td>level</td>
  735.       <td>⏰</td>
  736.       <td>⏰</td>
  737.       <td></td>
  738.       <td>⏰</td>
  739.       <td></td>
  740.       <td></td>
  741.       <td>input  β†“</td>
  742.       <td></td>
  743.       <td>0x8007900</td>
  744.     </tr>
  745.     <tr>
  746.       <td>#61</td>
  747.       <td>πŸ˜›</td>
  748.       <td>↑</td>
  749.       <td>level</td>
  750.       <td>⏰</td>
  751.       <td>⏰</td>
  752.       <td></td>
  753.       <td></td>
  754.       <td></td>
  755.       <td></td>
  756.       <td>input  β†“</td>
  757.       <td></td>
  758.       <td>0x7900</td>
  759.     </tr>
  760.     <tr>
  761.       <td>#62</td>
  762.       <td>πŸ˜›</td>
  763.       <td>↑</td>
  764.       <td>level</td>
  765.       <td>⏰</td>
  766.       <td>⏰</td>
  767.       <td></td>
  768.       <td></td>
  769.       <td></td>
  770.       <td></td>
  771.       <td>input  β†“</td>
  772.       <td></td>
  773.       <td>0x7900</td>
  774.     </tr>
  775.     <tr>
  776.       <td>#84</td>
  777.       <td>πŸ˜›</td>
  778.       <td>↓</td>
  779.       <td>level</td>
  780.       <td></td>
  781.       <td></td>
  782.       <td></td>
  783.       <td></td>
  784.       <td></td>
  785.       <td></td>
  786.       <td>input  β†‘</td>
  787.       <td></td>
  788.       <td>0x51b00</td>
  789.     </tr>
  790.     <tr>
  791.       <td>#172</td>
  792.       <td>😷</td>
  793.       <td>↑</td>
  794.       <td>level</td>
  795.       <td></td>
  796.       <td></td>
  797.       <td></td>
  798.       <td></td>
  799.       <td></td>
  800.       <td></td>
  801.       <td>input  β†“</td>
  802.       <td></td>
  803.       <td>0x900</td>
  804.     </tr>
  805.   </tbody>
  806. </table></pre>
  807.             </TD>
  808.         </TR>
  809.        
  810.         <TR>
  811.             <TD>
  812.                 <pre>New enough kernel to avoid HSMP check</pre>
  813.             </TD>
  814.         </TR>
  815.        
  816.         <TR>
  817.             <TD>
  818.                 <pre>New enough kernel to avoid NVME check</pre>
  819.             </TD>
  820.         </TR>
  821.        
  822.         <TR>
  823.             <TD>
  824.                 <pre>CPU core count: 8 max: 8192</pre>
  825.             </TD>
  826.         </TR>
  827.        
  828.         <TR>
  829.             <TD>
  830.                 <pre>SMT control: on</pre>
  831.             </TD>
  832.         </TR>
  833.        
  834.         <TR>
  835.             <TD>
  836.                 <pre>Found IOMMU /sys/devices/pci0000:00/0000:00:00.2/iommu/ivhd0
  837. DMA protection:
  838.     /sys/devices/pci0000:00/0000:00:08.3/0000:c3:00.5/domain0/iommu_dma_protection: 1
  839.     /sys/devices/pci0000:00/0000:00:08.3/0000:c3:00.6/domain1/iommu_dma_protection: 1</pre>
  840.             </TD>
  841.         </TR>
  842.        
  843.         <TR>
  844.             <TD>
  845.                 <pre>/*
  846.  * Intel ACPI Component Architecture
  847.  * AML/ASL+ Disassembler version 20240927 (64-bit version)
  848.  * Copyright (c) 2000 - 2023 Intel Corporation
  849.  *
  850.  * Disassembling to symbolic ASL+ operators
  851.  *
  852.  * Disassembly of /sys/firmware/acpi/tables/SSDT26
  853.  *
  854.  * Original Table Header:
  855.  *     Signature        "SSDT"
  856.  *     Length           0x00000A40 (2624)
  857.  *     Revision         0x02
  858.  *     Checksum         0x93
  859.  *     OEM ID           "INSYDE"
  860.  *     OEM Table ID     "EDK2    "
  861.  *     OEM Revision     0x00000001 (1)
  862.  *     Compiler ID      "ACPI"
  863.  *     Compiler Version 0x00040000 (262144)
  864.  */
  865. DefinitionBlock ("", "SSDT", 2, "INSYDE", "EDK2    ", 0x00000001)
  866. {
  867.     External (_SB_.BTNS, DeviceObj)
  868.     External (_SB_.CMBS, IntObj)
  869.     External (_SB_.GPIO, DeviceObj)
  870.     External (_SB_.PCI0.GPP4, DeviceObj)
  871.     External (_SB_.PCI0.GPP4.SDCR, DeviceObj)
  872.     External (_SB_.PCI0.GPP5, DeviceObj)
  873.     External (_SB_.PCI0.GPP6, DeviceObj)
  874.     External (_SB_.PCI0.GPP7, DeviceObj)
  875.     External (_SB_.PCI0.GPP9, DeviceObj)
  876.     External (_SB_.PCI0.GPPA.ACP_, DeviceObj)
  877.     External (_SB_.PCI0.GPPA.AZAL, DeviceObj)
  878.     External (_SB_.PCI0.GPPA.MP2C, DeviceObj)
  879.     External (_SB_.PCI0.GPPA.XHC1, DeviceObj)
  880.     External (_SB_.PCI0.GPPC.XHC0, DeviceObj)
  881.     External (_SB_.PWRB, DeviceObj)
  882.     External (M000, MethodObj)    // 1 Arguments
  883.     External (M037, DeviceObj)
  884.     External (M046, IntObj)
  885.     External (M047, IntObj)
  886.     External (M050, DeviceObj)
  887.     External (M051, DeviceObj)
  888.     External (M052, DeviceObj)
  889.     External (M053, DeviceObj)
  890.     External (M054, DeviceObj)
  891.     External (M055, DeviceObj)
  892.     External (M056, DeviceObj)
  893.     External (M057, DeviceObj)
  894.     External (M058, DeviceObj)
  895.     External (M059, DeviceObj)
  896.     External (M062, DeviceObj)
  897.     External (M068, DeviceObj)
  898.     External (M069, DeviceObj)
  899.     External (M070, DeviceObj)
  900.     External (M071, DeviceObj)
  901.     External (M072, DeviceObj)
  902.     External (M074, DeviceObj)
  903.     External (M075, DeviceObj)
  904.     External (M076, DeviceObj)
  905.     External (M077, DeviceObj)
  906.     External (M078, DeviceObj)
  907.     External (M079, DeviceObj)
  908.     External (M080, DeviceObj)
  909.     External (M081, DeviceObj)
  910.     External (M082, FieldUnitObj)
  911.     External (M083, FieldUnitObj)
  912.     External (M084, FieldUnitObj)
  913.     External (M085, FieldUnitObj)
  914.     External (M086, FieldUnitObj)
  915.     External (M087, FieldUnitObj)
  916.     External (M088, FieldUnitObj)
  917.     External (M089, FieldUnitObj)
  918.     External (M090, FieldUnitObj)
  919.     External (M091, FieldUnitObj)
  920.     External (M092, FieldUnitObj)
  921.     External (M093, FieldUnitObj)
  922.     External (M094, FieldUnitObj)
  923.     External (M095, FieldUnitObj)
  924.     External (M096, FieldUnitObj)
  925.     External (M097, FieldUnitObj)
  926.     External (M098, FieldUnitObj)
  927.     External (M099, FieldUnitObj)
  928.     External (M100, FieldUnitObj)
  929.     External (M101, FieldUnitObj)
  930.     External (M102, FieldUnitObj)
  931.     External (M103, FieldUnitObj)
  932.     External (M104, FieldUnitObj)
  933.     External (M105, FieldUnitObj)
  934.     External (M106, FieldUnitObj)
  935.     External (M107, FieldUnitObj)
  936.     External (M108, FieldUnitObj)
  937.     External (M109, FieldUnitObj)
  938.     External (M110, FieldUnitObj)
  939.     External (M115, BuffObj)
  940.     External (M116, BuffFieldObj)
  941.     External (M117, BuffFieldObj)
  942.     External (M118, BuffFieldObj)
  943.     External (M119, BuffFieldObj)
  944.     External (M120, BuffFieldObj)
  945.     External (M122, FieldUnitObj)
  946.     External (M127, DeviceObj)
  947.     External (M128, FieldUnitObj)
  948.     External (M131, FieldUnitObj)
  949.     External (M132, FieldUnitObj)
  950.     External (M133, FieldUnitObj)
  951.     External (M134, FieldUnitObj)
  952.     External (M135, FieldUnitObj)
  953.     External (M136, FieldUnitObj)
  954.     External (M220, FieldUnitObj)
  955.     External (M221, FieldUnitObj)
  956.     External (M226, FieldUnitObj)
  957.     External (M227, DeviceObj)
  958.     External (M229, FieldUnitObj)
  959.     External (M231, FieldUnitObj)
  960.     External (M233, FieldUnitObj)
  961.     External (M235, FieldUnitObj)
  962.     External (M23A, FieldUnitObj)
  963.     External (M251, FieldUnitObj)
  964.     External (M280, FieldUnitObj)
  965.     External (M290, FieldUnitObj)
  966.     External (M29A, FieldUnitObj)
  967.     External (M310, FieldUnitObj)
  968.     External (M31C, FieldUnitObj)
  969.     External (M320, FieldUnitObj)
  970.     External (M321, FieldUnitObj)
  971.     External (M322, FieldUnitObj)
  972.     External (M323, FieldUnitObj)
  973.     External (M324, FieldUnitObj)
  974.     External (M325, FieldUnitObj)
  975.     External (M326, FieldUnitObj)
  976.     External (M327, FieldUnitObj)
  977.     External (M328, FieldUnitObj)
  978.     External (M329, DeviceObj)
  979.     External (M32A, DeviceObj)
  980.     External (M32B, DeviceObj)
  981.     External (M32C, DeviceObj)
  982.     External (M330, DeviceObj)
  983.     External (M331, FieldUnitObj)
  984.     External (M378, FieldUnitObj)
  985.     External (M379, FieldUnitObj)
  986.     External (M380, FieldUnitObj)
  987.     External (M381, FieldUnitObj)
  988.     External (M382, FieldUnitObj)
  989.     External (M383, FieldUnitObj)
  990.     External (M384, FieldUnitObj)
  991.     External (M385, FieldUnitObj)
  992.     External (M386, FieldUnitObj)
  993.     External (M387, FieldUnitObj)
  994.     External (M388, FieldUnitObj)
  995.     External (M389, FieldUnitObj)
  996.     External (M390, FieldUnitObj)
  997.     External (M391, FieldUnitObj)
  998.     External (M392, FieldUnitObj)
  999.     External (M404, BuffObj)
  1000.     External (M408, MutexObj)
  1001.     External (M414, FieldUnitObj)
  1002.     External (M444, FieldUnitObj)
  1003.     External (M449, FieldUnitObj)
  1004.     External (M453, FieldUnitObj)
  1005.     External (M454, FieldUnitObj)
  1006.     External (M455, FieldUnitObj)
  1007.     External (M456, FieldUnitObj)
  1008.     External (M457, FieldUnitObj)
  1009.     External (M460, MethodObj)    // 7 Arguments
  1010.     External (M4C0, FieldUnitObj)
  1011.     External (M4F0, FieldUnitObj)
  1012.     External (M610, FieldUnitObj)
  1013.     External (M620, FieldUnitObj)
  1014.     External (M631, FieldUnitObj)
  1015.     External (M652, FieldUnitObj)
  1016.  
  1017.     Scope (\)
  1018.     {
  1019.         Name (HPDW, 0x55)
  1020.         Name (WLD3, 0x01)
  1021.     }
  1022.  
  1023.     Scope (\_SB.GPIO)
  1024.     {
  1025.         Method (_AEI, 0, NotSerialized)  // _AEI: ACPI Event Interrupts
  1026.         {
  1027.             Name (BUF0, ResourceTemplate ()
  1028.             {
  1029.                 GpioInt (Level, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000,
  1030.                     "\\_SB.GPIO", 0x00, ResourceConsumer, ,
  1031.                     )
  1032.                     {   // Pin list
  1033.                         0x003D
  1034.                     }
  1035.                 GpioInt (Level, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000,
  1036.                     "\\_SB.GPIO", 0x00, ResourceConsumer, ,
  1037.                     )
  1038.                     {   // Pin list
  1039.                         0x003E
  1040.                     }
  1041.                 GpioInt (Level, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000,
  1042.                     "\\_SB.GPIO", 0x00, ResourceConsumer, ,
  1043.                     )
  1044.                     {   // Pin list
  1045.                         0x003A
  1046.                     }
  1047.                 GpioInt (Level, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000,
  1048.                     "\\_SB.GPIO", 0x00, ResourceConsumer, ,
  1049.                     )
  1050.                     {   // Pin list
  1051.                         0x003B
  1052.                     }
  1053.             })
  1054.             Name (PBTN, ResourceTemplate ()
  1055.             {
  1056.                 GpioInt (Edge, ActiveHigh, ExclusiveAndWake, PullDefault, 0x1388,
  1057.                     "\\_SB.GPIO", 0x00, ResourceConsumer, ,
  1058.                     )
  1059.                     {   // Pin list
  1060.                         0x0000
  1061.                     }
  1062.             })
  1063.             Name (BUF1, ResourceTemplate ()
  1064.             {
  1065.                 GpioInt (Edge, ActiveLow, ExclusiveAndWake, PullNone, 0x0000,
  1066.                     "\\_SB.GPIO", 0x00, ResourceConsumer, ,
  1067.                     )
  1068.                     {   // Pin list
  1069.                         0x0012
  1070.                     }
  1071.             })
  1072.             If ((\WLD3 == One))
  1073.             {
  1074.                 M460 ("  OEM-ASL-D3C ConcatenateRes BUF0 and BUF1\n", Zero, Zero, Zero, Zero, Zero, Zero)
  1075.                 ConcatenateResTemplate (BUF0, BUF1, Local0)
  1076.             }
  1077.             Else
  1078.             {
  1079.                 M460 ("  OEM-ASL-D3H Copy BUF0 to Local0\n", Zero, Zero, Zero, Zero, Zero, Zero)
  1080.                 Local0 = BUF0 /* \_SB_.GPIO._AEI.BUF0 */
  1081.             }
  1082.  
  1083.             If ((\_SB.CMBS == Zero))
  1084.             {
  1085.                 M460 ("  OEM-ASL-Concatenate Local0 and PBTN\n", Zero, Zero, Zero, Zero, Zero, Zero)
  1086.                 ConcatenateResTemplate (Local0, PBTN, Local1)
  1087.             }
  1088.             Else
  1089.             {
  1090.                 M460 ("  OEM-ASL-Copy Local0 to Local1\n", Zero, Zero, Zero, Zero, Zero, Zero)
  1091.                 Local1 = Local0
  1092.             }
  1093.  
  1094.             M460 ("  OEM-ASL-\\_SB.GPIO._AEI\n", Zero, Zero, Zero, Zero, Zero, Zero)
  1095.             Return (Local1)
  1096.         }
  1097.  
  1098.         Method (_EVT, 1, Serialized)  // _EVT: Event
  1099.         {
  1100.             M460 ("  OEM-ASL-\\_SB.GPIO._EVT-Start Case %d\n", ToInteger (Arg0), Zero, Zero, Zero, Zero, Zero)
  1101.             Switch (ToInteger (Arg0))
  1102.             {
  1103.                 Case (Zero)
  1104.                 {
  1105.                     M000 (0x3900)
  1106.                     M460 ("    Notify (\\_SB.PWRB, 0x80)\n", Zero, Zero, Zero, Zero, Zero, Zero)
  1107.                     Notify (\_SB.PWRB, 0x80) // Status Change
  1108.                 }
  1109.                 Case (0x12)
  1110.                 {
  1111.                     M000 (0x3912)
  1112.                     If ((\WLD3 == One))
  1113.                     {
  1114.                         M460 ("    Notify (\\_SB.PCI0.GPP5, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
  1115.                         Notify (\_SB.PCI0.GPP5, 0x02) // Device Wake
  1116.                     }
  1117.                 }
  1118.                 Case (0x3A)
  1119.                 {
  1120.                     M000 (0x393A)
  1121.                     M460 ("    Notify (\\_SB.PCI0.GPPC.XHC0, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
  1122.                     Notify (\_SB.PCI0.GPPC.XHC0, 0x02) // Device Wake
  1123.                 }
  1124.                 Case (0x3B)
  1125.                 {
  1126.                     M000 (0x393B)
  1127.                     M460 ("    Notify (\\_SB.PCI0.GPPA.XHC1, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
  1128.                     Notify (\_SB.PCI0.GPPA.XHC1, 0x02) // Device Wake
  1129.                 }
  1130.                 Case (0x3D)
  1131.                 {
  1132.                     M000 (0x393D)
  1133.                     M460 ("    Notify (\\_SB.PCI0.GPPA.AZAL, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
  1134.                     Notify (\_SB.PCI0.GPPA.AZAL, 0x02) // Device Wake
  1135.                 }
  1136.                 Case (0x3E)
  1137.                 {
  1138.                     M000 (0x393E)
  1139.                     M460 ("    Notify (\\_SB.PCI0.GPPA.ACP, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
  1140.                     Notify (\_SB.PCI0.GPPA.ACP, 0x02) // Device Wake
  1141.                 }
  1142.  
  1143.             }
  1144.  
  1145.             M460 ("  OEM-ASL-\\_SB.GPIO._EVT-End Case %d\n", ToInteger (Arg0), Zero, Zero, Zero, Zero, Zero)
  1146.         }
  1147.     }
  1148. }</pre>
  1149.             </TD>
  1150.         </TR>
  1151.        
  1152.         <TR>
  1153.             <TD>
  1154.                 <pre>/*
  1155.  * Intel ACPI Component Architecture
  1156.  * AML/ASL+ Disassembler version 20240927 (64-bit version)
  1157.  * Copyright (c) 2000 - 2023 Intel Corporation
  1158.  *
  1159.  * Disassembly of /sys/firmware/acpi/tables/IVRS
  1160.  *
  1161.  * ACPI Data Table [IVRS]
  1162.  *
  1163.  * Format: [HexOffset DecimalOffset ByteLength]  FieldName : FieldValue (in hex)
  1164.  */
  1165.  
  1166. [000h 0000 004h]                   Signature : "IVRS"    [I/O Virtualization Reporting Structure]
  1167. [004h 0004 004h]                Table Length : 000001F6
  1168. [008h 0008 001h]                    Revision : 02
  1169. [009h 0009 001h]                    Checksum : AB
  1170. [00Ah 0010 006h]                      Oem ID : "INSYDE"
  1171. [010h 0016 008h]                Oem Table ID : "EDK2    "
  1172. [018h 0024 004h]                Oem Revision : 00000001
  1173. [01Ch 0028 004h]             Asl Compiler ID : "ACPI"
  1174. [020h 0032 004h]       Asl Compiler Revision : 00040000
  1175.  
  1176. [024h 0036 004h]         Virtualization Info : 00203043
  1177. [028h 0040 008h]                    Reserved : 0000000000000000
  1178.  
  1179. [030h 0048 001h]               Subtable Type : 10 [Hardware Definition Block (IVHD)]
  1180. [031h 0049 001h]       Flags (decoded below) : B0
  1181.                                      HtTunEn : 0
  1182.                                       PassPW : 0
  1183.                                    ResPassPW : 0
  1184.                                 Isoc Control : 0
  1185.                                Iotlb Support : 1
  1186.                                     Coherent : 1
  1187.                             Prefetch Support : 0
  1188.                                  PPR Support : 1
  1189. [032h 0050 002h]                      Length : 0044
  1190. [034h 0052 002h]                    DeviceId : 0002
  1191. [036h 0054 002h]           Capability Offset : 0040
  1192. [038h 0056 008h]                Base Address : 00000000FD200000
  1193. [040h 0064 002h]           PCI Segment Group : 0000
  1194. [042h 0066 002h]         Virtualization Info : 0000
  1195. [044h 0068 004h]           Feature Reporting : 80048F6E
  1196.  
  1197. [048h 0072 001h]               Subtable Type : 03 [Device Entry: Start of Range]
  1198. [049h 0073 002h]                   Device ID : 0003
  1199. [04Bh 0075 001h] Data Setting (decoded below) : 00
  1200.                                     INITPass : 0
  1201.                                     EIntPass : 0
  1202.                                      NMIPass : 0
  1203.                                     Reserved : 0
  1204.                                  System MGMT : 0
  1205.                                   LINT0 Pass : 0
  1206.                                   LINT1 Pass : 0
  1207.  
  1208. [04Ch 0076 001h]               Subtable Type : 04 [Device Entry: End of Range]
  1209. [04Dh 0077 002h]                   Device ID : FFFE
  1210. [04Fh 0079 001h] Data Setting (decoded below) : 00
  1211.                                     INITPass : 0
  1212.                                     EIntPass : 0
  1213.                                      NMIPass : 0
  1214.                                     Reserved : 0
  1215.                                  System MGMT : 0
  1216.                                   LINT0 Pass : 0
  1217.                                   LINT1 Pass : 0
  1218.  
  1219. [050h 0080 001h]               Subtable Type : 43 [Device Entry: Alias Start of Range]
  1220. [051h 0081 002h]                   Device ID : FF00
  1221. [053h 0083 001h] Data Setting (decoded below) : 00
  1222.                                     INITPass : 0
  1223.                                     EIntPass : 0
  1224.                                      NMIPass : 0
  1225.                                     Reserved : 0
  1226.                                  System MGMT : 0
  1227.                                   LINT0 Pass : 0
  1228.                                   LINT1 Pass : 0
  1229. [054h 0084 001h]                    Reserved : 00
  1230. [055h 0085 002h]       Source Used Device ID : 00A5
  1231. [057h 0087 001h]                    Reserved : 00
  1232.  
  1233. [058h 0088 001h]               Subtable Type : 04 [Device Entry: End of Range]
  1234. [059h 0089 002h]                   Device ID : FFFF
  1235. [05Bh 0091 001h] Data Setting (decoded below) : 00
  1236.                                     INITPass : 0
  1237.                                     EIntPass : 0
  1238.                                      NMIPass : 0
  1239.                                     Reserved : 0
  1240.                                  System MGMT : 0
  1241.                                   LINT0 Pass : 0
  1242.                                   LINT1 Pass : 0
  1243.  
  1244. [05Ch 0092 001h]               Subtable Type : 48 [Device Entry: Special Device]
  1245. [05Dh 0093 002h]                   Device ID : 0000
  1246. [05Fh 0095 001h] Data Setting (decoded below) : 00
  1247.                                     INITPass : 0
  1248.                                     EIntPass : 0
  1249.                                      NMIPass : 0
  1250.                                     Reserved : 0
  1251.                                  System MGMT : 0
  1252.                                   LINT0 Pass : 0
  1253.                                   LINT1 Pass : 0
  1254. [060h 0096 001h]                      Handle : 00
  1255. [061h 0097 002h]       Source Used Device ID : 00A0
  1256. [063h 0099 001h]                     Variety : 02
  1257.  
  1258. [064h 0100 001h]               Subtable Type : 48 [Device Entry: Special Device]
  1259. [065h 0101 002h]                   Device ID : 0000
  1260. [067h 0103 001h] Data Setting (decoded below) : D7
  1261.                                     INITPass : 1
  1262.                                     EIntPass : 1
  1263.                                      NMIPass : 1
  1264.                                     Reserved : 0
  1265.                                  System MGMT : 1
  1266.                                   LINT0 Pass : 1
  1267.                                   LINT1 Pass : 1
  1268. [068h 0104 001h]                      Handle : 21
  1269. [069h 0105 002h]       Source Used Device ID : 00A0
  1270. [06Bh 0107 001h]                     Variety : 01
  1271.  
  1272. [06Ch 0108 001h]               Subtable Type : 48 [Device Entry: Special Device]
  1273. [06Dh 0109 002h]                   Device ID : 0000
  1274. [06Fh 0111 001h] Data Setting (decoded below) : 00
  1275.                                     INITPass : 0
  1276.                                     EIntPass : 0
  1277.                                      NMIPass : 0
  1278.                                     Reserved : 0
  1279.                                  System MGMT : 0
  1280.                                   LINT0 Pass : 0
  1281.                                   LINT1 Pass : 0
  1282. [070h 0112 001h]                      Handle : 22
  1283. [071h 0113 002h]       Source Used Device ID : 0001
  1284. [073h 0115 001h]                     Variety : 01
  1285.  
  1286. [074h 0116 001h]               Subtable Type : 11 [Hardware Definition Block (IVHD)]
  1287. [075h 0117 001h]       Flags (decoded below) : 30
  1288.                                      HtTunEn : 0
  1289.                                       PassPW : 0
  1290.                                    ResPassPW : 0
  1291.                                 Isoc Control : 0
  1292.                                Iotlb Support : 1
  1293.                                     Coherent : 1
  1294.                             Prefetch Support : 0
  1295.                                  PPR Support : 0
  1296. [076h 0118 002h]                      Length : 0054
  1297. [078h 0120 002h]                    DeviceId : 0002
  1298. [07Ah 0122 002h]           Capability Offset : 0040
  1299. [07Ch 0124 008h]                Base Address : 00000000FD200000
  1300. [084h 0132 002h]           PCI Segment Group : 0000
  1301. [086h 0134 002h]         Virtualization Info : 0000
  1302. [088h 0136 004h]                  Attributes : 00048000
  1303. [08Ch 0140 008h]                   EFR Image : 246577EFA2254AFA
  1304. [094h 0148 008h]                    Reserved : 0000000000000010
  1305.  
  1306. [09Ch 0156 001h]               Subtable Type : 03 [Device Entry: Start of Range]
  1307. [09Dh 0157 002h]                   Device ID : 0003
  1308. [09Fh 0159 001h] Data Setting (decoded below) : 00
  1309.                                     INITPass : 0
  1310.                                     EIntPass : 0
  1311.                                      NMIPass : 0
  1312.                                     Reserved : 0
  1313.                                  System MGMT : 0
  1314.                                   LINT0 Pass : 0
  1315.                                   LINT1 Pass : 0
  1316.  
  1317. [0A0h 0160 001h]               Subtable Type : 04 [Device Entry: End of Range]
  1318. [0A1h 0161 002h]                   Device ID : FFFE
  1319. [0A3h 0163 001h] Data Setting (decoded below) : 00
  1320.                                     INITPass : 0
  1321.                                     EIntPass : 0
  1322.                                      NMIPass : 0
  1323.                                     Reserved : 0
  1324.                                  System MGMT : 0
  1325.                                   LINT0 Pass : 0
  1326.                                   LINT1 Pass : 0
  1327.  
  1328. [0A4h 0164 001h]               Subtable Type : 43 [Device Entry: Alias Start of Range]
  1329. [0A5h 0165 002h]                   Device ID : FF00
  1330. [0A7h 0167 001h] Data Setting (decoded below) : 00
  1331.                                     INITPass : 0
  1332.                                     EIntPass : 0
  1333.                                      NMIPass : 0
  1334.                                     Reserved : 0
  1335.                                  System MGMT : 0
  1336.                                   LINT0 Pass : 0
  1337.                                   LINT1 Pass : 0
  1338. [0A8h 0168 001h]                    Reserved : 00
  1339. [0A9h 0169 002h]       Source Used Device ID : 00A5
  1340. [0ABh 0171 001h]                    Reserved : 00
  1341.  
  1342. [0ACh 0172 001h]               Subtable Type : 04 [Device Entry: End of Range]
  1343. [0ADh 0173 002h]                   Device ID : FFFF
  1344. [0AFh 0175 001h] Data Setting (decoded below) : 00
  1345.                                     INITPass : 0
  1346.                                     EIntPass : 0
  1347.                                      NMIPass : 0
  1348.                                     Reserved : 0
  1349.                                  System MGMT : 0
  1350.                                   LINT0 Pass : 0
  1351.                                   LINT1 Pass : 0
  1352.  
  1353. [0B0h 0176 001h]               Subtable Type : 48 [Device Entry: Special Device]
  1354. [0B1h 0177 002h]                   Device ID : 0000
  1355. [0B3h 0179 001h] Data Setting (decoded below) : 00
  1356.                                     INITPass : 0
  1357.                                     EIntPass : 0
  1358.                                      NMIPass : 0
  1359.                                     Reserved : 0
  1360.                                  System MGMT : 0
  1361.                                   LINT0 Pass : 0
  1362.                                   LINT1 Pass : 0
  1363. [0B4h 0180 001h]                      Handle : 00
  1364. [0B5h 0181 002h]       Source Used Device ID : 00A0
  1365. [0B7h 0183 001h]                     Variety : 02
  1366.  
  1367. [0B8h 0184 001h]               Subtable Type : 48 [Device Entry: Special Device]
  1368. [0B9h 0185 002h]                   Device ID : 0000
  1369. [0BBh 0187 001h] Data Setting (decoded below) : D7
  1370.                                     INITPass : 1
  1371.                                     EIntPass : 1
  1372.                                      NMIPass : 1
  1373.                                     Reserved : 0
  1374.                                  System MGMT : 1
  1375.                                   LINT0 Pass : 1
  1376.                                   LINT1 Pass : 1
  1377. [0BCh 0188 001h]                      Handle : 21
  1378. [0BDh 0189 002h]       Source Used Device ID : 00A0
  1379. [0BFh 0191 001h]                     Variety : 01
  1380.  
  1381. [0C0h 0192 001h]               Subtable Type : 48 [Device Entry: Special Device]
  1382. [0C1h 0193 002h]                   Device ID : 0000
  1383. [0C3h 0195 001h] Data Setting (decoded below) : 00
  1384.                                     INITPass : 0
  1385.                                     EIntPass : 0
  1386.                                      NMIPass : 0
  1387.                                     Reserved : 0
  1388.                                  System MGMT : 0
  1389.                                   LINT0 Pass : 0
  1390.                                   LINT1 Pass : 0
  1391. [0C4h 0196 001h]                      Handle : 22
  1392. [0C5h 0197 002h]       Source Used Device ID : 0001
  1393. [0C7h 0199 001h]                     Variety : 01
  1394.  
  1395. [0C8h 0200 001h]               Subtable Type : 21 [Memory Definition Block (IVMD)]
  1396. [0C9h 0201 001h]       Flags (decoded below) : 07
  1397.                                        Unity : 1
  1398.                                     Readable : 1
  1399.                                    Writeable : 1
  1400.                              Exclusion Range : 0
  1401. [0CAh 0202 002h]                      Length : 0020
  1402. [0CCh 0204 002h]                    DeviceId : 0060
  1403. [0CEh 0206 002h]              Auxiliary Data : 0000
  1404. [0D0h 0208 008h]                    Reserved : 0000000000000000
  1405. [0D8h 0216 008h]               Start Address : 000000007D900000
  1406. [0E0h 0224 008h]               Memory Length : 0000000000100000
  1407.  
  1408. [0E8h 0232 001h]               Subtable Type : 21 [Memory Definition Block (IVMD)]
  1409. [0E9h 0233 001h]       Flags (decoded below) : 08
  1410.                                        Unity : 0
  1411.                                     Readable : 0
  1412.                                    Writeable : 0
  1413.                              Exclusion Range : 1
  1414. [0EAh 0234 002h]                      Length : 0020
  1415. [0ECh 0236 002h]                    DeviceId : C107
  1416. [0EEh 0238 002h]              Auxiliary Data : 0000
  1417. [0F0h 0240 008h]                    Reserved : 0000000000000000
  1418. [0F8h 0248 008h]               Start Address : 0000000077E00000
  1419. [100h 0256 008h]               Memory Length : 0000000000020000
  1420.  
  1421. [108h 0264 001h]               Subtable Type : 40 [Hardware Definition Block - Mixed Format (IVHD)]
  1422. [109h 0265 001h]       Flags (decoded below) : 30
  1423.                                      HtTunEn : 0
  1424.                                       PassPW : 0
  1425.                                    ResPassPW : 0
  1426.                                 Isoc Control : 0
  1427.                                Iotlb Support : 1
  1428.                                     Coherent : 1
  1429.                             Prefetch Support : 0
  1430.                                  PPR Support : 0
  1431. [10Ah 0266 002h]                      Length : 00EE
  1432. [10Ch 0268 002h]                    DeviceId : 0002
  1433. [10Eh 0270 002h]           Capability Offset : 0040
  1434. [110h 0272 008h]                Base Address : 00000000FD200000
  1435. [118h 0280 002h]           PCI Segment Group : 0000
  1436. [11Ah 0282 002h]         Virtualization Info : 0000
  1437. [11Ch 0284 004h]                  Attributes : 00048000
  1438. [120h 0288 008h]                   EFR Image : 246577EFA2254AFA
  1439. [128h 0296 008h]                    Reserved : 0000000000000010
  1440.  
  1441. [130h 0304 001h]               Subtable Type : 03 [Device Entry: Start of Range]
  1442. [131h 0305 002h]                   Device ID : 0003
  1443. [133h 0307 001h] Data Setting (decoded below) : 00
  1444.                                     INITPass : 0
  1445.                                     EIntPass : 0
  1446.                                      NMIPass : 0
  1447.                                     Reserved : 0
  1448.                                  System MGMT : 0
  1449.                                   LINT0 Pass : 0
  1450.                                   LINT1 Pass : 0
  1451.  
  1452. [134h 0308 001h]               Subtable Type : 04 [Device Entry: End of Range]
  1453. [135h 0309 002h]                   Device ID : FFFE
  1454. [137h 0311 001h] Data Setting (decoded below) : 00
  1455.                                     INITPass : 0
  1456.                                     EIntPass : 0
  1457.                                      NMIPass : 0
  1458.                                     Reserved : 0
  1459.                                  System MGMT : 0
  1460.                                   LINT0 Pass : 0
  1461.                                   LINT1 Pass : 0
  1462.  
  1463. [138h 0312 001h]               Subtable Type : 43 [Device Entry: Alias Start of Range]
  1464. [139h 0313 002h]                   Device ID : FF00
  1465. [13Bh 0315 001h] Data Setting (decoded below) : 00
  1466.                                     INITPass : 0
  1467.                                     EIntPass : 0
  1468.                                      NMIPass : 0
  1469.                                     Reserved : 0
  1470.                                  System MGMT : 0
  1471.                                   LINT0 Pass : 0
  1472.                                   LINT1 Pass : 0
  1473. [13Ch 0316 001h]                    Reserved : 00
  1474. [13Dh 0317 002h]       Source Used Device ID : 00A5
  1475. [13Fh 0319 001h]                    Reserved : 00
  1476.  
  1477. [140h 0320 001h]               Subtable Type : 04 [Device Entry: End of Range]
  1478. [141h 0321 002h]                   Device ID : FFFF
  1479. [143h 0323 001h] Data Setting (decoded below) : 00
  1480.                                     INITPass : 0
  1481.                                     EIntPass : 0
  1482.                                      NMIPass : 0
  1483.                                     Reserved : 0
  1484.                                  System MGMT : 0
  1485.                                   LINT0 Pass : 0
  1486.                                   LINT1 Pass : 0
  1487.  
  1488. [144h 0324 001h]               Subtable Type : 48 [Device Entry: Special Device]
  1489. [145h 0325 002h]                   Device ID : 0000
  1490. [147h 0327 001h] Data Setting (decoded below) : 00
  1491.                                     INITPass : 0
  1492.                                     EIntPass : 0
  1493.                                      NMIPass : 0
  1494.                                     Reserved : 0
  1495.                                  System MGMT : 0
  1496.                                   LINT0 Pass : 0
  1497.                                   LINT1 Pass : 0
  1498. [148h 0328 001h]                      Handle : 00
  1499. [149h 0329 002h]       Source Used Device ID : 00A0
  1500. [14Bh 0331 001h]                     Variety : 02
  1501.  
  1502. [14Ch 0332 001h]               Subtable Type : 48 [Device Entry: Special Device]
  1503. [14Dh 0333 002h]                   Device ID : 0000
  1504. [14Fh 0335 001h] Data Setting (decoded below) : D7
  1505.                                     INITPass : 1
  1506.                                     EIntPass : 1
  1507.                                      NMIPass : 1
  1508.                                     Reserved : 0
  1509.                                  System MGMT : 1
  1510.                                   LINT0 Pass : 1
  1511.                                   LINT1 Pass : 1
  1512. [150h 0336 001h]                      Handle : 21
  1513. [151h 0337 002h]       Source Used Device ID : 00A0
  1514. [153h 0339 001h]                     Variety : 01
  1515.  
  1516. [154h 0340 001h]               Subtable Type : 48 [Device Entry: Special Device]
  1517. [155h 0341 002h]                   Device ID : 0000
  1518. [157h 0343 001h] Data Setting (decoded below) : 00
  1519.                                     INITPass : 0
  1520.                                     EIntPass : 0
  1521.                                      NMIPass : 0
  1522.                                     Reserved : 0
  1523.                                  System MGMT : 0
  1524.                                   LINT0 Pass : 0
  1525.                                   LINT1 Pass : 0
  1526. [158h 0344 001h]                      Handle : 22
  1527. [159h 0345 002h]       Source Used Device ID : 0001
  1528. [15Bh 0347 001h]                     Variety : 01
  1529.  
  1530. [15Ch 0348 001h]               Subtable Type : F0 [Device Entry: ACPI HID Named Device]
  1531. [15Dh 0349 002h]                   Device ID : 00A5
  1532. [15Fh 0351 001h] Data Setting (decoded below) : 40
  1533.                                     INITPass : 0
  1534.                                     EIntPass : 0
  1535.                                      NMIPass : 0
  1536.                                     Reserved : 0
  1537.                                  System MGMT : 0
  1538.                                   LINT0 Pass : 1
  1539.                                   LINT1 Pass : 0
  1540. [160h 0352 008h]                    ACPI HID : "AMDI0020"
  1541. [168h 0360 008h]                    ACPI CID : 0000000000000000
  1542. [170h 0368 001h]                  UID Format : 02
  1543. [171h 0369 001h]                  UID Length : 04
  1544. [172h 0370 004h]                         UID : "ID00"
  1545.  
  1546. [176h 0374 001h]               Subtable Type : F0 [Device Entry: ACPI HID Named Device]
  1547. [177h 0375 002h]                   Device ID : 00A5
  1548. [179h 0377 001h] Data Setting (decoded below) : 40
  1549.                                     INITPass : 0
  1550.                                     EIntPass : 0
  1551.                                      NMIPass : 0
  1552.                                     Reserved : 0
  1553.                                  System MGMT : 0
  1554.                                   LINT0 Pass : 1
  1555.                                   LINT1 Pass : 0
  1556. [17Ah 0378 008h]                    ACPI HID : "AMDI0020"
  1557. [182h 0386 008h]                    ACPI CID : 0000000000000000
  1558. [18Ah 0394 001h]                  UID Format : 02
  1559. [18Bh 0395 001h]                  UID Length : 04
  1560. [18Ch 0396 004h]                         UID : "ID01"
  1561.  
  1562. [190h 0400 001h]               Subtable Type : F0 [Device Entry: ACPI HID Named Device]
  1563. [191h 0401 002h]                   Device ID : 00A5
  1564. [193h 0403 001h] Data Setting (decoded below) : 40
  1565.                                     INITPass : 0
  1566.                                     EIntPass : 0
  1567.                                      NMIPass : 0
  1568.                                     Reserved : 0
  1569.                                  System MGMT : 0
  1570.                                   LINT0 Pass : 1
  1571.                                   LINT1 Pass : 0
  1572. [194h 0404 008h]                    ACPI HID : "AMDI0020"
  1573. [19Ch 0412 008h]                    ACPI CID : 0000000000000000
  1574. [1A4h 0420 001h]                  UID Format : 02
  1575. [1A5h 0421 001h]                  UID Length : 04
  1576. [1A6h 0422 004h]                         UID : "ID02"
  1577.  
  1578. [1AAh 0426 001h]               Subtable Type : F0 [Device Entry: ACPI HID Named Device]
  1579. [1ABh 0427 002h]                   Device ID : 0099
  1580. [1ADh 0429 001h] Data Setting (decoded below) : 40
  1581.                                     INITPass : 0
  1582.                                     EIntPass : 0
  1583.                                      NMIPass : 0
  1584.                                     Reserved : 0
  1585.                                  System MGMT : 0
  1586.                                   LINT0 Pass : 1
  1587.                                   LINT1 Pass : 0
  1588. [1AEh 0430 008h]                    ACPI HID : "AMDI0020"
  1589. [1B6h 0438 008h]                    ACPI CID : 0000000000000000
  1590. [1BEh 0446 001h]                  UID Format : 02
  1591. [1BFh 0447 001h]                  UID Length : 04
  1592. [1C0h 0448 004h]                         UID : "ID03"
  1593.  
  1594. [1C4h 0452 001h]               Subtable Type : F0 [Device Entry: ACPI HID Named Device]
  1595. [1C5h 0453 002h]                   Device ID : 0060
  1596. [1C7h 0455 001h] Data Setting (decoded below) : 40
  1597.                                     INITPass : 0
  1598.                                     EIntPass : 0
  1599.                                      NMIPass : 0
  1600.                                     Reserved : 0
  1601.                                  System MGMT : 0
  1602.                                   LINT0 Pass : 1
  1603.                                   LINT1 Pass : 0
  1604. [1C8h 0456 008h]                    ACPI HID : "MSFT0201"
  1605. [1D0h 0464 008h]                    ACPI CID : 0000000000000000
  1606. [1D8h 0472 001h]                  UID Format : 01
  1607. [1D9h 0473 001h]                  UID Length : 02
  1608. [1DAh 0474 008h]                         UID : 4D41400099F00001
  1609.  
  1610. [1DCh 0476 001h]               Subtable Type : F0 [Device Entry: ACPI HID Named Device]
  1611. [1DDh 0477 002h]                   Device ID : 0099
  1612. [1DFh 0479 001h] Data Setting (decoded below) : 40
  1613.                                     INITPass : 0
  1614.                                     EIntPass : 0
  1615.                                      NMIPass : 0
  1616.                                     Reserved : 0
  1617.                                  System MGMT : 0
  1618.                                   LINT0 Pass : 1
  1619.                                   LINT1 Pass : 0
  1620. [1E0h 0480 008h]                    ACPI HID : "AMDI0020"
  1621. [1E8h 0488 008h]                    ACPI CID : 0000000000000000
  1622. [1F0h 0496 001h]                  UID Format : 02
  1623. [1F1h 0497 001h]                  UID Length : 04
  1624. [1F2h 0498 004h]                         UID : "ID04"
  1625.  
  1626. Raw Table Data: Length 502 (0x1F6)
  1627.  
  1628.     0000: 49 56 52 53 F6 01 00 00 02 AB 49 4E 53 59 44 45  // IVRS......INSYDE
  1629.     0010: 45 44 4B 32 20 20 20 20 01 00 00 00 41 43 50 49  // EDK2    ....ACPI
  1630.     0020: 00 00 04 00 43 30 20 00 00 00 00 00 00 00 00 00  // ....C0 .........
  1631.     0030: 10 B0 44 00 02 00 40 00 00 00 20 FD 00 00 00 00  // ..D...@... .....
  1632.     0040: 00 00 00 00 6E 8F 04 80 03 03 00 00 04 FE FF 00  // ....n...........
  1633.     0050: 43 00 FF 00 00 A5 00 00 04 FF FF 00 48 00 00 00  // C...........H...
  1634.     0060: 00 A0 00 02 48 00 00 D7 21 A0 00 01 48 00 00 00  // ....H...!...H...
  1635.     0070: 22 01 00 01 11 30 54 00 02 00 40 00 00 00 20 FD  // "....0T...@... .
  1636.     0080: 00 00 00 00 00 00 00 00 00 80 04 00 FA 4A 25 A2  // .............J%.
  1637.     0090: EF 77 65 24 10 00 00 00 00 00 00 00 03 03 00 00  // .we$............
  1638.     00A0: 04 FE FF 00 43 00 FF 00 00 A5 00 00 04 FF FF 00  // ....C...........
  1639.     00B0: 48 00 00 00 00 A0 00 02 48 00 00 D7 21 A0 00 01  // H.......H...!...
  1640.     00C0: 48 00 00 00 22 01 00 01 21 07 20 00 60 00 00 00  // H..."...!. .`...
  1641.     00D0: 00 00 00 00 00 00 00 00 00 00 90 7D 00 00 00 00  // ...........}....
  1642.     00E0: 00 00 10 00 00 00 00 00 21 08 20 00 07 C1 00 00  // ........!. .....
  1643.     00F0: 00 00 00 00 00 00 00 00 00 00 E0 77 00 00 00 00  // ...........w....
  1644.     0100: 00 00 02 00 00 00 00 00 40 30 EE 00 02 00 40 00  // ........@0....@.
  1645.     0110: 00 00 20 FD 00 00 00 00 00 00 00 00 00 80 04 00  // .. .............
  1646.     0120: FA 4A 25 A2 EF 77 65 24 10 00 00 00 00 00 00 00  // .J%..we$........
  1647.     0130: 03 03 00 00 04 FE FF 00 43 00 FF 00 00 A5 00 00  // ........C.......
  1648.     0140: 04 FF FF 00 48 00 00 00 00 A0 00 02 48 00 00 D7  // ....H.......H...
  1649.     0150: 21 A0 00 01 48 00 00 00 22 01 00 01 F0 A5 00 40  // !...H..."......@
  1650.     0160: 41 4D 44 49 30 30 32 30 00 00 00 00 00 00 00 00  // AMDI0020........
  1651.     0170: 02 04 49 44 30 30 F0 A5 00 40 41 4D 44 49 30 30  // ..ID00...@AMDI00
  1652.     0180: 32 30 00 00 00 00 00 00 00 00 02 04 49 44 30 31  // 20..........ID01
  1653.     0190: F0 A5 00 40 41 4D 44 49 30 30 32 30 00 00 00 00  // ...@AMDI0020....
  1654.     01A0: 00 00 00 00 02 04 49 44 30 32 F0 99 00 40 41 4D  // ......ID02...@AM
  1655.     01B0: 44 49 30 30 32 30 00 00 00 00 00 00 00 00 02 04  // DI0020..........
  1656.     01C0: 49 44 30 33 F0 60 00 40 4D 53 46 54 30 32 30 31  // ID03.`.@MSFT0201
  1657.     01D0: 00 00 00 00 00 00 00 00 01 02 01 00 F0 99 00 40  // ...............@
  1658.     01E0: 41 4D 44 49 30 30 32 30 00 00 00 00 00 00 00 00  // AMDI0020........
  1659.     01F0: 02 04 49 44 30 34                                // ..ID04</pre>
  1660.             </TD>
  1661.         </TR>
  1662.        
  1663.         <TR>
  1664.             <TD>
  1665.                 <pre>ACPI name: ACPI path [driver]
  1666. β”‚ LNXSYSTM:00: \ [None]
  1667. β”‚ LNXSYBUS:00: \_SB_ [None]
  1668. β”‚ ACPI0010:00: \_SB_.PLTF [None]
  1669. β”‚ ACPI0007:00: \_SB_.PLTF.C000 [processor]
  1670. β”‚ ACPI0007:01: \_SB_.PLTF.C001 [processor]
  1671. β”‚ ACPI0007:02: \_SB_.PLTF.C002 [processor]
  1672. β”‚ ACPI0007:03: \_SB_.PLTF.C003 [processor]
  1673. β”‚ ACPI0007:04: \_SB_.PLTF.C004 [processor]
  1674. β”‚ ACPI0007:05: \_SB_.PLTF.C005 [processor]
  1675. β”‚ ACPI0007:06: \_SB_.PLTF.C006 [processor]
  1676. β”‚ ACPI0007:07: \_SB_.PLTF.C007 [processor]
  1677. β”‚ ACPI0007:08: \_SB_.PLTF.C008 [processor]
  1678. β”‚ ACPI0007:09: \_SB_.PLTF.C009 [processor]
  1679. β”‚ ACPI0007:0a: \_SB_.PLTF.C00A [processor]
  1680. β”‚ ACPI0007:0b: \_SB_.PLTF.C00B [processor]
  1681. β”‚ ACPI0007:0c: \_SB_.PLTF.C00C [processor]
  1682. β”‚ ACPI0007:0d: \_SB_.PLTF.C00D [processor]
  1683. β”‚ ACPI0007:0e: \_SB_.PLTF.C00E [processor]
  1684. β”‚ ACPI0007:0f: \_SB_.PLTF.C00F [processor]
  1685. β”‚ ACPI0007:10: \_SB_.PLTF.C010 [processor]
  1686. β”‚ ACPI0007:11: \_SB_.PLTF.C011 [processor]
  1687. β”‚ ACPI0007:12: \_SB_.PLTF.C012 [processor]
  1688. β”‚ ACPI0007:13: \_SB_.PLTF.C013 [processor]
  1689. β”‚ ACPI0007:14: \_SB_.PLTF.C014 [processor]
  1690. β”‚ ACPI0007:15: \_SB_.PLTF.C015 [processor]
  1691. β”‚ ACPI0007:16: \_SB_.PLTF.C016 [processor]
  1692. β”‚ ACPI0007:17: \_SB_.PLTF.C017 [processor]
  1693. β”‚ AMDI000A:00: \_SB_.PEP_ [amd_pmc]
  1694. β”‚ AMDI0010:00: \_SB_.I2CA [i2c_designware]
  1695. β”‚ AMDI0010:01: \_SB_.I2CB [i2c_designware]
  1696. β”‚ FRMW0004:00: \_SB_.I2CB.ECKB [i2c_hid_acpi]
  1697. β”‚ FRMW0005:00: \_SB_.I2CB.ECSL [i2c_hid_acpi]
  1698. β”‚ AMDI0010:03: \_SB_.I2CD [i2c_designware]
  1699. β”‚ PIXA3854:00: \_SB_.I2CD.TPAD [i2c_hid_acpi]
  1700. β”‚ AMDI0030:00: \_SB_.GPIO [amd_gpio]
  1701. β”‚ AMDI0052:00: \_SB_.PPKG [None]
  1702. β”‚ AMDI0080:00: \_SB_.VGBI [None]
  1703. β”‚ AMDI0081:00: \_SB_.CIND [None]
  1704. β”‚ AMDI0103:00: \_SB_.PMF_ [amd-pmf]
  1705. β”‚ AMDI0104:00: \_SB_.MP1_ [None]
  1706. β”‚ DRTM0001:00: \_SB_.DRTM [None]
  1707. β”‚ FRMWC004:00: \_SB_.CREC [cros_ec_lpcs]
  1708. β”‚ LNXPOWER:11: \_SB_.FN10 [None]
  1709. β”‚ MSFT0101:00: \_SB_.TPM2 [None]
  1710. β”‚ MSFT0201:00: \_SB_.MHSP [None]
  1711. β”‚ PNP0A08:00: \_SB_.PCI0 [None]
  1712. β”‚ LNXPOWER:04: \_SB_.PCI0.GPP3.P0NV [None]
  1713. β”‚ LNXPOWER:05: \_SB_.PCI0.GPP5.PWSR [None]
  1714. β”‚ LNXPOWER:06: \_SB_.PCI0.GPPA.PWRS [None]
  1715. β”‚ PNP0103:00: \_SB_.PCI0.HPET [None]
  1716. β”‚ PNP0C14:00: \_SB_.PCI0.DWMI [acpi-wmi]
  1717. β”‚ device:00: \_SB_.PCI0.GPP0 [pcieport]
  1718. β”‚ LNXPOWER:01: \_SB_.PCI0.GPP0.SWUS.PWRS [None]
  1719. β”‚ device:01: \_SB_.PCI0.GPP0.SWUS [None]
  1720. β”‚ device:02: \_SB_.PCI0.GPP1 [pcieport]
  1721. β”‚ LNXPOWER:03: \_SB_.PCI0.GPP1.SWUS.PWRS [None]
  1722. β”‚ device:03: \_SB_.PCI0.GPP1.SWUS [None]
  1723. β”‚ device:04: \_SB_.PCI0.GPP3 [pcieport]
  1724. β”‚ device:05: \_SB_.PCI0.GPP3.NVME [nvme]
  1725. β”‚ device:06: \_SB_.PCI0.GPP4 [None]
  1726. β”‚ device:07: \_SB_.PCI0.GPP4.SDCR [None]
  1727. β”‚ device:08: \_SB_.PCI0.GPP5 [pcieport]
  1728. β”‚ device:09: \_SB_.PCI0.GPP5.WLAN [mt7921e]
  1729. β”‚ device:0a: \_SB_.PCI0.GPP6 [None]
  1730. β”‚ device:0b: \_SB_.PCI0.GPP6.RTL8 [None]
  1731. β”‚ device:0c: \_SB_.PCI0.GPP6.RUSB [None]
  1732. β”‚ device:0d: \_SB_.PCI0.GPP7 [None]
  1733. β”‚ device:0e: \_SB_.PCI0.GPP7.WWAN [None]
  1734. β”‚ device:0f: \_SB_.PCI0.GPP8 [None]
  1735. β”‚ device:10: \_SB_.PCI0.GPP9 [None]
  1736. β”‚ device:11: \_SB_.PCI0.GP10 [None]
  1737. β”‚ device:12: \_SB_.PCI0.GP11 [None]
  1738. β”‚ device:13: \_SB_.PCI0.GP12 [None]
  1739. β”‚ device:14: \_SB_.PCI0.GP13 [None]
  1740. β”‚ device:15: \_SB_.PCI0.GP14 [None]
  1741. β”‚ device:16: \_SB_.PCI0.GPPA [pcieport]
  1742. β”‚ LNXPOWER:07: \_SB_.PCI0.GPPA.VGA_.PWRS [None]
  1743. β”‚ LNXVIDEO:00: \_SB_.PCI0.GPPA.VGA_ [amdgpu]
  1744. β”‚ device:17: \_SB_.PCI0.GPPA.VGA_.LCD_ [None]
  1745. β”‚ device:18: \_SB_.PCI0.GPPA.PSP_ [ccp]
  1746. β”‚ device:19: \_SB_.PCI0.GPPA.ACP_ [snd_acp_pci]
  1747. β”‚ device:1a: \_SB_.PCI0.GPPA.ACP_.HDA0 [None]
  1748. β”‚ device:1b: \_SB_.PCI0.GPPA.ACP_.PDMC [None]
  1749. β”‚ device:1c: \_SB_.PCI0.GPPA.ACP_.I2SC [None]
  1750. β”‚ device:1d: \_SB_.PCI0.GPPA.ACP_.BTSC [None]
  1751. β”‚ device:1e: \_SB_.PCI0.GPPA.ACP_.SDWC [None]
  1752. β”‚ device:1f: \_SB_.PCI0.GPPA.ACP_.SDWS [None]
  1753. β”‚ device:20: \_SB_.PCI0.GPPA.ACP_.USBS [None]
  1754. β”‚ device:21: \_SB_.PCI0.GPPA.AZAL [snd_hda_intel]
  1755. β”‚ device:22: \_SB_.PCI0.GPPA.HDAU [snd_hda_intel]
  1756. β”‚ device:23: \_SB_.PCI0.GPPA.XHC1 [xhci_hcd]
  1757. β”‚ device:24: \_SB_.PCI0.GPPA.XHC1.RHUB [usb]
  1758. β”‚ device:25: \_SB_.PCI0.GPPA.XHC1.RHUB.PRT1 [None]
  1759. β”‚ device:26: \_SB_.PCI0.GPPA.XHC1.RHUB.PRT2 [None]
  1760. β”‚ device:27: \_SB_.PCI0.GPPA.MP2C [None]
  1761. β”‚ device:28: \_SB_.PCI0.GPPB [pcieport]
  1762. β”‚ device:29: \_SB_.PCI0.GPPB.IPU_ [None]
  1763. β”‚ device:2a: \_SB_.PCI0.GPPC [pcieport]
  1764. β”‚ device:2b: \_SB_.PCI0.GPPC.XHC0 [xhci_hcd]
  1765. β”‚ device:2c: \_SB_.PCI0.GPPC.XHC0.RHUB [usb]
  1766. β”‚ device:2d: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT1 [None]
  1767. β”‚ device:2e: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT2 [None]
  1768. β”‚ device:2f: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT3 [None]
  1769. β”‚ device:30: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT3.WCAM [None]
  1770. β”‚ device:31: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT3.CAMI [None]
  1771. β”‚ device:32: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT4 [None]
  1772. β”‚ device:33: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT5 [None]
  1773. β”‚ device:34: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT6 [None]
  1774. β”‚ device:35: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT7 [None]
  1775. β”‚ device:36: \_SB_.PCI0.GPPC.XHC3 [xhci_hcd]
  1776. β”‚ device:37: \_SB_.PCI0.GPPC.XHC3.RHUB [usb]
  1777. β”‚ device:38: \_SB_.PCI0.GPPC.XHC3.RHUB.PRT1 [None]
  1778. β”‚ device:39: \_SB_.PCI0.GPPC.XHC3.RHUB.PRT2 [None]
  1779. β”‚ device:3a: \_SB_.PCI0.GPPC.XHC4 [xhci_hcd]
  1780. β”‚ device:3b: \_SB_.PCI0.GPPC.XHC4.RHUB [usb]
  1781. β”‚ device:3c: \_SB_.PCI0.GPPC.XHC4.RHUB.PRT1 [None]
  1782. β”‚ device:3d: \_SB_.PCI0.GPPC.XHC4.RHUB.PRT2 [None]
  1783. β”‚ device:3e: \_SB_.PCI0.GPPC.NHI0 [thunderbolt]
  1784. β”‚ device:3f: \_SB_.PCI0.GPPC.NHI1 [thunderbolt]
  1785. β”‚ device:40: \_SB_.PCI0.SMBS [piix4_smbus]
  1786. β”‚ device:41: \_SB_.PCI0.LPC0 [None]
  1787. β”‚ ACPI0003:00: \_SB_.PCI0.LPC0.ACAD [ac]
  1788. β”‚ MSFT0001:00: \_SB_.PCI0.LPC0.KBC0 [i8042 kbd]
  1789. β”‚ PNP0000:00: \_SB_.PCI0.LPC0.PIC_ [None]
  1790. β”‚ PNP0100:00: \_SB_.PCI0.LPC0.TMR_ [None]
  1791. β”‚ PNP0200:00: \_SB_.PCI0.LPC0.DMAC [None]
  1792. β”‚ PNP0800:00: \_SB_.PCI0.LPC0.SPKR [None]
  1793. β”‚ PNP0B00:00: \_SB_.PCI0.LPC0.RTC_ [rtc_cmos]
  1794. β”‚ PNP0C01:00: \_SB_.PCI0.LPC0.SPIR [system]
  1795. β”‚ PNP0C02:01: \_SB_.PCI0.LPC0.SYSR [system]
  1796. β”‚ PNP0C04:00: \_SB_.PCI0.LPC0.COPR [None]
  1797. β”‚ PNP0C09:00: \_SB_.PCI0.LPC0.EC0_ [None]
  1798. β”‚ PNP0C0D:00: \_SB_.PCI0.LPC0.EC0_.LID0 [None]
  1799. β”‚ PNP0C0A:00: \_SB_.PCI0.LPC0.BAT1 [None]
  1800. β”‚ PNP0C02:00: \_SB_.AMDM [system]
  1801. β”‚ PNP0C02:02: \_SB_.AWR0 [None]
  1802. β”‚ PNP0C02:03: \_SB_.AWR0.ABR0 [None]
  1803. β”‚ PNP0C02:04: \_SB_.AWR0.ABR1 [None]
  1804. β”‚ PNP0C02:05: \_SB_.AWR0.ABR2 [None]
  1805. β”‚ PNP0C02:06: \_SB_.AWR0.ABR3 [None]
  1806. β”‚ PNP0C02:07: \_SB_.AWR0.ABR4 [None]
  1807. β”‚ PNP0C02:08: \_SB_.AWR0.ABR5 [None]
  1808. β”‚ PNP0C02:09: \_SB_.AWR0.ABR6 [None]
  1809. β”‚ PNP0C02:0a: \_SB_.AWR0.ABR7 [None]
  1810. β”‚ PNP0C02:0b: \_SB_.AWR0.ABR8 [None]
  1811. β”‚ PNP0C02:0c: \_SB_.AWR0.ABR9 [None]
  1812. β”‚ PNP0C02:0d: \_SB_.AWR0.ABRA [None]
  1813. β”‚ PNP0C0B:00: \_SB_.FAN_ [acpi-fan]
  1814. β”‚ PNP0C0C:00: \_SB_.PWRB [None]
  1815. β”‚ USBC000:00: \_SB_.UBTC [ucsi_acpi]
  1816. β”‚ device:42: \_SB_.UBTC.CR01 [None]
  1817. β”‚ device:43: \_SB_.UBTC.CR02 [None]
  1818. β”‚ device:44: \_SB_.UBTC.CR03 [None]
  1819. β”‚ device:45: \_SB_.UBTC.CR04 [None]
  1820. β”‚ LNXSYBUS:01: \_TZ_ [None]
  1821. β”‚ LNXTHERM:00: \_TZ_.TZ00 [None]
  1822. β”‚ LNXTHERM:01: \_TZ_.TZ01 [None]
  1823. β”‚ LNXTHERM:02: \_TZ_.TZ02 [None]
  1824. β”‚ LNXTHERM:03: \_TZ_.TZ03 [None]
  1825. └─PNP0C14:01: \AOD_ [acpi-wmi]</pre>
  1826.             </TD>
  1827.         </TR>
  1828.        
  1829.         <TR>
  1830.             <TD>
  1831.                 <pre>Device firmware checks unavailable without gobject introspection</pre>
  1832.             </TD>
  1833.         </TR>
  1834.        
  1835.     </table>
  1836.    
  1837.     <h2>Summary</h2>
  1838.    
  1839.    
  1840.    
  1841.     <select id="start_select" class="hidden-by-default"></select>
  1842.     <select id="end_select" class="hidden-by-default"></select>
  1843.     <input type="radio" name="session1" id="all_time" value="all_time" checked="" class="hidden-by-default" />
  1844.     <input type="radio" name="session1" id="med_duration" value="600" class="hidden-by-default" />
  1845.     <input type="radio" name="session1" id="min_duration" value="60" class="hidden-by-default" />
  1846.    
  1847.     <table border="1" class="dataframe" id="summary">  <thead>    <tr style="text-align: right;">      <th></th>      <th>Start Time</th>      <th>Duration</th>      <th>Hardware Sleep</th>      <th>Battery Start</th>      <th>Battery Delta</th>      <th>Battery Ave Rate</th>      <th>Wake Pin</th>      <th>Wake Interrupt</th>    </tr>  </thead>  <tbody>    <tr class="row-low" onclick="pick_summary_cycle(0)">      <th>0</th>      <td>2025-05-15 16:20:05</td>      <td>0:02:02</td>      <td>0.00%</td>      <td>71.50%</td>      <td>-0.32%</td>      <td>-0.27W</td>      <td></td>      <td>ACPI SCI</td>    </tr>  </tbody></table>
  1848.    
  1849.     <p><label for="cycle" class="hidden-by-default">Choose a cycle:</label>
  1850.         <select id="cycles" onchange="cycle_data_changed()" class="hidden-by-default">
  1851.             <option value="0">Disabled</option>
  1852.            
  1853.             <option value="1">Cycle 0</option>
  1854.            
  1855.         </select>
  1856.     </p>
  1857.     <table id="cycledata" class="hide-borders">
  1858.        
  1859.         <TR class="row-disabled" id="cycledata1">
  1860.             <TD><p>❌ Did not reach hardware sleep state</p><p>πŸ’€ Notify devices ['UBTC'] found during suspend</p><p></p></TD>
  1861.         </TR>
  1862.        
  1863.     </table>
  1864.    
  1865.    
  1866.     <p><label for="failure" class="hidden-by-default">Choose a cycle:</label>
  1867.         <select id="failures" onchange="failure_data_changed()" class="hidden-by-default">
  1868.             <option value="0">Disabled</option>
  1869.            
  1870.             <option value="1">Cycle 0</option>
  1871.            
  1872.         </select>
  1873.     </p>
  1874.     <table id="failuredata" class="hide-borders">
  1875.        
  1876.         <TR class="row-disabled" id="failuredata1">
  1877.             <TD>System had low hardware sleep residency</TD>
  1878.             <TD>The system was asleep for 0:02:02, but only spent 0.00% of this time in a hardware sleep state.  In sleep cycles that are at least 60 seconds long it's expected you spend above 90 percent of the cycle in hardware sleep.</TD>
  1879.         </TR>
  1880.        
  1881.     </table>
  1882.    
  1883.    
  1884.     <h3 id="debug_label" style="display:none;">Debugging 🦟</h3>
  1885.     <p><label for="debug" class="hidden-by-default">Choose a cycle:</label>
  1886.         <select id="debug" onchange="debug_data_changed()" class="hidden-by-default">
  1887.             <option value="0">Disabled</option>
  1888.            
  1889.             <option value="1">Cycle 0</option>
  1890.            
  1891.         </select>
  1892.     </p>
  1893.     <table id="debugdata" class="hide-borders">
  1894.        
  1895.         <TR class="row-disabled" id="debugdata1">
  1896.             <TD>
  1897.                
  1898.                 <div class="β—‹">BAT1 energy level is 2690000 Β΅Ah</div>
  1899.                
  1900.                 <div class="β—‹">ACPI Lid (/proc/acpi/button/lid/LID0/state): open</div>
  1901.                
  1902.                 <div class="β—‹">/proc/cmdline: </div>
  1903.                
  1904.                 <div class="β—‹">Possible wakeup sources:</div>
  1905.                
  1906.                 <div class="β—‹">β”‚  [/sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:001/wakeup60]: enabled</div>
  1907.                
  1908.                 <div class="β—‹">β”‚  [/sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:002/wakeup61]: enabled</div>
  1909.                
  1910.                 <div class="β—‹">β”‚  [/sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:003/wakeup62]: enabled</div>
  1911.                
  1912.                 <div class="β—‹">β”‚  [/sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:004/wakeup63]: enabled</div>
  1913.                
  1914.                 <div class="β—‹">β”‚ ACPI Battery [PNP0C0A:00]: enabled</div>
  1915.                
  1916.                 <div class="β—‹">β”‚ ACPI Lid Switch [PNP0C0D:00]: enabled</div>
  1917.                
  1918.                 <div class="β—‹">β”‚ ACPI Power Button [PNP0C0C:00]: enabled</div>
  1919.                
  1920.                 <div class="β—‹">β”‚ AT Translated Set 2 keyboard [serio0]: enabled</div>
  1921.                
  1922.                 <div class="β—‹">β”‚ Advanced Micro Devices, Inc. [AMD] ISA bridge [0000:00:14.3]: enabled</div>
  1923.                
  1924.                 <div class="β—‹">β”‚ Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:01.1]: enabled</div>
  1925.                
  1926.                 <div class="β—‹">β”‚ Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:01.2]: enabled</div>
  1927.                
  1928.                 <div class="β—‹">β”‚ Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:02.1]: enabled</div>
  1929.                
  1930.                 <div class="β—‹">β”‚ Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:02.3]: enabled</div>
  1931.                
  1932.                 <div class="β—‹">β”‚ Advanced Micro Devices, Inc. [AMD] USB controller [0000:c1:00.4]: enabled</div>
  1933.                
  1934.                 <div class="β—‹">β”‚ Advanced Micro Devices, Inc. [AMD] USB controller [0000:c3:00.0]: enabled</div>
  1935.                
  1936.                 <div class="β—‹">β”‚ Advanced Micro Devices, Inc. [AMD] USB controller [0000:c3:00.3]: enabled</div>
  1937.                
  1938.                 <div class="β—‹">β”‚ Advanced Micro Devices, Inc. [AMD] USB controller [0000:c3:00.4]: enabled</div>
  1939.                
  1940.                 <div class="β—‹">β”‚ Advanced Micro Devices, Inc. [AMD] USB controller [0000:c3:00.5]: enabled</div>
  1941.                
  1942.                 <div class="β—‹">β”‚ Advanced Micro Devices, Inc. [AMD] USB controller [0000:c3:00.6]: enabled</div>
  1943.                
  1944.                 <div class="β—‹">β”‚ PIXA3854:00 093A:0274 Touchpad [i2c-PIXA3854:00]: enabled</div>
  1945.                
  1946.                 <div class="β—‹">β”‚ Plug-n-play Real Time Clock [00:01]: enabled</div>
  1947.                
  1948.                 <div class="β—‹">β”‚ Real Time Clock alarm timer [rtc0]: enabled</div>
  1949.                
  1950.                 <div class="β—‹">β”‚ Thunderbolt domain [domain0]: enabled</div>
  1951.                
  1952.                 <div class="β—‹">β”‚ Thunderbolt domain [domain1]: enabled</div>
  1953.                
  1954.                 <div class="β—‹">β”‚ USB4 host controller [0-0]: enabled</div>
  1955.                
  1956.                 <div class="β—‹">└─USB4 host controller [1-0]: enabled</div>
  1957.                
  1958.                 <div class="β—‹">Power Profiles:</div>
  1959.                
  1960.                 <div class="β—‹">β”‚ performance:</div>
  1961.                
  1962.                 <div class="β—‹">β”‚ CpuDriver: amd_pstate</div>
  1963.                
  1964.                 <div class="β—‹">└─PlatformDriver:  platform_profile</div>
  1965.                
  1966.                 <div class="β—‹">β”‚ Degraded:   no</div>
  1967.                
  1968.                 <div class="β—‹">β”‚ * balanced:</div>
  1969.                
  1970.                 <div class="β—‹">β”‚ CpuDriver: amd_pstate</div>
  1971.                
  1972.                 <div class="β—‹">└─PlatformDriver:  platform_profile</div>
  1973.                
  1974.                 <div class="β—‹">β”‚ power-saver:</div>
  1975.                
  1976.                 <div class="β—‹">β”‚ CpuDriver: amd_pstate</div>
  1977.                
  1978.                 <div class="β—‹">└─PlatformDriver:  platform_profile</div>
  1979.                
  1980.                 <div class="β—‹">IPS status</div>
  1981.                
  1982.                 <div class="β—‹">β”‚ IPS config: 6</div>
  1983.                
  1984.                 <div class="β—‹">β”‚ Idle optimization: 0</div>
  1985.                
  1986.                 <div class="β—‹">β”‚ Idle workqueue - enabled: 1</div>
  1987.                
  1988.                 <div class="β—‹">β”‚ Idle workqueue - running: 1</div>
  1989.                
  1990.                 <div class="β—‹">β”‚ entry counts: rcg=345 ips1=1 ips2=1</div>
  1991.                
  1992.                 <div class="β—‹">└─exit counts: rcg=345 ips1=1 ips2=1</div>
  1993.                
  1994.                 <div class="β—‹">Thermal zones</div>
  1995.                
  1996.                 <div class="β—‹">β”œβ”€ LNXTHERM:00</div>
  1997.                
  1998.                 <div class="β—‹">β”‚     temp: 42.8Β°C</div>
  1999.                
  2000.                 <div class="β—‹">β”‚     critical trip: 170.0Β°C</div>
  2001.                
  2002.                 <div class="β—‹">β”‚     hot trip: 160.0Β°C</div>
  2003.                
  2004.                 <div class="β—‹">β”œβ”€ LNXTHERM:01</div>
  2005.                
  2006.                 <div class="β—‹">β”‚     temp: 46.8Β°C</div>
  2007.                
  2008.                 <div class="β—‹">β”‚     critical trip: 170.0Β°C</div>
  2009.                
  2010.                 <div class="β—‹">β”‚     hot trip: 160.0Β°C</div>
  2011.                
  2012.                 <div class="β—‹">β”œβ”€ LNXTHERM:02</div>
  2013.                
  2014.                 <div class="β—‹">β”‚     temp: 38.8Β°C</div>
  2015.                
  2016.                 <div class="β—‹">β”‚     critical trip: 170.0Β°C</div>
  2017.                
  2018.                 <div class="β—‹">β”‚     hot trip: 160.0Β°C</div>
  2019.                
  2020.                 <div class="β—‹">└─LNXTHERM:03</div>
  2021.                
  2022.                 <div class="β—‹">    temp: 49.8Β°C</div>
  2023.                
  2024.                 <div class="β—‹">    critical trip: 170.0Β°C</div>
  2025.                
  2026.                 <div class="β—‹">    hot trip: 160.0Β°C</div>
  2027.                
  2028.                 <div class="β—‹">Suspend timer programmed for 0:02:00</div>
  2029.                
  2030.                 <div class="β—‹">PM: suspend entry (s2idle)</div>
  2031.                
  2032.                 <div class="β—‹">Filesystems sync: 0.009 seconds</div>
  2033.                
  2034.                 <div class="β—‹">Freezing user space processes</div>
  2035.                
  2036.                 <div class="β—‹">Freezing user space processes completed (elapsed 0.002 seconds)</div>
  2037.                
  2038.                 <div class="β—‹">OOM killer disabled.</div>
  2039.                
  2040.                 <div class="β—‹">Freezing remaining freezable tasks</div>
  2041.                
  2042.                 <div class="β—‹">Freezing remaining freezable tasks completed (elapsed 0.001 seconds)</div>
  2043.                
  2044.                 <div class="β—‹">printk: Suspending console(s) (use no_console_suspend to debug)</div>
  2045.                
  2046.                 <div class="β—‹">wlp192s0: deauthenticating from 7e:45:58:3e:83:62 by local choice (Reason: 3=DEAUTH_LEAVING)</div>
  2047.                
  2048.                 <div class="🦟">PM: suspend of devices complete after 196.291 msecs</div>
  2049.                
  2050.                 <div class="🦟">PM: start suspend of devices complete after 199.513 msecs</div>
  2051.                
  2052.                 <div class="🦟">Disabling GPIO #5 interrupt for suspend.</div>
  2053.                
  2054.                 <div class="🦟">Disabling GPIO #8 interrupt for suspend.</div>
  2055.                
  2056.                 <div class="🦟">Disabling GPIO #84 interrupt for suspend.</div>
  2057.                
  2058.                 <div class="🦟">PM: late suspend of devices complete after 1.163 msecs</div>
  2059.                
  2060.                 <div class="β—‹">ACPI: EC: interrupt blocked</div>
  2061.                
  2062.                 <div class="🦟">PM: noirq suspend of devices complete after 92.668 msecs</div>
  2063.                
  2064.                 <div class="β—‹">ACPI: \_SB_.PCI0.GPP0.SWUS: LPI: Constraint not met; min power state:D3hot current power state:D0</div>
  2065.                
  2066.                 <div class="β—‹">ACPI: \_SB_.PCI0.GPP1.SWUS: LPI: Constraint not met; min power state:D3hot current power state:D0</div>
  2067.                
  2068.                 <div class="β—‹">ACPI: \_SB_.PCI0.GPP5.WLAN: LPI: Device not power manageable</div>
  2069.                
  2070.                 <div class="β—‹">ACPI: \_SB_.PCI0.GPPB.IPU_: LPI: Device not power manageable</div>
  2071.                
  2072.                 <div class="β—‹">ACPI: \_SB_.PLTF.C000: LPI: Device not power manageable</div>
  2073.                
  2074.                 <div class="β—‹">ACPI: \_SB_.PLTF.C001: LPI: Device not power manageable</div>
  2075.                
  2076.                 <div class="β—‹">ACPI: \_SB_.PLTF.C002: LPI: Device not power manageable</div>
  2077.                
  2078.                 <div class="β—‹">ACPI: \_SB_.PLTF.C003: LPI: Device not power manageable</div>
  2079.                
  2080.                 <div class="β—‹">ACPI: \_SB_.PLTF.C004: LPI: Device not power manageable</div>
  2081.                
  2082.                 <div class="β—‹">ACPI: \_SB_.PLTF.C005: LPI: Device not power manageable</div>
  2083.                
  2084.                 <div class="β—‹">ACPI: \_SB_.PLTF.C006: LPI: Device not power manageable</div>
  2085.                
  2086.                 <div class="β—‹">ACPI: \_SB_.PLTF.C007: LPI: Device not power manageable</div>
  2087.                
  2088.                 <div class="β—‹">ACPI: \_SB_.PLTF.C008: LPI: Device not power manageable</div>
  2089.                
  2090.                 <div class="β—‹">ACPI: \_SB_.PLTF.C009: LPI: Device not power manageable</div>
  2091.                
  2092.                 <div class="β—‹">ACPI: \_SB_.PLTF.C00A: LPI: Device not power manageable</div>
  2093.                
  2094.                 <div class="β—‹">ACPI: \_SB_.PLTF.C00B: LPI: Device not power manageable</div>
  2095.                
  2096.                 <div class="β—‹">ACPI: \_SB_.PLTF.C00C: LPI: Device not power manageable</div>
  2097.                
  2098.                 <div class="β—‹">ACPI: \_SB_.PLTF.C00D: LPI: Device not power manageable</div>
  2099.                
  2100.                 <div class="β—‹">ACPI: \_SB_.PLTF.C00E: LPI: Device not power manageable</div>
  2101.                
  2102.                 <div class="β—‹">ACPI: \_SB_.PLTF.C00F: LPI: Device not power manageable</div>
  2103.                
  2104.                 <div class="β—‹">ACPI: \_SB_.PLTF.C010: LPI: Device not power manageable</div>
  2105.                
  2106.                 <div class="β—‹">ACPI: \_SB_.PLTF.C011: LPI: Device not power manageable</div>
  2107.                
  2108.                 <div class="β—‹">ACPI: \_SB_.PLTF.C012: LPI: Device not power manageable</div>
  2109.                
  2110.                 <div class="β—‹">ACPI: \_SB_.PLTF.C013: LPI: Device not power manageable</div>
  2111.                
  2112.                 <div class="β—‹">ACPI: \_SB_.PLTF.C014: LPI: Device not power manageable</div>
  2113.                
  2114.                 <div class="β—‹">ACPI: \_SB_.PLTF.C015: LPI: Device not power manageable</div>
  2115.                
  2116.                 <div class="β—‹">ACPI: \_SB_.PLTF.C016: LPI: Device not power manageable</div>
  2117.                
  2118.                 <div class="β—‹">ACPI: \_SB_.PLTF.C017: LPI: Device not power manageable</div>
  2119.                
  2120.                 <div class="β—‹">ACPI: \_SB_.PEP_: Successfully transitioned to state screen off</div>
  2121.                
  2122.                 <div class="β—‹">ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms entry</div>
  2123.                
  2124.                 <div class="β—‹">ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 entry</div>
  2125.                
  2126.                 <div class="🦟">PM: suspend-to-idle</div>
  2127.                
  2128.                 <div class="🚦">------------[ cut here ]------------</div>
  2129.                
  2130.                 <div class="🚦">WARNING: CPU: 1 PID: 30 at drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn35/dcn35_smu.c:143 dcn35_smu_send_msg_with_param+0x164/0x1d0 [amdgpu]</div>
  2131.                
  2132.                 <div class="🚦">Modules linked in: ccm uvcvideo videobuf2_vmalloc uvc videobuf2_memops videobuf2_v4l2 videobuf2_common videodev mc rfcomm cmac algif_hash algif_skcipher af_alg rpcsec_gss_krb5 auth_rpcgss nfsv4 dns_resolver nfs lockd grace nfs_localio sunrpc veth netfs nf_conntrack_netlink xt_nat iptable_raw xt_tcpudp xt_conntrack xt_MASQUERADE bridge stp llc ip6table_nat ip6table_filter ip6_tables xt_set ip_set iptable_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c xt_addrtype iptable_filter xfrm_user xfrm_algo snd_ctl_led overlay squashfs qrtr bnep vfat fat amd_atl intel_rapl_msr intel_rapl_common snd_acp_legacy_mach snd_acp_mach snd_soc_nau8821 snd_acp3x_rn snd_acp70 snd_acp_i2s snd_acp_pdm snd_soc_dmic snd_acp_pcm snd_sof_amd_acp70 snd_sof_amd_acp63 snd_soc_acpi_amd_match snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof snd_sof_utils snd_pci_ps snd_amd_sdw_acpi soundwire_amd soundwire_generic_allocation snd_hda_codec_realtek mt7921e</div>
  2133.                
  2134.                 <div class="🚦"> soundwire_bus kvm_amd snd_hda_codec_generic mt7921_common snd_hda_scodec_component snd_hda_codec_hdmi mt792x_lib snd_soc_core kvm mt76_connac_lib snd_hda_intel snd_compress snd_intel_dspcfg mt76 irqbypass ac97_bus snd_intel_sdw_acpi snd_pcm_dmaengine crct10dif_pclmul snd_hda_codec snd_rpl_pci_acp6x crc32_pclmul hid_sensor_als mac80211 polyval_clmulni snd_acp_pci hid_sensor_trigger polyval_generic snd_hda_core industrialio_triggered_buffer snd_acp_legacy_common ghash_clmulni_intel kfifo_buf snd_hwdep snd_pci_acp6x sha512_ssse3 mousedev hid_sensor_iio_common libarc4 sha256_ssse3 leds_cros_ec cros_ec_sysfs cros_ec_hwmon cros_ec_chardev cros_ec_debugfs cros_kbd_led_backlight gpio_cros_ec led_class_multicolor btusb sha1_ssse3 industrialio snd_pcm cfg80211 btrtl snd_pci_acp5x aesni_intel btintel snd_timer snd_rn_pci_acp3x gf128mul spd5118 amd_pmf crypto_simd snd_acp_config btbcm snd cros_ec_dev sp5100_tco amdtee snd_soc_acpi cryptd btmtk ucsi_acpi hid_multitouch hid_sensor_hub joydev bluetooth rapl pcspkr</div>
  2135.                
  2136.                 <div class="🚦"> typec_ucsi amd_sfh wmi_bmof thunderbolt ccp i2c_piix4 rfkill snd_pci_acp3x soundcore k10temp typec i2c_smbus platform_profile i2c_hid_acpi roles cros_ec_lpcs i2c_hid tee amd_pmc cros_ec mac_hid uinput crypto_user dm_mod loop nfnetlink ip_tables x_tables ext4 crc32c_generic mbcache jbd2 hid_generic usbhid amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec gpu_sched serio_raw atkbd drm_suballoc_helper libps2 vivaldi_fmap drm_buddy nvme drm_display_helper crc32c_intel nvme_core i8042 video cec crc16 nvme_auth serio wmi</div>
  2137.                
  2138.                 <div class="🚦">CPU: 1 UID: 0 PID: 30 Comm: kworker/1:0 Not tainted 6.12.28-1-MANJARO #1 d17c56a24b56bf5d1171e1f64d800383fc142077</div>
  2139.                
  2140.                 <div class="🚦">Hardware name: Framework Laptop 13 (AMD Ryzen AI 300 Series)/FRANMGCP09, BIOS 03.03 03/10/2025</div>
  2141.                
  2142.                 <div class="🚦">Workqueue: events amdgpu_dm_idle_worker [amdgpu]</div>
  2143.                
  2144.                 <div class="🚦">RIP: 0010:dcn35_smu_send_msg_with_param+0x164/0x1d0 [amdgpu]</div>
  2145.                
  2146.                 <div class="🚦">Code: 3b 48 8b 17 48 89 f8 0f b6 92 c6 01 00 00 01 ea 8d 6a ff 75 c4 48 8b 40 10 48 8b 38 48 85 ff 0f 85 f7 dc 25 00 e9 f6 dc 25 00 <0f> 0b 48 8b 57 10 48 8b 3a 48 85 ff 0f 84 bc dc 25 00 e9 b3 dc 25</div>
  2147.                
  2148.                 <div class="🚦">RSP: 0018:ffffaa5bc02d7d98 EFLAGS: 00010282</div>
  2149.                
  2150.                 <div class="🚦">RAX: 00000000ffffffff RBX: ffff935018039000 RCX: 00000000ffffffff</div>
  2151.                
  2152.                 <div class="🚦">RDX: ffffaa5bc1458a6c RSI: 000000000001629b RDI: ffff935010c9a900</div>
  2153.                
  2154.                 <div class="🚦">RBP: 00000000001e8480 R08: 0000000000000000 R09: 0000000000000014</div>
  2155.                
  2156.                 <div class="🚦">R10: ffff935016c9b300 R11: 0000000000000001 R12: 0000000000000019</div>
  2157.                
  2158.                 <div class="🚦">R13: 0000000000000000 R14: 000000000000001f R15: 000000000000015a</div>
  2159.                
  2160.                 <div class="🚦">FS:  0000000000000000(0000) GS:ffff93573dc80000(0000) knlGS:0000000000000000</div>
  2161.                
  2162.                 <div class="🚦">CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033</div>
  2163.                
  2164.                 <div class="🚦">CR2: 00005fc87c617238 CR3: 00000004a2822000 CR4: 0000000000f50ef0</div>
  2165.                
  2166.                 <div class="🚦">PKRU: 55555554</div>
  2167.                
  2168.                 <div class="🚦">Call Trace:</div>
  2169.                
  2170.                 <div class="🚦"> <TASK></div>
  2171.                
  2172.                 <div class="🚦"> dcn35_smu_exit_low_power_state+0x29/0x70 [amdgpu 85919dbf36c7ff1a657f54ef4a2abd99995da664]</div>
  2173.                
  2174.                 <div class="🚦"> dc_dmub_srv_apply_idle_power_optimizations+0x26e/0x550 [amdgpu 85919dbf36c7ff1a657f54ef4a2abd99995da664]</div>
  2175.                
  2176.                 <div class="🚦"> dcn35_apply_idle_power_optimizations+0xd1/0xf0 [amdgpu 85919dbf36c7ff1a657f54ef4a2abd99995da664]</div>
  2177.                
  2178.                 <div class="🚦"> dc_allow_idle_optimizations_internal.part.0+0x79/0xc0 [amdgpu 85919dbf36c7ff1a657f54ef4a2abd99995da664]</div>
  2179.                
  2180.                 <div class="🚦"> amdgpu_dm_idle_worker+0x83/0x120 [amdgpu 85919dbf36c7ff1a657f54ef4a2abd99995da664]</div>
  2181.                
  2182.                 <div class="🚦"> process_one_work+0x17c/0x340</div>
  2183.                
  2184.                 <div class="🚦"> worker_thread+0x2d2/0x400</div>
  2185.                
  2186.                 <div class="🚦"> ? __pfx_worker_thread+0x10/0x10</div>
  2187.                
  2188.                 <div class="🚦"> kthread+0xcf/0x100</div>
  2189.                
  2190.                 <div class="🚦"> ? __pfx_kthread+0x10/0x10</div>
  2191.                
  2192.                 <div class="🚦"> ret_from_fork+0x31/0x50</div>
  2193.                
  2194.                 <div class="🚦"> ? __pfx_kthread+0x10/0x10</div>
  2195.                
  2196.                 <div class="🚦"> ret_from_fork_asm+0x1a/0x30</div>
  2197.                
  2198.                 <div class="🚦"> </TASK></div>
  2199.                
  2200.                 <div class="🚦">---[ end trace 0000000000000000 ]---</div>
  2201.                
  2202.                 <div class="🚦">amdgpu 0000:c1:00.0: [drm] SMU response after wait: -1, msg id = 25</div>
  2203.                
  2204.                 <div class="🚦">amdgpu 0000:c1:00.0: [drm] SMU response after wait: -1, msg id = 25</div>
  2205.                
  2206.                 <div class="🦟">amd_pmc: SMU idlemask s0i3: 0xffff9abd</div>
  2207.                
  2208.                 <div class="❌">rcu: INFO: rcu_preempt detected stalls on CPUs/tasks:</div>
  2209.                
  2210.                 <div class="❌">rcu:   0-...!: (320 ticks this GP) idle=e2d8/0/0x0 softirq=104046/104048 fqs=0 (false positive?)</div>
  2211.                
  2212.                 <div class="❌">rcu:   2-...!: (0 ticks this GP) idle=9088/0/0x0 softirq=100853/100853 fqs=0 (false positive?)</div>
  2213.                
  2214.                 <div class="❌">rcu:   3-...!: (670 ticks this GP) idle=aca0/0/0x0 softirq=99409/99409 fqs=0 (false positive?)</div>
  2215.                
  2216.                 <div class="❌">rcu:   4-...!: (839 ticks this GP) idle=af80/0/0x0 softirq=87759/87759 fqs=0 (false positive?)</div>
  2217.                
  2218.                 <div class="❌">rcu:   6-...!: (10 ticks this GP) idle=b320/0/0x0 softirq=92439/92441 fqs=0 (false positive?)</div>
  2219.                
  2220.                 <div class="❌">rcu:   7-...!: (0 ticks this GP) idle=3798/0/0x0 softirq=76211/76211 fqs=0 (false positive?)</div>
  2221.                
  2222.                 <div class="❌">rcu:   9-...!: (2 ticks this GP) idle=c458/0/0x0 softirq=64553/64553 fqs=0 (false positive?)</div>
  2223.                
  2224.                 <div class="❌">rcu:   12-...!: (0 ticks this GP) idle=f160/0/0x0 softirq=70070/70070 fqs=0 (false positive?)</div>
  2225.                
  2226.                 <div class="❌">rcu:   13-...!: (0 ticks this GP) idle=0548/0/0x0 softirq=103037/103037 fqs=0 (false positive?)</div>
  2227.                
  2228.                 <div class="❌">rcu:   14-...!: (0 ticks this GP) idle=72a8/0/0x0 softirq=98375/98375 fqs=0 (false positive?)</div>
  2229.                
  2230.                 <div class="❌">rcu:   15-...!: (2 GPs behind) idle=3388/0/0x0 softirq=103829/103830 fqs=0 (false positive?)</div>
  2231.                
  2232.                 <div class="❌">rcu:   16-...!: (13 GPs behind) idle=bba8/0/0x0 softirq=74025/74025 fqs=0 (false positive?)</div>
  2233.                
  2234.                 <div class="❌">rcu:   17-...!: (12 GPs behind) idle=ca30/0/0x0 softirq=55754/55754 fqs=0 (false positive?)</div>
  2235.                
  2236.                 <div class="❌">rcu:   18-...!: (13 GPs behind) idle=dff0/0/0x0 softirq=57761/57761 fqs=0 (false positive?)</div>
  2237.                
  2238.                 <div class="❌">rcu:   19-...!: (3 GPs behind) idle=8638/0/0x0 softirq=64425/64425 fqs=0 (false positive?)</div>
  2239.                
  2240.                 <div class="❌">rcu:   20-...!: (1 ticks this GP) idle=0960/0/0x0 softirq=63555/63556 fqs=0 (false positive?)</div>
  2241.                
  2242.                 <div class="❌">rcu:   21-...!: (5 GPs behind) idle=86d8/0/0x0 softirq=102345/102347 fqs=0 (false positive?)</div>
  2243.                
  2244.                 <div class="❌">rcu:   22-...!: (2 GPs behind) idle=f4f8/0/0x0 softirq=79581/79581 fqs=0 (false positive?)</div>
  2245.                
  2246.                 <div class="❌">rcu:   23-...!: (3 GPs behind) idle=a9e8/0/0x0 softirq=77423/77423 fqs=0 (false positive?)</div>
  2247.                
  2248.                 <div class="❌">rcu:   (detected by 1, t=18002 jiffies, g=233841, q=2 ncpus=24)</div>
  2249.                
  2250.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 0:</div>
  2251.                
  2252.                 <div class="🚦">NMI backtrace for cpu 0 skipped: idling at io_idle+0x3/0x30</div>
  2253.                
  2254.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 2:</div>
  2255.                
  2256.                 <div class="🚦">NMI backtrace for cpu 2 skipped: idling at io_idle+0x3/0x30</div>
  2257.                
  2258.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 3:</div>
  2259.                
  2260.                 <div class="🚦">NMI backtrace for cpu 3 skipped: idling at io_idle+0x3/0x30</div>
  2261.                
  2262.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 4:</div>
  2263.                
  2264.                 <div class="🚦">NMI backtrace for cpu 4 skipped: idling at io_idle+0x3/0x30</div>
  2265.                
  2266.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 6:</div>
  2267.                
  2268.                 <div class="🚦">NMI backtrace for cpu 6 skipped: idling at io_idle+0x3/0x30</div>
  2269.                
  2270.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 7:</div>
  2271.                
  2272.                 <div class="🚦">NMI backtrace for cpu 7 skipped: idling at io_idle+0x3/0x30</div>
  2273.                
  2274.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 9:</div>
  2275.                
  2276.                 <div class="🚦">NMI backtrace for cpu 9 skipped: idling at io_idle+0x3/0x30</div>
  2277.                
  2278.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 12:</div>
  2279.                
  2280.                 <div class="🚦">NMI backtrace for cpu 12 skipped: idling at io_idle+0x3/0x30</div>
  2281.                
  2282.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 13:</div>
  2283.                
  2284.                 <div class="🚦">NMI backtrace for cpu 13 skipped: idling at io_idle+0x3/0x30</div>
  2285.                
  2286.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 14:</div>
  2287.                
  2288.                 <div class="🚦">NMI backtrace for cpu 14 skipped: idling at io_idle+0x3/0x30</div>
  2289.                
  2290.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 15:</div>
  2291.                
  2292.                 <div class="🚦">NMI backtrace for cpu 15 skipped: idling at io_idle+0x3/0x30</div>
  2293.                
  2294.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 16:</div>
  2295.                
  2296.                 <div class="🚦">NMI backtrace for cpu 16 skipped: idling at io_idle+0x3/0x30</div>
  2297.                
  2298.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 17:</div>
  2299.                
  2300.                 <div class="🚦">NMI backtrace for cpu 17 skipped: idling at io_idle+0x3/0x30</div>
  2301.                
  2302.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 18:</div>
  2303.                
  2304.                 <div class="🚦">NMI backtrace for cpu 18 skipped: idling at io_idle+0x3/0x30</div>
  2305.                
  2306.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 19:</div>
  2307.                
  2308.                 <div class="🚦">NMI backtrace for cpu 19 skipped: idling at io_idle+0x3/0x30</div>
  2309.                
  2310.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 20:</div>
  2311.                
  2312.                 <div class="🚦">NMI backtrace for cpu 20 skipped: idling at io_idle+0x3/0x30</div>
  2313.                
  2314.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 21:</div>
  2315.                
  2316.                 <div class="🚦">NMI backtrace for cpu 21 skipped: idling at io_idle+0x3/0x30</div>
  2317.                
  2318.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 22:</div>
  2319.                
  2320.                 <div class="🚦">NMI backtrace for cpu 22 skipped: idling at io_idle+0x3/0x30</div>
  2321.                
  2322.                 <div class="β—‹">Sending NMI from CPU 1 to CPUs 23:</div>
  2323.                
  2324.                 <div class="🚦">NMI backtrace for cpu 23 skipped: idling at io_idle+0x3/0x30</div>
  2325.                
  2326.                 <div class="❌">rcu: rcu_preempt kthread timer wakeup didn't happen for 18000 jiffies! g233841 f0x0 RCU_GP_WAIT_FQS(5) ->state=0x402</div>
  2327.                
  2328.                 <div class="❌">rcu:   Possible timer handling issue on cpu=12 timer-softirq=62822</div>
  2329.                
  2330.                 <div class="❌">rcu: rcu_preempt kthread starved for 18002 jiffies! g233841 f0x0 RCU_GP_WAIT_FQS(5) ->state=0x402 ->cpu=12</div>
  2331.                
  2332.                 <div class="❌">rcu:   Unless rcu_preempt kthread gets sufficient CPU time, OOM is now expected behavior.</div>
  2333.                
  2334.                 <div class="❌">rcu: RCU grace-period kthread stack dump:</div>
  2335.                
  2336.                 <div class="β—‹">task:rcu_preempt     state:I stack:0     pid:19    tgid:19    ppid:2      flags:0x00004000</div>
  2337.                
  2338.                 <div class="β—‹">Call Trace:</div>
  2339.                
  2340.                 <div class="β—‹"> <TASK></div>
  2341.                
  2342.                 <div class="β—‹"> __schedule+0x3c7/0x12f0</div>
  2343.                
  2344.                 <div class="β—‹"> ? lock_timer_base+0x74/0x90</div>
  2345.                
  2346.                 <div class="β—‹"> ? __pfx_rcu_gp_kthread+0x10/0x10</div>
  2347.                
  2348.                 <div class="β—‹"> schedule+0x27/0xf0</div>
  2349.                
  2350.                 <div class="β—‹"> schedule_timeout+0x9c/0x170</div>
  2351.                
  2352.                 <div class="β—‹"> ? __pfx_process_timeout+0x10/0x10</div>
  2353.                
  2354.                 <div class="β—‹"> rcu_gp_fqs_loop+0x104/0x530</div>
  2355.                
  2356.                 <div class="β—‹"> rcu_gp_kthread+0xd7/0x190</div>
  2357.                
  2358.                 <div class="β—‹"> kthread+0xcf/0x100</div>
  2359.                
  2360.                 <div class="β—‹"> ? __pfx_kthread+0x10/0x10</div>
  2361.                
  2362.                 <div class="β—‹"> ret_from_fork+0x31/0x50</div>
  2363.                
  2364.                 <div class="β—‹"> ? __pfx_kthread+0x10/0x10</div>
  2365.                
  2366.                 <div class="β—‹"> ret_from_fork_asm+0x1a/0x30</div>
  2367.                
  2368.                 <div class="β—‹"> </TASK></div>
  2369.                
  2370.                 <div class="🦟">PM: Triggering wakeup from IRQ 9</div>
  2371.                
  2372.                 <div class="🦟">ACPI: PM: ACPI fixed event wakeup</div>
  2373.                
  2374.                 <div class="🦟">PM: resume from suspend-to-idle</div>
  2375.                
  2376.                 <div class="🚦">amd_pmc AMDI000A:00: Last suspend didn't reach deepest state</div>
  2377.                
  2378.                 <div class="β—‹">ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 exit</div>
  2379.                
  2380.                 <div class="β—‹">ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms exit</div>
  2381.                
  2382.                 <div class="β—‹">ACPI: \_SB_.PEP_: Successfully transitioned to state screen on</div>
  2383.                
  2384.                 <div class="β—‹">ACPI: EC: interrupt unblocked</div>
  2385.                
  2386.                 <div class="🦟">PM: noirq resume of devices complete after 277.613 msecs</div>
  2387.                
  2388.                 <div class="🦟">PM: early resume of devices complete after 3.567 msecs</div>
  2389.                
  2390.                 <div class="β—‹">[drm] PCIE GART of 512M enabled (table at 0x0000008001700000).</div>
  2391.                
  2392.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: SMU is resuming...</div>
  2393.                
  2394.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: SMU is resumed successfully!</div>
  2395.                
  2396.                 <div class="β—‹">nvme nvme0: 24/0/0 default/read/poll queues</div>
  2397.                
  2398.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2399.                
  2400.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2401.                
  2402.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2403.                
  2404.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2405.                
  2406.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2407.                
  2408.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2409.                
  2410.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2411.                
  2412.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2413.                
  2414.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2415.                
  2416.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0</div>
  2417.                
  2418.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0</div>
  2419.                
  2420.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0</div>
  2421.                
  2422.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0</div>
  2423.                
  2424.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0</div>
  2425.                
  2426.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0</div>
  2427.                
  2428.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0</div>
  2429.                
  2430.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0</div>
  2431.                
  2432.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0</div>
  2433.                
  2434.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0</div>
  2435.                
  2436.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8</div>
  2437.                
  2438.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring jpeg_dec_0 uses VM inv eng 1 on hub 8</div>
  2439.                
  2440.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0</div>
  2441.                
  2442.                 <div class="β—‹">amdgpu 0000:c1:00.0: amdgpu: ring vpe uses VM inv eng 4 on hub 8</div>
  2443.                
  2444.                 <div class="β—‹">[drm] ring gfx_32784.1.1 was added</div>
  2445.                
  2446.                 <div class="β—‹">[drm] ring compute_32784.2.2 was added</div>
  2447.                
  2448.                 <div class="β—‹">[drm] ring sdma_32784.3.3 was added</div>
  2449.                
  2450.                 <div class="β—‹">[drm] ring gfx_32784.1.1 ib test pass</div>
  2451.                
  2452.                 <div class="β—‹">[drm] ring compute_32784.2.2 ib test pass</div>
  2453.                
  2454.                 <div class="β—‹">[drm] ring sdma_32784.3.3 ib test pass</div>
  2455.                
  2456.                 <div class="🦟">PM: resume of devices complete after 296.674 msecs</div>
  2457.                
  2458.                 <div class="β—‹">OOM killer enabled.</div>
  2459.                
  2460.                 <div class="β—‹">Restarting tasks ... </div>
  2461.                
  2462.                 <div class="🚦">coredump: 695(systemd-udevd): |/usr/lib/systemd/systemd-coredump pipe failed</div>
  2463.                
  2464.                 <div class="🚦">done.</div>
  2465.                
  2466.                 <div class="β—‹">random: crng reseeded on system resumption</div>
  2467.                
  2468.                 <div class="β—‹">cros-ec-dev cros-ec-dev.1.auto: Some logs may have been dropped...</div>
  2469.                
  2470.                 <div class="β—‹">PM: suspend exit</div>
  2471.                
  2472.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2473.                
  2474.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2475.                
  2476.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2477.                
  2478.                 <div class="🦟">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
  2479.                
  2480.                 <div class="❌">ucsi_acpi USBC000:00: unknown error 0</div>
  2481.                
  2482.                 <div class="❌">ucsi_acpi USBC000:00: con3: failed to register partner alt modes (-5)</div>
  2483.                
  2484.                 <div class="β—‹">Used Microsoft uPEP GUID in LPS0 _DSM</div>
  2485.                
  2486.                 <div class="β—‹">Woke up from IRQ 9 (IR-IO-APIC 9-fasteoi acpi)</div>
  2487.                
  2488.                 <div class="β—‹">gpe0A increased from 169 to 195</div>
  2489.                
  2490.                 <div class="β—‹">ACPI Lid (/proc/acpi/button/lid/LID0/state): open</div>
  2491.                
  2492.                 <div class="β—‹">BAT1 energy level is 2678000 Β΅Ah</div>
  2493.                
  2494.                 <div class="β—‹">IPS status</div>
  2495.                
  2496.                 <div class="β—‹">β”‚ IPS config: 6</div>
  2497.                
  2498.                 <div class="β—‹">β”‚ Idle optimization: 0</div>
  2499.                
  2500.                 <div class="β—‹">β”‚ Idle workqueue - enabled: 1</div>
  2501.                
  2502.                 <div class="β—‹">β”‚ Idle workqueue - running: 1</div>
  2503.                
  2504.                 <div class="β—‹">β”‚ entry counts: rcg=346 ips1=2 ips2=2</div>
  2505.                
  2506.                 <div class="β—‹">└─exit counts: rcg=346 ips1=2 ips2=2</div>
  2507.                
  2508.                 <div class="β—‹">Thermal zones</div>
  2509.                
  2510.                 <div class="β—‹">β”œβ”€ LNXTHERM:00</div>
  2511.                
  2512.                 <div class="β—‹">β”‚     42.8Β°C -> 40.8Β°C</div>
  2513.                
  2514.                 <div class="β—‹">β”œβ”€ LNXTHERM:01</div>
  2515.                
  2516.                 <div class="β—‹">β”‚     46.8Β°C -> 45.8Β°C</div>
  2517.                
  2518.                 <div class="β—‹">β”œβ”€ LNXTHERM:02</div>
  2519.                
  2520.                 <div class="β—‹">β”‚     38.8Β°C -> 36.8Β°C</div>
  2521.                
  2522.                 <div class="β—‹">└─LNXTHERM:03</div>
  2523.                
  2524.                 <div class="β—‹">    49.8Β°C -> 47.8Β°C</div>
  2525.                
  2526.             </TD>
  2527.         </TR>
  2528.        
  2529.     </table>
  2530.    
  2531. </body>
  2532.  
  2533. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement