2023-11-23 10:26:29

by Hector Martin

[permalink] [raw]
Subject: [GIT PULL] Apple SoC mailbox updates for 6.8

Hi SoC folks,

Please merge these Apple mailbox changes for 6.8.

This moves the mailbox driver out of the mailbox framework and into SoC.
This was long discussed months back and has been cooking in linux-next
for a while, so it's time to get it merged.

Rebased on v6.7-rc1 with only some trivial Kbuild/Makefile conflicts.

- Hector

The following changes since commit b85ea95d086471afb4ad062012a4d73cd328fa86:

Linux 6.7-rc1 (2023-11-12 16:19:07 -0800)

are available in the Git repository at:

https://github.com/AsahiLinux/linux.git tags/asahi-soc-mailbox-6.8

for you to fetch changes up to 4dae8c047a70307d83d912afbda2e2c94de155b6:

soc: apple: mailbox: Add explicit include of platform_device.h (2023-11-23 19:10:47 +0900)

----------------------------------------------------------------
Apple SoC mailbox updates for 6.8

This moves the mailbox driver out of the mailbox subsystem and into SoC,
next to its only consumer (RTKit). It has been cooking in linux-next for
a long while, so it's time to pull it in.

----------------------------------------------------------------
Hector Martin (5):
soc: apple: rtkit: Get rid of apple_rtkit_send_message_wait
soc: apple: mailbox: Add ASC/M3 mailbox driver
soc: apple: rtkit: Port to the internal mailbox driver
mailbox: apple: Delete driver
soc: apple: mailbox: Rename config symbol to APPLE_MAILBOX

Rob Herring (1):
soc: apple: mailbox: Add explicit include of platform_device.h

MAINTAINERS | 2 -
drivers/mailbox/Kconfig | 12 -
drivers/mailbox/Makefile | 2 -
drivers/mailbox/apple-mailbox.c | 441 -------------------------------------
drivers/soc/apple/Kconfig | 15 +-
drivers/soc/apple/Makefile | 4 +
drivers/soc/apple/mailbox.c | 437 ++++++++++++++++++++++++++++++++++++
drivers/soc/apple/mailbox.h | 48 ++++
drivers/soc/apple/rtkit-internal.h | 8 +-
drivers/soc/apple/rtkit.c | 133 +++--------
include/linux/apple-mailbox.h | 19 --
include/linux/soc/apple/rtkit.h | 18 --
12 files changed, 533 insertions(+), 606 deletions(-)
delete mode 100644 drivers/mailbox/apple-mailbox.c
create mode 100644 drivers/soc/apple/mailbox.c
create mode 100644 drivers/soc/apple/mailbox.h
delete mode 100644 include/linux/apple-mailbox.h