[GIT PULL 1/4] samsung: drivers for v7.1

From: Krzysztof Kozlowski

Date: Tue Mar 24 2026 - 09:07:37 EST


The following changes since commit 6de23f81a5e08be8fbf5e8d7e9febc72a5b5f27f:

Linux 7.0-rc1 (2026-02-22 13:18:59 -0800)

are available in the Git repository at:

https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git tags/samsung-drivers-7.1

for you to fetch changes up to a2be37eedb52ea26938fa4cc9de1ff84963c57ad:

firmware: exynos-acpm: Drop fake 'const' on handle pointer (2026-02-28 15:47:03 +0100)

----------------------------------------------------------------
Samsung SoC drivers for v7.1

Few cleanups in ACPM firmware drivers, used on Google GS101 and newer
Samsung Exynos SoCs. Notable change is removing 'const' in
'struct acpm_handle' pointers, because even though the code does not
modify pointed data, it immediately drops the const via cast. Also code
is not logically readable when a reference getters/putters (e.g.
acpm_handle_put()) take a pointer to const, because the meaning of "get"
and "put" implies changing the memory, even if that changeable field is
outside of pointed data.

----------------------------------------------------------------
André Draszik (1):
dt-bindings: firmware: google,gs101-acpm-ipc: add S2MPG11 secondary PMIC

Krzysztof Kozlowski (4):
firmware: exynos-acpm: Use unsigned int for acpm_pmic_linux_errmap index
firmware: exynos-acpm: Count number of commands in acpm_xfer
firmware: exynos-acpm: Count acpm_xfer buffers with __counted_by_ptr
firmware: exynos-acpm: Drop fake 'const' on handle pointer

.../bindings/firmware/google,gs101-acpm-ipc.yaml | 50 +++++++++++++++++++++-
drivers/clk/samsung/clk-acpm.c | 4 +-
drivers/firmware/samsung/exynos-acpm-dvfs.c | 13 +++---
drivers/firmware/samsung/exynos-acpm-dvfs.h | 4 +-
drivers/firmware/samsung/exynos-acpm-pmic.c | 26 +++++------
drivers/firmware/samsung/exynos-acpm-pmic.h | 10 ++---
drivers/firmware/samsung/exynos-acpm.c | 30 +++++++------
drivers/firmware/samsung/exynos-acpm.h | 10 ++---
drivers/mfd/sec-acpm.c | 10 ++---
.../linux/firmware/samsung/exynos-acpm-protocol.h | 40 ++++++++---------
10 files changed, 120 insertions(+), 77 deletions(-)