[GIT PULL] Mailbox changes for v6.17
From: Jassi Brar
Date: Fri Aug 08 2025 - 12:15:50 EST
Hi Linus,
The following changes since commit 4df9c0a2465a523e399e46a8d3b5866c769b381b:
Merge tag 'soc-newsoc-6.17' of
git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc (2025-07-29
11:17:24 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/jassibrar/mailbox.git
tags/mailbox-v6.17
for you to fetch changes up to 5378bdf6a611a32500fccf13d14156f219bb0c85:
mailbox/pcc: support mailbox management of the shared buffer
(2025-08-07 23:49:56 -0500)
----------------------------------------------------------------
aspeed: add driver and bindings for ast2700
broadcom: add driver and bindings for bcm74110
mediatek: fix RPM api usage
qcom: use dev_fwnode
pcc: support shared buffer
misc: dt-bindings cleanup
----------------------------------------------------------------
Adam Young (1):
mailbox/pcc: support mailbox management of the shared buffer
Colin Ian King (1):
mailbox: bcm74110: Fix spelling mistake
Jammy Huang (2):
dt-bindings: mailbox: Add ASPEED AST2700 series SoC
mailbox: aspeed: add mailbox driver for AST27XX series SoC
Jiapeng Chong (1):
mailbox: bcm74110: remove unneeded semicolon
Jiri Slaby (SUSE) (1):
mailbox: Use dev_fwnode()
Justin Chen (2):
dt-bindings: mailbox: Add support for bcm74110
mailbox: Add support for bcm74110
Krzysztof Kozlowski (5):
dt-bindings: mailbox: amlogic,meson-gxbb-mhu: Add missing
interrupts maxItems
dt-bindings: mailbox: ti,secure-proxy: Add missing reg maxItems
dt-bindings: mailbox: Correct example indentation
dt-bindings: mailbox: nvidia,tegra186-hsp: Use generic node name
dt-bindings: mailbox: Drop consumers example DTS
Luca Weiss (1):
dt-bindings: mailbox: qcom-ipcc: document the Milos
Inter-Processor Communication Controller
Sakari Ailus (1):
mailbox: mtk-cmdq: Switch to pm_runtime_put_autosuspend()
.../mailbox/allwinner,sun6i-a31-msgbox.yaml | 14 +-
.../bindings/mailbox/amlogic,meson-gxbb-mhu.yaml | 10 +-
.../devicetree/bindings/mailbox/apple,mailbox.yaml | 16 +-
.../bindings/mailbox/aspeed,ast2700-mailbox.yaml | 68 +++
.../bindings/mailbox/brcm,bcm74110-mbox.yaml | 64 ++
.../bindings/mailbox/nvidia,tegra186-hsp.yaml | 9 +-
.../bindings/mailbox/qcom,apcs-kpss-global.yaml | 9 +-
.../devicetree/bindings/mailbox/qcom-ipcc.yaml | 1 +
.../bindings/mailbox/ti,omap-mailbox.yaml | 10 +-
.../bindings/mailbox/ti,secure-proxy.yaml | 18 +-
drivers/mailbox/Kconfig | 19 +
drivers/mailbox/Makefile | 4 +
drivers/mailbox/ast2700-mailbox.c | 235 ++++++++
drivers/mailbox/bcm74110-mailbox.c | 656 +++++++++++++++++++++
drivers/mailbox/mtk-cmdq-mailbox.c | 10 +-
drivers/mailbox/pcc.c | 102 +++-
drivers/mailbox/qcom-ipcc.c | 3 +-
include/acpi/pcc.h | 29 +
18 files changed, 1214 insertions(+), 63 deletions(-)
create mode 100644
Documentation/devicetree/bindings/mailbox/aspeed,ast2700-mailbox.yaml
create mode 100644
Documentation/devicetree/bindings/mailbox/brcm,bcm74110-mbox.yaml
create mode 100644 drivers/mailbox/ast2700-mailbox.c
create mode 100644 drivers/mailbox/bcm74110-mailbox.c