* [PATCH v2] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store
@ 2025-09-12 18:13 Daniel
2025-09-12 18:30 ` Markus Elfring
0 siblings, 1 reply; 16+ messages in thread
From: Daniel @ 2025-09-12 18:13 UTC (permalink / raw)
To: matan; +Cc: hansg, ilpo.jarvinen, platform-driver-x86, linux-kernel
On my LG Gram 16Z95P-K.AA75A8 (2022), writes to
/sys/devices/platform/lg-laptop/fan_mode have no effect and reads always
report a status of 0.
Disassembling the relevant ACPI tables reveals that in the WMAB call to
set the fan mode, the new mode is read either from bits 0,1 or bits 4,5
(depending on the value of some other EC register). Thus when we call
WMAB twice, first with bits 4,5 zero, then bits 0,1 zero, the second
call undoes the effect of the first call.
Fix this by calling WMAB once, with the mode set in bits 0,1 and 4,5.
When the fan mode is returned from WMAB it always has this form, so
there is no need to preserve the other bits. As a bonus, the driver
now supports the "Performance" fan mode seen in the LG-provided Windows
control app, which provides less aggressive CPU throttling but louder
fan noise and shorter battery life.
I can confirm with this patch reading/writing the fan mode now works
as expected on my laptop, although I have not tested it on any other
LG laptop.
Also, correct the documentation to reflect that 0 corresponds to the
default mode (what the Windows app calls "Optimal") and 1 corresponds
to the silent mode.
Signed-off-by: Daniel <dany97@live.ca>
Tested-by: Daniel <dany97@live.ca>
Fixes: dbf0c5a6b1f8e7bec5e17baa60a1e04c28d90f9b ("platform/x86: Add LG Gram laptop special features driver")
---
.../admin-guide/laptops/lg-laptop.rst | 4 +--
drivers/platform/x86/lg-laptop.c | 29 +++++++------------
2 files changed, 13 insertions(+), 20 deletions(-)
diff --git a/Documentation/admin-guide/laptops/lg-laptop.rst b/Documentation/admin-guide/laptops/lg-laptop.rst
index 67fd6932c..c4dd534f9 100644
--- a/Documentation/admin-guide/laptops/lg-laptop.rst
+++ b/Documentation/admin-guide/laptops/lg-laptop.rst
@@ -48,8 +48,8 @@ This value is reset to 100 when the kernel boots.
Fan mode
--------
-Writing 1/0 to /sys/devices/platform/lg-laptop/fan_mode disables/enables
-the fan silent mode.
+Writing 0/1/2 to /sys/devices/platform/lg-laptop/fan_mode sets fan mode to
+Optimal/Silent/Performance respectively.
USB charge
diff --git a/drivers/platform/x86/lg-laptop.c b/drivers/platform/x86/lg-laptop.c
index 4b57102c7..335afdc75 100644
--- a/drivers/platform/x86/lg-laptop.c
+++ b/drivers/platform/x86/lg-laptop.c
@@ -75,6 +75,9 @@ MODULE_PARM_DESC(fw_debug, "Enable printing of firmware debug messages");
#define WMBB_USB_CHARGE 0x10B
#define WMBB_BATT_LIMIT 0x10C
+#define FAN_MODE_FIELD_LOWER GENMASK(1, 0)
+#define FAN_MODE_FIELD_UPPER GENMASK(5, 4)
+
#define PLATFORM_NAME "lg-laptop"
MODULE_ALIAS("wmi:" WMI_EVENT_GUID0);
@@ -274,29 +277,19 @@ static ssize_t fan_mode_store(struct device *dev,
struct device_attribute *attr,
const char *buffer, size_t count)
{
- bool value;
+ unsigned long value;
union acpi_object *r;
- u32 m;
int ret;
- ret = kstrtobool(buffer, &value);
+ ret = kstrtoul(buffer, 10, &value);
if (ret)
return ret;
+ if (value >= 3)
+ return -EINVAL;
- r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0);
- if (!r)
- return -EIO;
-
- if (r->type != ACPI_TYPE_INTEGER) {
- kfree(r);
- return -EIO;
- }
-
- m = r->integer.value;
- kfree(r);
- r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xffffff0f) | (value << 4));
- kfree(r);
- r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xfffffff0) | value);
+ r = lg_wmab(dev, WM_FAN_MODE, WM_SET,
+ FIELD_PREP(FAN_MODE_FIELD_LOWER, value) |
+ FIELD_PREP(FAN_MODE_FIELD_UPPER, value));
kfree(r);
return count;
@@ -317,7 +310,7 @@ static ssize_t fan_mode_show(struct device *dev,
return -EIO;
}
- status = r->integer.value & 0x01;
+ status = FIELD_GET(FAN_MODE_FIELD_LOWER, r->integer.value);
kfree(r);
return sysfs_emit(buffer, "%d\n", status);
--
2.51.0
^ permalink raw reply related [flat|nested] 16+ messages in thread* Re: [PATCH v2] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store 2025-09-12 18:13 [PATCH v2] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store Daniel @ 2025-09-12 18:30 ` Markus Elfring 2025-09-13 3:03 ` [PATCH v3] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() Daniel 0 siblings, 1 reply; 16+ messages in thread From: Markus Elfring @ 2025-09-12 18:30 UTC (permalink / raw) To: dany97, platform-driver-x86 Cc: LKML, Hans de Goede, Ilpo Järvinen, Matan Ziv-Av … > Signed-off-by: Daniel <dany97@live.ca> Please complete the personal name according to the Developer's Certificate of Origin. https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v6.17-rc5#n436 Would it be helpful to append parentheses to a function name (in the summary phrase? Regards, Markus ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v3] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-12 18:30 ` Markus Elfring @ 2025-09-13 3:03 ` Daniel 2025-09-13 6:16 ` Markus Elfring 2025-09-15 7:34 ` [PATCH v3] " Ilpo Järvinen 0 siblings, 2 replies; 16+ messages in thread From: Daniel @ 2025-09-13 3:03 UTC (permalink / raw) To: Markus Elfring Cc: LKML, Hans de Goede, Ilpo Järvinen, Matan Ziv-Av, platform-driver-x86 On my LG Gram 16Z95P-K.AA75A8 (2022), writes to /sys/devices/platform/lg-laptop/fan_mode have no effect and reads always report a status of 0. Disassembling the relevant ACPI tables reveals that in the WMAB call to set the fan mode, the new mode is read either from bits 0,1 or bits 4,5 (depending on the value of some other EC register). Thus when we call WMAB twice, first with bits 4,5 zero, then bits 0,1 zero, the second call undoes the effect of the first call. Fix this by calling WMAB once, with the mode set in bits 0,1 and 4,5. When the fan mode is returned from WMAB it always has this form, so there is no need to preserve the other bits. As a bonus, the driver now supports the "Performance" fan mode seen in the LG-provided Windows control app, which provides less aggressive CPU throttling but louder fan noise and shorter battery life. I can confirm with this patch reading/writing the fan mode now works as expected on my laptop, although I have not tested it on any other LG laptop. Also, correct the documentation to reflect that 0 corresponds to the default mode (what the Windows app calls "Optimal") and 1 corresponds to the silent mode. Signed-off-by: Daniel Lee <dany97@live.ca> Tested-by: Daniel Lee <dany97@live.ca> Fixes: dbf0c5a6b1f8e7bec5e17baa60a1e04c28d90f9b ("platform/x86: Add LG Gram laptop special features driver") --- .../admin-guide/laptops/lg-laptop.rst | 4 +-- drivers/platform/x86/lg-laptop.c | 29 +++++++------------ 2 files changed, 13 insertions(+), 20 deletions(-) diff --git a/Documentation/admin-guide/laptops/lg-laptop.rst b/Documentation/admin-guide/laptops/lg-laptop.rst index 67fd6932c..c4dd534f9 100644 --- a/Documentation/admin-guide/laptops/lg-laptop.rst +++ b/Documentation/admin-guide/laptops/lg-laptop.rst @@ -48,8 +48,8 @@ This value is reset to 100 when the kernel boots. Fan mode -------- -Writing 1/0 to /sys/devices/platform/lg-laptop/fan_mode disables/enables -the fan silent mode. +Writing 0/1/2 to /sys/devices/platform/lg-laptop/fan_mode sets fan mode to +Optimal/Silent/Performance respectively. USB charge diff --git a/drivers/platform/x86/lg-laptop.c b/drivers/platform/x86/lg-laptop.c index 4b57102c7..335afdc75 100644 --- a/drivers/platform/x86/lg-laptop.c +++ b/drivers/platform/x86/lg-laptop.c @@ -75,6 +75,9 @@ MODULE_PARM_DESC(fw_debug, "Enable printing of firmware debug messages"); #define WMBB_USB_CHARGE 0x10B #define WMBB_BATT_LIMIT 0x10C +#define FAN_MODE_FIELD_LOWER GENMASK(1, 0) +#define FAN_MODE_FIELD_UPPER GENMASK(5, 4) + #define PLATFORM_NAME "lg-laptop" MODULE_ALIAS("wmi:" WMI_EVENT_GUID0); @@ -274,29 +277,19 @@ static ssize_t fan_mode_store(struct device *dev, struct device_attribute *attr, const char *buffer, size_t count) { - bool value; + unsigned long value; union acpi_object *r; - u32 m; int ret; - ret = kstrtobool(buffer, &value); + ret = kstrtoul(buffer, 10, &value); if (ret) return ret; + if (value >= 3) + return -EINVAL; - r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0); - if (!r) - return -EIO; - - if (r->type != ACPI_TYPE_INTEGER) { - kfree(r); - return -EIO; - } - - m = r->integer.value; - kfree(r); - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xffffff0f) | (value << 4)); - kfree(r); - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xfffffff0) | value); + r = lg_wmab(dev, WM_FAN_MODE, WM_SET, + FIELD_PREP(FAN_MODE_FIELD_LOWER, value) | + FIELD_PREP(FAN_MODE_FIELD_UPPER, value)); kfree(r); return count; @@ -317,7 +310,7 @@ static ssize_t fan_mode_show(struct device *dev, return -EIO; } - status = r->integer.value & 0x01; + status = FIELD_GET(FAN_MODE_FIELD_LOWER, r->integer.value); kfree(r); return sysfs_emit(buffer, "%d\n", status); -- 2.51.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH v3] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-13 3:03 ` [PATCH v3] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() Daniel @ 2025-09-13 6:16 ` Markus Elfring 2025-09-13 14:50 ` Daniel 2025-09-15 7:34 ` [PATCH v3] " Ilpo Järvinen 1 sibling, 1 reply; 16+ messages in thread From: Markus Elfring @ 2025-09-13 6:16 UTC (permalink / raw) To: Daniel Lee, platform-driver-x86 Cc: LKML, Hans de Goede, Ilpo Järvinen, Matan Ziv-Av …> --- > .../admin-guide/laptops/lg-laptop.rst | 4 +-- > drivers/platform/x86/lg-laptop.c | 29 +++++++------------ … Some contributors would appreciate patch version descriptions. https://lore.kernel.org/all/?q=%22This+looks+like+a+new+version+of+a+previously+submitted+patch%22 https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v6.17-rc5#n310 Regards, Markus ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v3] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-13 6:16 ` Markus Elfring @ 2025-09-13 14:50 ` Daniel 2025-09-13 15:03 ` Daniel 2025-09-13 18:22 ` [PATCH v?] " Markus Elfring 0 siblings, 2 replies; 16+ messages in thread From: Daniel @ 2025-09-13 14:50 UTC (permalink / raw) To: Markus Elfring, platform-driver-x86 Cc: LKML, Hans de Goede, Ilpo Järvinen, Matan Ziv-Av On my LG Gram 16Z95P-K.AA75A8 (2022), writes to /sys/devices/platform/lg-laptop/fan_mode have no effect and reads always report a status of 0. Disassembling the relevant ACPI tables reveals that in the WMAB call to set the fan mode, the new mode is read either from bits 0,1 or bits 4,5 (depending on the value of some other EC register). Thus when we call WMAB twice, first with bits 4,5 zero, then bits 0,1 zero, the second call undoes the effect of the first call. Fix this by calling WMAB once, with the mode set in bits 0,1 and 4,5. When the fan mode is returned from WMAB it always has this form, so there is no need to preserve the other bits. As a bonus, the driver now supports the "Performance" fan mode seen in the LG-provided Windows control app, which provides less aggressive CPU throttling but louder fan noise and shorter battery life. I can confirm with this patch reading/writing the fan mode now works as expected on my laptop, although I have not tested it on any other LG laptop. Also, correct the documentation to reflect that 0 corresponds to the default mode (what the Windows app calls "Optimal") and 1 corresponds to the silent mode. Signed-off-by: Daniel <dany97@live.ca> Tested-by: Daniel <dany97@live.ca> Fixes: dbf0c5a6b1f8e7bec5e17baa60a1e04c28d90f9b ("platform/x86: Add LG Gram laptop special features driver") --- V1 -> V2: Replaced bitops with GENMASK() and FIELD_PREP() V2 -> V3: Add parentheses next to function name in summary line .../admin-guide/laptops/lg-laptop.rst | 4 +-- drivers/platform/x86/lg-laptop.c | 29 +++++++------------ 2 files changed, 13 insertions(+), 20 deletions(-) diff --git a/Documentation/admin-guide/laptops/lg-laptop.rst b/Documentation/admin-guide/laptops/lg-laptop.rst index 67fd6932c..c4dd534f9 100644 --- a/Documentation/admin-guide/laptops/lg-laptop.rst +++ b/Documentation/admin-guide/laptops/lg-laptop.rst @@ -48,8 +48,8 @@ This value is reset to 100 when the kernel boots. Fan mode -------- -Writing 1/0 to /sys/devices/platform/lg-laptop/fan_mode disables/enables -the fan silent mode. +Writing 0/1/2 to /sys/devices/platform/lg-laptop/fan_mode sets fan mode to +Optimal/Silent/Performance respectively. USB charge diff --git a/drivers/platform/x86/lg-laptop.c b/drivers/platform/x86/lg-laptop.c index 4b57102c7..335afdc75 100644 --- a/drivers/platform/x86/lg-laptop.c +++ b/drivers/platform/x86/lg-laptop.c @@ -75,6 +75,9 @@ MODULE_PARM_DESC(fw_debug, "Enable printing of firmware debug messages"); #define WMBB_USB_CHARGE 0x10B #define WMBB_BATT_LIMIT 0x10C +#define FAN_MODE_FIELD_LOWER GENMASK(1, 0) +#define FAN_MODE_FIELD_UPPER GENMASK(5, 4) + #define PLATFORM_NAME "lg-laptop" MODULE_ALIAS("wmi:" WMI_EVENT_GUID0); @@ -274,29 +277,19 @@ static ssize_t fan_mode_store(struct device *dev, struct device_attribute *attr, const char *buffer, size_t count) { - bool value; + unsigned long value; union acpi_object *r; - u32 m; int ret; - ret = kstrtobool(buffer, &value); + ret = kstrtoul(buffer, 10, &value); if (ret) return ret; + if (value >= 3) + return -EINVAL; - r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0); - if (!r) - return -EIO; - - if (r->type != ACPI_TYPE_INTEGER) { - kfree(r); - return -EIO; - } - - m = r->integer.value; - kfree(r); - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xffffff0f) | (value << 4)); - kfree(r); - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xfffffff0) | value); + r = lg_wmab(dev, WM_FAN_MODE, WM_SET, + FIELD_PREP(FAN_MODE_FIELD_LOWER, value) | + FIELD_PREP(FAN_MODE_FIELD_UPPER, value)); kfree(r); return count; @@ -317,7 +310,7 @@ static ssize_t fan_mode_show(struct device *dev, return -EIO; } - status = r->integer.value & 0x01; + status = FIELD_GET(FAN_MODE_FIELD_LOWER, r->integer.value); kfree(r); return sysfs_emit(buffer, "%d\n", status); -- 2.51.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH v3] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-13 14:50 ` Daniel @ 2025-09-13 15:03 ` Daniel 2025-09-13 15:04 ` Daniel 2025-09-13 18:22 ` [PATCH v?] " Markus Elfring 1 sibling, 1 reply; 16+ messages in thread From: Daniel @ 2025-09-13 15:03 UTC (permalink / raw) To: Markus Elfring, platform-driver-x86 On 2025-09-13 10:50, Daniel wrote: > Signed-off-by: Daniel <dany97@live.ca> > Tested-by: Daniel <dany97@live.ca> I left the old Sign-off there, my bad. ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v3] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-13 15:03 ` Daniel @ 2025-09-13 15:04 ` Daniel 0 siblings, 0 replies; 16+ messages in thread From: Daniel @ 2025-09-13 15:04 UTC (permalink / raw) To: Markus Elfring, platform-driver-x86 I can confirm with this patch reading/writing the fan mode now works as expected on my laptop, although I have not tested it on any other LG laptop. Also, correct the documentation to reflect that 0 corresponds to the default mode (what the Windows app calls "Optimal") and 1 corresponds to the silent mode. Signed-off-by: Daniel Lee <dany97@live.ca> Tested-by: Daniel Lee <dany97@live.ca> Fixes: dbf0c5a6b1f8e7bec5e17baa60a1e04c28d90f9b ("platform/x86: Add LG Gram laptop special features driver") --- V1 -> V2: Replaced bitops with GENMASK() and FIELD_PREP() V2 -> V3: Add parentheses next to function name in summary line .../admin-guide/laptops/lg-laptop.rst | 4 +-- drivers/platform/x86/lg-laptop.c | 29 +++++++------------ 2 files changed, 13 insertions(+), 20 deletions(-) diff --git a/Documentation/admin-guide/laptops/lg-laptop.rst b/Documentation/admin-guide/laptops/lg-laptop.rst index 67fd6932c..c4dd534f9 100644 --- a/Documentation/admin-guide/laptops/lg-laptop.rst +++ b/Documentation/admin-guide/laptops/lg-laptop.rst @@ -48,8 +48,8 @@ This value is reset to 100 when the kernel boots. Fan mode -------- -Writing 1/0 to /sys/devices/platform/lg-laptop/fan_mode disables/enables -the fan silent mode. +Writing 0/1/2 to /sys/devices/platform/lg-laptop/fan_mode sets fan mode to +Optimal/Silent/Performance respectively. USB charge diff --git a/drivers/platform/x86/lg-laptop.c b/drivers/platform/x86/lg-laptop.c index 4b57102c7..335afdc75 100644 --- a/drivers/platform/x86/lg-laptop.c +++ b/drivers/platform/x86/lg-laptop.c @@ -75,6 +75,9 @@ MODULE_PARM_DESC(fw_debug, "Enable printing of firmware debug messages"); #define WMBB_USB_CHARGE 0x10B #define WMBB_BATT_LIMIT 0x10C +#define FAN_MODE_FIELD_LOWER GENMASK(1, 0) +#define FAN_MODE_FIELD_UPPER GENMASK(5, 4) + #define PLATFORM_NAME "lg-laptop" MODULE_ALIAS("wmi:" WMI_EVENT_GUID0); @@ -274,29 +277,19 @@ static ssize_t fan_mode_store(struct device *dev, struct device_attribute *attr, const char *buffer, size_t count) { - bool value; + unsigned long value; union acpi_object *r; - u32 m; int ret; - ret = kstrtobool(buffer, &value); + ret = kstrtoul(buffer, 10, &value); if (ret) return ret; + if (value >= 3) + return -EINVAL; - r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0); - if (!r) - return -EIO; - - if (r->type != ACPI_TYPE_INTEGER) { - kfree(r); - return -EIO; - } - - m = r->integer.value; - kfree(r); - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xffffff0f) | (value << 4)); - kfree(r); - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xfffffff0) | value); + r = lg_wmab(dev, WM_FAN_MODE, WM_SET, + FIELD_PREP(FAN_MODE_FIELD_LOWER, value) | + FIELD_PREP(FAN_MODE_FIELD_UPPER, value)); kfree(r); return count; @@ -317,7 +310,7 @@ static ssize_t fan_mode_show(struct device *dev, return -EIO; } - status = r->integer.value & 0x01; + status = FIELD_GET(FAN_MODE_FIELD_LOWER, r->integer.value); kfree(r); return sysfs_emit(buffer, "%d\n", status); -- 2.51.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH v?] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-13 14:50 ` Daniel 2025-09-13 15:03 ` Daniel @ 2025-09-13 18:22 ` Markus Elfring 1 sibling, 0 replies; 16+ messages in thread From: Markus Elfring @ 2025-09-13 18:22 UTC (permalink / raw) To: dany97, platform-driver-x86 Cc: LKML, Hans de Goede, Ilpo Järvinen, Matan Ziv-Av …> Signed-off-by: Daniel <dany97@live.ca> Would a complete personal name be preferred once more according to the Developer's Certificate of Origin? https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v6.17-rc5#n436 …> --- > V1 -> V2: Replaced bitops with GENMASK() and FIELD_PREP() > V2 -> V3: Add parentheses next to function name in summary line > > .../admin-guide/laptops/lg-laptop.rst | 4 +-- > drivers/platform/x86/lg-laptop.c | 29 +++++++------------ Will further items become noteworthy here? Regards, Markus ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v3] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-13 3:03 ` [PATCH v3] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() Daniel 2025-09-13 6:16 ` Markus Elfring @ 2025-09-15 7:34 ` Ilpo Järvinen 2025-09-19 13:50 ` Daniel 1 sibling, 1 reply; 16+ messages in thread From: Ilpo Järvinen @ 2025-09-15 7:34 UTC (permalink / raw) To: Daniel Cc: Markus Elfring, LKML, Hans de Goede, Matan Ziv-Av, platform-driver-x86 On Fri, 12 Sep 2025, Daniel wrote: > On my LG Gram 16Z95P-K.AA75A8 (2022), writes to > /sys/devices/platform/lg-laptop/fan_mode have no effect and reads always > report a status of 0. > > Disassembling the relevant ACPI tables reveals that in the WMAB call to > set the fan mode, the new mode is read either from bits 0,1 or bits 4,5 > (depending on the value of some other EC register). Thus when we call > WMAB twice, first with bits 4,5 zero, then bits 0,1 zero, the second > call undoes the effect of the first call. > > Fix this by calling WMAB once, with the mode set in bits 0,1 and 4,5. > When the fan mode is returned from WMAB it always has this form, so > there is no need to preserve the other bits. As a bonus, the driver > now supports the "Performance" fan mode seen in the LG-provided Windows > control app, which provides less aggressive CPU throttling but louder > fan noise and shorter battery life. > > I can confirm with this patch reading/writing the fan mode now works > as expected on my laptop, although I have not tested it on any other > LG laptop. > > Also, correct the documentation to reflect that 0 corresponds to the > default mode (what the Windows app calls "Optimal") and 1 corresponds > to the silent mode. > > Signed-off-by: Daniel Lee <dany97@live.ca> > Tested-by: Daniel Lee <dany97@live.ca> > Fixes: dbf0c5a6b1f8e7bec5e17baa60a1e04c28d90f9b ("platform/x86: Add LG Gram laptop special features driver") > --- > .../admin-guide/laptops/lg-laptop.rst | 4 +-- > drivers/platform/x86/lg-laptop.c | 29 +++++++------------ > 2 files changed, 13 insertions(+), 20 deletions(-) > > diff --git a/Documentation/admin-guide/laptops/lg-laptop.rst b/Documentation/admin-guide/laptops/lg-laptop.rst > index 67fd6932c..c4dd534f9 100644 > --- a/Documentation/admin-guide/laptops/lg-laptop.rst > +++ b/Documentation/admin-guide/laptops/lg-laptop.rst > @@ -48,8 +48,8 @@ This value is reset to 100 when the kernel boots. > Fan mode > -------- > > -Writing 1/0 to /sys/devices/platform/lg-laptop/fan_mode disables/enables > -the fan silent mode. > +Writing 0/1/2 to /sys/devices/platform/lg-laptop/fan_mode sets fan mode to > +Optimal/Silent/Performance respectively. > > > USB charge > diff --git a/drivers/platform/x86/lg-laptop.c b/drivers/platform/x86/lg-laptop.c > index 4b57102c7..335afdc75 100644 > --- a/drivers/platform/x86/lg-laptop.c > +++ b/drivers/platform/x86/lg-laptop.c > @@ -75,6 +75,9 @@ MODULE_PARM_DESC(fw_debug, "Enable printing of firmware debug messages"); > #define WMBB_USB_CHARGE 0x10B > #define WMBB_BATT_LIMIT 0x10C > > +#define FAN_MODE_FIELD_LOWER GENMASK(1, 0) > +#define FAN_MODE_FIELD_UPPER GENMASK(5, 4) > + > #define PLATFORM_NAME "lg-laptop" > > MODULE_ALIAS("wmi:" WMI_EVENT_GUID0); > @@ -274,29 +277,19 @@ static ssize_t fan_mode_store(struct device *dev, > struct device_attribute *attr, > const char *buffer, size_t count) > { > - bool value; > + unsigned long value; > union acpi_object *r; > - u32 m; > int ret; > > - ret = kstrtobool(buffer, &value); > + ret = kstrtoul(buffer, 10, &value); > if (ret) > return ret; > + if (value >= 3) > + return -EINVAL; > > - r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0); > - if (!r) > - return -EIO; > - > - if (r->type != ACPI_TYPE_INTEGER) { > - kfree(r); > - return -EIO; > - } > - > - m = r->integer.value; > - kfree(r); > - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xffffff0f) | (value << 4)); > - kfree(r); > - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xfffffff0) | value); > + r = lg_wmab(dev, WM_FAN_MODE, WM_SET, > + FIELD_PREP(FAN_MODE_FIELD_LOWER, value) | > + FIELD_PREP(FAN_MODE_FIELD_UPPER, value)); "FIELD" seems just unnecessary characters. Please also add include for <linux/bitfield.h>. > kfree(r); > > return count; > @@ -317,7 +310,7 @@ static ssize_t fan_mode_show(struct device *dev, > return -EIO; > } > > - status = r->integer.value & 0x01; > + status = FIELD_GET(FAN_MODE_FIELD_LOWER, r->integer.value); Is it good to reuse the input side define here for response side or should you have another with more specific name? (This is put to status named variable so my natural expectation is that the field's name is somehow related to that.) > kfree(r); > > return sysfs_emit(buffer, "%d\n", status); > -- i. ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v3] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-15 7:34 ` [PATCH v3] " Ilpo Järvinen @ 2025-09-19 13:50 ` Daniel 2025-09-22 12:49 ` Ilpo Järvinen 0 siblings, 1 reply; 16+ messages in thread From: Daniel @ 2025-09-19 13:50 UTC (permalink / raw) To: ilpo.jarvinen Cc: Markus.Elfring, hansg, linux-kernel, matan, platform-driver-x86 > Is it good to reuse the input side define here for response side or > should you have another with a more specific name? (This is put to > status named variable so my natural expectation is that the field's > name is somehow related to that.) The fan mode really is sent back to us in *_LOWER and *_UPPER form, exactly like how we send the fan mode. (Only, the lower and upper portions are guaranteed to be identical, so we just read the lower.) Hence why I did not add a new define for the response side. Should I add another define FAN_MODE_RESPONSE? -- >8 -- Subject: [PATCH v4] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() On my LG Gram 16Z95P-K.AA75A8 (2022), writes to /sys/devices/platform/lg-laptop/fan_mode have no effect and reads always report a status of 0. Disassembling the relevant ACPI tables reveals that in the WMAB call to set the fan mode, the new mode is read either from bits 0,1 or bits 4,5 (depending on the value of some other EC register). Thus when we call WMAB twice, first with bits 4,5 zero, then bits 0,1 zero, the second call undoes the effect of the first call. Fix this by calling WMAB once, with the mode set in bits 0,1 and 4,5. When the fan mode is returned from WMAB it always has this form, so there is no need to preserve the other bits. As a bonus, the driver now supports the "Performance" fan mode seen in the LG-provided Windows control app, which provides less aggressive CPU throttling but louder fan noise and shorter battery life. I can confirm with this patch reading/writing the fan mode now works as expected on my laptop, although I have not tested it on any other LG laptop. Also, correct the documentation to reflect that 0 corresponds to the default mode (what the Windows app calls "Optimal") and 1 corresponds to the silent mode. Signed-off-by: Daniel Lee <dany97@live.ca> Tested-by: Daniel Lee <dany97@live.ca> Fixes: dbf0c5a6b1f8e7bec5e17baa60a1e04c28d90f9b ("platform/x86: Add LG Gram laptop special features driver") --- V1 -> V2: Replace bitops with GENMASK() and FIELD_PREP() V2 -> V3: Add parentheses next to function name in summary line Use full name in signoff V3 -> V4: Add include for linux/bitfield.h Remove "FIELD" from bitmask macro names .../admin-guide/laptops/lg-laptop.rst | 4 +-- drivers/platform/x86/lg-laptop.c | 30 ++++++++----------- 2 files changed, 14 insertions(+), 20 deletions(-) diff --git a/Documentation/admin-guide/laptops/lg-laptop.rst b/Documentation/admin-guide/laptops/lg-laptop.rst index 67fd6932c..c4dd534f9 100644 --- a/Documentation/admin-guide/laptops/lg-laptop.rst +++ b/Documentation/admin-guide/laptops/lg-laptop.rst @@ -48,8 +48,8 @@ This value is reset to 100 when the kernel boots. Fan mode -------- -Writing 1/0 to /sys/devices/platform/lg-laptop/fan_mode disables/enables -the fan silent mode. +Writing 0/1/2 to /sys/devices/platform/lg-laptop/fan_mode sets fan mode to +Optimal/Silent/Performance respectively. USB charge diff --git a/drivers/platform/x86/lg-laptop.c b/drivers/platform/x86/lg-laptop.c index 4b57102c7..0ef179f7a 100644 --- a/drivers/platform/x86/lg-laptop.c +++ b/drivers/platform/x86/lg-laptop.c @@ -8,6 +8,7 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/acpi.h> +#include <linux/bitfield.h> #include <linux/bits.h> #include <linux/device.h> #include <linux/dev_printk.h> @@ -75,6 +76,9 @@ MODULE_PARM_DESC(fw_debug, "Enable printing of firmware debug messages"); #define WMBB_USB_CHARGE 0x10B #define WMBB_BATT_LIMIT 0x10C +#define FAN_MODE_LOWER GENMASK(1, 0) +#define FAN_MODE_UPPER GENMASK(5, 4) + #define PLATFORM_NAME "lg-laptop" MODULE_ALIAS("wmi:" WMI_EVENT_GUID0); @@ -274,29 +278,19 @@ static ssize_t fan_mode_store(struct device *dev, struct device_attribute *attr, const char *buffer, size_t count) { - bool value; + unsigned long value; union acpi_object *r; - u32 m; int ret; - ret = kstrtobool(buffer, &value); + ret = kstrtoul(buffer, 10, &value); if (ret) return ret; + if (value >= 3) + return -EINVAL; - r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0); - if (!r) - return -EIO; - - if (r->type != ACPI_TYPE_INTEGER) { - kfree(r); - return -EIO; - } - - m = r->integer.value; - kfree(r); - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xffffff0f) | (value << 4)); - kfree(r); - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xfffffff0) | value); + r = lg_wmab(dev, WM_FAN_MODE, WM_SET, + FIELD_PREP(FAN_MODE_LOWER, value) | + FIELD_PREP(FAN_MODE_UPPER, value)); kfree(r); return count; @@ -317,7 +311,7 @@ static ssize_t fan_mode_show(struct device *dev, return -EIO; } - status = r->integer.value & 0x01; + status = FIELD_GET(FAN_MODE_LOWER, r->integer.value); kfree(r); return sysfs_emit(buffer, "%d\n", status); -- 2.51.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH v3] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-19 13:50 ` Daniel @ 2025-09-22 12:49 ` Ilpo Järvinen 2025-09-23 13:19 ` [PATCH v5] " Daniel 0 siblings, 1 reply; 16+ messages in thread From: Ilpo Järvinen @ 2025-09-22 12:49 UTC (permalink / raw) To: Daniel; +Cc: Markus.Elfring, hansg, LKML, matan, platform-driver-x86 On Fri, 19 Sep 2025, Daniel wrote: > > Is it good to reuse the input side define here for response side or > > should you have another with a more specific name? (This is put to > > status named variable so my natural expectation is that the field's > > name is somehow related to that.) > > The fan mode really is sent back to us in *_LOWER and *_UPPER form, > exactly like how we send the fan mode. (Only, the lower and upper > portions are guaranteed to be identical, so we just read the lower.) > Hence why I did not add a new define for the response side. > > Should I add another define FAN_MODE_RESPONSE? Ah okay so the variable name is misleading then as it's really "mode" that is returned, not really "status"? I think this is fine then although I'd prefer to have also another patch on top of this which would rename that variable to mode. > -- >8 -- > Subject: [PATCH v4] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() > > On my LG Gram 16Z95P-K.AA75A8 (2022), writes to > /sys/devices/platform/lg-laptop/fan_mode have no effect and reads always > report a status of 0. > > Disassembling the relevant ACPI tables reveals that in the WMAB call to > set the fan mode, the new mode is read either from bits 0,1 or bits 4,5 > (depending on the value of some other EC register). Thus when we call > WMAB twice, first with bits 4,5 zero, then bits 0,1 zero, the second > call undoes the effect of the first call. > > Fix this by calling WMAB once, with the mode set in bits 0,1 and 4,5. > When the fan mode is returned from WMAB it always has this form, so > there is no need to preserve the other bits. As a bonus, the driver > now supports the "Performance" fan mode seen in the LG-provided Windows > control app, which provides less aggressive CPU throttling but louder > fan noise and shorter battery life. > > I can confirm with this patch reading/writing the fan mode now works > as expected on my laptop, although I have not tested it on any other > LG laptop. > > Also, correct the documentation to reflect that 0 corresponds to the > default mode (what the Windows app calls "Optimal") and 1 corresponds > to the silent mode. > > Signed-off-by: Daniel Lee <dany97@live.ca> > Tested-by: Daniel Lee <dany97@live.ca> > Fixes: dbf0c5a6b1f8e7bec5e17baa60a1e04c28d90f9b ("platform/x86: Add LG Gram laptop special features driver") > --- > V1 -> V2: Replace bitops with GENMASK() and FIELD_PREP() > V2 -> V3: Add parentheses next to function name in summary line > Use full name in signoff > V3 -> V4: Add include for linux/bitfield.h > Remove "FIELD" from bitmask macro names > > .../admin-guide/laptops/lg-laptop.rst | 4 +-- > drivers/platform/x86/lg-laptop.c | 30 ++++++++----------- > 2 files changed, 14 insertions(+), 20 deletions(-) > > diff --git a/Documentation/admin-guide/laptops/lg-laptop.rst b/Documentation/admin-guide/laptops/lg-laptop.rst > index 67fd6932c..c4dd534f9 100644 > --- a/Documentation/admin-guide/laptops/lg-laptop.rst > +++ b/Documentation/admin-guide/laptops/lg-laptop.rst > @@ -48,8 +48,8 @@ This value is reset to 100 when the kernel boots. > Fan mode > -------- > > -Writing 1/0 to /sys/devices/platform/lg-laptop/fan_mode disables/enables > -the fan silent mode. > +Writing 0/1/2 to /sys/devices/platform/lg-laptop/fan_mode sets fan mode to > +Optimal/Silent/Performance respectively. > > > USB charge > diff --git a/drivers/platform/x86/lg-laptop.c b/drivers/platform/x86/lg-laptop.c > index 4b57102c7..0ef179f7a 100644 > --- a/drivers/platform/x86/lg-laptop.c > +++ b/drivers/platform/x86/lg-laptop.c > @@ -8,6 +8,7 @@ > #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt > > #include <linux/acpi.h> > +#include <linux/bitfield.h> > #include <linux/bits.h> > #include <linux/device.h> > #include <linux/dev_printk.h> > @@ -75,6 +76,9 @@ MODULE_PARM_DESC(fw_debug, "Enable printing of firmware debug messages"); > #define WMBB_USB_CHARGE 0x10B > #define WMBB_BATT_LIMIT 0x10C > > +#define FAN_MODE_LOWER GENMASK(1, 0) > +#define FAN_MODE_UPPER GENMASK(5, 4) > + > #define PLATFORM_NAME "lg-laptop" > > MODULE_ALIAS("wmi:" WMI_EVENT_GUID0); > @@ -274,29 +278,19 @@ static ssize_t fan_mode_store(struct device *dev, > struct device_attribute *attr, > const char *buffer, size_t count) > { > - bool value; > + unsigned long value; > union acpi_object *r; > - u32 m; > int ret; > > - ret = kstrtobool(buffer, &value); > + ret = kstrtoul(buffer, 10, &value); > if (ret) > return ret; > + if (value >= 3) > + return -EINVAL; > > - r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0); > - if (!r) > - return -EIO; > - > - if (r->type != ACPI_TYPE_INTEGER) { > - kfree(r); > - return -EIO; > - } > - > - m = r->integer.value; > - kfree(r); > - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xffffff0f) | (value << 4)); > - kfree(r); > - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xfffffff0) | value); > + r = lg_wmab(dev, WM_FAN_MODE, WM_SET, > + FIELD_PREP(FAN_MODE_LOWER, value) | > + FIELD_PREP(FAN_MODE_UPPER, value)); > kfree(r); > > return count; > @@ -317,7 +311,7 @@ static ssize_t fan_mode_show(struct device *dev, > return -EIO; > } > > - status = r->integer.value & 0x01; > + status = FIELD_GET(FAN_MODE_LOWER, r->integer.value); > kfree(r); > > return sysfs_emit(buffer, "%d\n", status); > -- i. ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v5] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-22 12:49 ` Ilpo Järvinen @ 2025-09-23 13:19 ` Daniel 2025-09-23 14:21 ` [PATCH v?] " Markus Elfring 2025-09-24 13:13 ` [PATCH v5] " Ilpo Järvinen 0 siblings, 2 replies; 16+ messages in thread From: Daniel @ 2025-09-23 13:19 UTC (permalink / raw) To: Ilpo Järvinen Cc: Markus.Elfring, hansg, LKML, matan, platform-driver-x86 > Ah okay so the variable name is misleading then as it's really "mode" > that is returned, not really "status"? I think this is fine then although > I'd prefer to have also another patch on top of this which would rename > that variable to mode. I renamed the variable to `mode`. Is there anything about the commit message I should change? -- >8 -- On my LG Gram 16Z95P-K.AA75A8 (2022), writes to /sys/devices/platform/lg-laptop/fan_mode have no effect and reads always report a status of 0. Disassembling the relevant ACPI tables reveals that in the WMAB call to set the fan mode, the new mode is read either from bits 0,1 or bits 4,5 (depending on the value of some other EC register). Thus when we call WMAB twice, first with bits 4,5 zero, then bits 0,1 zero, the second call undoes the effect of the first call. Fix this by calling WMAB once, with the mode set in bits 0,1 and 4,5. When the fan mode is returned from WMAB it always has this form, so there is no need to preserve the other bits. As a bonus, the driver now supports the "Performance" fan mode seen in the LG-provided Windows control app, which provides less aggressive CPU throttling but louder fan noise and shorter battery life. I can confirm with this patch reading/writing the fan mode now works as expected on my laptop, although I have not tested it on any other LG laptop. Also, correct the documentation to reflect that 0 corresponds to the default mode (what the Windows app calls "Optimal") and 1 corresponds to the silent mode. Signed-off-by: Daniel Lee <dany97@live.ca> Tested-by: Daniel Lee <dany97@live.ca> Fixes: dbf0c5a6b1f8e7bec5e17baa60a1e04c28d90f9b ("platform/x86: Add LG Gram laptop special features driver") --- V1 -> V2: Replace bitops with GENMASK() and FIELD_PREP() V2 -> V3: Add parentheses next to function name in summary line Use full name in signoff V3 -> V4: Add include for linux/bitfield.h Remove "FIELD" from bitmask macro names V4 -> V5: Rename `status` to `mode` in fan_mode_show() .../admin-guide/laptops/lg-laptop.rst | 4 +-- drivers/platform/x86/lg-laptop.c | 34 ++++++++----------- 2 files changed, 16 insertions(+), 22 deletions(-) diff --git a/Documentation/admin-guide/laptops/lg-laptop.rst b/Documentation/admin-guide/laptops/lg-laptop.rst index 67fd6932c..c4dd534f9 100644 --- a/Documentation/admin-guide/laptops/lg-laptop.rst +++ b/Documentation/admin-guide/laptops/lg-laptop.rst @@ -48,8 +48,8 @@ This value is reset to 100 when the kernel boots. Fan mode -------- -Writing 1/0 to /sys/devices/platform/lg-laptop/fan_mode disables/enables -the fan silent mode. +Writing 0/1/2 to /sys/devices/platform/lg-laptop/fan_mode sets fan mode to +Optimal/Silent/Performance respectively. USB charge diff --git a/drivers/platform/x86/lg-laptop.c b/drivers/platform/x86/lg-laptop.c index 4b57102c7..6af6cf477 100644 --- a/drivers/platform/x86/lg-laptop.c +++ b/drivers/platform/x86/lg-laptop.c @@ -8,6 +8,7 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/acpi.h> +#include <linux/bitfield.h> #include <linux/bits.h> #include <linux/device.h> #include <linux/dev_printk.h> @@ -75,6 +76,9 @@ MODULE_PARM_DESC(fw_debug, "Enable printing of firmware debug messages"); #define WMBB_USB_CHARGE 0x10B #define WMBB_BATT_LIMIT 0x10C +#define FAN_MODE_LOWER GENMASK(1, 0) +#define FAN_MODE_UPPER GENMASK(5, 4) + #define PLATFORM_NAME "lg-laptop" MODULE_ALIAS("wmi:" WMI_EVENT_GUID0); @@ -274,29 +278,19 @@ static ssize_t fan_mode_store(struct device *dev, struct device_attribute *attr, const char *buffer, size_t count) { - bool value; + unsigned long value; union acpi_object *r; - u32 m; int ret; - ret = kstrtobool(buffer, &value); + ret = kstrtoul(buffer, 10, &value); if (ret) return ret; + if (value >= 3) + return -EINVAL; - r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0); - if (!r) - return -EIO; - - if (r->type != ACPI_TYPE_INTEGER) { - kfree(r); - return -EIO; - } - - m = r->integer.value; - kfree(r); - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xffffff0f) | (value << 4)); - kfree(r); - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xfffffff0) | value); + r = lg_wmab(dev, WM_FAN_MODE, WM_SET, + FIELD_PREP(FAN_MODE_LOWER, value) | + FIELD_PREP(FAN_MODE_UPPER, value)); kfree(r); return count; @@ -305,7 +299,7 @@ static ssize_t fan_mode_store(struct device *dev, static ssize_t fan_mode_show(struct device *dev, struct device_attribute *attr, char *buffer) { - unsigned int status; + unsigned int mode; union acpi_object *r; r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0); @@ -317,10 +311,10 @@ static ssize_t fan_mode_show(struct device *dev, return -EIO; } - status = r->integer.value & 0x01; + mode = FIELD_GET(FAN_MODE_LOWER, r->integer.value); kfree(r); - return sysfs_emit(buffer, "%d\n", status); + return sysfs_emit(buffer, "%d\n", mode); } static ssize_t usb_charge_store(struct device *dev, -- 2.51.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH v?] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-23 13:19 ` [PATCH v5] " Daniel @ 2025-09-23 14:21 ` Markus Elfring 2025-09-24 13:13 ` [PATCH v5] " Ilpo Järvinen 1 sibling, 0 replies; 16+ messages in thread From: Markus Elfring @ 2025-09-23 14:21 UTC (permalink / raw) To: Daniel Lee, platform-driver-x86 Cc: LKML, Hans de Goede, Ilpo Järvinen, Matan Ziv-Av > I renamed the variable to `mode`. > > Is there anything about the commit message I should change? > > -- >8 -- … I imagine that you can adjust the inquiry format. https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v6.17-rc7#n638 Regards, Markus ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v5] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-23 13:19 ` [PATCH v5] " Daniel 2025-09-23 14:21 ` [PATCH v?] " Markus Elfring @ 2025-09-24 13:13 ` Ilpo Järvinen 2025-09-24 15:44 ` Daniel 1 sibling, 1 reply; 16+ messages in thread From: Ilpo Järvinen @ 2025-09-24 13:13 UTC (permalink / raw) To: Daniel; +Cc: Markus.Elfring, hansg, LKML, matan, platform-driver-x86 On Tue, 23 Sep 2025 09:19:39 -0400, Daniel wrote: > On my LG Gram 16Z95P-K.AA75A8 (2022), writes to > /sys/devices/platform/lg-laptop/fan_mode have no effect and reads always > report a status of 0. > > Disassembling the relevant ACPI tables reveals that in the WMAB call to > set the fan mode, the new mode is read either from bits 0,1 or bits 4,5 > (depending on the value of some other EC register). Thus when we call > WMAB twice, first with bits 4,5 zero, then bits 0,1 zero, the second > call undoes the effect of the first call. > > [...] Thank you for your contribution, it has been applied to my local review-ilpo-fixes branch. Note it will show up in the public platform-drivers-x86/review-ilpo-fixes branch only once I've pushed my local branch there, which might take a while. The list of commits applied: [1/1] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() commit: bab04f0166dfaf7d7dfb5fd96d8f961a1b4e1b2c -- i. ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH v5] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-24 13:13 ` [PATCH v5] " Ilpo Järvinen @ 2025-09-24 15:44 ` Daniel 2025-09-24 17:58 ` Ilpo Järvinen 0 siblings, 1 reply; 16+ messages in thread From: Daniel @ 2025-09-24 15:44 UTC (permalink / raw) To: Ilpo Järvinen Cc: Markus.Elfring, hansg, LKML, matan, platform-driver-x86 On 2025-09-24 09:13, Ilpo Järvinen wrote: > Thank you for your contribution, it has been applied to my local > review-ilpo-fixes branch. Note it will show up in the public > platform-drivers-x86/review-ilpo-fixes branch only once I've pushed my > local branch there, which might take a while. Thanks a lot, but I was actually thinking about rewording the body of the commit message. Could I ask that this version be the one to eventually be pushed to the public repo? Also, this patch fixes an issue raised in this comment on the kernel bugzilla: (https://bugzilla.kernel.org/show_bug.cgi?id=204913#c4), but crucially not the issue itself. Do I mention this anywhere in the commit message? -- >8 -- Subject: [PATCH v6] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() When WMAB is called to set the fan mode, the new mode is read from either bits 0-1 or bits 4-5 (depending on the value of some other EC register). Thus when WMAB is called with bits 4-5 zeroed and called again with bits 0-1 zeroed, the second call undoes the effect of the first call. This causes writes to /sys/devices/platform/lg-laptop/fan_mode to have no effect (and causes reads to always report a status of zero). Fix this by calling WMAB once, with the mode set in bits 0,1 and 4,5. When the fan mode is returned from WMAB it always has this form, so there is no need to preserve the other bits. As a bonus, the driver now supports the "Performance" fan mode seen in the LG-provided Windows control app, which provides less aggressive CPU throttling but louder fan noise and shorter battery life. Also correct the documentation to reflect that 0 corresponds to the default mode (what the Windows app calls "Optimal") and 1 corresponds to the silent mode. Signed-off-by: Daniel Lee <dany97@live.ca> Tested-by: Daniel Lee <dany97@live.ca> Fixes: dbf0c5a6b1f8 ("platform/x86: Add LG Gram laptop special features driver") --- V1 -> V2: Replace bitops with GENMASK() and FIELD_PREP() V2 -> V3: Add parentheses next to function name in summary line Use full name in signoff V3 -> V4: Add include for linux/bitfield.h Remove "FIELD" from bitmask macro names V4 -> V5: Rename `status` to `mode` in fan_mode_show() V5 -> V6: Reword commit message body .../admin-guide/laptops/lg-laptop.rst | 4 +-- drivers/platform/x86/lg-laptop.c | 34 ++++++++----------- 2 files changed, 16 insertions(+), 22 deletions(-) diff --git a/Documentation/admin-guide/laptops/lg-laptop.rst b/Documentation/admin-guide/laptops/lg-laptop.rst index 67fd6932c..c4dd534f9 100644 --- a/Documentation/admin-guide/laptops/lg-laptop.rst +++ b/Documentation/admin-guide/laptops/lg-laptop.rst @@ -48,8 +48,8 @@ This value is reset to 100 when the kernel boots. Fan mode -------- -Writing 1/0 to /sys/devices/platform/lg-laptop/fan_mode disables/enables -the fan silent mode. +Writing 0/1/2 to /sys/devices/platform/lg-laptop/fan_mode sets fan mode to +Optimal/Silent/Performance respectively. USB charge diff --git a/drivers/platform/x86/lg-laptop.c b/drivers/platform/x86/lg-laptop.c index 4b57102c7..6af6cf477 100644 --- a/drivers/platform/x86/lg-laptop.c +++ b/drivers/platform/x86/lg-laptop.c @@ -8,6 +8,7 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/acpi.h> +#include <linux/bitfield.h> #include <linux/bits.h> #include <linux/device.h> #include <linux/dev_printk.h> @@ -75,6 +76,9 @@ MODULE_PARM_DESC(fw_debug, "Enable printing of firmware debug messages"); #define WMBB_USB_CHARGE 0x10B #define WMBB_BATT_LIMIT 0x10C +#define FAN_MODE_LOWER GENMASK(1, 0) +#define FAN_MODE_UPPER GENMASK(5, 4) + #define PLATFORM_NAME "lg-laptop" MODULE_ALIAS("wmi:" WMI_EVENT_GUID0); @@ -274,29 +278,19 @@ static ssize_t fan_mode_store(struct device *dev, struct device_attribute *attr, const char *buffer, size_t count) { - bool value; + unsigned long value; union acpi_object *r; - u32 m; int ret; - ret = kstrtobool(buffer, &value); + ret = kstrtoul(buffer, 10, &value); if (ret) return ret; + if (value >= 3) + return -EINVAL; - r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0); - if (!r) - return -EIO; - - if (r->type != ACPI_TYPE_INTEGER) { - kfree(r); - return -EIO; - } - - m = r->integer.value; - kfree(r); - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xffffff0f) | (value << 4)); - kfree(r); - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xfffffff0) | value); + r = lg_wmab(dev, WM_FAN_MODE, WM_SET, + FIELD_PREP(FAN_MODE_LOWER, value) | + FIELD_PREP(FAN_MODE_UPPER, value)); kfree(r); return count; @@ -305,7 +299,7 @@ static ssize_t fan_mode_store(struct device *dev, static ssize_t fan_mode_show(struct device *dev, struct device_attribute *attr, char *buffer) { - unsigned int status; + unsigned int mode; union acpi_object *r; r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0); @@ -317,10 +311,10 @@ static ssize_t fan_mode_show(struct device *dev, return -EIO; } - status = r->integer.value & 0x01; + mode = FIELD_GET(FAN_MODE_LOWER, r->integer.value); kfree(r); - return sysfs_emit(buffer, "%d\n", status); + return sysfs_emit(buffer, "%d\n", mode); } static ssize_t usb_charge_store(struct device *dev, -- 2.51.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH v5] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() 2025-09-24 15:44 ` Daniel @ 2025-09-24 17:58 ` Ilpo Järvinen 0 siblings, 0 replies; 16+ messages in thread From: Ilpo Järvinen @ 2025-09-24 17:58 UTC (permalink / raw) To: Daniel; +Cc: Markus.Elfring, Hans de Goede, LKML, matan, platform-driver-x86 [-- Attachment #1: Type: text/plain, Size: 5953 bytes --] On Wed, 24 Sep 2025, Daniel wrote: > On 2025-09-24 09:13, Ilpo Järvinen wrote: > > > Thank you for your contribution, it has been applied to my local > > review-ilpo-fixes branch. Note it will show up in the public > > platform-drivers-x86/review-ilpo-fixes branch only once I've pushed my > > local branch there, which might take a while. > > Thanks a lot, but I was actually thinking about rewording the body of the > commit message. Could I ask that this version be the one to eventually be > pushed to the public repo? I can replace it but please send the new version into a new thread as in the same thread won't necessarily end up properly into patchwork and may confuse other tools as well. > Also, this patch fixes an issue raised in this comment on the kernel bugzilla: > (https://bugzilla.kernel.org/show_bug.cgi?id=204913#c4), but crucially not > the issue itself. Do I mention this anywhere in the commit message? Just use a Link: tag, preferably directly to the comment. -- i. > -- >8 -- > Subject: [PATCH v6] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() > > When WMAB is called to set the fan mode, the new mode is read from either > bits 0-1 or bits 4-5 (depending on the value of some other EC register). > Thus when WMAB is called with bits 4-5 zeroed and called again with > bits 0-1 zeroed, the second call undoes the effect of the first call. > This causes writes to /sys/devices/platform/lg-laptop/fan_mode to have > no effect (and causes reads to always report a status of zero). > > Fix this by calling WMAB once, with the mode set in bits 0,1 and 4,5. > When the fan mode is returned from WMAB it always has this form, so > there is no need to preserve the other bits. As a bonus, the driver > now supports the "Performance" fan mode seen in the LG-provided Windows > control app, which provides less aggressive CPU throttling but louder > fan noise and shorter battery life. > > Also correct the documentation to reflect that 0 corresponds to the > default mode (what the Windows app calls "Optimal") and 1 corresponds > to the silent mode. > > Signed-off-by: Daniel Lee <dany97@live.ca> > Tested-by: Daniel Lee <dany97@live.ca> > Fixes: dbf0c5a6b1f8 ("platform/x86: Add LG Gram laptop special features driver") > --- > V1 -> V2: Replace bitops with GENMASK() and FIELD_PREP() > V2 -> V3: Add parentheses next to function name in summary line > Use full name in signoff > V3 -> V4: Add include for linux/bitfield.h > Remove "FIELD" from bitmask macro names > V4 -> V5: Rename `status` to `mode` in fan_mode_show() > V5 -> V6: Reword commit message body > > .../admin-guide/laptops/lg-laptop.rst | 4 +-- > drivers/platform/x86/lg-laptop.c | 34 ++++++++----------- > 2 files changed, 16 insertions(+), 22 deletions(-) > > diff --git a/Documentation/admin-guide/laptops/lg-laptop.rst b/Documentation/admin-guide/laptops/lg-laptop.rst > index 67fd6932c..c4dd534f9 100644 > --- a/Documentation/admin-guide/laptops/lg-laptop.rst > +++ b/Documentation/admin-guide/laptops/lg-laptop.rst > @@ -48,8 +48,8 @@ This value is reset to 100 when the kernel boots. > Fan mode > -------- > > -Writing 1/0 to /sys/devices/platform/lg-laptop/fan_mode disables/enables > -the fan silent mode. > +Writing 0/1/2 to /sys/devices/platform/lg-laptop/fan_mode sets fan mode to > +Optimal/Silent/Performance respectively. > > > USB charge > diff --git a/drivers/platform/x86/lg-laptop.c b/drivers/platform/x86/lg-laptop.c > index 4b57102c7..6af6cf477 100644 > --- a/drivers/platform/x86/lg-laptop.c > +++ b/drivers/platform/x86/lg-laptop.c > @@ -8,6 +8,7 @@ > #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt > > #include <linux/acpi.h> > +#include <linux/bitfield.h> > #include <linux/bits.h> > #include <linux/device.h> > #include <linux/dev_printk.h> > @@ -75,6 +76,9 @@ MODULE_PARM_DESC(fw_debug, "Enable printing of firmware debug messages"); > #define WMBB_USB_CHARGE 0x10B > #define WMBB_BATT_LIMIT 0x10C > > +#define FAN_MODE_LOWER GENMASK(1, 0) > +#define FAN_MODE_UPPER GENMASK(5, 4) > + > #define PLATFORM_NAME "lg-laptop" > > MODULE_ALIAS("wmi:" WMI_EVENT_GUID0); > @@ -274,29 +278,19 @@ static ssize_t fan_mode_store(struct device *dev, > struct device_attribute *attr, > const char *buffer, size_t count) > { > - bool value; > + unsigned long value; > union acpi_object *r; > - u32 m; > int ret; > > - ret = kstrtobool(buffer, &value); > + ret = kstrtoul(buffer, 10, &value); > if (ret) > return ret; > + if (value >= 3) > + return -EINVAL; > > - r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0); > - if (!r) > - return -EIO; > - > - if (r->type != ACPI_TYPE_INTEGER) { > - kfree(r); > - return -EIO; > - } > - > - m = r->integer.value; > - kfree(r); > - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xffffff0f) | (value << 4)); > - kfree(r); > - r = lg_wmab(dev, WM_FAN_MODE, WM_SET, (m & 0xfffffff0) | value); > + r = lg_wmab(dev, WM_FAN_MODE, WM_SET, > + FIELD_PREP(FAN_MODE_LOWER, value) | > + FIELD_PREP(FAN_MODE_UPPER, value)); > kfree(r); > > return count; > @@ -305,7 +299,7 @@ static ssize_t fan_mode_store(struct device *dev, > static ssize_t fan_mode_show(struct device *dev, > struct device_attribute *attr, char *buffer) > { > - unsigned int status; > + unsigned int mode; > union acpi_object *r; > > r = lg_wmab(dev, WM_FAN_MODE, WM_GET, 0); > @@ -317,10 +311,10 @@ static ssize_t fan_mode_show(struct device *dev, > return -EIO; > } > > - status = r->integer.value & 0x01; > + mode = FIELD_GET(FAN_MODE_LOWER, r->integer.value); > kfree(r); > > - return sysfs_emit(buffer, "%d\n", status); > + return sysfs_emit(buffer, "%d\n", mode); > } > > static ssize_t usb_charge_store(struct device *dev, > ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2025-09-24 17:58 UTC | newest] Thread overview: 16+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-09-12 18:13 [PATCH v2] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store Daniel 2025-09-12 18:30 ` Markus Elfring 2025-09-13 3:03 ` [PATCH v3] platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() Daniel 2025-09-13 6:16 ` Markus Elfring 2025-09-13 14:50 ` Daniel 2025-09-13 15:03 ` Daniel 2025-09-13 15:04 ` Daniel 2025-09-13 18:22 ` [PATCH v?] " Markus Elfring 2025-09-15 7:34 ` [PATCH v3] " Ilpo Järvinen 2025-09-19 13:50 ` Daniel 2025-09-22 12:49 ` Ilpo Järvinen 2025-09-23 13:19 ` [PATCH v5] " Daniel 2025-09-23 14:21 ` [PATCH v?] " Markus Elfring 2025-09-24 13:13 ` [PATCH v5] " Ilpo Järvinen 2025-09-24 15:44 ` Daniel 2025-09-24 17:58 ` Ilpo Järvinen
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).