Kconfig 454 B

12345678910111213141516171819202122232425
  1. # DMA configuration options
  2. # Copyright (c) 2016 Intel Corporation
  3. # SPDX-License-Identifier: Apache-2.0
  4. #
  5. # DMA options
  6. #
  7. menuconfig DMA
  8. bool "DMA driver Configuration"
  9. if DMA
  10. config DMA_64BIT
  11. bool "DMA 64 bit address support"
  12. help
  13. When this option is true, 64 bit source and dest
  14. DMA addresses are supported.
  15. module = DMA
  16. module-str = dma
  17. source "subsys/logging/Kconfig.template.log_config"
  18. source "drivers/dma/Kconfig.acts"
  19. endif # DMA