X86 platform drivers
 help / color / mirror / Atom feed
* [GIT PULL] platform-drivers-x86 for v6.16-4
@ 2025-07-21 12:38 Ilpo Järvinen
  2025-07-23 16:01 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Ilpo Järvinen @ 2025-07-21 12:38 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: LKML, PDx86, Hans de Goede, Andy Shevchenko

Hi Linus,

Here is a platform-drivers-x86 fixes PR for v6.16.

There's one power supply accessor change to support solving pdx86 lock
double take issue (upcoming pdx86 for-next work depends on the same API
so we chose to route it through pdx86 tree).

Fixes and New HW Support

- alienware-wmi-wmax:

  - Add AWCC support for Alienware Area-51m and m15 R5.

  - Fix `dmi_system_id` array termination

- arm64: huawei-gaokun-ec: fix OF node leak

- dell-ddv: Fix taking psy->extensions_sem twice

- dell-lis3lv02d: Add Precision 3551 accelerometer support

- firmware_attributes_class: Fix initialization order

- ideapad-laptop: Retain FnLock and kbd backlight across boots

- lenovo-wmi-hotkey: Avoid triggering error -5 due to missing mute LED

- mellanox: mlxbf-pmc: Validate event names and bool input

- power: supply: Add get/set property direct to allow avoiding taking
                 psy->extensions_sem twice from power supply extensions

Regards, i.


The following changes since commit 4f30f946f27b7f044cf8f3f1f353dee1dcd3517a:

  platform/x86: think-lmi: Fix sysfs group cleanup (2025-07-02 12:01:25 +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-v6.16-4

for you to fetch changes up to e2967b50b709970547b5cdfa1b42526835327f36:

  MAINTAINERS: Update entries for IFS and SBL drivers (2025-07-21 14:38:19 +0300)

----------------------------------------------------------------
platform-drivers-x86 for v6.16-4

Fixes and New HW Support

- alienware-wmi-wmax:

  - Add AWCC support for Alienware Area-51m and m15 R5.

  - Fix `dmi_system_id` array termination

- arm64: huawei-gaokun-ec: fix OF node leak

- dell-ddv: Fix taking psy->extensions_sem twice

- dell-lis3lv02d: Add Precision 3551 accelerometer support

- firmware_attributes_class: Fix initialization order

- ideapad-laptop: Retain FnLock and kbd backlight across boots

- lenovo-wmi-hotkey: Avoid triggering error -5 due to missing mute LED

- mellanox: mlxbf-pmc: Validate event names and bool input

- power: supply: Add get/set property direct to allow avoiding taking
                 psy->extensions_sem twice from power supply extensions

The following is an automated shortlog grouped by driver:

alieneware-wmi-wmax:
 -  Add AWCC support to more laptops

alienware-wmi-wmax:
 -  Fix `dmi_system_id` array

arm64: huawei-gaokun-ec:
 -  fix OF node leak

dell-ddv:
 -  Fix taking the psy->extensions_sem lock twice

dell-lis3lv02d:
 -  Add Precision 3551

Fix initialization order for firmware_attributes_class:
 - Fix initialization order for firmware_attributes_class

ideapad-laptop:
 -  Fix FnLock not remembered among boots
 -  Fix kbd backlight not remembered among boots

lenovo-wmi-hotkey:
 -  Avoid triggering error -5 due to missing mute LED

MAINTAINERS:
 -  Update entries for IFS and SBL drivers

mlxbf-pmc:
 -  Remove newline char from event name input
 -  Use kstrtobool() to check 0/1 input
 -  Validate event/enable input

power: supply: core:
 -  Add power_supply_get/set_property_direct()

power: supply: test-power:
 -  Test access to extended power supply

----------------------------------------------------------------
Armin Wolf (3):
      power: supply: core: Add power_supply_get/set_property_direct()
      power: supply: test-power: Test access to extended power supply
      platform/x86: dell-ddv: Fix taking the psy->extensions_sem lock twice

Jackie Dong (1):
      lenovo-wmi-hotkey: Avoid triggering error -5 due to missing mute LED

Jan-Niklas Burfeind (1):
      platform/x86: dell-lis3lv02d: Add Precision 3551

Jithu Joseph (1):
      MAINTAINERS: Update entries for IFS and SBL drivers

Johan Hovold (1):
      platform: arm64: huawei-gaokun-ec: fix OF node leak

Kurt Borja (2):
      platform/x86: alienware-wmi-wmax: Fix `dmi_system_id` array
      platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops

Rong Zhang (2):
      platform/x86: ideapad-laptop: Fix FnLock not remembered among boots
      platform/x86: ideapad-laptop: Fix kbd backlight not remembered among boots

Shravan Kumar Ramani (3):
      platform/mellanox: mlxbf-pmc: Remove newline char from event name input
      platform/mellanox: mlxbf-pmc: Validate event/enable input
      platform/mellanox: mlxbf-pmc: Use kstrtobool() to check 0/1 input

Torsten Hilbrich (1):
      platform/x86: Fix initialization order for firmware_attributes_class

 MAINTAINERS                                        |  6 +-
 drivers/platform/arm64/huawei-gaokun-ec.c          |  2 +
 drivers/platform/mellanox/mlxbf-pmc.c              | 25 ++++---
 drivers/platform/x86/Makefile                      |  3 +-
 drivers/platform/x86/dell/alienware-wmi-wmax.c     | 17 +++++
 drivers/platform/x86/dell/dell-lis3lv02d.c         |  1 +
 drivers/platform/x86/dell/dell-wmi-ddv.c           | 10 ++-
 drivers/platform/x86/ideapad-laptop.c              |  4 +-
 drivers/platform/x86/lenovo-wmi-hotkey-utilities.c | 30 +++++---
 drivers/power/supply/power_supply_core.c           | 82 ++++++++++++++++++----
 drivers/power/supply/test_power.c                  |  4 ++
 include/linux/power_supply.h                       |  8 +++
 12 files changed, 153 insertions(+), 39 deletions(-)

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

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

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-21 12:38 [GIT PULL] platform-drivers-x86 for v6.16-4 Ilpo Järvinen
2025-07-23 16:01 ` pr-tracker-bot

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