All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/4] Add remoteproc driver for DSP on i.MX
@ 2021-09-08  9:10 ` Shengjiu Wang
  0 siblings, 0 replies; 50+ messages in thread
From: Shengjiu Wang @ 2021-09-08  9:10 UTC (permalink / raw)
  To: ohad, bjorn.andersson, mathieu.poirier, robh+dt, shawnguo,
	s.hauer, kernel, festevam, daniel.baluta
  Cc: linux-imx, linux-remoteproc, devicetree, linux-arm-kernel,
	linux-kernel, shengjiu.wang

Provide a basic driver to control DSP processor found on NXP i.MX8QM,
i.MX8QXP, i.MX8MP and i.MX8ULP.

Currently it is able to resolve addresses between DSP and main CPU,
start and stop the processor, suspend and resume.

The communication between DSP and main CPU is based on mailbox, there
are three mailbox channels (tx, rx, rxdb).

This driver was tested on NXP i.MX8QM, i.MX8QXP, i.MX8MP and i.MX8ULP.

changes in v4:
- merge binding doc to fsl,dsp.yaml for Rob's comments

changes in v3:
- Add this cover letter
- refine clock-names according to Rob's comments
- move common struct from imx_rproc.c to header file
- add IMX_RPROC_SCU_API enum item
- refine driver according to Mathieu's comments

changes in v2:
- change syscon to fsl,dsp-ctrl
- add items for clock-names

Shengjiu Wang (4):
  remoteproc: imx_rproc: Move common structure to header file
  remoteproc: imx_rproc: Add IMX_RPROC_SCU_API method
  remoteproc: imx_dsp_rproc: Add remoteproc driver for DSP on i.MX
  dt-bindings: dsp: fsl: update binding document for remote proc driver

 .../devicetree/bindings/dsp/fsl,dsp.yaml      |   81 +-
 drivers/remoteproc/Kconfig                    |   11 +
 drivers/remoteproc/Makefile                   |    1 +
 drivers/remoteproc/imx_dsp_rproc.c            | 1178 +++++++++++++++++
 drivers/remoteproc/imx_rproc.c                |   28 +-
 drivers/remoteproc/imx_rproc.h                |   39 +
 6 files changed, 1305 insertions(+), 33 deletions(-)
 create mode 100644 drivers/remoteproc/imx_dsp_rproc.c
 create mode 100644 drivers/remoteproc/imx_rproc.h

-- 
2.17.1


^ permalink raw reply	[flat|nested] 50+ messages in thread

end of thread, other threads:[~2021-09-23  1:50 UTC | newest]

Thread overview: 50+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-08  9:10 [PATCH v4 0/4] Add remoteproc driver for DSP on i.MX Shengjiu Wang
2021-09-08  9:10 ` Shengjiu Wang
2021-09-08  9:10 ` [PATCH v4 1/4] remoteproc: imx_rproc: Move common structure to header file Shengjiu Wang
2021-09-08  9:10   ` Shengjiu Wang
2021-09-14 17:46   ` Mathieu Poirier
2021-09-14 17:46     ` Mathieu Poirier
2021-09-08  9:10 ` [PATCH v4 2/4] remoteproc: imx_rproc: Add IMX_RPROC_SCU_API method Shengjiu Wang
2021-09-08  9:10   ` Shengjiu Wang
2021-09-14 17:47   ` Mathieu Poirier
2021-09-14 17:47     ` Mathieu Poirier
2021-09-08  9:10 ` [PATCH v4 3/4] remoteproc: imx_dsp_rproc: Add remoteproc driver for DSP on i.MX Shengjiu Wang
2021-09-08  9:10   ` Shengjiu Wang
2021-09-14 17:56   ` Mathieu Poirier
2021-09-14 17:56     ` Mathieu Poirier
2021-09-15  3:09     ` Shengjiu Wang
2021-09-15  3:09       ` Shengjiu Wang
2021-09-15 16:16   ` Mathieu Poirier
2021-09-15 16:16     ` Mathieu Poirier
2021-09-16 10:44     ` Shengjiu Wang
2021-09-16 10:44       ` Shengjiu Wang
2021-09-16 16:59       ` Mathieu Poirier
2021-09-16 16:59         ` Mathieu Poirier
2021-09-17  5:20         ` Shengjiu Wang
2021-09-17  5:20           ` Shengjiu Wang
2021-09-17  9:44           ` Shengjiu Wang
2021-09-17  9:44             ` Shengjiu Wang
2021-09-17 15:22             ` Mathieu Poirier
2021-09-17 15:22               ` Mathieu Poirier
2021-09-22  1:35               ` Shengjiu Wang
2021-09-22  1:35                 ` Shengjiu Wang
2021-09-22 17:55                 ` Mathieu Poirier
2021-09-22 17:55                   ` Mathieu Poirier
2021-09-23  1:48                   ` Shengjiu Wang
2021-09-23  1:48                     ` Shengjiu Wang
2021-09-16 17:23   ` Mathieu Poirier
2021-09-16 17:23     ` Mathieu Poirier
2021-09-17  6:04     ` Shengjiu Wang
2021-09-17  6:04       ` Shengjiu Wang
2021-09-08  9:10 ` [PATCH v4 4/4] dt-bindings: dsp: fsl: update binding document for remote proc driver Shengjiu Wang
2021-09-08  9:10   ` Shengjiu Wang
2021-09-10 12:51   ` Daniel Baluta
2021-09-10 12:51     ` Daniel Baluta
2021-09-10 21:43   ` Rob Herring
2021-09-10 21:43     ` Rob Herring
2021-09-13  2:49     ` Shengjiu Wang
2021-09-13  2:49       ` Shengjiu Wang
2021-09-13 17:08       ` Mathieu Poirier
2021-09-13 17:08         ` Mathieu Poirier
2021-09-14 11:45     ` Daniel Baluta
2021-09-14 11:45       ` Daniel Baluta

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.