Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Linux s2idle Power Report</title>
- <style>
- h1 {
- color: #00b0f0;
- font-family: sans-serif;
- font-size: 42pt;
- }
- h2 {
- font-size: 15pt;
- font-family: sans-serif;
- color: #00b0f0;
- margin-top: 2em;
- margin-bottom: 0em;
- letter-spacing: 0.08em;
- }
- h3,
- h4,
- h5 {
- font-family: sans-serif;
- margin-top: 1em;
- margin-bottom: 0em;
- letter-spacing: 0.08em;
- }
- body {
- font-family: sans-serif;
- letter-spacing: 0.02em;
- background-color: #ffffff;
- color: #000000;
- margin: 0em 5.5em 0em 5.5em;
- }
- table,
- th,
- td {
- border-width: 0;
- table-layout: fixed;
- font-family: sans-serif;
- letter-spacing: 0.02em;
- color: #000000;
- margin-bottom: 10px;
- }
- .β {
- font-family: "Fira Code", monospace;
- color: #000000;
- }
- .β {
- color: #ff0000;
- font-family: "Fira Code", monospace;
- }
- .π¦ {
- color: #a4a100;
- font-family: "Fira Code", monospace;
- }
- .π¦ {
- color: #848484;
- font-family: "Fira Code", monospace;
- }
- .hidden-by-default {
- display: none;
- border: 0px;
- border-spacing: 0px;
- border-collapse: collapse;
- }
- .hide-borders {
- border: 0px;
- border-collapse: collapse;
- }
- .row-disabled {
- display: none;
- border: 0px;
- border-collapse: collapse;
- }
- .arrow::before {
- content: "\23f5";
- }
- .arrow-expanded::before {
- content: "\23F7";
- }
- .row-low {
- background-color: #ace3ac;
- text-align: center;
- }
- .row-low:hover {
- background-color: #caedca;
- text-align: center;
- }
- .row-neutral {
- background-color: #e0e0e0;
- text-align: center;
- }
- .row-neutral:hover {
- background-color: #f0f0f0;
- text-align: center;
- }
- .row-high {
- background-color: #ffb2aa;
- text-align: center;
- }
- .row-high:hover {
- background-color: #ffd5d1;
- text-align: center;
- }
- </style>
- </head>
- <body>
- <script>
- function select_changed(selector, row) {
- var x = document.getElementById(selector).value;
- var y;
- var rows = document.querySelectorAll(row + " tr.row-disabled");
- for (var i = 0; i < rows.length; i++) {
- rows[i].style.display = "none";
- }
- if (x != "0") {
- document.querySelector(row + x).style.display = "table-row";
- if (row == row + x)
- document.getElementById(selector).value = 0;
- }
- }
- function cycle_data_changed() {
- select_changed("cycles", "#cycledata")
- }
- function failure_data_changed() {
- select_changed("failures", "#failuredata")
- }
- function debug_data_changed() {
- select_changed("debug", "#debugdata")
- if (document.getElementById("debug").value != "0") {
- document.getElementById("debug_label").style.display = "";
- } else {
- document.getElementById("debug_label").style.display = "none";
- }
- }
- function prereq_debug_data_changed() {
- var table = document.getElementById("prereqdebugdata");
- var arrow = document.getElementById("prereqdata-arrow")
- if (table.classList.contains("hidden-by-default")) {
- table.className = "hide-borders";
- arrow.className = "arrow-expanded";
- } else {
- table.className = "hidden-by-default";
- arrow.className = "arrow"
- }
- }
- function parseTimeToSeconds(timeString) {
- var timeParts = timeString.split(":");
- var hours = parseInt(timeParts[0]);
- var minutes = parseInt(timeParts[1]);
- var seconds = parseInt(timeParts[2]);
- return (hours * 3600) + (minutes * 60) + seconds;
- }
- function pick_data_for_cycle(num) {
- //show cycles messages for this cycle
- document.getElementById("cycles").selectedIndex = num + 1;
- cycle_data_changed();
- //show debug data for this cycle
- document.getElementById("debug").selectedIndex = num + 1;
- debug_data_changed();
- }
- function summary_data_changed() {
- var table = document.getElementById("summary");
- const start_select = document.getElementById('start_select');
- const end_select = document.getElementById('end_select');
- var start = parseInt(start_select.value);
- var end = parseInt(end_select.value);
- var min_duration = 0;
- // if duration filter activated, hide rows that don't match
- if (document.getElementById('med_duration').checked)
- min_duration = document.getElementById("med_duration").value;
- else if (document.getElementById('min_duration').checked)
- min_duration = document.getElementById("min_duration").value;
- // reset end if start was picked bigger than end
- if (start > end) {
- end_select.selectedIndex = start;
- end = start;
- }
- // show all rows between start and end
- for (var i = 1; i < table.rows.length; i++) {
- var row = table.rows[i];
- var index = parseInt(row.cells[0].textContent);
- var row_duration = parseTimeToSeconds(row.cells[2].textContent);
- if (row_duration >= min_duration &&
- index >= start && index <= end) {
- row.style.display = "";
- } else {
- row.style.display = "none";
- }
- }
- // reset other tables if we now show more than one cycle
- if (end - start > 0) {
- // reset cycle data selector
- document.getElementById("cycles").selectedIndex = 0;
- cycle_data_changed();
- //reset debug data selector
- document.getElementById("debug").selectedIndex = 0;
- debug_data_changed();
- } else if (start = end)
- pick_data_for_cycle(start)
- }
- function populate_summary_selectors() {
- const table = document.getElementById('summary');
- const start_select = document.getElementById('start_select');
- const end_select = document.getElementById('end_select');
- for (let i = 0; i < table.rows.length; i++) {
- const start_option = document.createElement('option');
- const end_option = document.createElement('option');
- var columns = table.rows[i].getElementsByTagName("td");
- //Populate all start/end selector values
- if (i != table.rows.length - 1) {
- start_option.text = `Cycle ${i}`;
- start_option.value = i
- end_option.text = `Cycle ${i}`;
- end_option.value = i
- start_select.add(start_option);
- end_select.add(end_option);
- }
- //apply coloring to hardware sleep
- if (i != 0) {
- if (parseFloat(columns[2].innerHTML) < 85)
- table.rows[i].className = "row-high";
- }
- }
- // Pick the end selector for last column
- end_select.selectedIndex = table.rows.length - 2;
- // if we only have one selector then pick it
- if (start_select.selectedIndex == end_select.selectedIndex) {
- pick_summary_cycle(start_select.selectedIndex)
- }
- }
- function pick_summary_cycle(num) {
- //narrow down filter to just the selected cycle
- document.getElementById('start_select').selectedIndex = num;
- document.getElementById('end_select').selectedIndex = num;
- summary_data_changed();
- pick_data_for_cycle(num);
- }
- function reset_clicked() {
- const table = document.getElementById('summary');
- document.getElementById('start_select').selectedIndex = 0;
- console.log(table.rows.length);
- document.getElementById('end_select').selectedIndex = table.rows.length - 2;
- document.getElementById('all_time').checked = true;
- summary_data_changed();
- }
- window.addEventListener('load', populate_summary_selectors);
- </script>
- <h1>Linux s2idle Power Report</h1>
- <p>s2idle report created 2025-05-13 21:46:58.098209 using amd-s2idle 0.2.0</p>
- <table class="hide-borders">
- <TR>
- <TD>π»</TD>
- <TD>AMD Ryzen AI 9 HX 370 w/ Radeon 890M (family 1a model 24)</TD>
- </TR>
- <TR>
- <TD>π»</TD>
- <TD>Framework Laptop 13 (AMD Ryzen AI 300 Series) (Laptop)</TD>
- </TR>
- <TR>
- <TD>π§</TD>
- <TD>Manjaro Linux</TD>
- </TR>
- <TR>
- <TD>π§</TD>
- <TD>Kernel 6.12.25-1-MANJARO</TD>
- </TR>
- <TR>
- <TD>π</TD>
- <TD>Battery BAT1 (NVT FRANGWA) is operating at 93.10% of design</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>ASPM policy set to 'default'</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>GPIO driver `pinctrl_amd` available</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>PMC driver `amd_pmc` loaded (Program 11 Firmware 93.4.0)</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>USB3 driver `xhci_hcd` bound to 0000:c1:00.4</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>USB3 driver `xhci_hcd` bound to 0000:c3:00.0</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>USB3 driver `xhci_hcd` bound to 0000:c3:00.3</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>USB3 driver `xhci_hcd` bound to 0000:c3:00.4</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>USB4 driver `thunderbolt` bound to 0000:c3:00.5</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>USB4 driver `thunderbolt` bound to 0000:c3:00.6</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>System is configured for s2idle</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>GPU driver `amdgpu` bound to 0000:c1:00.0</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>AMD Ryzen AI 9 HX 370 w/ Radeon 890M (family 1a model 24)</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>PC6 and CC6 enabled</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>PC6 and CC6 enabled</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>SMT enabled</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>IOMMU properly configured</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>ACPI FADT supports Low-power S0 idle</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>LPS0 _DSM enabled</TD>
- </TR>
- <TR>
- <TD>β </TD>
- <TD>WLAN driver `mt7921e` bound to 0000:c0:00.0</TD>
- </TR>
- </table>
- <h3>
- <label id="prereqdata-arrow" for="prereqdebugdata" onclick="prereq_debug_data_changed()"
- class="arrow">Prerequisites</label>
- </h3>
- <table id="prereqdebugdata" class="hidden-by-default">
- <TR>
- <TD>
- <pre>DMI data:
- bios_date: 03/10/2025
- bios_release: 3.3
- bios_vendor: INSYDE Corp.
- bios_version: 03.03
- board_name: FRANMGCP09
- board_vendor: Framework
- board_version: A9
- chassis_type: 10
- chassis_vendor: Framework
- chassis_version: A9
- product_sku: FRANMGCP09
- product_version: A9</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>VCE feature version: 0, firmware version: 0x00000000
- UVD feature version: 0, firmware version: 0x00000000
- MC feature version: 0, firmware version: 0x00000000
- ME feature version: 35, firmware version: 0x0000001d
- PFP feature version: 35, firmware version: 0x00000029
- CE feature version: 0, firmware version: 0x00000000
- RLC feature version: 1, firmware version: 0x11510542
- RLC SRLC feature version: 0, firmware version: 0x00000000
- RLC SRLG feature version: 0, firmware version: 0x00000000
- RLC SRLS feature version: 0, firmware version: 0x00000000
- RLCP feature version: 1, firmware version: 0x11510341
- RLCV feature version: 0, firmware version: 0x00000000
- MEC feature version: 35, firmware version: 0x0000001d
- IMU feature version: 0, firmware version: 0x0b332000
- SOS feature version: 0, firmware version: 0x00000000
- ASD feature version: 553648364, firmware version: 0x210000ec
- TA XGMI feature version: 0x00000000, firmware version: 0x00000000
- TA RAS feature version: 0x00000000, firmware version: 0x00000000
- TA HDCP feature version: 0x00000000, firmware version: 0x17000043
- TA DTM feature version: 0x00000000, firmware version: 0x12000018
- TA RAP feature version: 0x00000000, firmware version: 0x00000000
- TA SECUREDISPLAY feature version: 0x00000000, firmware version: 0x00000000
- SMC feature version: 0, program: 11, firmware version: 0x0b5d0400 (93.4.0)
- SDMA0 feature version: 60, firmware version: 0x0000000b
- VCN feature version: 0, firmware version: 0x09117009
- DMCU feature version: 0, firmware version: 0x00000000
- DMCUB feature version: 0, firmware version: 0x09001b00
- TOC feature version: 0, firmware version: 0x0000000b
- MES_KIQ feature version: 6, firmware version: 0x0000006d
- MES feature version: 1, firmware version: 0x00000074
- VPE feature version: 60, firmware version: 0x00000036
- VBIOS version: 113-STRIXEMU-001</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>LOGIND: configuration changes:</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>handlepowerkey: hibernate</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>handlelidswitch: suspend</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>PCI devices
- β 0000:00:00.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:1507]
- β 0000:00:00.2 : Advanced Micro Devices, Inc. [AMD] IOMMU [1022:1508]
- β 0000:00:01.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:1509]
- β 0000:00:01.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150a] : \_SB_.PCI0.GPP0
- β 0000:00:01.2 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150a] : \_SB_.PCI0.GPP1
- β 0000:00:02.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:1509]
- β 0000:00:02.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150b] : \_SB_.PCI0.GPP3
- ββ 0000:bf:00.0 : Sandisk Corp Non-Volatile memory controller [15b7:5030] : \_SB_.PCI0.GPP3.NVME
- β 0000:00:02.3 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150b] : \_SB_.PCI0.GPP5
- ββ 0000:c0:00.0 : MEDIATEK Corp. Network controller [14c3:0616] : \_SB_.PCI0.GPP5.WLAN
- β 0000:00:03.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:1509]
- β 0000:00:08.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:1509]
- β 0000:00:08.1 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150c] : \_SB_.PCI0.GPPA
- ββ 0000:c1:00.0 : Advanced Micro Devices, Inc. [AMD/ATI] Display controller [1002:150e] : \_SB_.PCI0.GPPA.VGA_
- ββ 0000:c1:00.1 : Advanced Micro Devices, Inc. [AMD/ATI] Audio device [1002:1640] : \_SB_.PCI0.GPPA.HDAU
- ββ 0000:c1:00.2 : Advanced Micro Devices, Inc. [AMD] Encryption controller [1022:17e0] : \_SB_.PCI0.GPPA.PSP_
- ββ 0000:c1:00.4 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:151e] : \_SB_.PCI0.GPPA.XHC1
- ββ 0000:c1:00.5 : Advanced Micro Devices, Inc. [AMD] Multimedia controller [1022:15e2] : \_SB_.PCI0.GPPA.ACP_
- ββ 0000:c1:00.6 : Advanced Micro Devices, Inc. [AMD] Audio device [1022:15e3] : \_SB_.PCI0.GPPA.AZAL
- β 0000:00:08.2 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150c] : \_SB_.PCI0.GPPB
- ββ 0000:c2:00.0 : Advanced Micro Devices, Inc. [AMD] [1022:150d]
- ββ 0000:c2:00.1 : Advanced Micro Devices, Inc. [AMD] Signal processing controller [1022:17f0] : \_SB_.PCI0.GPPB.IPU_
- β 0000:00:08.3 : Advanced Micro Devices, Inc. [AMD] PCI bridge [1022:150c] : \_SB_.PCI0.GPPC
- ββ 0000:c3:00.0 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:151f] : \_SB_.PCI0.GPPC.XHC0
- ββ 0000:c3:00.3 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:151a] : \_SB_.PCI0.GPPC.XHC3
- ββ 0000:c3:00.4 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:151b] : \_SB_.PCI0.GPPC.XHC4
- ββ 0000:c3:00.5 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:151c] : \_SB_.PCI0.GPPC.NHI0
- ββ 0000:c3:00.6 : Advanced Micro Devices, Inc. [AMD] USB controller [1022:151d] : \_SB_.PCI0.GPPC.NHI1
- β 0000:00:14.0 : Advanced Micro Devices, Inc. [AMD] SMBus [1022:790b] : \_SB_.PCI0.SMBS
- β 0000:00:14.3 : Advanced Micro Devices, Inc. [AMD] ISA bridge [1022:790e] : \_SB_.PCI0.LPC0
- β 0000:00:18.0 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16f8]
- β 0000:00:18.1 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16f9]
- β 0000:00:18.2 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16fa]
- β 0000:00:18.3 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16fb]
- β 0000:00:18.4 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16fc]
- β 0000:00:18.5 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16fd]
- β 0000:00:18.6 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16fe]
- ββ0000:00:18.7 : Advanced Micro Devices, Inc. [AMD] Host bridge [1022:16ff]</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>I2C HID devices:
- | "FRMW0004:00 32AC:0006 Wireless Radio Control" [FRMW0004] : \_SB_.I2CB.ECKB
- | "FRMW0004:00 32AC:0006 Consumer Control" [FRMW0004] : \_SB_.I2CB.ECKB
- | "PIXA3854:00 093A:0274 Touchpad" [PIXA3854] : \_SB_.I2CD.TPAD
- ββ"PIXA3854:00 093A:0274 Mouse" [PIXA3854] : \_SB_.I2CD.TPAD</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>Windows GPIO 0 debounce: disabled</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre><table border="1" class="dataframe" id="gpio">
- <thead>
- <tr style="text-align: right;">
- <th>gpio</th>
- <th>int</th>
- <th>active</th>
- <th>trigger</th>
- <th>S0i3</th>
- <th>S3</th>
- <th>S4/S5</th>
- <th>Z</th>
- <th>wake</th>
- <th>pull</th>
- <th>orient</th>
- <th>debounce</th>
- <th>reg</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>#0</td>
- <td>π</td>
- <td>β</td>
- <td>edge</td>
- <td>β°</td>
- <td>β°</td>
- <td></td>
- <td>β°</td>
- <td></td>
- <td>β</td>
- <td>input β</td>
- <td>b (π 046875us)</td>
- <td>0x81578e3</td>
- </tr>
- <tr>
- <td>#2</td>
- <td>π·</td>
- <td>β</td>
- <td>level</td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td>β</td>
- <td>input β</td>
- <td></td>
- <td>0x150b00</td>
- </tr>
- <tr>
- <td>#5</td>
- <td>π</td>
- <td>β</td>
- <td>level</td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td>input β</td>
- <td></td>
- <td>0x51b00</td>
- </tr>
- <tr>
- <td>#8</td>
- <td>π</td>
- <td>β</td>
- <td>level</td>
- <td></td>
- <td></td>
- <td></td>
- <td>β°</td>
- <td></td>
- <td>β</td>
- <td>input β</td>
- <td></td>
- <td>0x8151b00</td>
- </tr>
- <tr>
- <td>#18</td>
- <td>π</td>
- <td>β</td>
- <td>edge</td>
- <td>β°</td>
- <td>β°</td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td>input β</td>
- <td></td>
- <td>0x57a00</td>
- </tr>
- <tr>
- <td>#44</td>
- <td>π·</td>
- <td>β</td>
- <td>edge</td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td>input β</td>
- <td></td>
- <td>0x800</td>
- </tr>
- <tr>
- <td>#52</td>
- <td>π·</td>
- <td>β</td>
- <td>level</td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td>input β</td>
- <td></td>
- <td>0x900</td>
- </tr>
- <tr>
- <td>#54</td>
- <td>π</td>
- <td>β</td>
- <td>edge</td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td>input β</td>
- <td></td>
- <td>0x1800</td>
- </tr>
- <tr>
- <td>#58</td>
- <td>π</td>
- <td>β</td>
- <td>level</td>
- <td>β°</td>
- <td>β°</td>
- <td></td>
- <td>β°</td>
- <td></td>
- <td></td>
- <td>input β</td>
- <td></td>
- <td>0x8007900</td>
- </tr>
- <tr>
- <td>#59</td>
- <td>π</td>
- <td>β</td>
- <td>level</td>
- <td>β°</td>
- <td>β°</td>
- <td></td>
- <td>β°</td>
- <td></td>
- <td></td>
- <td>input β</td>
- <td></td>
- <td>0x8007900</td>
- </tr>
- <tr>
- <td>#61</td>
- <td>π</td>
- <td>β</td>
- <td>level</td>
- <td>β°</td>
- <td>β°</td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td>input β</td>
- <td></td>
- <td>0x7900</td>
- </tr>
- <tr>
- <td>#62</td>
- <td>π</td>
- <td>β</td>
- <td>level</td>
- <td>β°</td>
- <td>β°</td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td>input β</td>
- <td></td>
- <td>0x7900</td>
- </tr>
- <tr>
- <td>#84</td>
- <td>π</td>
- <td>β</td>
- <td>level</td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td>input β</td>
- <td></td>
- <td>0x51b00</td>
- </tr>
- <tr>
- <td>#172</td>
- <td>π·</td>
- <td>β</td>
- <td>level</td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td>input β</td>
- <td></td>
- <td>0x900</td>
- </tr>
- </tbody>
- </table></pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>New enough kernel to avoid HSMP check</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>New enough kernel to avoid NVME check</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>CPU core count: 8 max: 8192</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>SMT control: on</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>Found IOMMU /sys/devices/pci0000:00/0000:00:00.2/iommu/ivhd0
- DMA protection:
- /sys/devices/pci0000:00/0000:00:08.3/0000:c3:00.5/domain0/iommu_dma_protection: 1
- /sys/devices/pci0000:00/0000:00:08.3/0000:c3:00.6/domain1/iommu_dma_protection: 1</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>/*
- * Intel ACPI Component Architecture
- * AML/ASL+ Disassembler version 20240927 (64-bit version)
- * Copyright (c) 2000 - 2023 Intel Corporation
- *
- * Disassembling to symbolic ASL+ operators
- *
- * Disassembly of /sys/firmware/acpi/tables/SSDT26
- *
- * Original Table Header:
- * Signature "SSDT"
- * Length 0x00000A40 (2624)
- * Revision 0x02
- * Checksum 0x93
- * OEM ID "INSYDE"
- * OEM Table ID "EDK2 "
- * OEM Revision 0x00000001 (1)
- * Compiler ID "ACPI"
- * Compiler Version 0x00040000 (262144)
- */
- DefinitionBlock ("", "SSDT", 2, "INSYDE", "EDK2 ", 0x00000001)
- {
- External (_SB_.BTNS, DeviceObj)
- External (_SB_.CMBS, IntObj)
- External (_SB_.GPIO, DeviceObj)
- External (_SB_.PCI0.GPP4, DeviceObj)
- External (_SB_.PCI0.GPP4.SDCR, DeviceObj)
- External (_SB_.PCI0.GPP5, DeviceObj)
- External (_SB_.PCI0.GPP6, DeviceObj)
- External (_SB_.PCI0.GPP7, DeviceObj)
- External (_SB_.PCI0.GPP9, DeviceObj)
- External (_SB_.PCI0.GPPA.ACP_, DeviceObj)
- External (_SB_.PCI0.GPPA.AZAL, DeviceObj)
- External (_SB_.PCI0.GPPA.MP2C, DeviceObj)
- External (_SB_.PCI0.GPPA.XHC1, DeviceObj)
- External (_SB_.PCI0.GPPC.XHC0, DeviceObj)
- External (_SB_.PWRB, DeviceObj)
- External (M000, MethodObj) // 1 Arguments
- External (M037, DeviceObj)
- External (M046, IntObj)
- External (M047, IntObj)
- External (M050, DeviceObj)
- External (M051, DeviceObj)
- External (M052, DeviceObj)
- External (M053, DeviceObj)
- External (M054, DeviceObj)
- External (M055, DeviceObj)
- External (M056, DeviceObj)
- External (M057, DeviceObj)
- External (M058, DeviceObj)
- External (M059, DeviceObj)
- External (M062, DeviceObj)
- External (M068, DeviceObj)
- External (M069, DeviceObj)
- External (M070, DeviceObj)
- External (M071, DeviceObj)
- External (M072, DeviceObj)
- External (M074, DeviceObj)
- External (M075, DeviceObj)
- External (M076, DeviceObj)
- External (M077, DeviceObj)
- External (M078, DeviceObj)
- External (M079, DeviceObj)
- External (M080, DeviceObj)
- External (M081, DeviceObj)
- External (M082, FieldUnitObj)
- External (M083, FieldUnitObj)
- External (M084, FieldUnitObj)
- External (M085, FieldUnitObj)
- External (M086, FieldUnitObj)
- External (M087, FieldUnitObj)
- External (M088, FieldUnitObj)
- External (M089, FieldUnitObj)
- External (M090, FieldUnitObj)
- External (M091, FieldUnitObj)
- External (M092, FieldUnitObj)
- External (M093, FieldUnitObj)
- External (M094, FieldUnitObj)
- External (M095, FieldUnitObj)
- External (M096, FieldUnitObj)
- External (M097, FieldUnitObj)
- External (M098, FieldUnitObj)
- External (M099, FieldUnitObj)
- External (M100, FieldUnitObj)
- External (M101, FieldUnitObj)
- External (M102, FieldUnitObj)
- External (M103, FieldUnitObj)
- External (M104, FieldUnitObj)
- External (M105, FieldUnitObj)
- External (M106, FieldUnitObj)
- External (M107, FieldUnitObj)
- External (M108, FieldUnitObj)
- External (M109, FieldUnitObj)
- External (M110, FieldUnitObj)
- External (M115, BuffObj)
- External (M116, BuffFieldObj)
- External (M117, BuffFieldObj)
- External (M118, BuffFieldObj)
- External (M119, BuffFieldObj)
- External (M120, BuffFieldObj)
- External (M122, FieldUnitObj)
- External (M127, DeviceObj)
- External (M128, FieldUnitObj)
- External (M131, FieldUnitObj)
- External (M132, FieldUnitObj)
- External (M133, FieldUnitObj)
- External (M134, FieldUnitObj)
- External (M135, FieldUnitObj)
- External (M136, FieldUnitObj)
- External (M220, FieldUnitObj)
- External (M221, FieldUnitObj)
- External (M226, FieldUnitObj)
- External (M227, DeviceObj)
- External (M229, FieldUnitObj)
- External (M231, FieldUnitObj)
- External (M233, FieldUnitObj)
- External (M235, FieldUnitObj)
- External (M23A, FieldUnitObj)
- External (M251, FieldUnitObj)
- External (M280, FieldUnitObj)
- External (M290, FieldUnitObj)
- External (M29A, FieldUnitObj)
- External (M310, FieldUnitObj)
- External (M31C, FieldUnitObj)
- External (M320, FieldUnitObj)
- External (M321, FieldUnitObj)
- External (M322, FieldUnitObj)
- External (M323, FieldUnitObj)
- External (M324, FieldUnitObj)
- External (M325, FieldUnitObj)
- External (M326, FieldUnitObj)
- External (M327, FieldUnitObj)
- External (M328, FieldUnitObj)
- External (M329, DeviceObj)
- External (M32A, DeviceObj)
- External (M32B, DeviceObj)
- External (M32C, DeviceObj)
- External (M330, DeviceObj)
- External (M331, FieldUnitObj)
- External (M378, FieldUnitObj)
- External (M379, FieldUnitObj)
- External (M380, FieldUnitObj)
- External (M381, FieldUnitObj)
- External (M382, FieldUnitObj)
- External (M383, FieldUnitObj)
- External (M384, FieldUnitObj)
- External (M385, FieldUnitObj)
- External (M386, FieldUnitObj)
- External (M387, FieldUnitObj)
- External (M388, FieldUnitObj)
- External (M389, FieldUnitObj)
- External (M390, FieldUnitObj)
- External (M391, FieldUnitObj)
- External (M392, FieldUnitObj)
- External (M404, BuffObj)
- External (M408, MutexObj)
- External (M414, FieldUnitObj)
- External (M444, FieldUnitObj)
- External (M449, FieldUnitObj)
- External (M453, FieldUnitObj)
- External (M454, FieldUnitObj)
- External (M455, FieldUnitObj)
- External (M456, FieldUnitObj)
- External (M457, FieldUnitObj)
- External (M460, MethodObj) // 7 Arguments
- External (M4C0, FieldUnitObj)
- External (M4F0, FieldUnitObj)
- External (M610, FieldUnitObj)
- External (M620, FieldUnitObj)
- External (M631, FieldUnitObj)
- External (M652, FieldUnitObj)
- Scope (\)
- {
- Name (HPDW, 0x55)
- Name (WLD3, 0x01)
- }
- Scope (\_SB.GPIO)
- {
- Method (_AEI, 0, NotSerialized) // _AEI: ACPI Event Interrupts
- {
- Name (BUF0, ResourceTemplate ()
- {
- GpioInt (Level, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000,
- "\\_SB.GPIO", 0x00, ResourceConsumer, ,
- )
- { // Pin list
- 0x003D
- }
- GpioInt (Level, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000,
- "\\_SB.GPIO", 0x00, ResourceConsumer, ,
- )
- { // Pin list
- 0x003E
- }
- GpioInt (Level, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000,
- "\\_SB.GPIO", 0x00, ResourceConsumer, ,
- )
- { // Pin list
- 0x003A
- }
- GpioInt (Level, ActiveHigh, ExclusiveAndWake, PullNone, 0x0000,
- "\\_SB.GPIO", 0x00, ResourceConsumer, ,
- )
- { // Pin list
- 0x003B
- }
- })
- Name (PBTN, ResourceTemplate ()
- {
- GpioInt (Edge, ActiveHigh, ExclusiveAndWake, PullDefault, 0x1388,
- "\\_SB.GPIO", 0x00, ResourceConsumer, ,
- )
- { // Pin list
- 0x0000
- }
- })
- Name (BUF1, ResourceTemplate ()
- {
- GpioInt (Edge, ActiveLow, ExclusiveAndWake, PullNone, 0x0000,
- "\\_SB.GPIO", 0x00, ResourceConsumer, ,
- )
- { // Pin list
- 0x0012
- }
- })
- If ((\WLD3 == One))
- {
- M460 (" OEM-ASL-D3C ConcatenateRes BUF0 and BUF1\n", Zero, Zero, Zero, Zero, Zero, Zero)
- ConcatenateResTemplate (BUF0, BUF1, Local0)
- }
- Else
- {
- M460 (" OEM-ASL-D3H Copy BUF0 to Local0\n", Zero, Zero, Zero, Zero, Zero, Zero)
- Local0 = BUF0 /* \_SB_.GPIO._AEI.BUF0 */
- }
- If ((\_SB.CMBS == Zero))
- {
- M460 (" OEM-ASL-Concatenate Local0 and PBTN\n", Zero, Zero, Zero, Zero, Zero, Zero)
- ConcatenateResTemplate (Local0, PBTN, Local1)
- }
- Else
- {
- M460 (" OEM-ASL-Copy Local0 to Local1\n", Zero, Zero, Zero, Zero, Zero, Zero)
- Local1 = Local0
- }
- M460 (" OEM-ASL-\\_SB.GPIO._AEI\n", Zero, Zero, Zero, Zero, Zero, Zero)
- Return (Local1)
- }
- Method (_EVT, 1, Serialized) // _EVT: Event
- {
- M460 (" OEM-ASL-\\_SB.GPIO._EVT-Start Case %d\n", ToInteger (Arg0), Zero, Zero, Zero, Zero, Zero)
- Switch (ToInteger (Arg0))
- {
- Case (Zero)
- {
- M000 (0x3900)
- M460 (" Notify (\\_SB.PWRB, 0x80)\n", Zero, Zero, Zero, Zero, Zero, Zero)
- Notify (\_SB.PWRB, 0x80) // Status Change
- }
- Case (0x12)
- {
- M000 (0x3912)
- If ((\WLD3 == One))
- {
- M460 (" Notify (\\_SB.PCI0.GPP5, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
- Notify (\_SB.PCI0.GPP5, 0x02) // Device Wake
- }
- }
- Case (0x3A)
- {
- M000 (0x393A)
- M460 (" Notify (\\_SB.PCI0.GPPC.XHC0, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
- Notify (\_SB.PCI0.GPPC.XHC0, 0x02) // Device Wake
- }
- Case (0x3B)
- {
- M000 (0x393B)
- M460 (" Notify (\\_SB.PCI0.GPPA.XHC1, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
- Notify (\_SB.PCI0.GPPA.XHC1, 0x02) // Device Wake
- }
- Case (0x3D)
- {
- M000 (0x393D)
- M460 (" Notify (\\_SB.PCI0.GPPA.AZAL, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
- Notify (\_SB.PCI0.GPPA.AZAL, 0x02) // Device Wake
- }
- Case (0x3E)
- {
- M000 (0x393E)
- M460 (" Notify (\\_SB.PCI0.GPPA.ACP, 0x02)\n", Zero, Zero, Zero, Zero, Zero, Zero)
- Notify (\_SB.PCI0.GPPA.ACP, 0x02) // Device Wake
- }
- }
- M460 (" OEM-ASL-\\_SB.GPIO._EVT-End Case %d\n", ToInteger (Arg0), Zero, Zero, Zero, Zero, Zero)
- }
- }
- }</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>/*
- * Intel ACPI Component Architecture
- * AML/ASL+ Disassembler version 20240927 (64-bit version)
- * Copyright (c) 2000 - 2023 Intel Corporation
- *
- * Disassembly of /sys/firmware/acpi/tables/IVRS
- *
- * ACPI Data Table [IVRS]
- *
- * Format: [HexOffset DecimalOffset ByteLength] FieldName : FieldValue (in hex)
- */
- [000h 0000 004h] Signature : "IVRS" [I/O Virtualization Reporting Structure]
- [004h 0004 004h] Table Length : 000001F6
- [008h 0008 001h] Revision : 02
- [009h 0009 001h] Checksum : AB
- [00Ah 0010 006h] Oem ID : "INSYDE"
- [010h 0016 008h] Oem Table ID : "EDK2 "
- [018h 0024 004h] Oem Revision : 00000001
- [01Ch 0028 004h] Asl Compiler ID : "ACPI"
- [020h 0032 004h] Asl Compiler Revision : 00040000
- [024h 0036 004h] Virtualization Info : 00203043
- [028h 0040 008h] Reserved : 0000000000000000
- [030h 0048 001h] Subtable Type : 10 [Hardware Definition Block (IVHD)]
- [031h 0049 001h] Flags (decoded below) : B0
- HtTunEn : 0
- PassPW : 0
- ResPassPW : 0
- Isoc Control : 0
- Iotlb Support : 1
- Coherent : 1
- Prefetch Support : 0
- PPR Support : 1
- [032h 0050 002h] Length : 0044
- [034h 0052 002h] DeviceId : 0002
- [036h 0054 002h] Capability Offset : 0040
- [038h 0056 008h] Base Address : 00000000FD200000
- [040h 0064 002h] PCI Segment Group : 0000
- [042h 0066 002h] Virtualization Info : 0000
- [044h 0068 004h] Feature Reporting : 80048F6E
- [048h 0072 001h] Subtable Type : 03 [Device Entry: Start of Range]
- [049h 0073 002h] Device ID : 0003
- [04Bh 0075 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [04Ch 0076 001h] Subtable Type : 04 [Device Entry: End of Range]
- [04Dh 0077 002h] Device ID : FFFE
- [04Fh 0079 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [050h 0080 001h] Subtable Type : 43 [Device Entry: Alias Start of Range]
- [051h 0081 002h] Device ID : FF00
- [053h 0083 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [054h 0084 001h] Reserved : 00
- [055h 0085 002h] Source Used Device ID : 00A5
- [057h 0087 001h] Reserved : 00
- [058h 0088 001h] Subtable Type : 04 [Device Entry: End of Range]
- [059h 0089 002h] Device ID : FFFF
- [05Bh 0091 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [05Ch 0092 001h] Subtable Type : 48 [Device Entry: Special Device]
- [05Dh 0093 002h] Device ID : 0000
- [05Fh 0095 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [060h 0096 001h] Handle : 00
- [061h 0097 002h] Source Used Device ID : 00A0
- [063h 0099 001h] Variety : 02
- [064h 0100 001h] Subtable Type : 48 [Device Entry: Special Device]
- [065h 0101 002h] Device ID : 0000
- [067h 0103 001h] Data Setting (decoded below) : D7
- INITPass : 1
- EIntPass : 1
- NMIPass : 1
- Reserved : 0
- System MGMT : 1
- LINT0 Pass : 1
- LINT1 Pass : 1
- [068h 0104 001h] Handle : 21
- [069h 0105 002h] Source Used Device ID : 00A0
- [06Bh 0107 001h] Variety : 01
- [06Ch 0108 001h] Subtable Type : 48 [Device Entry: Special Device]
- [06Dh 0109 002h] Device ID : 0000
- [06Fh 0111 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [070h 0112 001h] Handle : 22
- [071h 0113 002h] Source Used Device ID : 0001
- [073h 0115 001h] Variety : 01
- [074h 0116 001h] Subtable Type : 11 [Hardware Definition Block (IVHD)]
- [075h 0117 001h] Flags (decoded below) : 30
- HtTunEn : 0
- PassPW : 0
- ResPassPW : 0
- Isoc Control : 0
- Iotlb Support : 1
- Coherent : 1
- Prefetch Support : 0
- PPR Support : 0
- [076h 0118 002h] Length : 0054
- [078h 0120 002h] DeviceId : 0002
- [07Ah 0122 002h] Capability Offset : 0040
- [07Ch 0124 008h] Base Address : 00000000FD200000
- [084h 0132 002h] PCI Segment Group : 0000
- [086h 0134 002h] Virtualization Info : 0000
- [088h 0136 004h] Attributes : 00048000
- [08Ch 0140 008h] EFR Image : 246577EFA2254AFA
- [094h 0148 008h] Reserved : 0000000000000010
- [09Ch 0156 001h] Subtable Type : 03 [Device Entry: Start of Range]
- [09Dh 0157 002h] Device ID : 0003
- [09Fh 0159 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [0A0h 0160 001h] Subtable Type : 04 [Device Entry: End of Range]
- [0A1h 0161 002h] Device ID : FFFE
- [0A3h 0163 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [0A4h 0164 001h] Subtable Type : 43 [Device Entry: Alias Start of Range]
- [0A5h 0165 002h] Device ID : FF00
- [0A7h 0167 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [0A8h 0168 001h] Reserved : 00
- [0A9h 0169 002h] Source Used Device ID : 00A5
- [0ABh 0171 001h] Reserved : 00
- [0ACh 0172 001h] Subtable Type : 04 [Device Entry: End of Range]
- [0ADh 0173 002h] Device ID : FFFF
- [0AFh 0175 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [0B0h 0176 001h] Subtable Type : 48 [Device Entry: Special Device]
- [0B1h 0177 002h] Device ID : 0000
- [0B3h 0179 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [0B4h 0180 001h] Handle : 00
- [0B5h 0181 002h] Source Used Device ID : 00A0
- [0B7h 0183 001h] Variety : 02
- [0B8h 0184 001h] Subtable Type : 48 [Device Entry: Special Device]
- [0B9h 0185 002h] Device ID : 0000
- [0BBh 0187 001h] Data Setting (decoded below) : D7
- INITPass : 1
- EIntPass : 1
- NMIPass : 1
- Reserved : 0
- System MGMT : 1
- LINT0 Pass : 1
- LINT1 Pass : 1
- [0BCh 0188 001h] Handle : 21
- [0BDh 0189 002h] Source Used Device ID : 00A0
- [0BFh 0191 001h] Variety : 01
- [0C0h 0192 001h] Subtable Type : 48 [Device Entry: Special Device]
- [0C1h 0193 002h] Device ID : 0000
- [0C3h 0195 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [0C4h 0196 001h] Handle : 22
- [0C5h 0197 002h] Source Used Device ID : 0001
- [0C7h 0199 001h] Variety : 01
- [0C8h 0200 001h] Subtable Type : 21 [Memory Definition Block (IVMD)]
- [0C9h 0201 001h] Flags (decoded below) : 07
- Unity : 1
- Readable : 1
- Writeable : 1
- Exclusion Range : 0
- [0CAh 0202 002h] Length : 0020
- [0CCh 0204 002h] DeviceId : 0060
- [0CEh 0206 002h] Auxiliary Data : 0000
- [0D0h 0208 008h] Reserved : 0000000000000000
- [0D8h 0216 008h] Start Address : 000000007D900000
- [0E0h 0224 008h] Memory Length : 0000000000100000
- [0E8h 0232 001h] Subtable Type : 21 [Memory Definition Block (IVMD)]
- [0E9h 0233 001h] Flags (decoded below) : 08
- Unity : 0
- Readable : 0
- Writeable : 0
- Exclusion Range : 1
- [0EAh 0234 002h] Length : 0020
- [0ECh 0236 002h] DeviceId : C107
- [0EEh 0238 002h] Auxiliary Data : 0000
- [0F0h 0240 008h] Reserved : 0000000000000000
- [0F8h 0248 008h] Start Address : 0000000077E00000
- [100h 0256 008h] Memory Length : 0000000000020000
- [108h 0264 001h] Subtable Type : 40 [Hardware Definition Block - Mixed Format (IVHD)]
- [109h 0265 001h] Flags (decoded below) : 30
- HtTunEn : 0
- PassPW : 0
- ResPassPW : 0
- Isoc Control : 0
- Iotlb Support : 1
- Coherent : 1
- Prefetch Support : 0
- PPR Support : 0
- [10Ah 0266 002h] Length : 00EE
- [10Ch 0268 002h] DeviceId : 0002
- [10Eh 0270 002h] Capability Offset : 0040
- [110h 0272 008h] Base Address : 00000000FD200000
- [118h 0280 002h] PCI Segment Group : 0000
- [11Ah 0282 002h] Virtualization Info : 0000
- [11Ch 0284 004h] Attributes : 00048000
- [120h 0288 008h] EFR Image : 246577EFA2254AFA
- [128h 0296 008h] Reserved : 0000000000000010
- [130h 0304 001h] Subtable Type : 03 [Device Entry: Start of Range]
- [131h 0305 002h] Device ID : 0003
- [133h 0307 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [134h 0308 001h] Subtable Type : 04 [Device Entry: End of Range]
- [135h 0309 002h] Device ID : FFFE
- [137h 0311 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [138h 0312 001h] Subtable Type : 43 [Device Entry: Alias Start of Range]
- [139h 0313 002h] Device ID : FF00
- [13Bh 0315 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [13Ch 0316 001h] Reserved : 00
- [13Dh 0317 002h] Source Used Device ID : 00A5
- [13Fh 0319 001h] Reserved : 00
- [140h 0320 001h] Subtable Type : 04 [Device Entry: End of Range]
- [141h 0321 002h] Device ID : FFFF
- [143h 0323 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [144h 0324 001h] Subtable Type : 48 [Device Entry: Special Device]
- [145h 0325 002h] Device ID : 0000
- [147h 0327 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [148h 0328 001h] Handle : 00
- [149h 0329 002h] Source Used Device ID : 00A0
- [14Bh 0331 001h] Variety : 02
- [14Ch 0332 001h] Subtable Type : 48 [Device Entry: Special Device]
- [14Dh 0333 002h] Device ID : 0000
- [14Fh 0335 001h] Data Setting (decoded below) : D7
- INITPass : 1
- EIntPass : 1
- NMIPass : 1
- Reserved : 0
- System MGMT : 1
- LINT0 Pass : 1
- LINT1 Pass : 1
- [150h 0336 001h] Handle : 21
- [151h 0337 002h] Source Used Device ID : 00A0
- [153h 0339 001h] Variety : 01
- [154h 0340 001h] Subtable Type : 48 [Device Entry: Special Device]
- [155h 0341 002h] Device ID : 0000
- [157h 0343 001h] Data Setting (decoded below) : 00
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 0
- LINT1 Pass : 0
- [158h 0344 001h] Handle : 22
- [159h 0345 002h] Source Used Device ID : 0001
- [15Bh 0347 001h] Variety : 01
- [15Ch 0348 001h] Subtable Type : F0 [Device Entry: ACPI HID Named Device]
- [15Dh 0349 002h] Device ID : 00A5
- [15Fh 0351 001h] Data Setting (decoded below) : 40
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 1
- LINT1 Pass : 0
- [160h 0352 008h] ACPI HID : "AMDI0020"
- [168h 0360 008h] ACPI CID : 0000000000000000
- [170h 0368 001h] UID Format : 02
- [171h 0369 001h] UID Length : 04
- [172h 0370 004h] UID : "ID00"
- [176h 0374 001h] Subtable Type : F0 [Device Entry: ACPI HID Named Device]
- [177h 0375 002h] Device ID : 00A5
- [179h 0377 001h] Data Setting (decoded below) : 40
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 1
- LINT1 Pass : 0
- [17Ah 0378 008h] ACPI HID : "AMDI0020"
- [182h 0386 008h] ACPI CID : 0000000000000000
- [18Ah 0394 001h] UID Format : 02
- [18Bh 0395 001h] UID Length : 04
- [18Ch 0396 004h] UID : "ID01"
- [190h 0400 001h] Subtable Type : F0 [Device Entry: ACPI HID Named Device]
- [191h 0401 002h] Device ID : 00A5
- [193h 0403 001h] Data Setting (decoded below) : 40
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 1
- LINT1 Pass : 0
- [194h 0404 008h] ACPI HID : "AMDI0020"
- [19Ch 0412 008h] ACPI CID : 0000000000000000
- [1A4h 0420 001h] UID Format : 02
- [1A5h 0421 001h] UID Length : 04
- [1A6h 0422 004h] UID : "ID02"
- [1AAh 0426 001h] Subtable Type : F0 [Device Entry: ACPI HID Named Device]
- [1ABh 0427 002h] Device ID : 0099
- [1ADh 0429 001h] Data Setting (decoded below) : 40
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 1
- LINT1 Pass : 0
- [1AEh 0430 008h] ACPI HID : "AMDI0020"
- [1B6h 0438 008h] ACPI CID : 0000000000000000
- [1BEh 0446 001h] UID Format : 02
- [1BFh 0447 001h] UID Length : 04
- [1C0h 0448 004h] UID : "ID03"
- [1C4h 0452 001h] Subtable Type : F0 [Device Entry: ACPI HID Named Device]
- [1C5h 0453 002h] Device ID : 0060
- [1C7h 0455 001h] Data Setting (decoded below) : 40
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 1
- LINT1 Pass : 0
- [1C8h 0456 008h] ACPI HID : "MSFT0201"
- [1D0h 0464 008h] ACPI CID : 0000000000000000
- [1D8h 0472 001h] UID Format : 01
- [1D9h 0473 001h] UID Length : 02
- [1DAh 0474 008h] UID : 4D41400099F00001
- [1DCh 0476 001h] Subtable Type : F0 [Device Entry: ACPI HID Named Device]
- [1DDh 0477 002h] Device ID : 0099
- [1DFh 0479 001h] Data Setting (decoded below) : 40
- INITPass : 0
- EIntPass : 0
- NMIPass : 0
- Reserved : 0
- System MGMT : 0
- LINT0 Pass : 1
- LINT1 Pass : 0
- [1E0h 0480 008h] ACPI HID : "AMDI0020"
- [1E8h 0488 008h] ACPI CID : 0000000000000000
- [1F0h 0496 001h] UID Format : 02
- [1F1h 0497 001h] UID Length : 04
- [1F2h 0498 004h] UID : "ID04"
- Raw Table Data: Length 502 (0x1F6)
- 0000: 49 56 52 53 F6 01 00 00 02 AB 49 4E 53 59 44 45 // IVRS......INSYDE
- 0010: 45 44 4B 32 20 20 20 20 01 00 00 00 41 43 50 49 // EDK2 ....ACPI
- 0020: 00 00 04 00 43 30 20 00 00 00 00 00 00 00 00 00 // ....C0 .........
- 0030: 10 B0 44 00 02 00 40 00 00 00 20 FD 00 00 00 00 // ..D...@... .....
- 0040: 00 00 00 00 6E 8F 04 80 03 03 00 00 04 FE FF 00 // ....n...........
- 0050: 43 00 FF 00 00 A5 00 00 04 FF FF 00 48 00 00 00 // C...........H...
- 0060: 00 A0 00 02 48 00 00 D7 21 A0 00 01 48 00 00 00 // ....H...!...H...
- 0070: 22 01 00 01 11 30 54 00 02 00 40 00 00 00 20 FD // "....0T...@... .
- 0080: 00 00 00 00 00 00 00 00 00 80 04 00 FA 4A 25 A2 // .............J%.
- 0090: EF 77 65 24 10 00 00 00 00 00 00 00 03 03 00 00 // .we$............
- 00A0: 04 FE FF 00 43 00 FF 00 00 A5 00 00 04 FF FF 00 // ....C...........
- 00B0: 48 00 00 00 00 A0 00 02 48 00 00 D7 21 A0 00 01 // H.......H...!...
- 00C0: 48 00 00 00 22 01 00 01 21 07 20 00 60 00 00 00 // H..."...!. .`...
- 00D0: 00 00 00 00 00 00 00 00 00 00 90 7D 00 00 00 00 // ...........}....
- 00E0: 00 00 10 00 00 00 00 00 21 08 20 00 07 C1 00 00 // ........!. .....
- 00F0: 00 00 00 00 00 00 00 00 00 00 E0 77 00 00 00 00 // ...........w....
- 0100: 00 00 02 00 00 00 00 00 40 30 EE 00 02 00 40 00 // ........@0....@.
- 0110: 00 00 20 FD 00 00 00 00 00 00 00 00 00 80 04 00 // .. .............
- 0120: FA 4A 25 A2 EF 77 65 24 10 00 00 00 00 00 00 00 // .J%..we$........
- 0130: 03 03 00 00 04 FE FF 00 43 00 FF 00 00 A5 00 00 // ........C.......
- 0140: 04 FF FF 00 48 00 00 00 00 A0 00 02 48 00 00 D7 // ....H.......H...
- 0150: 21 A0 00 01 48 00 00 00 22 01 00 01 F0 A5 00 40 // !...H..."......@
- 0160: 41 4D 44 49 30 30 32 30 00 00 00 00 00 00 00 00 // AMDI0020........
- 0170: 02 04 49 44 30 30 F0 A5 00 40 41 4D 44 49 30 30 // ..ID00...@AMDI00
- 0180: 32 30 00 00 00 00 00 00 00 00 02 04 49 44 30 31 // 20..........ID01
- 0190: F0 A5 00 40 41 4D 44 49 30 30 32 30 00 00 00 00 // ...@AMDI0020....
- 01A0: 00 00 00 00 02 04 49 44 30 32 F0 99 00 40 41 4D // ......ID02...@AM
- 01B0: 44 49 30 30 32 30 00 00 00 00 00 00 00 00 02 04 // DI0020..........
- 01C0: 49 44 30 33 F0 60 00 40 4D 53 46 54 30 32 30 31 // ID03.`.@MSFT0201
- 01D0: 00 00 00 00 00 00 00 00 01 02 01 00 F0 99 00 40 // ...............@
- 01E0: 41 4D 44 49 30 30 32 30 00 00 00 00 00 00 00 00 // AMDI0020........
- 01F0: 02 04 49 44 30 34 // ..ID04</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>ACPI name: ACPI path [driver]
- β LNXSYSTM:00: \ [None]
- β LNXSYBUS:00: \_SB_ [None]
- β ACPI0010:00: \_SB_.PLTF [None]
- β ACPI0007:00: \_SB_.PLTF.C000 [processor]
- β ACPI0007:01: \_SB_.PLTF.C001 [processor]
- β ACPI0007:02: \_SB_.PLTF.C002 [processor]
- β ACPI0007:03: \_SB_.PLTF.C003 [processor]
- β ACPI0007:04: \_SB_.PLTF.C004 [processor]
- β ACPI0007:05: \_SB_.PLTF.C005 [processor]
- β ACPI0007:06: \_SB_.PLTF.C006 [processor]
- β ACPI0007:07: \_SB_.PLTF.C007 [processor]
- β ACPI0007:08: \_SB_.PLTF.C008 [processor]
- β ACPI0007:09: \_SB_.PLTF.C009 [processor]
- β ACPI0007:0a: \_SB_.PLTF.C00A [processor]
- β ACPI0007:0b: \_SB_.PLTF.C00B [processor]
- β ACPI0007:0c: \_SB_.PLTF.C00C [processor]
- β ACPI0007:0d: \_SB_.PLTF.C00D [processor]
- β ACPI0007:0e: \_SB_.PLTF.C00E [processor]
- β ACPI0007:0f: \_SB_.PLTF.C00F [processor]
- β ACPI0007:10: \_SB_.PLTF.C010 [processor]
- β ACPI0007:11: \_SB_.PLTF.C011 [processor]
- β ACPI0007:12: \_SB_.PLTF.C012 [processor]
- β ACPI0007:13: \_SB_.PLTF.C013 [processor]
- β ACPI0007:14: \_SB_.PLTF.C014 [processor]
- β ACPI0007:15: \_SB_.PLTF.C015 [processor]
- β ACPI0007:16: \_SB_.PLTF.C016 [processor]
- β ACPI0007:17: \_SB_.PLTF.C017 [processor]
- β AMDI000A:00: \_SB_.PEP_ [amd_pmc]
- β AMDI0010:00: \_SB_.I2CA [i2c_designware]
- β AMDI0010:01: \_SB_.I2CB [i2c_designware]
- β FRMW0004:00: \_SB_.I2CB.ECKB [i2c_hid_acpi]
- β FRMW0005:00: \_SB_.I2CB.ECSL [i2c_hid_acpi]
- β AMDI0010:03: \_SB_.I2CD [i2c_designware]
- β PIXA3854:00: \_SB_.I2CD.TPAD [i2c_hid_acpi]
- β AMDI0030:00: \_SB_.GPIO [amd_gpio]
- β AMDI0052:00: \_SB_.PPKG [None]
- β AMDI0080:00: \_SB_.VGBI [None]
- β AMDI0081:00: \_SB_.CIND [None]
- β AMDI0103:00: \_SB_.PMF_ [amd-pmf]
- β AMDI0104:00: \_SB_.MP1_ [None]
- β DRTM0001:00: \_SB_.DRTM [None]
- β FRMWC004:00: \_SB_.CREC [cros_ec_lpcs]
- β LNXPOWER:11: \_SB_.FN10 [None]
- β MSFT0101:00: \_SB_.TPM2 [None]
- β MSFT0201:00: \_SB_.MHSP [None]
- β PNP0A08:00: \_SB_.PCI0 [None]
- β LNXPOWER:04: \_SB_.PCI0.GPP3.P0NV [None]
- β LNXPOWER:05: \_SB_.PCI0.GPP5.PWSR [None]
- β LNXPOWER:06: \_SB_.PCI0.GPPA.PWRS [None]
- β PNP0103:00: \_SB_.PCI0.HPET [None]
- β PNP0C14:00: \_SB_.PCI0.DWMI [acpi-wmi]
- β device:00: \_SB_.PCI0.GPP0 [pcieport]
- β LNXPOWER:01: \_SB_.PCI0.GPP0.SWUS.PWRS [None]
- β device:01: \_SB_.PCI0.GPP0.SWUS [None]
- β device:02: \_SB_.PCI0.GPP1 [pcieport]
- β LNXPOWER:03: \_SB_.PCI0.GPP1.SWUS.PWRS [None]
- β device:03: \_SB_.PCI0.GPP1.SWUS [None]
- β device:04: \_SB_.PCI0.GPP3 [pcieport]
- β device:05: \_SB_.PCI0.GPP3.NVME [nvme]
- β device:06: \_SB_.PCI0.GPP4 [None]
- β device:07: \_SB_.PCI0.GPP4.SDCR [None]
- β device:08: \_SB_.PCI0.GPP5 [pcieport]
- β device:09: \_SB_.PCI0.GPP5.WLAN [mt7921e]
- β device:0a: \_SB_.PCI0.GPP6 [None]
- β device:0b: \_SB_.PCI0.GPP6.RTL8 [None]
- β device:0c: \_SB_.PCI0.GPP6.RUSB [None]
- β device:0d: \_SB_.PCI0.GPP7 [None]
- β device:0e: \_SB_.PCI0.GPP7.WWAN [None]
- β device:0f: \_SB_.PCI0.GPP8 [None]
- β device:10: \_SB_.PCI0.GPP9 [None]
- β device:11: \_SB_.PCI0.GP10 [None]
- β device:12: \_SB_.PCI0.GP11 [None]
- β device:13: \_SB_.PCI0.GP12 [None]
- β device:14: \_SB_.PCI0.GP13 [None]
- β device:15: \_SB_.PCI0.GP14 [None]
- β device:16: \_SB_.PCI0.GPPA [pcieport]
- β LNXPOWER:07: \_SB_.PCI0.GPPA.VGA_.PWRS [None]
- β LNXPOWER:09: \_SB_.PCI0.GPPA.AZAL.PWRS [None]
- β LNXVIDEO:00: \_SB_.PCI0.GPPA.VGA_ [amdgpu]
- β device:17: \_SB_.PCI0.GPPA.VGA_.LCD_ [None]
- β device:18: \_SB_.PCI0.GPPA.PSP_ [ccp]
- β device:19: \_SB_.PCI0.GPPA.ACP_ [snd_acp_pci]
- β device:1a: \_SB_.PCI0.GPPA.ACP_.HDA0 [None]
- β device:1b: \_SB_.PCI0.GPPA.ACP_.PDMC [None]
- β device:1c: \_SB_.PCI0.GPPA.ACP_.I2SC [None]
- β device:1d: \_SB_.PCI0.GPPA.ACP_.BTSC [None]
- β device:1e: \_SB_.PCI0.GPPA.ACP_.SDWC [None]
- β device:1f: \_SB_.PCI0.GPPA.ACP_.SDWS [None]
- β device:20: \_SB_.PCI0.GPPA.ACP_.USBS [None]
- β device:21: \_SB_.PCI0.GPPA.AZAL [snd_hda_intel]
- β device:22: \_SB_.PCI0.GPPA.HDAU [snd_hda_intel]
- β device:23: \_SB_.PCI0.GPPA.XHC1 [xhci_hcd]
- β device:24: \_SB_.PCI0.GPPA.XHC1.RHUB [usb]
- β device:25: \_SB_.PCI0.GPPA.XHC1.RHUB.PRT1 [None]
- β device:26: \_SB_.PCI0.GPPA.XHC1.RHUB.PRT2 [None]
- β device:27: \_SB_.PCI0.GPPA.MP2C [None]
- β device:28: \_SB_.PCI0.GPPB [pcieport]
- β device:29: \_SB_.PCI0.GPPB.IPU_ [None]
- β device:2a: \_SB_.PCI0.GPPC [pcieport]
- β device:2b: \_SB_.PCI0.GPPC.XHC0 [xhci_hcd]
- β device:2c: \_SB_.PCI0.GPPC.XHC0.RHUB [usb]
- β device:2d: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT1 [None]
- β device:2e: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT2 [None]
- β device:2f: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT3 [None]
- β device:30: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT3.WCAM [None]
- β device:31: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT3.CAMI [None]
- β device:32: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT4 [None]
- β device:33: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT5 [None]
- β device:34: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT6 [None]
- β device:35: \_SB_.PCI0.GPPC.XHC0.RHUB.PRT7 [None]
- β device:36: \_SB_.PCI0.GPPC.XHC3 [xhci_hcd]
- β device:37: \_SB_.PCI0.GPPC.XHC3.RHUB [usb]
- β device:38: \_SB_.PCI0.GPPC.XHC3.RHUB.PRT1 [None]
- β device:39: \_SB_.PCI0.GPPC.XHC3.RHUB.PRT2 [None]
- β device:3a: \_SB_.PCI0.GPPC.XHC4 [xhci_hcd]
- β device:3b: \_SB_.PCI0.GPPC.XHC4.RHUB [usb]
- β device:3c: \_SB_.PCI0.GPPC.XHC4.RHUB.PRT1 [None]
- β device:3d: \_SB_.PCI0.GPPC.XHC4.RHUB.PRT2 [None]
- β device:3e: \_SB_.PCI0.GPPC.NHI0 [thunderbolt]
- β device:3f: \_SB_.PCI0.GPPC.NHI1 [thunderbolt]
- β device:40: \_SB_.PCI0.SMBS [piix4_smbus]
- β device:41: \_SB_.PCI0.LPC0 [None]
- β ACPI0003:00: \_SB_.PCI0.LPC0.ACAD [ac]
- β MSFT0001:00: \_SB_.PCI0.LPC0.KBC0 [i8042 kbd]
- β PNP0000:00: \_SB_.PCI0.LPC0.PIC_ [None]
- β PNP0100:00: \_SB_.PCI0.LPC0.TMR_ [None]
- β PNP0200:00: \_SB_.PCI0.LPC0.DMAC [None]
- β PNP0800:00: \_SB_.PCI0.LPC0.SPKR [None]
- β PNP0B00:00: \_SB_.PCI0.LPC0.RTC_ [rtc_cmos]
- β PNP0C01:00: \_SB_.PCI0.LPC0.SPIR [system]
- β PNP0C02:01: \_SB_.PCI0.LPC0.SYSR [system]
- β PNP0C04:00: \_SB_.PCI0.LPC0.COPR [None]
- β PNP0C09:00: \_SB_.PCI0.LPC0.EC0_ [None]
- β PNP0C0D:00: \_SB_.PCI0.LPC0.EC0_.LID0 [None]
- β PNP0C0A:00: \_SB_.PCI0.LPC0.BAT1 [None]
- β PNP0C02:00: \_SB_.AMDM [system]
- β PNP0C02:02: \_SB_.AWR0 [None]
- β PNP0C02:03: \_SB_.AWR0.ABR0 [None]
- β PNP0C02:04: \_SB_.AWR0.ABR1 [None]
- β PNP0C02:05: \_SB_.AWR0.ABR2 [None]
- β PNP0C02:06: \_SB_.AWR0.ABR3 [None]
- β PNP0C02:07: \_SB_.AWR0.ABR4 [None]
- β PNP0C02:08: \_SB_.AWR0.ABR5 [None]
- β PNP0C02:09: \_SB_.AWR0.ABR6 [None]
- β PNP0C02:0a: \_SB_.AWR0.ABR7 [None]
- β PNP0C02:0b: \_SB_.AWR0.ABR8 [None]
- β PNP0C02:0c: \_SB_.AWR0.ABR9 [None]
- β PNP0C02:0d: \_SB_.AWR0.ABRA [None]
- β PNP0C0B:00: \_SB_.FAN_ [acpi-fan]
- β PNP0C0C:00: \_SB_.PWRB [None]
- β USBC000:00: \_SB_.UBTC [ucsi_acpi]
- β device:42: \_SB_.UBTC.CR01 [None]
- β device:43: \_SB_.UBTC.CR02 [None]
- β device:44: \_SB_.UBTC.CR03 [None]
- β device:45: \_SB_.UBTC.CR04 [None]
- β LNXSYBUS:01: \_TZ_ [None]
- β LNXTHERM:00: \_TZ_.TZ00 [None]
- β LNXTHERM:01: \_TZ_.TZ01 [None]
- β LNXTHERM:02: \_TZ_.TZ02 [None]
- β LNXTHERM:03: \_TZ_.TZ03 [None]
- ββPNP0C14:01: \AOD_ [acpi-wmi]</pre>
- </TD>
- </TR>
- <TR>
- <TD>
- <pre>Device firmware checks unavailable without gobject introspection</pre>
- </TD>
- </TR>
- </table>
- <h2>Summary</h2>
- <select id="start_select" class="hidden-by-default"></select>
- <select id="end_select" class="hidden-by-default"></select>
- <input type="radio" name="session1" id="all_time" value="all_time" checked="" class="hidden-by-default" />
- <input type="radio" name="session1" id="med_duration" value="600" class="hidden-by-default" />
- <input type="radio" name="session1" id="min_duration" value="60" class="hidden-by-default" />
- <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>
- <p><label for="cycle" class="hidden-by-default">Choose a cycle:</label>
- <select id="cycles" onchange="cycle_data_changed()" class="hidden-by-default">
- <option value="0">Disabled</option>
- <option value="1">Cycle 0</option>
- </select>
- </p>
- <table id="cycledata" class="hide-borders">
- <TR class="row-disabled" id="cycledata1">
- <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>
- </TR>
- </table>
- <h3 id="debug_label" style="display:none;">Debugging π¦</h3>
- <p><label for="debug" class="hidden-by-default">Choose a cycle:</label>
- <select id="debug" onchange="debug_data_changed()" class="hidden-by-default">
- <option value="0">Disabled</option>
- <option value="1">Cycle 0</option>
- </select>
- </p>
- <table id="debugdata" class="hide-borders">
- <TR class="row-disabled" id="debugdata1">
- <TD>
- <div class="β">BAT1 energy level is 2898000 Β΅Ah</div>
- <div class="β">ACPI Lid (/proc/acpi/button/lid/LID0/state): open</div>
- <div class="β">/proc/cmdline: amd_pstate=passive amd_pstate.shared_mem=1 acpi_osi=Linux ucsi.disable=1</div>
- <div class="β">Possible wakeup sources:</div>
- <div class="β">β [/sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:001/wakeup60]: enabled</div>
- <div class="β">β [/sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:002/wakeup61]: enabled</div>
- <div class="β">β [/sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:003/wakeup62]: enabled</div>
- <div class="β">β [/sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:004/wakeup63]: enabled</div>
- <div class="β">β ACPI Battery [PNP0C0A:00]: enabled</div>
- <div class="β">β ACPI Lid Switch [PNP0C0D:00]: enabled</div>
- <div class="β">β ACPI Power Button [PNP0C0C:00]: enabled</div>
- <div class="β">β AT Translated Set 2 keyboard [serio0]: enabled</div>
- <div class="β">β Advanced Micro Devices, Inc. [AMD] ISA bridge [0000:00:14.3]: enabled</div>
- <div class="β">β Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:01.1]: enabled</div>
- <div class="β">β Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:01.2]: enabled</div>
- <div class="β">β Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:02.1]: enabled</div>
- <div class="β">β Advanced Micro Devices, Inc. [AMD] PCI bridge [0000:00:02.3]: enabled</div>
- <div class="β">β Advanced Micro Devices, Inc. [AMD] USB controller [0000:c1:00.4]: enabled</div>
- <div class="β">β Advanced Micro Devices, Inc. [AMD] USB controller [0000:c3:00.0]: enabled</div>
- <div class="β">β Advanced Micro Devices, Inc. [AMD] USB controller [0000:c3:00.3]: enabled</div>
- <div class="β">β Advanced Micro Devices, Inc. [AMD] USB controller [0000:c3:00.4]: enabled</div>
- <div class="β">β Advanced Micro Devices, Inc. [AMD] USB controller [0000:c3:00.5]: enabled</div>
- <div class="β">β Advanced Micro Devices, Inc. [AMD] USB controller [0000:c3:00.6]: enabled</div>
- <div class="β">β PIXA3854:00 093A:0274 Touchpad [i2c-PIXA3854:00]: enabled</div>
- <div class="β">β Plug-n-play Real Time Clock [00:01]: enabled</div>
- <div class="β">β Real Time Clock alarm timer [rtc0]: enabled</div>
- <div class="β">β Thunderbolt domain [domain0]: enabled</div>
- <div class="β">β Thunderbolt domain [domain1]: enabled</div>
- <div class="β">β USB4 host controller [0-0]: enabled</div>
- <div class="β">ββUSB4 host controller [1-0]: enabled</div>
- <div class="β">Power Profiles:</div>
- <div class="β">β performance:</div>
- <div class="β">ββPlatformDriver: platform_profile</div>
- <div class="β">β Degraded: no</div>
- <div class="β">β * balanced:</div>
- <div class="β">ββPlatformDriver: platform_profile</div>
- <div class="β">β power-saver:</div>
- <div class="β">ββPlatformDriver: platform_profile</div>
- <div class="β">IPS status</div>
- <div class="β">β IPS config: 6</div>
- <div class="β">β Idle optimization: 0</div>
- <div class="β">β Idle workqueue - enabled: 1</div>
- <div class="β">β Idle workqueue - running: 1</div>
- <div class="β">β entry counts: rcg=728 ips1=2 ips2=2</div>
- <div class="β">ββexit counts: rcg=728 ips1=2 ips2=2</div>
- <div class="β">Thermal zones</div>
- <div class="β">ββ LNXTHERM:00</div>
- <div class="β">β temp: 46.8Β°C</div>
- <div class="β">β critical trip: 170.0Β°C</div>
- <div class="β">β hot trip: 160.0Β°C</div>
- <div class="β">ββ LNXTHERM:01</div>
- <div class="β">β temp: 49.8Β°C</div>
- <div class="β">β critical trip: 170.0Β°C</div>
- <div class="β">β hot trip: 160.0Β°C</div>
- <div class="β">ββ LNXTHERM:02</div>
- <div class="β">β temp: 41.8Β°C</div>
- <div class="β">β critical trip: 170.0Β°C</div>
- <div class="β">β hot trip: 160.0Β°C</div>
- <div class="β">ββLNXTHERM:03</div>
- <div class="β"> temp: 0.0Β°C</div>
- <div class="β"> critical trip: 170.0Β°C</div>
- <div class="β"> hot trip: 160.0Β°C</div>
- <div class="β">Suspend timer programmed for 0:00:10</div>
- <div class="β">PM: suspend entry (s2idle)</div>
- <div class="β">Filesystems sync: 0.000 seconds</div>
- <div class="β">Freezing user space processes</div>
- <div class="β">Freezing user space processes completed (elapsed 0.002 seconds)</div>
- <div class="β">OOM killer disabled.</div>
- <div class="β">Freezing remaining freezable tasks</div>
- <div class="β">Freezing remaining freezable tasks completed (elapsed 0.001 seconds)</div>
- <div class="β">printk: Suspending console(s) (use no_console_suspend to debug)</div>
- <div class="β">wlp192s0: deauthenticating from fc:5c:45:17:d4:6c by local choice (Reason: 3=DEAUTH_LEAVING)</div>
- <div class="π¦">PM: suspend of devices complete after 229.657 msecs</div>
- <div class="π¦">PM: start suspend of devices complete after 232.043 msecs</div>
- <div class="π¦">Disabling GPIO #5 interrupt for suspend.</div>
- <div class="π¦">Disabling GPIO #8 interrupt for suspend.</div>
- <div class="π¦">Disabling GPIO #84 interrupt for suspend.</div>
- <div class="π¦">PM: late suspend of devices complete after 0.925 msecs</div>
- <div class="β">ACPI: EC: interrupt blocked</div>
- <div class="π¦">PM: noirq suspend of devices complete after 79.878 msecs</div>
- <div class="β">ACPI: \_SB_.PCI0.GPP0.SWUS: LPI: Constraint not met; min power state:D3hot current power state:D0</div>
- <div class="β">ACPI: \_SB_.PCI0.GPP1.SWUS: LPI: Constraint not met; min power state:D3hot current power state:D0</div>
- <div class="β">ACPI: \_SB_.PCI0.GPP5.WLAN: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PCI0.GPPB.IPU_: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C000: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C001: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C002: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C003: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C004: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C005: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C006: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C007: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C008: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C009: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C00A: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C00B: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C00C: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C00D: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C00E: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C00F: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C010: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C011: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C012: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C013: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C014: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C015: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C016: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PLTF.C017: LPI: Device not power manageable</div>
- <div class="β">ACPI: \_SB_.PEP_: Successfully transitioned to state screen off</div>
- <div class="β">ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms entry</div>
- <div class="β">ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 entry</div>
- <div class="π¦">PM: suspend-to-idle</div>
- <div class="π¦">amd_pmc: SMU idlemask s0i3: 0xffef9e9f</div>
- <div class="π¦">PM: Triggering wakeup from IRQ 9</div>
- <div class="π¦">ACPI: EC: ACPI EC GPE status set</div>
- <div class="π¦">ACPI: EC: ACPI EC GPE dispatched</div>
- <div class="π¦">Dispatching Notify on [BAT1] (Device) Value 0x80 (Status Change)</div>
- <div class="π¦">ACPI: EC: ACPI EC work flushed</div>
- <div class="π¦">ACPI: PM: Rearming ACPI SCI for wakeup</div>
- <div class="π¦">amd_pmc: SMU idlemask s0i3: 0xffef9e9d</div>
- <div class="π¦">PM: Triggering wakeup from IRQ 9</div>
- <div class="π¦">ACPI: EC: ACPI EC GPE status set</div>
- <div class="π¦">ACPI: PM: Rearming ACPI SCI for wakeup</div>
- <div class="π¦">amd_pmc: SMU idlemask s0i3: 0xffef9e9d</div>
- <div class="π¦">Timekeeping suspended for 9.494 seconds</div>
- <div class="π¦">PM: Triggering wakeup from IRQ 9</div>
- <div class="π¦">ACPI: PM: ACPI fixed event wakeup</div>
- <div class="π¦">PM: resume from suspend-to-idle</div>
- <div class="π¦">amd_pmc AMDI000A:00: Last suspend didn't reach deepest state</div>
- <div class="β">ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 exit</div>
- <div class="β">ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms exit</div>
- <div class="β">ACPI: \_SB_.PEP_: Successfully transitioned to state screen on</div>
- <div class="β">ACPI: EC: interrupt unblocked</div>
- <div class="π¦">PM: noirq resume of devices complete after 281.348 msecs</div>
- <div class="π¦">Dispatching Notify on [BAT1] (Device) Value 0x80 (Status Change)</div>
- <div class="π¦">PM: early resume of devices complete after 3.929 msecs</div>
- <div class="β">[drm] PCIE GART of 512M enabled (table at 0x0000008001700000).</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: SMU is resuming...</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: SMU is resumed successfully!</div>
- <div class="β">nvme nvme0: 24/0/0 default/read/poll queues</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring jpeg_dec_0 uses VM inv eng 1 on hub 8</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0</div>
- <div class="β">amdgpu 0000:c1:00.0: amdgpu: ring vpe uses VM inv eng 4 on hub 8</div>
- <div class="β">[drm] ring gfx_32803.1.1 was added</div>
- <div class="β">[drm] ring compute_32803.2.2 was added</div>
- <div class="β">[drm] ring sdma_32803.3.3 was added</div>
- <div class="β">[drm] ring gfx_32803.1.1 ib test pass</div>
- <div class="β">[drm] ring compute_32803.2.2 ib test pass</div>
- <div class="β">[drm] ring sdma_32803.3.3 ib test pass</div>
- <div class="π¦">PM: resume of devices complete after 669.888 msecs</div>
- <div class="β">OOM killer enabled.</div>
- <div class="β">Restarting tasks ... done.</div>
- <div class="β">random: crng reseeded on system resumption</div>
- <div class="β">PM: suspend exit</div>
- <div class="π¦">Dispatching Notify on [BAT1] (Device) Value 0x80 (Status Change)</div>
- <div class="β">wlp192s0: authenticate with fc:5c:45:17:d4:68 (local address=14:ac:60:46:9e:eb)</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="β">wlp192s0: send auth to fc:5c:45:17:d4:68 (try 1/3)</div>
- <div class="π¦">Dispatching Notify on [UBTC] (Device) Value 0x80 (Status Change)</div>
- <div class="β">ucsi_acpi USBC000:00: unknown error 0</div>
- <div class="β">ucsi_acpi USBC000:00: con3: failed to register partner alt modes (-5)</div>
- <div class="β">wlp192s0: send auth to fc:5c:45:17:d4:68 (try 2/3)</div>
- <div class="β">wlp192s0: send auth to fc:5c:45:17:d4:68 (try 3/3)</div>
- <div class="β">wlp192s0: authentication with fc:5c:45:17:d4:68 timed out</div>
- <div class="π¦">Dispatching Notify on [BAT1] (Device) Value 0x80 (Status Change)</div>
- <div class="β">wlp192s0: authenticate with fc:5c:45:15:ac:18 (local address=14:ac:60:46:9e:eb)</div>
- <div class="β">Idle mask bit 1 (0x2) changed during suspend</div>
- <div class="β">Used Microsoft uPEP GUID in LPS0 _DSM</div>
- <div class="β">Woke up from IRQ 9 (IR-IO-APIC 9-fasteoi acpi)</div>
- <div class="β">gpe0A increased from 10600 to 10632</div>
- <div class="β">ACPI Lid (/proc/acpi/button/lid/LID0/state): open</div>
- <div class="β">BAT1 energy level is 2897000 Β΅Ah</div>
- <div class="β">IPS status</div>
- <div class="β">β IPS config: 6</div>
- <div class="β">β Idle optimization: 0</div>
- <div class="β">β Idle workqueue - enabled: 1</div>
- <div class="β">β Idle workqueue - running: 0</div>
- <div class="β">β entry counts: rcg=728 ips1=2 ips2=2</div>
- <div class="β">ββexit counts: rcg=728 ips1=2 ips2=2</div>
- <div class="β">Thermal zones</div>
- <div class="β">ββ LNXTHERM:00</div>
- <div class="β">β 46.8Β°C -> 45.8Β°C</div>
- <div class="β">ββ LNXTHERM:01</div>
- <div class="β">β 49.8Β°C -> 49.8Β°C</div>
- <div class="β">ββ LNXTHERM:02</div>
- <div class="β">β 41.8Β°C -> 41.8Β°C</div>
- <div class="β">ββLNXTHERM:03</div>
- <div class="β"> 0.0Β°C -> 52.8Β°C</div>
- </TD>
- </TR>
- </table>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement