The following changes since commit fa55b7dcdc43c1aa1ba12bca9d2dd4318c2a0dbf: Linux 5.16-rc1 (2021-11-14 13:56:52 -0800) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git tags/rproc-v5.17 for you to fetch changes up to cfcabbb24d5f4e52ce2e7797cbcfacd8fe932fb6: remoteproc: stm32: Improve crash recovery time (2022-01-03 11:40:45 -0700) ---------------------------------------------------------------- remoteproc updates for v5.17 This introduces support for controlling the Cortex R7 co-processor in Renesas Gen3, support for R5F clusters and C71x DSPs on TI J721S2 and compute, audio and modem subsystems on Qualcomm SM6350. It fixes a couple of sparse errors related to memcpy_to/fromio and corrects the kerneldoc spelling of "Return:". The stm32 driver no longer attempts to communicate with the remote after the firmware has crashed. ---------------------------------------------------------------- Arnaud Pouliquen (2): remoteproc: Fix remaining wrong return formatting in documentation remoteproc: stm32: Improve crash recovery time Christophe JAILLET (1): remoteproc: imx_rproc: Fix a resource leak in the remove function Hari Nagalla (4): dt-bindings: remoteproc: k3-r5f: Update bindings for J721S2 SoCs dt-bindings: remoteproc: k3-dsp: Update bindings for J721S2 SoCs remoteproc: k3-dsp: Extend support for C71x DSPs on J721S2 SoCs remoteproc: k3-r5: Extend support for R5F clusters on J721S2 SoCs Julien Massot (5): soc: renesas: rcar-rst: Add support to set rproc boot address dt-bindings: remoteproc: Add Renesas R-Car remoteproc: Add Renesas rcar driver remoteproc: rcar_rproc: Fix pm_runtime_get_sync error check remoteproc: rcar_rproc: Remove trailing semicolon Lars-Peter Clausen (1): remoteproc: ingenic: Request IRQ disabled Luca Weiss (4): dt-bindings: remoteproc: qcom: pas: Add SM6350 adsp, cdsp & mpss remoteproc: qcom: pas: Add SM6350 MPSS support remoteproc: qcom: pas: Add SM6350 ADSP support remoteproc: qcom: pas: Add SM6350 CDSP support Mark-PK Tsai (1): remoteproc: Use %pe format string to print return error code Mathieu Poirier (2): MAINTAINERS: Removing Ohad from remoteproc/rpmsg maintenance Merge tag 'rcar_rst_rproc-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel into rproc-next Peng Fan (2): remoteproc: coredump: Correct argument 2 type for memcpy_fromio remoteproc: imx_rproc: correct firmware reload Sibi Sankar (1): remoteproc: qcom: pas: Add missing power-domain "mxc" for CDSP Stephen Boyd (1): remoteproc: qcom: pil_info: Don't memcpy_toio more than is provided CREDITS | 5 + .../devicetree/bindings/remoteproc/qcom,adsp.yaml | 28 +++ .../bindings/remoteproc/renesas,rcar-rproc.yaml | 65 ++++++ .../bindings/remoteproc/ti,k3-dsp-rproc.yaml | 3 + .../bindings/remoteproc/ti,k3-r5f-rproc.yaml | 8 +- MAINTAINERS | 2 - drivers/remoteproc/Kconfig | 11 + drivers/remoteproc/Makefile | 1 + drivers/remoteproc/imx_rproc.c | 9 +- drivers/remoteproc/ingenic_rproc.c | 5 +- drivers/remoteproc/mtk_scp_ipi.c | 4 +- drivers/remoteproc/qcom_pil_info.c | 2 +- drivers/remoteproc/qcom_q6v5_pas.c | 38 ++++ drivers/remoteproc/rcar_rproc.c | 224 +++++++++++++++++++++ drivers/remoteproc/remoteproc_core.c | 4 +- drivers/remoteproc/remoteproc_coredump.c | 2 +- drivers/remoteproc/st_slim_rproc.c | 2 +- drivers/remoteproc/stm32_rproc.c | 2 +- drivers/remoteproc/ti_k3_dsp_remoteproc.c | 1 + drivers/remoteproc/ti_k3_r5_remoteproc.c | 5 +- drivers/soc/renesas/rcar-rst.c | 43 +++- include/linux/soc/renesas/rcar-rst.h | 2 + 22 files changed, 442 insertions(+), 24 deletions(-) create mode 100644 Documentation/devicetree/bindings/remoteproc/renesas,rcar-rproc.yaml create mode 100644 drivers/remoteproc/rcar_rproc.c