[GIT PULL] remoteproc updates for v5.10

From: Bjorn Andersson
Date: Thu Oct 22 2020 - 12:38:16 EST


The following changes since commit 9123e3a74ec7b934a4a099e98af6a61c2f80bbf5:

Linux 5.9-rc1 (2020-08-16 13:04:57 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 141bc97c1bfe31397b2a12e5676d0c2692c8e07e:

remoteproc/mediatek: Remove non-standard dsb() (2020-10-15 22:14:42 -0500)

----------------------------------------------------------------
remoteproc updates for v5.10

This introduces support for the Mediatek MT9182 SCP and controlling the
Cortex R5F processors found in TI K3 platforms. It clones the
longstanding debugfs interface for controlling crash handling to sysfs.
Lastly it solves a bug where after a warm reset of Qualcomm platforms
the modem would crash upon first boot.

----------------------------------------------------------------
Alexandre Courbot (1):
remoteproc: scp: add COMPILE_TEST dependency

Bjorn Andersson (1):
remoteproc/mediatek: Remove non-standard dsb()

Colin Ian King (1):
remoteproc/mediatek: fix null pointer dereference on null scp pointer

Mathieu Poirier (1):
remoteproc: stm32: Fix pointer assignement

Pi-Hsun Shih (1):
remoteproc/mediatek: Add support for mt8192 SCP

Rishabh Bhatnagar (3):
remoteproc: Change default dump configuration to "disabled"
remoteproc: Add coredump as part of sysfs interface
remoteproc: Add recovery configuration to the sysfs interface

Sibi Sankar (2):
remoteproc: qcom_q6v5: Assign mpss region to Q6 before MBA boot
remoteproc: Fixup coredump debugfs disable request

Suman Anna (4):
dt-bindings: remoteproc: Add bindings for R5F subsystem on TI K3 SoCs
remoteproc: k3-r5: Add a remoteproc driver for R5F subsystem
remoteproc: k3-r5: Initialize TCM memories for ECC
remoteproc: k3-r5: Add loading support for on-chip SRAM regions

Documentation/ABI/testing/sysfs-class-remoteproc | 44 +
.../bindings/remoteproc/ti,k3-r5f-rproc.yaml | 281 ++++
drivers/remoteproc/Kconfig | 15 +-
drivers/remoteproc/Makefile | 1 +
drivers/remoteproc/mtk_common.h | 32 +
drivers/remoteproc/mtk_scp.c | 199 ++-
drivers/remoteproc/mtk_scp_ipi.c | 9 +-
drivers/remoteproc/qcom_q6v5_mss.c | 16 +-
drivers/remoteproc/remoteproc_coredump.c | 6 +-
drivers/remoteproc/remoteproc_debugfs.c | 23 +-
drivers/remoteproc/remoteproc_sysfs.c | 119 ++
drivers/remoteproc/stm32_rproc.c | 2 +-
drivers/remoteproc/ti_k3_r5_remoteproc.c | 1395 ++++++++++++++++++++
include/linux/remoteproc.h | 8 +-
14 files changed, 2087 insertions(+), 63 deletions(-)
create mode 100644 Documentation/devicetree/bindings/remoteproc/ti,k3-r5f-rproc.yaml
create mode 100644 drivers/remoteproc/ti_k3_r5_remoteproc.c