Advertisement
rogersjcaleb

amd sleep errors

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