[GIT PULL] power sequencing updates for v6.17-rc1

From: Bartosz Golaszewski
Date: Mon Jul 28 2025 - 06:21:21 EST


From: Bartosz Golaszewski <bartosz.golaszewski@xxxxxxxxxx>

Linus,

Please pull the following set of updates for the power sequencing
subsystem for v6.17-rc1. We have one new driver and a small set of
improvements as well as a fix to power sequence unit naming.

Thanks,
Bartosz

The following changes since commit 19272b37aa4f83ca52bdf9c16d5d81bdd1354494:

Linux 6.16-rc1 (2025-06-08 13:44:43 -0700)

are available in the Git repository at:

git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git tags/pwrseq-updates-for-v6.17-rc1

for you to fetch changes up to 07d59dec6795428983a840de85aa02febaf7e01b:

power: sequencing: qcom-wcn: fix bluetooth-wifi copypasta for WCN6855 (2025-06-30 09:07:57 +0200)

----------------------------------------------------------------
power sequencing updates for v6.17-rc1

New drivers:
- add a power sequencing driver for the T-HEAD TH1520 GPU

Power sequencing core improvements:
- allow to compile the pwrseq drivers with COMPILE_TEST=y in order to
improve the build-test coverage
- add named defines for the possible return values of the .match()
callback and use it in the existing drivers instead of magic values

Fixes:
- Fix the name of the bluetooth-enable unit for WCN6855

----------------------------------------------------------------
Bartosz Golaszewski (5):
power: sequencing: thead-gpu: add missing header
power: sequencing: extend build coverage with COMPILE_TEST=y
power: sequencing: add defines for return values of the match() callback
power: sequencing: qcom-wcn: use new defines for match() return values
power: sequencing: thead-gpu: use new defines for match() return values

Konrad Dybcio (1):
power: sequencing: qcom-wcn: fix bluetooth-wifi copypasta for WCN6855

Michal Wilczynski (1):
power: sequencing: Add T-HEAD TH1520 GPU power sequencer driver

MAINTAINERS | 1 +
drivers/power/sequencing/Kconfig | 10 +-
drivers/power/sequencing/Makefile | 1 +
drivers/power/sequencing/core.c | 6 +-
drivers/power/sequencing/pwrseq-qcom-wcn.c | 10 +-
drivers/power/sequencing/pwrseq-thead-gpu.c | 249 ++++++++++++++++++++++++++++
include/linux/pwrseq/provider.h | 3 +
7 files changed, 271 insertions(+), 9 deletions(-)
create mode 100644 drivers/power/sequencing/pwrseq-thead-gpu.c