Kconfig 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #
  2. # DMA engine configuration for dw
  3. #
  4. config DW_DMAC_CORE
  5. tristate "Synopsys DesignWare AHB DMA support"
  6. depends on GENERIC_HARDIRQS
  7. select DMA_ENGINE
  8. config DW_DMAC
  9. tristate "Synopsys DesignWare AHB DMA platform driver"
  10. select DW_DMAC_CORE
  11. default y if CPU_AT32AP7000
  12. help
  13. Support the Synopsys DesignWare AHB DMA controller. This
  14. can be integrated in chips such as the Atmel AT32ap7000.
  15. config DW_DMAC_PCI
  16. tristate "Synopsys DesignWare AHB DMA PCI driver"
  17. depends on PCI
  18. select DW_DMAC_CORE
  19. help
  20. Support the Synopsys DesignWare AHB DMA controller on the
  21. platfroms that enumerate it as a PCI device. For example,
  22. Intel Medfield has integrated this GPDMA controller.
  23. config DW_DMAC_BIG_ENDIAN_IO
  24. bool "Use big endian I/O register access"
  25. default y if AVR32
  26. depends on DW_DMAC_CORE
  27. help
  28. Say yes here to use big endian I/O access when reading and writing
  29. to the DMA controller registers. This is needed on some platforms,
  30. like the Atmel AVR32 architecture.
  31. If unsure, use the default setting.