lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Mon,  6 Nov 2023 19:38:20 -0800
From:   Bjorn Andersson <andersson@...nel.org>
To:     Linus Torvalds <torvalds@...ux-foundation.org>
Cc:     Ohad Ben-Cohen <ohad@...ery.com>, linux-remoteproc@...r.kernel.org,
        linux-kernel@...r.kernel.org,
        Tinghan Shen <tinghan.shen@...iatek.com>,
        Konrad Dybcio <konrad.dybcio@...aro.org>,
        Nikita Travkin <nikita@...n.ru>,
        Tanmay Shah <tanmay.shah@....com>,
        AngeloGioacchino Del Regno 
        <angelogioacchino.delregno@...labora.com>,
        Chen Jiahao <chenjiahao16@...wei.com>,
        MD Danish Anwar <danishanwar@...com>,
        Nathan Chancellor <nathan@...nel.org>,
        Rob Herring <robh@...nel.org>
Subject: [GIT PULL] remoteproc updates for v6.7


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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ