Linux-remoteproc Archive mirror
 help / color / mirror / Atom feed
From: Bjorn Andersson <andersson@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Ohad Ben-Cohen <ohad@wizery.com>,
	linux-remoteproc@vger.kernel.org, linux-kernel@vger.kernel.org,
	Tinghan Shen <tinghan.shen@mediatek.com>,
	Konrad Dybcio <konrad.dybcio@linaro.org>,
	Nikita Travkin <nikita@trvn.ru>,
	Tanmay Shah <tanmay.shah@amd.com>,
	AngeloGioacchino Del Regno 
	<angelogioacchino.delregno@collabora.com>,
	Chen Jiahao <chenjiahao16@huawei.com>,
	MD Danish Anwar <danishanwar@ti.com>,
	Nathan Chancellor <nathan@kernel.org>,
	Rob Herring <robh@kernel.org>
Subject: [GIT PULL] remoteproc updates for v6.7
Date: Mon,  6 Nov 2023 19:38:20 -0800	[thread overview]
Message-ID: <20231107033821.2563960-1-andersson@kernel.org> (raw)


The following changes since commit 0bb80ecc33a8fb5a682236443c1e740d5c917d1d:

  Linux 6.6-rc1 (2023-09-10 16:28:41 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git tags/rproc-v6.7

for you to fetch changes up to 3d8a18697ad834436d088d65cc66165947cfe600:

  remoteproc: st: Fix sometimes uninitialized ret in st_rproc_probe() (2023-10-16 11:24:34 -0600)

----------------------------------------------------------------
remoteproc updates for v6.7

Support for controlling the second core in Mediatek's SCP dual-core
setup is introduced.

Support for audio, compute and modem DSPs on Qualcomm SM6375, and the
audio DSP in SC7180 are introduced. The peripheral NoC clock is
dropped from MSM8996 modem DSP, as this is handled through the
interconnect provider.

In the zynqmp driver the setup for TCM memory, and device address
translation thereof, when operating in lockstep mode is corrected.

A few bug fixes and cleanups are introduces across the ST and STM32
remoteproc drivers.

----------------------------------------------------------------
AngeloGioacchino Del Regno (1):
      remoteproc: mediatek: Refactor single core check and fix retrocompatibility

Chen Jiahao (1):
      remoteproc: stm32: Clean up redundant dev_err_probe()

Konrad Dybcio (6):
      dt-bindings: remoteproc: qcom,sm6375-pas: Document remoteprocs
      remoteproc: qcom: pas: Add SM6375 ADSP & CDSP
      remoteproc: qcom: pas: Add SM6375 MPSS
      dt-bindings: remoteproc: qcom,adsp: Remove AGGRE2 clock
      dt-bindings: remoteproc: qcom,msm8996-mss-pil: Remove PNoC clock
      remoteproc: qcom: q6v5-mss: Remove PNoC clock from 8996 MSS

MD Danish Anwar (1):
      dt-bindings: remoteproc: pru: Add Interrupt property

Nathan Chancellor (1):
      remoteproc: st: Fix sometimes uninitialized ret in st_rproc_probe()

Nikita Travkin (2):
      dt-bindings: remoteproc: qcom: sc7180-pas: Add ADSP compatible
      remoteproc: qcom: pas: Add sc7180 adsp

Rob Herring (1):
      remoteproc: st: Use device_get_match_data()

Tanmay Shah (2):
      remoteproc: zynqmp: fix TCM carveouts in lockstep mode
      remoteproc: zynqmp: Change tcm address translation method

Tinghan Shen (13):
      dt-bindings: remoteproc: mediatek: Improve the rpmsg subnode definition
      dt-bindings: remoteproc: mediatek: Support MT8195 dual-core SCP
      remoteproc: mediatek: Add MT8195 SCP core 1 operations
      remoteproc: mediatek: Extract SCP common registers
      remoteproc: mediatek: Revise SCP rproc initialization flow for multi-core SCP
      remoteproc: mediatek: Probe SCP cluster on single-core SCP
      remoteproc: mediatek: Probe SCP cluster on multi-core SCP
      remoteproc: mediatek: Remove dependency of MT8195 SCP L2TCM power control on dual-core SCP
      remoteproc: mediatek: Setup MT8195 SCP core 1 SRAM offset
      remoteproc: mediatek: Handle MT8195 SCP core 1 watchdog timeout
      remoteproc: mediatek: Report watchdog crash to all cores
      remoteproc: mediatek: Refine ipi handler error message
      arm64: dts: mediatek: Update the node name of SCP rpmsg subnode

 .../devicetree/bindings/remoteproc/mtk,scp.yaml    | 176 ++++++-
 .../devicetree/bindings/remoteproc/qcom,adsp.yaml  |  20 +-
 .../bindings/remoteproc/qcom,msm8996-mss-pil.yaml  |   2 -
 .../bindings/remoteproc/qcom,sc7180-pas.yaml       |  81 +++-
 .../bindings/remoteproc/qcom,sm6375-pas.yaml       | 145 ++++++
 .../bindings/remoteproc/ti,pru-rproc.yaml          |  23 +
 arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi     |   2 +-
 arch/arm64/boot/dts/mediatek/mt8192-asurada.dtsi   |   2 +-
 drivers/remoteproc/mtk_common.h                    |  39 +-
 drivers/remoteproc/mtk_scp.c                       | 536 ++++++++++++++++-----
 drivers/remoteproc/mtk_scp_ipi.c                   |   4 +-
 drivers/remoteproc/qcom_q6v5_mss.c                 |   1 -
 drivers/remoteproc/qcom_q6v5_pas.c                 |  19 +
 drivers/remoteproc/st_remoteproc.c                 |  16 +-
 drivers/remoteproc/stm32_rproc.c                   |   4 +-
 drivers/remoteproc/xlnx_r5_remoteproc.c            | 110 ++---
 16 files changed, 932 insertions(+), 248 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/remoteproc/qcom,sm6375-pas.yaml

             reply	other threads:[~2023-11-07  3:34 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-07  3:38 Bjorn Andersson [this message]
2023-11-08  1:06 ` [GIT PULL] remoteproc updates for v6.7 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=20231107033821.2563960-1-andersson@kernel.org \
    --to=andersson@kernel.org \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=chenjiahao16@huawei.com \
    --cc=danishanwar@ti.com \
    --cc=konrad.dybcio@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-remoteproc@vger.kernel.org \
    --cc=nathan@kernel.org \
    --cc=nikita@trvn.ru \
    --cc=ohad@wizery.com \
    --cc=robh@kernel.org \
    --cc=tanmay.shah@amd.com \
    --cc=tinghan.shen@mediatek.com \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).