The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
	PDx86 <platform-driver-x86@vger.kernel.org>,
	Hans de Goede <hansg@kernel.org>,
	Andy Shevchenko <andy@kernel.org>
Subject: [GIT PULL] platform-drivers-x86 for v7.1-3
Date: Fri, 15 May 2026 14:47:50 +0300	[thread overview]
Message-ID: <pdx86-pr-20260515144750-2668315946@linux.intel.com> (raw)

Hi Linus,

Here is a platform-drivers-x86 fixes PR for v7.1.

Fixes and New HW Support:

- asus-nb-wmi: Use existing keyboard quirk for ASUS Zenbook Duo UX8407AA

- hp-wmi: Add support for Victus 16-r0xxx (8BC2)

- intel/vsec_tpmi:

  - Move debugfs register before creating devices

  - Prevent fault during unbind

- lenovo-wmi-*:

  - Fix memory leak in lwmi_dev_evaluate_int()

  - Balance IDA id allocation and free

  - Balance component bind and unbind

  - Prevent sending uninitialized WMI arguments to the device

  - Decouple lenovo-wmi-gamezone and lenovo-wmi-other to simplify module
    dependency graph

  - Limit adding attributes to supported devices

- samsung-galaxybook: Handle kbd backlight, mic mure and camera block
                      hotkeys

Regards, i.


The following changes since commit 863810d4985ad214f70c1623f24384ccc850f2a2:

  platform/x86: lenovo: wmi-other: Fix uninitialized variable in lwmi_om_hwmon_write() (2026-04-30 15:41:18 +0300)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git tags/platform-drivers-x86-v7.1-3

for you to fetch changes up to 2997606dd17729404cef9821ce66dd037b6019eb:

  platform/x86: asus-nb-wmi: add DMI quirk for ASUS Zenbook Duo UX8407AA (2026-05-11 17:15:16 +0300)

----------------------------------------------------------------
platform-drivers-x86 for v7.1-3

Fixes and New HW Support:

- asus-nb-wmi: Use existing keyboard quirk for ASUS Zenbook Duo UX8407AA

- hp-wmi: Add support for Victus 16-r0xxx (8BC2)

- intel/vsec_tpmi:

  - Move debugfs register before creating devices

  - Prevent fault during unbind

- lenovo-wmi-*:

  - Fix memory leak in lwmi_dev_evaluate_int()

  - Balance IDA id allocation and free

  - Balance component bind and unbind

  - Prevent sending uninitialized WMI arguments to the device

  - Decouple lenovo-wmi-gamezone and lenovo-wmi-other to simplify module
    dependency graph

  - Limit adding attributes to supported devices

- samsung-galaxybook: Handle kbd backlight, mic mure and camera block
                      hotkeys

The following is an automated shortlog grouped by driver:

asus-nb-wmi:
 -  add DMI quirk for ASUS Zenbook Duo UX8407AA

hp-wmi:
 -  Add support for Victus 16-r0xxx (8BC2)

intel:
 -  Add notifiers support
 -  Move debugfs register before creating devices

intel/tpmi/plr:
 -  Prevent fault during unbind

lenovo:
 -  Decouple lenovo-wmi-gamezone and lenovo-wmi-other

lenovo-wmi-helpers:
 -  Fix memory leak in lwmi_dev_evaluate_int()
 -  Move gamezone enums to wmi-helpers

lenovo-wmi-other:
 -  Add Attribute ID helper functions
 -  Balance component bind and unbind
 -  Balance IDA id allocation and free
 -  Fix tunable_attr_01 struct members
 -  Limit adding attributes to supported devices
 -  Zero initialize WMI arguments

samsung-galaxybook:
 -  Handle ACPI hotkey notifications
 -  Refactor camera lens cover input device

----------------------------------------------------------------
Ayaan Mirza Baig (2):
      platform/x86: samsung-galaxybook: Refactor camera lens cover input device
      platform/x86: samsung-galaxybook: Handle ACPI hotkey notifications

Derek J. Clark (5):
      platform/x86: lenovo-wmi-other: Zero initialize WMI arguments
      platform/x86: lenovo-wmi-other: Fix tunable_attr_01 struct members
      platform/x86: lenovo-wmi-helpers: Move gamezone enums to wmi-helpers
      platform/x86: lenovo-wmi-other: Add Attribute ID helper functions
      platform/x86: lenovo-wmi-other: Limit adding attributes to supported devices

Haichen Feng (1):
      platform/x86: hp-wmi: Add support for Victus 16-r0xxx (8BC2)

Paolo Pisati (1):
      platform/x86: asus-nb-wmi: add DMI quirk for ASUS Zenbook Duo UX8407AA

Rong Zhang (4):
      platform/x86: lenovo-wmi-helpers: Fix memory leak in lwmi_dev_evaluate_int()
      platform/x86: lenovo-wmi-other: Balance IDA id allocation and free
      platform/x86: lenovo-wmi-other: Balance component bind and unbind
      platform/x86: lenovo: Decouple lenovo-wmi-gamezone and lenovo-wmi-other

Srinivas Pandruvada (3):
      platform/x86: intel: Move debugfs register before creating devices
      platform/x86: intel: Add notifiers support
      platform/x86/intel/tpmi/plr: Prevent fault during unbind

 drivers/platform/x86/asus-nb-wmi.c         |   9 +
 drivers/platform/x86/hp/hp-wmi.c           |   4 +
 drivers/platform/x86/intel/plr_tpmi.c      |  45 ++++-
 drivers/platform/x86/intel/vsec_tpmi.c     |  29 ++-
 drivers/platform/x86/lenovo/Kconfig        |   1 -
 drivers/platform/x86/lenovo/wmi-capdata.c  |   8 +-
 drivers/platform/x86/lenovo/wmi-capdata.h  |  20 ++
 drivers/platform/x86/lenovo/wmi-events.c   |   2 +-
 drivers/platform/x86/lenovo/wmi-gamezone.c |   7 +-
 drivers/platform/x86/lenovo/wmi-gamezone.h |  20 --
 drivers/platform/x86/lenovo/wmi-helpers.c  | 105 ++++++++++-
 drivers/platform/x86/lenovo/wmi-helpers.h  |  21 +++
 drivers/platform/x86/lenovo/wmi-other.c    | 294 ++++++++++++++---------------
 drivers/platform/x86/lenovo/wmi-other.h    |  16 --
 drivers/platform/x86/samsung-galaxybook.c  |  69 ++++---
 include/linux/intel_tpmi.h                 |   6 +
 16 files changed, 424 insertions(+), 232 deletions(-)
 delete mode 100644 drivers/platform/x86/lenovo/wmi-gamezone.h
 delete mode 100644 drivers/platform/x86/lenovo/wmi-other.h

             reply	other threads:[~2026-05-15 11:49 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-15 11:47 Ilpo Järvinen [this message]
2026-05-15 20:10 ` [GIT PULL] platform-drivers-x86 for v7.1-3 pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=pdx86-pr-20260515144750-2668315946@linux.intel.com \
    --to=ilpo.jarvinen@linux.intel.com \
    --cc=andy@kernel.org \
    --cc=hansg@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=platform-driver-x86@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox