This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 4b42745211af Merge tag 'armsoc-soc' of git://git.kernel.org/pub/scm/lin [...] new 1e28dbbeced6 remoteproc/davinci: Use %zx for formating size_t new 3b0d1b65c19f remoteproc: qcom: adsp: Add SDM845 ADSP and CDSP support new d5269c4553a6 remoteproc: qcom: q6v5: Propagate EPROBE_DEFER new 9e004f97161d remoteproc: qcom: Rename Hexagon v5 PAS driver new ef73c22fa025 remoteproc: qcom: Rename Hexagon v5 modem driver new 0af936821185 remoteproc: qcom: pas: Add QCS404 remoteprocs new f861164526d9 dt-bindings: remoteproc: qcom: Remove additional definition tag new 9a6696155f0d dt-bindings: remoteproc: Add PDC reset binding for Q6V5 PIL new 9e483efd3470 remoteproc: qcom: q6v5-pil: Explicitly get mss_restart line new 29a5f9aaf9d3 remoteproc: qcom: q6v5-pil: Add PDC reset for modem on SDM [...] new faeadbb64094 remoteproc: Check for NULL firmwares in sysfs interface new 1bb89893d4fa remoteproc: Add missing kernel-doc comment for auto-boot new d3ae96c0e6b0 remoteproc: qcom: q6v5: Fix a race condition on fatal crash new 159accc4d05d dt-binding: remoteproc: Add QTI ADSP PIL bindings new dc160e449122 remoteproc: qcom: Introduce Non-PAS ADSP PIL driver new 3bf62eb77c79 remoteproc: qcom: q6v5-pil: Assign the relocated address new bbcda3027175 remoteproc: qcom: q6v5-mss: add SCM probe dependency new 3bc8140b157c remoteproc: configure IOMMU only if device address requested new eb30596eae94 remoteproc: add rproc_va_to_pa function new f2e74abfaad4 remoteproc: add release ops in rproc_mem_entry struct new 3265230c5b05 remoteproc: add name in rproc_mem_entry struct new 72029c901a02 remoteproc: add helper function to allocate and init rproc [...] new 15c0b0258e4f remoteproc: introduce rproc_add_carveout function new b0019ccd7e90 remoteproc: introduce rproc_find_carveout_by_name function new d7c51706d095 remoteproc: add alloc ops in rproc_mem_entry struct new 1429cca1175f remoteproc: add helper function to allocate rproc_mem_entr [...] new c874bf59add0 remoteproc: add helper function to check carveout device address new ffa5f9c84810 remoteproc: modify rproc_handle_carveout to support pre-re [...] new 6e6b1ada0c6a remoteproc: qcom: qcom_q6v5_adsp: Fix some return value check new 1e2517d12617 remoteproc: qcom: q6v5: shore up resource probe handling new c6aed238b7a9 remoteproc: modify vring allocation to rely on centralized [...] new 3952105df472 remoteproc: Introduce custom dump function for each remote [...] new ab8f873bb90d remoteproc: Add mechanism for custom dump function assignment new 0304530ddd29 remoteproc: qcom: q6v5-mss: Refactor mba load/unload sequence new 7dd8ade24dc2 remoteproc: qcom: q6v5-mss: Add custom dump function for modem new f18b7e914fd2 remoteproc: qcom: q6v5-mss: Register segments/dumpfn for coredump new 929e134c43c9 Merge tag 'rproc-v4.20' of git://github.com/andersson/remoteproc new ccf45b18ce89 rpmsg: char: Migrate to iter versions of read and write new c8a54c0c9a7d rpmsg: Convert to using %pOFn instead of device_node.name new f0beb4ba9b18 rpmsg: glink: Remove chunk size word align warning new 940c620d6af8 rpmsg: smd: fix memory leak on channel create new 928002a5e9da rpmsg: glink: smem: Support rx peak for size less than 4 bytes new 11743c56785c Merge tag 'rpmsg-v4.20' of git://github.com/andersson/remoteproc
The 43 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: .../bindings/remoteproc/qcom,adsp-pil.txt | 126 +++++ .../devicetree/bindings/remoteproc/qcom,adsp.txt | 5 + .../devicetree/bindings/remoteproc/qcom,q6v5.txt | 8 +- drivers/remoteproc/Kconfig | 46 +- drivers/remoteproc/Makefile | 5 +- drivers/remoteproc/da8xx_remoteproc.c | 2 +- drivers/remoteproc/qcom_q6v5.c | 43 +- drivers/remoteproc/qcom_q6v5_adsp.c | 497 +++++++++++++++++ .../{qcom_q6v5_pil.c => qcom_q6v5_mss.c} | 420 ++++++++++----- .../{qcom_adsp_pil.c => qcom_q6v5_pas.c} | 28 +- drivers/remoteproc/remoteproc_core.c | 595 +++++++++++++++++---- drivers/remoteproc/remoteproc_debugfs.c | 1 + drivers/remoteproc/remoteproc_internal.h | 2 + drivers/remoteproc/remoteproc_sysfs.c | 5 + drivers/remoteproc/remoteproc_virtio.c | 14 +- drivers/rpmsg/qcom_glink_native.c | 3 - drivers/rpmsg/qcom_glink_smem.c | 14 +- drivers/rpmsg/qcom_smd.c | 9 +- drivers/rpmsg/rpmsg_char.c | 27 +- include/linux/remoteproc.h | 47 +- 20 files changed, 1584 insertions(+), 313 deletions(-) create mode 100644 Documentation/devicetree/bindings/remoteproc/qcom,adsp-pil.txt create mode 100644 drivers/remoteproc/qcom_q6v5_adsp.c rename drivers/remoteproc/{qcom_q6v5_pil.c => qcom_q6v5_mss.c} (90%) rename drivers/remoteproc/{qcom_adsp_pil.c => qcom_q6v5_pas.c} (90%)