Message ID | 20230630053552.976579-1-luke@ljones.dev (mailing list archive) |
---|---|
Headers | show |
Series | platform/x86: asus-wmi: | expand |
Hi, On 6/30/23 07:35, Luke D. Jones wrote: > This patch series adds or exposes more features that are available in the ROG > laptop series. > > - expose dGPU and CPU tunables for ROG > - These are things like GPU boost, CPU Pl1 and PL2, package power limits > - support setting mini-LED mode > - Some newer laptops have a screen that can toggle between regular style > backlight and using mini-LED backlight > - add WMI method to show if egpu connected > - This WMI method can be monitored/queried to see if it is possible to begin > the change-over to eGPU > - support middle fan custom curves > - Some newer laptops have a center/middle fan which blows across the CPU and GPU > - add support for showing middle fan RPM > - add support for showing charger mode (AC, USB-C, both plugged) > - add additional checks to GPU switching code > - These try to prevent a sceanrio such as the user disabling the dGPU while it > is driving the internal panel via MUX, resulting in no output at all. > There are no checks in the ACPI code for this, but on some newer models ASUS > did finally add a switch in the BIOS menu. It is best to try and prevent this > at the kernel level rather than userland level. > > All patches pass ./scripts/checkpatch.pl Thank you for your patch-series, I've applied the series to my review-hans branch: https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=review-hans Note it will show up in my review-hans branch once I've pushed my local branch there, which might take a while. Once I've run some tests on this branch the patches there will be added to the platform-drivers-x86/for-next branch and eventually will be included in the pdx86 pull-request to Linus for the next merge-window. Regards, Hans > > Changelog: > - v2-0008-platform-x86-asus-wmi-expose-dGPU-and-CPU-tunable.patch > - Rename the WMI defs to match what ASUS supplied as names > - Remove EDC and TDC exposure (unsafe) > - Slight change to formatting > - Add better notes to documentation > > > Luke D. Jones (8): > platform/x86: asus-wmi: add support for showing charger mode > platform/x86: asus-wmi: add support for showing middle fan RPM > platform/x86: asus-wmi: support middle fan custom curves > platform/x86: asus-wmi: add WMI method to show if egpu connected > platform/x86: asus-wmi: don't allow eGPU switching if eGPU not > connected > platform/x86: asus-wmi: add safety checks to gpu switching > platform/x86: asus-wmi: support setting mini-LED mode > platform/x86: asus-wmi: expose dGPU and CPU tunables for ROG > > .../ABI/testing/sysfs-platform-asus-wmi | 86 +++ > drivers/platform/x86/asus-wmi.c | 605 +++++++++++++++++- > include/linux/platform_data/x86/asus-wmi.h | 19 +- > 3 files changed, 707 insertions(+), 3 deletions(-) >