Kconfig 943 B

123456789101112131415161718192021222324252627282930313233343536
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # DMA engine configuration for dw
  4. #
  5. config DW_DMAC_CORE
  6. tristate
  7. select DMA_ENGINE
  8. config DW_DMAC
  9. tristate "Synopsys DesignWare AHB DMA platform driver"
  10. depends on HAS_IOMEM
  11. select DW_DMAC_CORE
  12. help
  13. Support the Synopsys DesignWare AHB DMA controller. This
  14. can be integrated in chips such as the Intel Cherrytrail.
  15. config RZN1_DMAMUX
  16. tristate "Renesas RZ/N1 DMAMUX driver"
  17. depends on DW_DMAC
  18. depends on ARCH_RZN1 || COMPILE_TEST
  19. help
  20. Support the Renesas RZ/N1 DMAMUX which is located in front of
  21. the Synopsys DesignWare AHB DMA controller located on Renesas
  22. SoCs.
  23. config DW_DMAC_PCI
  24. tristate "Synopsys DesignWare AHB DMA PCI driver"
  25. depends on PCI
  26. depends on HAS_IOMEM
  27. select DW_DMAC_CORE
  28. help
  29. Support the Synopsys DesignWare AHB DMA controller on the
  30. platforms that enumerate it as a PCI device. For example,
  31. Intel Medfield has integrated this GPDMA controller.