mbox series

[v2,0/2] Add dma controller for hisi ascend310/910

Message ID 20230818100128.112491-1-guomengqi3@huawei.com (mailing list archive)
Headers show
Series Add dma controller for hisi ascend310/910 | expand

Message

guomengqi (A) Aug. 18, 2023, 10:01 a.m. UTC
The patch set add driver and device-tree bindings for a dma controller
on hisi ascend310/910 platform.

Changes in v2:
	- Use common driver apis: dev_xxx() devm_xxx()
	- Fix dts-binding properties, based on feedbacks
	- If iommu sva feature is disabled, probe will not lead to failure

Guo Mengqi (2):
  dmaengine: Add HiSilicon Ascend SDMA engine support
  dt-bindings: dma: hisi: Add bindings for Hisi Ascend sdma

 .../bindings/dma/hisi,ascend-sdma.yaml        |  75 ++
 drivers/dma/Kconfig                           |   9 +
 drivers/dma/Makefile                          |   1 +
 drivers/dma/ascend_sdma.c                     | 817 ++++++++++++++++++
 4 files changed, 902 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/dma/hisi,ascend-sdma.yaml
 create mode 100644 drivers/dma/ascend_sdma.c

Comments

Krzysztof Kozlowski Aug. 18, 2023, 12:05 p.m. UTC | #1
On 18/08/2023 12:01, Guo Mengqi wrote:
> The patch set add driver and device-tree bindings for a dma controller
> on hisi ascend310/910 platform.
> 
> Changes in v2:
> 	- Use common driver apis: dev_xxx() devm_xxx()
> 	- Fix dts-binding properties, based on feedbacks

Please be more specific, what changed?

Best regards,
Krzysztof