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 for Android: free password hash cracker in your pocket
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Tue,  6 Jul 2021 16:02:28 -0500
From:   Bjorn Andersson <bjorn.andersson@...aro.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, Peng Fan <peng.fan@....com>,
        Suman Anna <s-anna@...com>,
        Siddharth Gupta <sidgup@...eaurora.org>,
        Stephan Gerhold <stephan@...hold.net>,
        Arnaud Pouliquen <arnaud.pouliquen@...s.st.com>,
        Arnd Bergmann <arnd@...db.de>,
        Christophe JAILLET <christophe.jaillet@...adoo.fr>,
        Manivannan Sadhasivam <mani@...nel.org>,
        Yassine Oudjana <y.oudjana@...tonmail.com>
Subject: [GIT PULL] remoteproc updates for v5.14

The following changes since commit c16ced60f3bf4aeba85e638f2186c468d7892ee0:

  dt-bindings: remoteproc: k3-r5f: Update bindings for AM64x SoCs (2021-05-27 22:10:22 -0500)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git tags/rproc-v5.14

for you to fetch changes up to aef6a521e5bf61b3be4567f6c88776956a6d8b32:

  remoteproc: qcom: pas: Add SC8180X adsp, cdsp and mpss (2021-06-25 17:43:35 -0500)

----------------------------------------------------------------
remoteproc updates for v5.14

This adds support for controlling the PRU and R5F clusters on the TI
AM64x, the remote processor in i.MX7ULP, i.MX8MN/P and i.MX8ULP NXP and
the audio, compute and modem remoteprocs in the Qualcomm SC8180x
platform.

It fixes improper ordering of cdev and device creation of the remoteproc
control interface and it fixes resource leaks in the error handling path
of rproc_add() and the Qualcomm modem and wifi remoteproc drivers.

Lastly it fixes a few build warnings and replace the dummy parameter
passed in the mailbox api of the stm32 driver to something not living on
the stack.

----------------------------------------------------------------
Arnaud Pouliquen (1):
      remoteproc: stm32: fix mbox_send_message call

Arnd Bergmann (1):
      remoteproc: stm32: fix phys_addr_t format string

Bjorn Andersson (3):
      Merge tag '20210327143117.1840-2-s-anna@...com' into rproc-next
      dt-bindings: remoteproc: qcom: pas: Add SC8180X adsp, cdsp and mpss
      remoteproc: qcom: pas: Add SC8180X adsp, cdsp and mpss

Christophe JAILLET (1):
      remoteproc: k3-r5: Fix an error message

Manivannan Sadhasivam (1):
      dt-bindings: remoteproc: qcom: pas: Convert binding to YAML

Peng Fan (11):
      dt-bindings: remoteproc: imx_rproc: add fsl,auto-boot property
      dt-bindings: remoteproc: imx_rproc: add i.MX7ULP support
      dt-bindings: remoteproc: imx_rproc: support i.MX8MN/P
      remoteproc: imx_rproc: parse fsl,auto-boot
      remoteproc: imx_rproc: initial support for mutilple start/stop method
      remoteproc: imx_rproc: make clk optional
      remoteproc: imx_rproc: support i.MX7ULP
      remoteproc: imx_rproc: support i.MX8MN/P
      remoteproc: imx-rproc: Fix IMX_REMOTEPROC configuration
      dt-bindings: remoteproc: imx_rproc: support i.MX8ULP
      remoteproc: imx_rproc: support i.MX8ULP

Siddharth Gupta (4):
      remoteproc: core: Move cdev add before device add
      remoteproc: core: Move validate before device add
      remoteproc: core: Fix cdev remove and rproc del
      remoteproc: core: Cleanup device in case of failure

Stephan Gerhold (3):
      soc: qcom: smem_state: Add devm_qcom_smem_state_get()
      remoteproc: qcom_q6v5: Use devm_qcom_smem_state_get() to fix missing put()
      remoteproc: qcom_wcnss: Use devm_qcom_smem_state_get()

Suman Anna (6):
      remoteproc: Add kernel-doc comment for is_iomem
      remoteproc: Fix various kernel-doc warnings
      remoteproc: k3-r5: Extend support to R5F clusters on AM64x SoCs
      dt-bindings: remoteproc: qcom: pas: Fix indentation warnings
      dt-bindings: remoteproc: pru: Update bindings for K3 AM64x SoCs
      remoteproc: pru: Add support for various PRU cores on K3 AM64x SoCs

Yassine Oudjana (1):
      dt-bindings: remoteproc: qcom: pas: Add power domains for MSM8996

 .../bindings/remoteproc/fsl,imx-rproc.yaml         |  12 +-
 .../devicetree/bindings/remoteproc/qcom,adsp.txt   | 228 ---------
 .../devicetree/bindings/remoteproc/qcom,adsp.yaml  | 547 +++++++++++++++++++++
 .../bindings/remoteproc/ti,pru-rproc.yaml          |   5 +
 drivers/remoteproc/Kconfig                         |   1 +
 drivers/remoteproc/imx_rproc.c                     | 209 ++++++--
 drivers/remoteproc/pru_rproc.c                     |   3 +
 drivers/remoteproc/qcom_q6v5.c                     |   2 +-
 drivers/remoteproc/qcom_q6v5_pas.c                 |  22 +
 drivers/remoteproc/qcom_wcnss.c                    |   5 +-
 drivers/remoteproc/remoteproc_cdev.c               |   2 +-
 drivers/remoteproc/remoteproc_core.c               |  72 ++-
 drivers/remoteproc/remoteproc_elf_loader.c         |  12 +-
 drivers/remoteproc/remoteproc_virtio.c             |   6 +-
 drivers/remoteproc/stm32_rproc.c                   |  16 +-
 drivers/remoteproc/ti_k3_r5_remoteproc.c           | 151 ++++--
 drivers/soc/qcom/smem_state.c                      |  36 ++
 include/linux/remoteproc.h                         |  50 +-
 include/linux/soc/qcom/smem_state.h                |   8 +
 19 files changed, 1028 insertions(+), 359 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/remoteproc/qcom,adsp.txt
 create mode 100644 Documentation/devicetree/bindings/remoteproc/qcom,adsp.yaml

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ