feat: Expand Hardware Telemetry with iGPU Monitoring and Accurate Processor Models#182
Merged
Ghoul4500 merged 4 commits intoJul 23, 2026
Conversation
Ghoul4500
requested changes
Jul 21, 2026
scardracs
force-pushed
the
feature/nvidia-nvml-telemetry
branch
5 times, most recently
from
July 21, 2026 15:53
edc27fb to
2d311a6
Compare
scardracs
force-pushed
the
feature/nvidia-nvml-telemetry
branch
from
July 21, 2026 15:54
2d311a6 to
5897f96
Compare
Ghoul4500
approved these changes
Jul 23, 2026
Ghoul4500
left a comment
Member
There was a problem hiding this comment.
LGTM. Thank you for your contribution!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR expands the hardware monitoring page in
rog-control-centerto display exact model names for CPU, iGPU, and dGPU, adds support for monitoring the integrated GPU (iGPU) temperature and utilization, and addresses a layout stretching bug in the system page.Key Features
SystemPageData.has_igpu).amdgpudriver interface in sysfs (/sys/class/hwmon), while utilization is read from card device activity (gpu_busy_percent)./proc/cpuinfo.0300/0302and resolved using theudevdatabase."AMD Radeon 610M") by querying/usr/share/libdrm/amdgpu.idswith the PCI device ID and revision hex (read from sysfs), avoiding generic architecture codenames like"Raphael".udev.Rectangle {}spacers at the bottom of both vertical columns to pack all labels (including CPU, GPU, iGPU, and Fans) tightly to the top with uniform spacing, preventing them from stretching when columns have mismatched heights.Changed Files
udev.workspace = trueto dependencies.SystemPageData(cpu_name,igpu_name,dgpu_name,igpu_temp_val,igpu_usage_val,has_igpu).iGPU Statusblock under the CPU block./proc/cpuinfoparsing for CPU models./usr/share/libdrm/amdgpu.idsparser with PCI device and revision key match.Verification & Checks Done
cargo check -p rog-control-centerruns and compiles cleanly.cargo clippy -p rog-control-center --all-targets.cargo fmtto align with the codebase coding standards.Closes: #178