All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jassi Brar <jassisinghbrar@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: [GIT PULL] Mailbox changes for v5.19
Date: Wed, 25 May 2022 20:57:44 -0500	[thread overview]
Message-ID: <CABb+yY24U_2uwebN_a1M+ABVp0eqBai1c4H7oM7e0mDaGmFi0Q@mail.gmail.com> (raw)

Hi Linus,

The following changes since commit 42226c989789d8da4af1de0c31070c96726d990c:

  Linux 5.18-rc7 (2022-05-15 18:08:58 -0700)

are available in the Git repository at:

  git://git.linaro.org/landing-teams/working/fujitsu/integration.git
tags/mailbox-v5.19

for you to fetch changes up to 79f9fbe303520d2c32b70f04f2bb02cc2baaa4c3:

  mailbox: qcom-ipcc: Fix -Wunused-function with CONFIG_PM_SLEEP=n
(2022-05-24 08:08:24 -0500)

----------------------------------------------------------------
- api: hrtimer fix
- qcom: log pending irq during resume
minor cosmetic changes
- omap: use pm_runtime_resume_and_get
- imx: use pm_runtime_resume_and_get
remove redundant initializer
- mtk: added GCE header for MT8186
enable support for MT8186
- tegra: remove redundant NULL check
added hsp_sm_ops for send/recv api
support shared mailboxes
- stm: remove unsupported "wakeup" irq
- pcc: sanitize mbox allocated memory before use
- misc: documentation fixes for arm_mhu and qcom-ipcc
----------------------------------------------------------------
Björn Ardö (1):
      mailbox: forward the hrtimer if not queued and under a lock

Fabien Dessenne (1):
      dt-bindings: mailbox: remove the IPCC "wakeup" IRQ

Kartik (3):
      mailbox: tegra-hsp: Add tegra_hsp_sm_ops
      dt-bindings: tegra186-hsp: add type for shared mailboxes
      mailbox: tegra-hsp: Add 128-bit shared mailbox support

Krzysztof Kozlowski (2):
      dt-bindings: mailbox: qcom-ipcc: simplify the example
      mailbox: correct kerneldoc

Mario Limonciello (1):
      mailbox: pcc: Fix an invalid-load caught by the address sanitizer

Nathan Chancellor (1):
      mailbox: qcom-ipcc: Fix -Wunused-function with CONFIG_PM_SLEEP=n

Prasad Sodagudi (1):
      mailbox: qcom-ipcc: Log the pending interrupt during resume

Tinghan Shen (2):
      dt-bindings: mailbox: mtk,adsp-mbox: add mt8186 compatible name
      mailbox: mediatek: support mt8186 adsp mailbox

Tom Rix (1):
      mailbox: imx: remove redundant initializer

Xiaomeng Tong (1):
      mailbox: remove an unneeded NULL check on list iterator

Yongqiang Niu (1):
      dt-bindings: gce: add the GCE header file for MT8186

ran jianping (2):
      mailbox:imx: using pm_runtime_resume_and_get
      mailbox: omap: using pm_runtime_resume_and_get to simplify the code

 .../devicetree/bindings/mailbox/mtk,adsp-mbox.yaml |   7 +-
 .../bindings/mailbox/nvidia,tegra186-hsp.yaml      |   9 +
 .../devicetree/bindings/mailbox/qcom-ipcc.yaml     |  29 +-
 .../devicetree/bindings/mailbox/st,stm32-ipcc.yaml |  11 +-
 drivers/mailbox/arm_mhu_db.c                       |   2 +-
 drivers/mailbox/arm_mhuv2.c                        |   3 +-
 drivers/mailbox/imx-mailbox.c                      |   7 +-
 drivers/mailbox/mailbox.c                          |  19 +-
 drivers/mailbox/mtk-adsp-mailbox.c                 |   8 +
 drivers/mailbox/omap-mailbox.c                     |   6 +-
 drivers/mailbox/pcc.c                              |   2 +-
 drivers/mailbox/qcom-ipcc.c                        |  26 +-
 drivers/mailbox/tegra-hsp.c                        | 151 ++++++--
 include/dt-bindings/gce/mt8186-gce.h               | 421 +++++++++++++++++++++
 include/dt-bindings/mailbox/tegra186-hsp.h         |   5 +
 include/linux/mailbox_controller.h                 |   1 +
 16 files changed, 628 insertions(+), 79 deletions(-)
 create mode 100644 include/dt-bindings/gce/mt8186-gce.h

WARNING: multiple messages have this Message-ID (diff)
From: Jassi Brar <jassisinghbrar@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
	 Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: [GIT PULL] Mailbox changes for v5.19
Date: Wed, 25 May 2022 20:57:44 -0500	[thread overview]
Message-ID: <CABb+yY24U_2uwebN_a1M+ABVp0eqBai1c4H7oM7e0mDaGmFi0Q@mail.gmail.com> (raw)

Hi Linus,

The following changes since commit 42226c989789d8da4af1de0c31070c96726d990c:

  Linux 5.18-rc7 (2022-05-15 18:08:58 -0700)

are available in the Git repository at:

  git://git.linaro.org/landing-teams/working/fujitsu/integration.git
tags/mailbox-v5.19

for you to fetch changes up to 79f9fbe303520d2c32b70f04f2bb02cc2baaa4c3:

  mailbox: qcom-ipcc: Fix -Wunused-function with CONFIG_PM_SLEEP=n
(2022-05-24 08:08:24 -0500)

----------------------------------------------------------------
- api: hrtimer fix
- qcom: log pending irq during resume
minor cosmetic changes
- omap: use pm_runtime_resume_and_get
- imx: use pm_runtime_resume_and_get
remove redundant initializer
- mtk: added GCE header for MT8186
enable support for MT8186
- tegra: remove redundant NULL check
added hsp_sm_ops for send/recv api
support shared mailboxes
- stm: remove unsupported "wakeup" irq
- pcc: sanitize mbox allocated memory before use
- misc: documentation fixes for arm_mhu and qcom-ipcc
----------------------------------------------------------------
Björn Ardö (1):
      mailbox: forward the hrtimer if not queued and under a lock

Fabien Dessenne (1):
      dt-bindings: mailbox: remove the IPCC "wakeup" IRQ

Kartik (3):
      mailbox: tegra-hsp: Add tegra_hsp_sm_ops
      dt-bindings: tegra186-hsp: add type for shared mailboxes
      mailbox: tegra-hsp: Add 128-bit shared mailbox support

Krzysztof Kozlowski (2):
      dt-bindings: mailbox: qcom-ipcc: simplify the example
      mailbox: correct kerneldoc

Mario Limonciello (1):
      mailbox: pcc: Fix an invalid-load caught by the address sanitizer

Nathan Chancellor (1):
      mailbox: qcom-ipcc: Fix -Wunused-function with CONFIG_PM_SLEEP=n

Prasad Sodagudi (1):
      mailbox: qcom-ipcc: Log the pending interrupt during resume

Tinghan Shen (2):
      dt-bindings: mailbox: mtk,adsp-mbox: add mt8186 compatible name
      mailbox: mediatek: support mt8186 adsp mailbox

Tom Rix (1):
      mailbox: imx: remove redundant initializer

Xiaomeng Tong (1):
      mailbox: remove an unneeded NULL check on list iterator

Yongqiang Niu (1):
      dt-bindings: gce: add the GCE header file for MT8186

ran jianping (2):
      mailbox:imx: using pm_runtime_resume_and_get
      mailbox: omap: using pm_runtime_resume_and_get to simplify the code

 .../devicetree/bindings/mailbox/mtk,adsp-mbox.yaml |   7 +-
 .../bindings/mailbox/nvidia,tegra186-hsp.yaml      |   9 +
 .../devicetree/bindings/mailbox/qcom-ipcc.yaml     |  29 +-
 .../devicetree/bindings/mailbox/st,stm32-ipcc.yaml |  11 +-
 drivers/mailbox/arm_mhu_db.c                       |   2 +-
 drivers/mailbox/arm_mhuv2.c                        |   3 +-
 drivers/mailbox/imx-mailbox.c                      |   7 +-
 drivers/mailbox/mailbox.c                          |  19 +-
 drivers/mailbox/mtk-adsp-mailbox.c                 |   8 +
 drivers/mailbox/omap-mailbox.c                     |   6 +-
 drivers/mailbox/pcc.c                              |   2 +-
 drivers/mailbox/qcom-ipcc.c                        |  26 +-
 drivers/mailbox/tegra-hsp.c                        | 151 ++++++--
 include/dt-bindings/gce/mt8186-gce.h               | 421 +++++++++++++++++++++
 include/dt-bindings/mailbox/tegra186-hsp.h         |   5 +
 include/linux/mailbox_controller.h                 |   1 +
 16 files changed, 628 insertions(+), 79 deletions(-)
 create mode 100644 include/dt-bindings/gce/mt8186-gce.h

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

             reply	other threads:[~2022-05-26  1:58 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-26  1:57 Jassi Brar [this message]
2022-05-26  1:57 ` [GIT PULL] Mailbox changes for v5.19 Jassi Brar
2022-05-26 22:04 ` pr-tracker-bot
2022-05-26 22:04   ` pr-tracker-bot

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=CABb+yY24U_2uwebN_a1M+ABVp0eqBai1c4H7oM7e0mDaGmFi0Q@mail.gmail.com \
    --to=jassisinghbrar@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.