public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/6] platform/x86: Add Lenovo Gaming Series WMI Drivers
@ 2025-04-08  1:28 Derek J. Clark
  2025-04-08  1:28 ` [PATCH v5 1/6] platform/x86: Add lenovo-wmi-* driver Documentation Derek J. Clark
                   ` (5 more replies)
  0 siblings, 6 replies; 22+ messages in thread
From: Derek J. Clark @ 2025-04-08  1:28 UTC (permalink / raw)
  To: Hans de Goede, Ilpo Järvinen
  Cc: Armin Wolf, Jonathan Corbet, Mario Limonciello, Luke Jones,
	Xino Ni, Zhixin Zhang, Mia Shao, Mark Pearson,
	Pierre-Loup A . Griffais, Cody T . -H . Chiu, John Martens,
	Derek J . Clark, platform-driver-x86, linux-doc, linux-kernel

Adds support for the Lenovo "Gaming Series" of laptop hardware that use
WMI interfaces that control various power settings. There are multiple WMI
interfaces that work in concert to provide getting and setting values as
well as validation of input. Currently only the "Gamezone", "Other
Mode", and "LENOVO_CAPABILITY_DATA_01" interfaces are implemented, but
I attempted to structure the driver so that adding the "Custom Mode",
"Lighting", and other data block interfaces would be trivial in a later
patches.

This driver is distinct from, but should be considered a replacement for
this patch:
https://lore.kernel.org/all/20241118100503.14228-1-jonmail@163.com/

This driver attempts to standardize the exposed sysfs by mirroring the
asus-armoury driver currently under review. As such, a lot of
inspiration has been drawn from that driver.
https://lore.kernel.org/platform-driver-x86/20250316230724.100165-1-luke@ljones.dev/

The drivers have been tested by me on the Lenovo Legion Go and Legion Go
S.

Suggested-by: Mario Limonciello <superm1@kernel.org>
Signed-off-by: Derek J. Clark <derekjohn.clark@gmail.com>
---
v5:
 - Adjusted patch order to put lenovo-wmi-other last. Also added the
   references to lenovo-wmi-other in lenovo-wmi-gamezone in that patch.
 - No longer using devm_kmalloc_array in the bind function for capdata
   and other drivers. Instead, a pointer to the list in capdata01 is
   passed back to other.
 - Disambiguated most constants and defines to better indicate they are
   part of the lenovo-wmi drivers and thier function.
 - Ensured the firmware attributes for other are removed on component
   unbind.
 - Various misc formatting fixes from v4.
v4:
https://lore.kernel.org/platform-driver-x86/20250317144326.5850-1-derekjohn.clark@gmail.com/
v3:
https://lore.kernel.org/platform-driver-x86/20250225220037.16073-1-derekjohn.clark@gmail.com/
v2:
https://lore.kernel.org/platform-driver-x86/20250102004854.14874-1-derekjohn.clark@gmail.com/
v1:
https://lore.kernel.org/platform-driver-x86/20241217230645.15027-1-derekjohn.clark@gmail.com/
*** BLURB HERE ***

Derek J. Clark (6):
  platform/x86: Add lenovo-wmi-* driver Documentation
  platform/x86: Add lenovo-wmi-helpers
  platform/x86: Add Lenovo WMI Events Driver
  platform/x86: Add Lenovo Capability Data 01 WMI Driver
  platform/x86: Add Lenovo Gamezone WMI Driver
  platform/x86: Add Lenovo Other Mode WMI Driver

 .../wmi/devices/lenovo-wmi-gamezone.rst       | 203 ++++++
 .../wmi/devices/lenovo-wmi-other-method.rst   | 109 +++
 MAINTAINERS                                   |  17 +
 drivers/platform/x86/Kconfig                  |  41 ++
 drivers/platform/x86/Makefile                 |   5 +
 drivers/platform/x86/lenovo-wmi-capdata01.c   | 168 +++++
 drivers/platform/x86/lenovo-wmi-capdata01.h   |  28 +
 drivers/platform/x86/lenovo-wmi-events.c      | 196 +++++
 drivers/platform/x86/lenovo-wmi-events.h      |  20 +
 drivers/platform/x86/lenovo-wmi-gamezone.c    | 410 +++++++++++
 drivers/platform/x86/lenovo-wmi-gamezone.h    |  20 +
 drivers/platform/x86/lenovo-wmi-helpers.c     |  74 ++
 drivers/platform/x86/lenovo-wmi-helpers.h     |  20 +
 drivers/platform/x86/lenovo-wmi-other.c       | 678 ++++++++++++++++++
 drivers/platform/x86/lenovo-wmi-other.h       |  16 +
 15 files changed, 2005 insertions(+)
 create mode 100644 Documentation/wmi/devices/lenovo-wmi-gamezone.rst
 create mode 100644 Documentation/wmi/devices/lenovo-wmi-other-method.rst
 create mode 100644 drivers/platform/x86/lenovo-wmi-capdata01.c
 create mode 100644 drivers/platform/x86/lenovo-wmi-capdata01.h
 create mode 100644 drivers/platform/x86/lenovo-wmi-events.c
 create mode 100644 drivers/platform/x86/lenovo-wmi-events.h
 create mode 100644 drivers/platform/x86/lenovo-wmi-gamezone.c
 create mode 100644 drivers/platform/x86/lenovo-wmi-gamezone.h
 create mode 100644 drivers/platform/x86/lenovo-wmi-helpers.c
 create mode 100644 drivers/platform/x86/lenovo-wmi-helpers.h
 create mode 100644 drivers/platform/x86/lenovo-wmi-other.c
 create mode 100644 drivers/platform/x86/lenovo-wmi-other.h

-- 
2.49.0


^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2025-04-16 23:03 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-08  1:28 [PATCH v5 0/6] platform/x86: Add Lenovo Gaming Series WMI Drivers Derek J. Clark
2025-04-08  1:28 ` [PATCH v5 1/6] platform/x86: Add lenovo-wmi-* driver Documentation Derek J. Clark
2025-04-08  2:43   ` Bagas Sanjaya
2025-04-08  2:50   ` Bagas Sanjaya
2025-04-16 21:18   ` Armin Wolf
2025-04-08  1:28 ` [PATCH v5 2/6] platform/x86: Add lenovo-wmi-helpers Derek J. Clark
2025-04-08 12:09   ` Ilpo Järvinen
2025-04-08 12:15   ` Ilpo Järvinen
2025-04-16 21:22   ` Armin Wolf
2025-04-08  1:28 ` [PATCH v5 3/6] platform/x86: Add Lenovo WMI Events Driver Derek J. Clark
2025-04-08  1:28 ` [PATCH v5 4/6] platform/x86: Add Lenovo Capability Data 01 WMI Driver Derek J. Clark
2025-04-08 12:20   ` Ilpo Järvinen
2025-04-16 21:42   ` Armin Wolf
2025-04-08  1:28 ` [PATCH v5 5/6] platform/x86: Add Lenovo Gamezone " Derek J. Clark
2025-04-08 12:35   ` Ilpo Järvinen
2025-04-16 22:45   ` Armin Wolf
2025-04-08  1:28 ` [PATCH v5 6/6] platform/x86: Add Lenovo Other Mode " Derek J. Clark
2025-04-08 12:50   ` Ilpo Järvinen
2025-04-10 22:54     ` Derek John Clark
2025-04-15 18:39       ` Derek J. Clark
2025-04-16 23:02         ` Armin Wolf
2025-04-16 22:54   ` Armin Wolf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox