12345678910111213141516171819202122232425 |
- # DMA configuration options
- # Copyright (c) 2016 Intel Corporation
- # SPDX-License-Identifier: Apache-2.0
- #
- # DMA options
- #
- menuconfig DMA
- bool "DMA driver Configuration"
- if DMA
- config DMA_64BIT
- bool "DMA 64 bit address support"
- help
- When this option is true, 64 bit source and dest
- DMA addresses are supported.
- module = DMA
- module-str = dma
- source "subsys/logging/Kconfig.template.log_config"
- source "drivers/dma/Kconfig.acts"
- endif # DMA
|