* [GIT PULL] Mailbox changes for v6.19
@ 2025-12-10 23:31 Jassi Brar
2025-12-11 0:23 ` Stephen Rothwell
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Jassi Brar @ 2025-12-10 23:31 UTC (permalink / raw)
To: Linus Torvalds, linux-arm-kernel, Linux Kernel Mailing List
Hi Linus,
The following changes since commit 7d0a66e4bb9081d75c82ec4957c50034cb0ea449:
Linux 6.18 (2025-11-30 14:42:10 -0800)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/jassibrar/mailbox.git
tags/mailbox-v6.19
for you to fetch changes up to 175956b6672f93491da9c78d686f310311f0855e:
mailbox: mtk-cmdq: Remove unsued cmdq_get_shift_pa() (2025-12-10
17:17:01 -0600)
----------------------------------------------------------------
pcc: refactor and improve initialisation and interrupt handling
qcom: enable Kaanapali and Glymur platforms
renesas: add MFIS mailbox driver
mediatek: add mtk-vcp-mailbox driver and bindings
add support for MT8196 into mtk-cmdq
misc: mtk-cmdq: Remove unsued cmdq_get_shift_pa
remove unneeded double quotation in Kconfig
drop POLARFIRE from ARCH_MICROCHIP_POLARFIRE
fix out-of-bounds access in mchp_ipc_get_cluster_aggr_irq
----------------------------------------------------------------
Conor Dooley (1):
mailbox: mpfs: drop POLARFIRE from ARCH_MICROCHIP_POLARFIRE
Jason-JH Lin (5):
mailbox: mtk-cmdq: Add cmdq private data to cmdq_pkt for
generating instruction
mailbox: mtk-cmdq: Add GCE hardware virtualization configuration
mailbox: mtk-cmdq: Add mminfra_offset configuration for DRAM transaction
mailbox: mtk-cmdq: Add driver data to support for MT8196
mailbox: mtk-cmdq: Remove unsued cmdq_get_shift_pa()
Jingyi Wang (2):
dt-bindings: mailbox: qcom: Add IPCC support for Kaanapali and
Glymur Platforms
dt-bindings: mailbox: qcom: Add CPUCP mailbox controller
bindings for Kaanapali
Jjian Zhou (2):
dt-bindings: mailbox: mediatek,mt8196-vcp-mbox: add mtk vcp-mbox document
mailbox: mediatek: Add mtk-vcp-mailbox driver
Joonwon Kang (1):
mailbox: Prevent out-of-bounds access in fw_mbox_index_xlate()
Kuninori Morimoto (2):
mailbox: remove unneeded double quotation
mailbox: renesas: Support MFIS mailbox driver
Pierre-Henry Moussay (1):
dt-bindings: mbox: add pic64gx mailbox compatibility to mpfs mailbox
Sudeep Holla (6):
Revert "mailbox/pcc: support mailbox management of the shared buffer"
mailbox: pcc: Wire up ->last_tx_done() for PCC channels
mailbox: pcc: Set txdone_irq/txdone_poll based on PCCT flags
mailbox: pcc: Mark Tx as complete in PCC IRQ handler
mailbox: pcc: Initialize SHMEM before binding the channel with the client
mailbox: pcc: Clear any pending responder interrupts before enabling it
Valentina Fernandez (1):
mailbox: mchp-ipc-sbi: fix out-of-bounds access in
mchp_ipc_get_cluster_aggr_irq()
.../bindings/mailbox/mediatek,mt8196-vcp-mbox.yaml | 49 ++++++
.../bindings/mailbox/microchip,mpfs-mailbox.yaml | 6 +-
.../bindings/mailbox/qcom,cpucp-mbox.yaml | 1 +
.../devicetree/bindings/mailbox/qcom-ipcc.yaml | 2 +
drivers/mailbox/Kconfig | 22 ++-
drivers/mailbox/Makefile | 4 +
drivers/mailbox/mailbox-mchp-ipc-sbi.c | 22 +--
drivers/mailbox/mailbox.c | 6 +-
drivers/mailbox/mtk-cmdq-mailbox.c | 72 ++++++++-
drivers/mailbox/mtk-vcp-mailbox.c | 170 +++++++++++++++++++++
drivers/mailbox/pcc.c | 118 +++-----------
drivers/mailbox/rcar-mfis-mailbox.c | 168 ++++++++++++++++++++
include/acpi/pcc.h | 29 ----
include/linux/mailbox/mtk-cmdq-mailbox.h | 19 ++-
include/linux/mailbox/mtk-vcp-mailbox.h | 32 ++++
15 files changed, 567 insertions(+), 153 deletions(-)
create mode 100644
Documentation/devicetree/bindings/mailbox/mediatek,mt8196-vcp-mbox.yaml
create mode 100644 drivers/mailbox/mtk-vcp-mailbox.c
create mode 100644 drivers/mailbox/rcar-mfis-mailbox.c
create mode 100644 include/linux/mailbox/mtk-vcp-mailbox.h
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [GIT PULL] Mailbox changes for v6.19
2025-12-10 23:31 [GIT PULL] Mailbox changes for v6.19 Jassi Brar
@ 2025-12-11 0:23 ` Stephen Rothwell
2025-12-11 3:30 ` Jassi Brar
2025-12-11 3:28 ` Jassi Brar
2026-01-14 8:36 ` Jingyi Wang
2 siblings, 1 reply; 7+ messages in thread
From: Stephen Rothwell @ 2025-12-11 0:23 UTC (permalink / raw)
To: Jassi Brar; +Cc: Linus Torvalds, linux-arm-kernel, Linux Kernel Mailing List
[-- Attachment #1: Type: text/plain, Size: 318 bytes --]
Hi Jassi,
On Wed, 10 Dec 2025 17:31:04 -0600 Jassi Brar <jassisinghbrar@gmail.com> wrote:
>
> mailbox: mtk-cmdq: Remove unsued cmdq_get_shift_pa()
This commit causes a build failure.
I am disappointed that none of these commits have been in linux-next
until today.
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [GIT PULL] Mailbox changes for v6.19
2025-12-10 23:31 [GIT PULL] Mailbox changes for v6.19 Jassi Brar
2025-12-11 0:23 ` Stephen Rothwell
@ 2025-12-11 3:28 ` Jassi Brar
2025-12-11 3:44 ` Linus Torvalds
2026-01-15 10:42 ` Sudeep Holla
2026-01-14 8:36 ` Jingyi Wang
2 siblings, 2 replies; 7+ messages in thread
From: Jassi Brar @ 2025-12-11 3:28 UTC (permalink / raw)
To: Linus Torvalds, linux-arm-kernel, Linux Kernel Mailing List
Hi Linus,
The following changes since commit 7d0a66e4bb9081d75c82ec4957c50034cb0ea449:
Linux 6.18 (2025-11-30 14:42:10 -0800)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/jassibrar/mailbox.git
tags/mailbox-v6.19
for you to fetch changes up to 1ec6e0e8c0dd6599472af944b8d703d526ff1031:
mailbox: mtk-cmdq: Add driver data to support for MT8196 (2025-12-10
17:17:01 -0600)
----------------------------------------------------------------
pcc: refactor and improve initialisation and interrupt handling
qcom: enable Kaanapali and Glymur platforms
renesas: add MFIS mailbox driver
mediatek: add mtk-vcp-mailbox driver and bindings
add support for MT8196 into mtk-cmdq
misc: remove unneeded double quotation in Kconfig
drop POLARFIRE from ARCH_MICROCHIP_POLARFIRE
fix out-of-bounds access in mchp_ipc_get_cluster_aggr_irq
----------------------------------------------------------------
Conor Dooley (1):
mailbox: mpfs: drop POLARFIRE from ARCH_MICROCHIP_POLARFIRE
Jason-JH Lin (4):
mailbox: mtk-cmdq: Add cmdq private data to cmdq_pkt for
generating instruction
mailbox: mtk-cmdq: Add GCE hardware virtualization configuration
mailbox: mtk-cmdq: Add mminfra_offset configuration for DRAM transaction
mailbox: mtk-cmdq: Add driver data to support for MT8196
Jingyi Wang (2):
dt-bindings: mailbox: qcom: Add IPCC support for Kaanapali and
Glymur Platforms
dt-bindings: mailbox: qcom: Add CPUCP mailbox controller
bindings for Kaanapali
Jjian Zhou (2):
dt-bindings: mailbox: mediatek,mt8196-vcp-mbox: add mtk vcp-mbox document
mailbox: mediatek: Add mtk-vcp-mailbox driver
Joonwon Kang (1):
mailbox: Prevent out-of-bounds access in fw_mbox_index_xlate()
Kuninori Morimoto (2):
mailbox: remove unneeded double quotation
mailbox: renesas: Support MFIS mailbox driver
Pierre-Henry Moussay (1):
dt-bindings: mbox: add pic64gx mailbox compatibility to mpfs mailbox
Sudeep Holla (6):
Revert "mailbox/pcc: support mailbox management of the shared buffer"
mailbox: pcc: Wire up ->last_tx_done() for PCC channels
mailbox: pcc: Set txdone_irq/txdone_poll based on PCCT flags
mailbox: pcc: Mark Tx as complete in PCC IRQ handler
mailbox: pcc: Initialize SHMEM before binding the channel with the client
mailbox: pcc: Clear any pending responder interrupts before enabling it
Valentina Fernandez (1):
mailbox: mchp-ipc-sbi: fix out-of-bounds access in
mchp_ipc_get_cluster_aggr_irq()
.../bindings/mailbox/mediatek,mt8196-vcp-mbox.yaml | 49 ++++++
.../bindings/mailbox/microchip,mpfs-mailbox.yaml | 6 +-
.../bindings/mailbox/qcom,cpucp-mbox.yaml | 1 +
.../devicetree/bindings/mailbox/qcom-ipcc.yaml | 2 +
drivers/mailbox/Kconfig | 22 ++-
drivers/mailbox/Makefile | 4 +
drivers/mailbox/mailbox-mchp-ipc-sbi.c | 22 +--
drivers/mailbox/mailbox.c | 6 +-
drivers/mailbox/mtk-cmdq-mailbox.c | 74 ++++++++-
drivers/mailbox/mtk-vcp-mailbox.c | 170 +++++++++++++++++++++
drivers/mailbox/pcc.c | 118 +++-----------
drivers/mailbox/rcar-mfis-mailbox.c | 168 ++++++++++++++++++++
include/acpi/pcc.h | 29 ----
include/linux/mailbox/mtk-cmdq-mailbox.h | 19 +++
include/linux/mailbox/mtk-vcp-mailbox.h | 32 ++++
15 files changed, 578 insertions(+), 144 deletions(-)
create mode 100644
Documentation/devicetree/bindings/mailbox/mediatek,mt8196-vcp-mbox.yaml
create mode 100644 drivers/mailbox/mtk-vcp-mailbox.c
create mode 100644 drivers/mailbox/rcar-mfis-mailbox.c
create mode 100644 include/linux/mailbox/mtk-vcp-mailbox.h
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [GIT PULL] Mailbox changes for v6.19
2025-12-11 0:23 ` Stephen Rothwell
@ 2025-12-11 3:30 ` Jassi Brar
0 siblings, 0 replies; 7+ messages in thread
From: Jassi Brar @ 2025-12-11 3:30 UTC (permalink / raw)
To: Stephen Rothwell
Cc: Linus Torvalds, linux-arm-kernel, Linux Kernel Mailing List
On Wed, Dec 10, 2025 at 6:23 PM Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Hi Jassi,
>
> On Wed, 10 Dec 2025 17:31:04 -0600 Jassi Brar <jassisinghbrar@gmail.com> wrote:
> >
> > mailbox: mtk-cmdq: Remove unsued cmdq_get_shift_pa()
>
> This commit causes a build failure.
>
> I am disappointed that none of these commits have been in linux-next
> until today.
>
Sorry, I will take care of that in the future.
Regards,
Jassi
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [GIT PULL] Mailbox changes for v6.19
2025-12-11 3:28 ` Jassi Brar
@ 2025-12-11 3:44 ` Linus Torvalds
2026-01-15 10:42 ` Sudeep Holla
1 sibling, 0 replies; 7+ messages in thread
From: Linus Torvalds @ 2025-12-11 3:44 UTC (permalink / raw)
To: Jassi Brar; +Cc: linux-arm-kernel, Linux Kernel Mailing List
On Thu, 11 Dec 2025 at 12:29, Jassi Brar <jassisinghbrar@gmail.com> wrote:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/jassibrar/mailbox.git
> tags/mailbox-v6.19
No.
This is now the second pull request I get today that came in late in
the merge window. Rebased today, because the first version didn't even
build.
Do it right, do it timely, and don't send me crap that was rebased the
same day because it wasn't ready before the merge window started.
In other words - do it next merge window.
Linus
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [GIT PULL] Mailbox changes for v6.19
2025-12-10 23:31 [GIT PULL] Mailbox changes for v6.19 Jassi Brar
2025-12-11 0:23 ` Stephen Rothwell
2025-12-11 3:28 ` Jassi Brar
@ 2026-01-14 8:36 ` Jingyi Wang
2 siblings, 0 replies; 7+ messages in thread
From: Jingyi Wang @ 2026-01-14 8:36 UTC (permalink / raw)
To: Jassi Brar, linux-arm-kernel, Linux Kernel Mailing List
Hi Jassi,
On 12/11/2025 7:31 AM, Jassi Brar wrote:
> Hi Linus,
> The following changes since commit 7d0a66e4bb9081d75c82ec4957c50034cb0ea449:
>
> Linux 6.18 (2025-11-30 14:42:10 -0800)
>
> are available in the Git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/jassibrar/mailbox.git
> tags/mailbox-v6.19
>
> for you to fetch changes up to 175956b6672f93491da9c78d686f310311f0855e:
>
> mailbox: mtk-cmdq: Remove unsued cmdq_get_shift_pa() (2025-12-10
> 17:17:01 -0600)
>
> ----------------------------------------------------------------
> pcc: refactor and improve initialisation and interrupt handling
> qcom: enable Kaanapali and Glymur platforms
> renesas: add MFIS mailbox driver
> mediatek: add mtk-vcp-mailbox driver and bindings
> add support for MT8196 into mtk-cmdq
> misc: mtk-cmdq: Remove unsued cmdq_get_shift_pa
> remove unneeded double quotation in Kconfig
> drop POLARFIRE from ARCH_MICROCHIP_POLARFIRE
> fix out-of-bounds access in mchp_ipc_get_cluster_aggr_irq
>
> ----------------------------------------------------------------
> Conor Dooley (1):
> mailbox: mpfs: drop POLARFIRE from ARCH_MICROCHIP_POLARFIRE
>
> Jason-JH Lin (5):
> mailbox: mtk-cmdq: Add cmdq private data to cmdq_pkt for
> generating instruction
> mailbox: mtk-cmdq: Add GCE hardware virtualization configuration
> mailbox: mtk-cmdq: Add mminfra_offset configuration for DRAM transaction
> mailbox: mtk-cmdq: Add driver data to support for MT8196
> mailbox: mtk-cmdq: Remove unsued cmdq_get_shift_pa()
>
I checked the 2 commit below on the latest tag, seems that they were lost
on linux-next tag later than next-20260106, which will cause dt-check
regression.
> Jingyi Wang (2):
> dt-bindings: mailbox: qcom: Add IPCC support for Kaanapali and
> Glymur Platforms
> dt-bindings: mailbox: qcom: Add CPUCP mailbox controller
> bindings for Kaanapali
>
Thanks,
Jingyi
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [GIT PULL] Mailbox changes for v6.19
2025-12-11 3:28 ` Jassi Brar
2025-12-11 3:44 ` Linus Torvalds
@ 2026-01-15 10:42 ` Sudeep Holla
1 sibling, 0 replies; 7+ messages in thread
From: Sudeep Holla @ 2026-01-15 10:42 UTC (permalink / raw)
To: Jassi Brar, Sudeep Holla, Stephen Rothwell, Mark Brown
Cc: linux-arm-kernel, Linux Kernel Mailing List
Hi Jassi,
On Wed, Dec 10, 2025 at 09:28:56PM -0600, Jassi Brar wrote:
> Hi Linus,
> The following changes since commit 7d0a66e4bb9081d75c82ec4957c50034cb0ea449:
>
> Linux 6.18 (2025-11-30 14:42:10 -0800)
>
> are available in the Git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/jassibrar/mailbox.git
> tags/mailbox-v6.19
>
> for you to fetch changes up to 1ec6e0e8c0dd6599472af944b8d703d526ff1031:
>
> mailbox: mtk-cmdq: Add driver data to support for MT8196 (2025-12-10
> 17:17:01 -0600)
>
> ----------------------------------------------------------------
> pcc: refactor and improve initialisation and interrupt handling
> qcom: enable Kaanapali and Glymur platforms
> renesas: add MFIS mailbox driver
> mediatek: add mtk-vcp-mailbox driver and bindings
> add support for MT8196 into mtk-cmdq
> misc: remove unneeded double quotation in Kconfig
> drop POLARFIRE from ARCH_MICROCHIP_POLARFIRE
> fix out-of-bounds access in mchp_ipc_get_cluster_aggr_irq
>
> ----------------------------------------------------------------
All these changes that were missed in the v6.19 merge window were accidentally
dropped from your -next(and hence the linux-next tree), I suppose, as they
were present until about 10 days ago. This is not ideal, and the pull request
may get rejected again if they are not in -next for some time before the next
merge window.
Could you please have a look at it?.
--
Regards,
Sudeep
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-01-15 10:42 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-10 23:31 [GIT PULL] Mailbox changes for v6.19 Jassi Brar
2025-12-11 0:23 ` Stephen Rothwell
2025-12-11 3:30 ` Jassi Brar
2025-12-11 3:28 ` Jassi Brar
2025-12-11 3:44 ` Linus Torvalds
2026-01-15 10:42 ` Sudeep Holla
2026-01-14 8:36 ` Jingyi Wang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox