mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 06:51:56 +00:00
Remove DCACHE_WRITEBACK Kconfig variable definition in Intel S1000 DMA driver. Remove the variable from default configuration as well. Cache configuration is fixed and the cache operation routines internally take appropriate action based on the cache configuration. Signed-off-by: Sathish Kuttan <sathish.k.kuttan@intel.com>
67 lines
1.2 KiB
Plaintext
67 lines
1.2 KiB
Plaintext
# Kconfig - 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_0_NAME
|
|
string "Device name for DMA Controller 0"
|
|
default "DMA_0"
|
|
help
|
|
Device name for DMA Controller 0.
|
|
|
|
config DMA_0_IRQ_PRI
|
|
int "IRQ Priority for DMA Controller 0"
|
|
default 3
|
|
help
|
|
IRQ Priority for the DMA Controller.
|
|
|
|
config DMA_1_NAME
|
|
string "Device name for DMA Controller 1"
|
|
default "DMA_1"
|
|
help
|
|
Device name for DMA Controller 1.
|
|
|
|
config DMA_1_IRQ_PRI
|
|
int "IRQ Priority for DMA Controller 1"
|
|
default 3
|
|
help
|
|
IRQ Priority for DMA Controller 1.
|
|
|
|
config DMA_2_NAME
|
|
string "Device name for DMA Controller 2"
|
|
default "DMA_2"
|
|
help
|
|
Device name for DMA Controller 2.
|
|
|
|
config DMA_2_IRQ_PRI
|
|
int "IRQ Priority for DMA Controller 2"
|
|
default 3
|
|
help
|
|
IRQ Priority for DMA Controller 2.
|
|
|
|
module = DMA
|
|
module-str = dma
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
source "drivers/dma/Kconfig.qmsi"
|
|
|
|
source "drivers/dma/Kconfig.stm32f4x"
|
|
|
|
source "drivers/dma/Kconfig.sam_xdmac"
|
|
|
|
source "drivers/dma/Kconfig.cavs"
|
|
|
|
source "drivers/dma/Kconfig.nios2_msgdma"
|
|
|
|
endif # DMA
|