[GIT PULL] Mailbox changes for v6.10

From: Jassi Brar
Date: Tue May 21 2024 - 10:23:29 EST


Hi Linus,
The following changes since commit e67572cd2204894179d89bd7b984072f19313b03:

Linux 6.9-rc6 (2024-04-28 13:47:24 -0700)

are available in the Git repository at:

git://git.kernel.org/pub/scm/linux/kernel/git/jassibrar/mailbox.git
tags/mailbox-v6.10

for you to fetch changes up to 10b98582bc76a65b7c9dcee82b7918d7949740de:

dt-bindings: mailbox: qcom-ipcc: Document the SDX75 IPCC (2024-05-19
22:33:58 -0500)

----------------------------------------------------------------
omap: redo the driver from legacy to mailbox api
zynqmp: enable bufferless IPI
arm: add mhu-v3 driver
common: convert from tasklet to BH workqueue
qcom: MSM8974 APCS compatible

----------------------------------------------------------------
Allen Pais (1):
mailbox: Convert from tasklet to BH workqueue

Andrew Davis (13):
mailbox: omap: Remove unused omap_mbox_{enable,disable}_irq() functions
mailbox: omap: Remove unused omap_mbox_request_channel() function
mailbox: omap: Move omap_mbox_irq_t into driver
mailbox: omap: Move fifo size check to point of use
mailbox: omap: Remove unneeded header omap-mailbox.h
mailbox: omap: Remove device class
mailbox: omap: Use devm_pm_runtime_enable() helper
mailbox: omap: Merge mailbox child node setup loops
mailbox: omap: Use function local struct mbox_controller
mailbox: omap: Use mbox_controller channel list directly
mailbox: omap: Remove mbox_chan_to_omap_mbox()
mailbox: omap: Reverse FIFO busy check logic
mailbox: omap: Remove kernel FIFO message queuing

Ben Levinsky (3):
mailbox: zynqmp: Move of_match structure closer to usage
mailbox: zynqmp: Move buffered IPI setup to of_match selected routine
mailbox: zynqmp: Enable Bufferless IPI usage on Versal-based SOC's

Cristian Marussi (2):
dt-bindings: mailbox: arm,mhuv3: Add bindings
mailbox: arm_mhuv3: Add driver

Jason-JH.Lin (1):
mailbox: mtk-cmdq: Fix pm_runtime_get_sync() warning in mbox shutdown

Krzysztof Kozlowski (1):
mailbox: mtk-cmdq-mailbox: fix module autoloading

Luca Weiss (1):
dt-bindings: mailbox: qcom: Add MSM8974 APCS compatible

Rohit Agarwal (1):
dt-bindings: mailbox: qcom-ipcc: Document the SDX75 IPCC

Tanmay Shah (1):
mailbox: zynqmp: handle SGI for shared IPI

.../devicetree/bindings/mailbox/arm,mhuv3.yaml | 224 ++++
.../bindings/mailbox/qcom,apcs-kpss-global.yaml | 1 +
.../devicetree/bindings/mailbox/qcom-ipcc.yaml | 1 +
MAINTAINERS | 9 +
drivers/mailbox/Kconfig | 21 +-
drivers/mailbox/Makefile | 2 +
drivers/mailbox/arm_mhuv3.c | 1103 ++++++++++++++++++++
drivers/mailbox/bcm-pdc-mailbox.c | 21 +-
drivers/mailbox/imx-mailbox.c | 16 +-
drivers/mailbox/mtk-cmdq-mailbox.c | 3 +-
drivers/mailbox/omap-mailbox.c | 519 ++-------
drivers/mailbox/zynqmp-ipi-mailbox.c | 412 +++++++-
include/dt-bindings/arm/mhuv3-dt.h | 13 +
include/linux/omap-mailbox.h | 13 -
14 files changed, 1856 insertions(+), 502 deletions(-)
create mode 100644 Documentation/devicetree/bindings/mailbox/arm,mhuv3.yaml
create mode 100644 drivers/mailbox/arm_mhuv3.c
create mode 100644 include/dt-bindings/arm/mhuv3-dt.h