mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Jjian Zhou (周建)" <Jjian.Zhou@mediatek.com>
To: "jassisinghbrar@gmail.com" <jassisinghbrar@gmail.com>,
	"robh@kernel.org" <robh@kernel.org>,
	"krzk+dt@kernel.org" <krzk+dt@kernel.org>,
	"wenst@chromium.org" <wenst@chromium.org>,
	"conor+dt@kernel.org" <conor+dt@kernel.org>,
	AngeloGioacchino Del Regno
	<angelogioacchino.delregno@collabora.com>,
	"matthias.bgg@gmail.com" <matthias.bgg@gmail.com>
Cc: "linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-mediatek@lists.infradead.org"
	<linux-mediatek@lists.infradead.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	Project_Global_Chrome_Upstream_Group
	<Project_Global_Chrome_Upstream_Group@mediatek.com>
Subject: Re: [PATCH v9 0/2] add VCP mailbox driver
Date: Fri, 24 Oct 2025 02:56:53 +0000	[thread overview]
Message-ID: <2aea1bc042eac7e2192bf687c597ecf3e18854e9.camel@mediatek.com> (raw)
In-Reply-To: <20251013063146.17919-1-jjian.zhou@mediatek.com>

On Mon, 2025-10-13 at 14:31 +0800, Jjian Zhou wrote:

This email is just a reminder to review the patch:

https://patchwork.kernel.org/project/linux-mediatek/patch/20251013063146.17919-3-jjian.zhou@mediatek.com/

> Hi everyone,
> 
> This is v9 of my VCP mailbox driver.
> 
> Changes since v9:
> - Add "Reviewed-by: AngeloGioacchino Del Regno <
> angelogioacchino.delregno@collabora.com>"
> 
> Changes since v8:
> - Rebase onto next-20251008 and fixed build breaks.
> 
> Changes since v7:
> - mtk-vcp-mailbox.c:
>   - Change type u32 to u16.
>   - Change BIT(ipi_info->index) to if.
>   - Put the platform_set_drvdata between "of_device_get_match_data"
>     and "platform_get_irq".
> - mtk-vcp-mailbox.h
>   - Modify the definition to MTK_VCP_MBOX_SLOT_MAX_SIZE.
> 
> Changes since v6:
> - mtk-vcp-mailbox.c:
>   - Replace mtk_vcp_mbox_priv with mtk_vcp_mbox.
>   - Move mbox_controller to the first member.
>   - Define "struct mbox_chan chan"; Remove allocate one during the
> probe.
>   - Remove API get_mtk_vcp_mbox_priv.
>   - Pass the private data since there's only one mailbox.
>   - Modify mtk_vcp_mbox_xlate "return &mbox->chans[0]".
> 
> Changes since v5:
> - binding:
>   - Patch 1 fix 'make dt_binding_check' errors.
>   - Link to v5
>     
> https://patchwork.kernel.org/project/linux-mediatek/patch/20250822021217.1598-2-jjian.zhou@mediatek.com/
> 
> Changes since v4:
> - binding:
>   - Match the binding file name and compatible.
> - mtk-vcp-mailbox.c:
>   - Drop 'dev_dbg(dev, "MTK VCP mailbox initialized\n")'.
> - Since the reviewer hopes to combine the VCP IPC driver and
>   the VCP driver for a unified review, the original three patches
>   have been split into two parts: the VCP mailbox driver and
>   the binding remain together, while the VCP IPC driver is merged
>   with the VCP driver and submitted as one.
> - Link to v4
>   
> https://lore.kernel.org/all/20250820094545.23821-1-jjian.zhou@mediatek.com/
> 
> Changes since v3:
> - binding:
>   - Remove unused lable '|' and 'vcp_mailbox0'.
> - Link to v3
>   
> https://lore.kernel.org/all/20250317110331.2776-1-jjian.zhou@mediatek.com/
> 
> Changes since v1:
> - Link to v1
>   
> https://lore.kernel.org/all/20250305082047.15746-1-jjian.zhou@mediatek.com/
> 
> In the v2 version, there is ongoing discussion about whether the
> VCP's
> IPC should use mailbox or rpmsg. To prevent the discussion records
> from being lost, the previous discussion link is attached.
> 
https://lore.kernel.org/all/CAGXv+5FXqZb_v2dQNgCKbFpJrLhbVk3f0sWrrMCVk3jaWwoBqA@mail.gmail.com/
> 
> 
> Jjian Zhou (2):
>   dt-bindings: mailbox: mediatek,mt8196-vcp-mbox: add mtk vcp-mbox
>     document
>   mailbox: mediatek: Add mtk-vcp-mailbox driver
> 
>  .../mailbox/mediatek,mt8196-vcp-mbox.yaml     |  49 +++++
>  drivers/mailbox/Kconfig                       |   9 +
>  drivers/mailbox/Makefile                      |   2 +
>  drivers/mailbox/mtk-vcp-mailbox.c             | 170
> ++++++++++++++++++
>  include/linux/mailbox/mtk-vcp-mailbox.h       |  32 ++++
>  5 files changed, 262 insertions(+)
>  create mode 100644
> Documentation/devicetree/bindings/mailbox/mediatek,mt8196-vcp-
> mbox.yaml
>  create mode 100644 drivers/mailbox/mtk-vcp-mailbox.c
>  create mode 100644 include/linux/mailbox/mtk-vcp-mailbox.h
> 
> --
> 2.46.0
> 

  parent reply	other threads:[~2025-10-24  2:57 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-13  6:31 Jjian Zhou
2025-10-13  6:31 ` [PATCH v9 1/2] dt-bindings: mailbox: mediatek,mt8196-vcp-mbox: add mtk vcp-mbox document Jjian Zhou
2025-10-13  6:31 ` [PATCH v9 2/2] mailbox: mediatek: Add mtk-vcp-mailbox driver Jjian Zhou
2025-10-24  2:56 ` Jjian Zhou (周建) [this message]
2025-11-26  7:05 ` [PATCH v9 0/2] add VCP mailbox driver Jjian Zhou (周建)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2aea1bc042eac7e2192bf687c597ecf3e18854e9.camel@mediatek.com \
    --to=jjian.zhou@mediatek.com \
    --cc=Project_Global_Chrome_Upstream_Group@mediatek.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=jassisinghbrar@gmail.com \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=matthias.bgg@gmail.com \
    --cc=robh@kernel.org \
    --cc=wenst@chromium.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®