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 failures messages for this cycle
- document.getElementById("failures").value = num + 1;
- failure_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 failure data selector
- document.getElementById("failures").value = 0;
- failure_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-15 16:22:07.210792 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.28-1-MANJARO</TD>
- </TR>
- <TR>
- <TD>π</TD>
- <TD>Battery BAT1 (NVT FRANGWA) is operating at 96.09% 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]
- β 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-15 16:20:05</td> <td>0:02:02</td> <td>0.00%</td> <td>71.50%</td> <td>-0.32%</td> <td>-0.27W</td> <td></td> <td>ACPI SCI</td> </tr> </tbody></table>
- <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>π€ Notify devices ['UBTC'] found during suspend</p><p></p></TD>
- </TR>
- </table>
- <p><label for="failure" class="hidden-by-default">Choose a cycle:</label>
- <select id="failures" onchange="failure_data_changed()" class="hidden-by-default">
- <option value="0">Disabled</option>
- <option value="1">Cycle 0</option>
- </select>
- </p>
- <table id="failuredata" class="hide-borders">
- <TR class="row-disabled" id="failuredata1">
- <TD>System had low hardware sleep residency</TD>
- <TD>The system was asleep for 0:02:02, but only spent 0.00% of this time in a hardware sleep state. In sleep cycles that are at least 60 seconds long it's expected you spend above 90 percent of the cycle in hardware sleep.</TD>
- </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 2690000 Β΅Ah</div>
- <div class="β">ACPI Lid (/proc/acpi/button/lid/LID0/state): open</div>
- <div class="β">/proc/cmdline: </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="β">β CpuDriver: amd_pstate</div>
- <div class="β">ββPlatformDriver: platform_profile</div>
- <div class="β">β Degraded: no</div>
- <div class="β">β * balanced:</div>
- <div class="β">β CpuDriver: amd_pstate</div>
- <div class="β">ββPlatformDriver: platform_profile</div>
- <div class="β">β power-saver:</div>
- <div class="β">β CpuDriver: amd_pstate</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=345 ips1=1 ips2=1</div>
- <div class="β">ββexit counts: rcg=345 ips1=1 ips2=1</div>
- <div class="β">Thermal zones</div>
- <div class="β">ββ LNXTHERM:00</div>
- <div class="β">β temp: 42.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: 46.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: 38.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: 49.8Β°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:02:00</div>
- <div class="β">PM: suspend entry (s2idle)</div>
- <div class="β">Filesystems sync: 0.009 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 7e:45:58:3e:83:62 by local choice (Reason: 3=DEAUTH_LEAVING)</div>
- <div class="π¦">PM: suspend of devices complete after 196.291 msecs</div>
- <div class="π¦">PM: start suspend of devices complete after 199.513 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 1.163 msecs</div>
- <div class="β">ACPI: EC: interrupt blocked</div>
- <div class="π¦">PM: noirq suspend of devices complete after 92.668 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="π¦">------------[ cut here ]------------</div>
- <div class="π¦">WARNING: CPU: 1 PID: 30 at drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn35/dcn35_smu.c:143 dcn35_smu_send_msg_with_param+0x164/0x1d0 [amdgpu]</div>
- <div class="π¦">Modules linked in: ccm uvcvideo videobuf2_vmalloc uvc videobuf2_memops videobuf2_v4l2 videobuf2_common videodev mc rfcomm cmac algif_hash algif_skcipher af_alg rpcsec_gss_krb5 auth_rpcgss nfsv4 dns_resolver nfs lockd grace nfs_localio sunrpc veth netfs nf_conntrack_netlink xt_nat iptable_raw xt_tcpudp xt_conntrack xt_MASQUERADE bridge stp llc ip6table_nat ip6table_filter ip6_tables xt_set ip_set iptable_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c xt_addrtype iptable_filter xfrm_user xfrm_algo snd_ctl_led overlay squashfs qrtr bnep vfat fat amd_atl intel_rapl_msr intel_rapl_common snd_acp_legacy_mach snd_acp_mach snd_soc_nau8821 snd_acp3x_rn snd_acp70 snd_acp_i2s snd_acp_pdm snd_soc_dmic snd_acp_pcm snd_sof_amd_acp70 snd_sof_amd_acp63 snd_soc_acpi_amd_match snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof snd_sof_utils snd_pci_ps snd_amd_sdw_acpi soundwire_amd soundwire_generic_allocation snd_hda_codec_realtek mt7921e</div>
- <div class="π¦"> soundwire_bus kvm_amd snd_hda_codec_generic mt7921_common snd_hda_scodec_component snd_hda_codec_hdmi mt792x_lib snd_soc_core kvm mt76_connac_lib snd_hda_intel snd_compress snd_intel_dspcfg mt76 irqbypass ac97_bus snd_intel_sdw_acpi snd_pcm_dmaengine crct10dif_pclmul snd_hda_codec snd_rpl_pci_acp6x crc32_pclmul hid_sensor_als mac80211 polyval_clmulni snd_acp_pci hid_sensor_trigger polyval_generic snd_hda_core industrialio_triggered_buffer snd_acp_legacy_common ghash_clmulni_intel kfifo_buf snd_hwdep snd_pci_acp6x sha512_ssse3 mousedev hid_sensor_iio_common libarc4 sha256_ssse3 leds_cros_ec cros_ec_sysfs cros_ec_hwmon cros_ec_chardev cros_ec_debugfs cros_kbd_led_backlight gpio_cros_ec led_class_multicolor btusb sha1_ssse3 industrialio snd_pcm cfg80211 btrtl snd_pci_acp5x aesni_intel btintel snd_timer snd_rn_pci_acp3x gf128mul spd5118 amd_pmf crypto_simd snd_acp_config btbcm snd cros_ec_dev sp5100_tco amdtee snd_soc_acpi cryptd btmtk ucsi_acpi hid_multitouch hid_sensor_hub joydev bluetooth rapl pcspkr</div>
- <div class="π¦"> typec_ucsi amd_sfh wmi_bmof thunderbolt ccp i2c_piix4 rfkill snd_pci_acp3x soundcore k10temp typec i2c_smbus platform_profile i2c_hid_acpi roles cros_ec_lpcs i2c_hid tee amd_pmc cros_ec mac_hid uinput crypto_user dm_mod loop nfnetlink ip_tables x_tables ext4 crc32c_generic mbcache jbd2 hid_generic usbhid amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec gpu_sched serio_raw atkbd drm_suballoc_helper libps2 vivaldi_fmap drm_buddy nvme drm_display_helper crc32c_intel nvme_core i8042 video cec crc16 nvme_auth serio wmi</div>
- <div class="π¦">CPU: 1 UID: 0 PID: 30 Comm: kworker/1:0 Not tainted 6.12.28-1-MANJARO #1 d17c56a24b56bf5d1171e1f64d800383fc142077</div>
- <div class="π¦">Hardware name: Framework Laptop 13 (AMD Ryzen AI 300 Series)/FRANMGCP09, BIOS 03.03 03/10/2025</div>
- <div class="π¦">Workqueue: events amdgpu_dm_idle_worker [amdgpu]</div>
- <div class="π¦">RIP: 0010:dcn35_smu_send_msg_with_param+0x164/0x1d0 [amdgpu]</div>
- <div class="π¦">Code: 3b 48 8b 17 48 89 f8 0f b6 92 c6 01 00 00 01 ea 8d 6a ff 75 c4 48 8b 40 10 48 8b 38 48 85 ff 0f 85 f7 dc 25 00 e9 f6 dc 25 00 <0f> 0b 48 8b 57 10 48 8b 3a 48 85 ff 0f 84 bc dc 25 00 e9 b3 dc 25</div>
- <div class="π¦">RSP: 0018:ffffaa5bc02d7d98 EFLAGS: 00010282</div>
- <div class="π¦">RAX: 00000000ffffffff RBX: ffff935018039000 RCX: 00000000ffffffff</div>
- <div class="π¦">RDX: ffffaa5bc1458a6c RSI: 000000000001629b RDI: ffff935010c9a900</div>
- <div class="π¦">RBP: 00000000001e8480 R08: 0000000000000000 R09: 0000000000000014</div>
- <div class="π¦">R10: ffff935016c9b300 R11: 0000000000000001 R12: 0000000000000019</div>
- <div class="π¦">R13: 0000000000000000 R14: 000000000000001f R15: 000000000000015a</div>
- <div class="π¦">FS: 0000000000000000(0000) GS:ffff93573dc80000(0000) knlGS:0000000000000000</div>
- <div class="π¦">CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033</div>
- <div class="π¦">CR2: 00005fc87c617238 CR3: 00000004a2822000 CR4: 0000000000f50ef0</div>
- <div class="π¦">PKRU: 55555554</div>
- <div class="π¦">Call Trace:</div>
- <div class="π¦"> <TASK></div>
- <div class="π¦"> dcn35_smu_exit_low_power_state+0x29/0x70 [amdgpu 85919dbf36c7ff1a657f54ef4a2abd99995da664]</div>
- <div class="π¦"> dc_dmub_srv_apply_idle_power_optimizations+0x26e/0x550 [amdgpu 85919dbf36c7ff1a657f54ef4a2abd99995da664]</div>
- <div class="π¦"> dcn35_apply_idle_power_optimizations+0xd1/0xf0 [amdgpu 85919dbf36c7ff1a657f54ef4a2abd99995da664]</div>
- <div class="π¦"> dc_allow_idle_optimizations_internal.part.0+0x79/0xc0 [amdgpu 85919dbf36c7ff1a657f54ef4a2abd99995da664]</div>
- <div class="π¦"> amdgpu_dm_idle_worker+0x83/0x120 [amdgpu 85919dbf36c7ff1a657f54ef4a2abd99995da664]</div>
- <div class="π¦"> process_one_work+0x17c/0x340</div>
- <div class="π¦"> worker_thread+0x2d2/0x400</div>
- <div class="π¦"> ? __pfx_worker_thread+0x10/0x10</div>
- <div class="π¦"> kthread+0xcf/0x100</div>
- <div class="π¦"> ? __pfx_kthread+0x10/0x10</div>
- <div class="π¦"> ret_from_fork+0x31/0x50</div>
- <div class="π¦"> ? __pfx_kthread+0x10/0x10</div>
- <div class="π¦"> ret_from_fork_asm+0x1a/0x30</div>
- <div class="π¦"> </TASK></div>
- <div class="π¦">---[ end trace 0000000000000000 ]---</div>
- <div class="π¦">amdgpu 0000:c1:00.0: [drm] SMU response after wait: -1, msg id = 25</div>
- <div class="π¦">amdgpu 0000:c1:00.0: [drm] SMU response after wait: -1, msg id = 25</div>
- <div class="π¦">amd_pmc: SMU idlemask s0i3: 0xffff9abd</div>
- <div class="β">rcu: INFO: rcu_preempt detected stalls on CPUs/tasks:</div>
- <div class="β">rcu: 0-...!: (320 ticks this GP) idle=e2d8/0/0x0 softirq=104046/104048 fqs=0 (false positive?)</div>
- <div class="β">rcu: 2-...!: (0 ticks this GP) idle=9088/0/0x0 softirq=100853/100853 fqs=0 (false positive?)</div>
- <div class="β">rcu: 3-...!: (670 ticks this GP) idle=aca0/0/0x0 softirq=99409/99409 fqs=0 (false positive?)</div>
- <div class="β">rcu: 4-...!: (839 ticks this GP) idle=af80/0/0x0 softirq=87759/87759 fqs=0 (false positive?)</div>
- <div class="β">rcu: 6-...!: (10 ticks this GP) idle=b320/0/0x0 softirq=92439/92441 fqs=0 (false positive?)</div>
- <div class="β">rcu: 7-...!: (0 ticks this GP) idle=3798/0/0x0 softirq=76211/76211 fqs=0 (false positive?)</div>
- <div class="β">rcu: 9-...!: (2 ticks this GP) idle=c458/0/0x0 softirq=64553/64553 fqs=0 (false positive?)</div>
- <div class="β">rcu: 12-...!: (0 ticks this GP) idle=f160/0/0x0 softirq=70070/70070 fqs=0 (false positive?)</div>
- <div class="β">rcu: 13-...!: (0 ticks this GP) idle=0548/0/0x0 softirq=103037/103037 fqs=0 (false positive?)</div>
- <div class="β">rcu: 14-...!: (0 ticks this GP) idle=72a8/0/0x0 softirq=98375/98375 fqs=0 (false positive?)</div>
- <div class="β">rcu: 15-...!: (2 GPs behind) idle=3388/0/0x0 softirq=103829/103830 fqs=0 (false positive?)</div>
- <div class="β">rcu: 16-...!: (13 GPs behind) idle=bba8/0/0x0 softirq=74025/74025 fqs=0 (false positive?)</div>
- <div class="β">rcu: 17-...!: (12 GPs behind) idle=ca30/0/0x0 softirq=55754/55754 fqs=0 (false positive?)</div>
- <div class="β">rcu: 18-...!: (13 GPs behind) idle=dff0/0/0x0 softirq=57761/57761 fqs=0 (false positive?)</div>
- <div class="β">rcu: 19-...!: (3 GPs behind) idle=8638/0/0x0 softirq=64425/64425 fqs=0 (false positive?)</div>
- <div class="β">rcu: 20-...!: (1 ticks this GP) idle=0960/0/0x0 softirq=63555/63556 fqs=0 (false positive?)</div>
- <div class="β">rcu: 21-...!: (5 GPs behind) idle=86d8/0/0x0 softirq=102345/102347 fqs=0 (false positive?)</div>
- <div class="β">rcu: 22-...!: (2 GPs behind) idle=f4f8/0/0x0 softirq=79581/79581 fqs=0 (false positive?)</div>
- <div class="β">rcu: 23-...!: (3 GPs behind) idle=a9e8/0/0x0 softirq=77423/77423 fqs=0 (false positive?)</div>
- <div class="β">rcu: (detected by 1, t=18002 jiffies, g=233841, q=2 ncpus=24)</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 0:</div>
- <div class="π¦">NMI backtrace for cpu 0 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 2:</div>
- <div class="π¦">NMI backtrace for cpu 2 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 3:</div>
- <div class="π¦">NMI backtrace for cpu 3 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 4:</div>
- <div class="π¦">NMI backtrace for cpu 4 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 6:</div>
- <div class="π¦">NMI backtrace for cpu 6 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 7:</div>
- <div class="π¦">NMI backtrace for cpu 7 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 9:</div>
- <div class="π¦">NMI backtrace for cpu 9 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 12:</div>
- <div class="π¦">NMI backtrace for cpu 12 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 13:</div>
- <div class="π¦">NMI backtrace for cpu 13 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 14:</div>
- <div class="π¦">NMI backtrace for cpu 14 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 15:</div>
- <div class="π¦">NMI backtrace for cpu 15 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 16:</div>
- <div class="π¦">NMI backtrace for cpu 16 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 17:</div>
- <div class="π¦">NMI backtrace for cpu 17 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 18:</div>
- <div class="π¦">NMI backtrace for cpu 18 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 19:</div>
- <div class="π¦">NMI backtrace for cpu 19 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 20:</div>
- <div class="π¦">NMI backtrace for cpu 20 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 21:</div>
- <div class="π¦">NMI backtrace for cpu 21 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 22:</div>
- <div class="π¦">NMI backtrace for cpu 22 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">Sending NMI from CPU 1 to CPUs 23:</div>
- <div class="π¦">NMI backtrace for cpu 23 skipped: idling at io_idle+0x3/0x30</div>
- <div class="β">rcu: rcu_preempt kthread timer wakeup didn't happen for 18000 jiffies! g233841 f0x0 RCU_GP_WAIT_FQS(5) ->state=0x402</div>
- <div class="β">rcu: Possible timer handling issue on cpu=12 timer-softirq=62822</div>
- <div class="β">rcu: rcu_preempt kthread starved for 18002 jiffies! g233841 f0x0 RCU_GP_WAIT_FQS(5) ->state=0x402 ->cpu=12</div>
- <div class="β">rcu: Unless rcu_preempt kthread gets sufficient CPU time, OOM is now expected behavior.</div>
- <div class="β">rcu: RCU grace-period kthread stack dump:</div>
- <div class="β">task:rcu_preempt state:I stack:0 pid:19 tgid:19 ppid:2 flags:0x00004000</div>
- <div class="β">Call Trace:</div>
- <div class="β"> <TASK></div>
- <div class="β"> __schedule+0x3c7/0x12f0</div>
- <div class="β"> ? lock_timer_base+0x74/0x90</div>
- <div class="β"> ? __pfx_rcu_gp_kthread+0x10/0x10</div>
- <div class="β"> schedule+0x27/0xf0</div>
- <div class="β"> schedule_timeout+0x9c/0x170</div>
- <div class="β"> ? __pfx_process_timeout+0x10/0x10</div>
- <div class="β"> rcu_gp_fqs_loop+0x104/0x530</div>
- <div class="β"> rcu_gp_kthread+0xd7/0x190</div>
- <div class="β"> kthread+0xcf/0x100</div>
- <div class="β"> ? __pfx_kthread+0x10/0x10</div>
- <div class="β"> ret_from_fork+0x31/0x50</div>
- <div class="β"> ? __pfx_kthread+0x10/0x10</div>
- <div class="β"> ret_from_fork_asm+0x1a/0x30</div>
- <div class="β"> </TASK></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 277.613 msecs</div>
- <div class="π¦">PM: early resume of devices complete after 3.567 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_32784.1.1 was added</div>
- <div class="β">[drm] ring compute_32784.2.2 was added</div>
- <div class="β">[drm] ring sdma_32784.3.3 was added</div>
- <div class="β">[drm] ring gfx_32784.1.1 ib test pass</div>
- <div class="β">[drm] ring compute_32784.2.2 ib test pass</div>
- <div class="β">[drm] ring sdma_32784.3.3 ib test pass</div>
- <div class="π¦">PM: resume of devices complete after 296.674 msecs</div>
- <div class="β">OOM killer enabled.</div>
- <div class="β">Restarting tasks ... </div>
- <div class="π¦">coredump: 695(systemd-udevd): |/usr/lib/systemd/systemd-coredump pipe failed</div>
- <div class="π¦">done.</div>
- <div class="β">random: crng reseeded on system resumption</div>
- <div class="β">cros-ec-dev cros-ec-dev.1.auto: Some logs may have been dropped...</div>
- <div class="β">PM: suspend exit</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="β">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="β">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 169 to 195</div>
- <div class="β">ACPI Lid (/proc/acpi/button/lid/LID0/state): open</div>
- <div class="β">BAT1 energy level is 2678000 Β΅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: 1</div>
- <div class="β">β entry counts: rcg=346 ips1=2 ips2=2</div>
- <div class="β">ββexit counts: rcg=346 ips1=2 ips2=2</div>
- <div class="β">Thermal zones</div>
- <div class="β">ββ LNXTHERM:00</div>
- <div class="β">β 42.8Β°C -> 40.8Β°C</div>
- <div class="β">ββ LNXTHERM:01</div>
- <div class="β">β 46.8Β°C -> 45.8Β°C</div>
- <div class="β">ββ LNXTHERM:02</div>
- <div class="β">β 38.8Β°C -> 36.8Β°C</div>
- <div class="β">ββLNXTHERM:03</div>
- <div class="β"> 49.8Β°C -> 47.8Β°C</div>
- </TD>
- </TR>
- </table>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement