diff options
author | Shimoda, Yoshihiro <yoshihiro.shimoda.uh@renesas.com> | 2013-04-23 15:00:06 +0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-04-30 14:20:12 +0400 |
commit | 189b4ee8e9daf349db80f47b81edec67d223a953 (patch) | |
tree | 7063b7f6fb630b5e39c2d4047ff9d7c5395a34f5 /drivers/dma/sh/Kconfig | |
parent | bbe89c8e3d598129b728d1388c3ad9abe4e8e261 (diff) | |
download | linux-189b4ee8e9daf349db80f47b81edec67d223a953.tar.xz |
dma: sh: add Kconfig
This patch adds Kconfig in the drivers/dma/sh. This patch also adds
a new config "SH_DMAE_BASE" and the "config SH_DMAE" depends on it.
Since some drivers (e.g. sh_mmcif.c) depends on shdma-base.c if
CONFIG_DMA_ENGINE=y, the "config SH_DMAE_BASE" is set as "bool".
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/sh/Kconfig')
-rw-r--r-- | drivers/dma/sh/Kconfig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/dma/sh/Kconfig b/drivers/dma/sh/Kconfig new file mode 100644 index 000000000000..c0f7a3763f3d --- /dev/null +++ b/drivers/dma/sh/Kconfig @@ -0,0 +1,18 @@ +# +# DMA engine configuration for sh +# + +config SH_DMAE_BASE + bool "Renesas SuperH DMA Engine support" + depends on (SUPERH && SH_DMA) || (ARM && ARCH_SHMOBILE) + depends on !SH_DMA_API + default y + select DMA_ENGINE + help + Enable support for the Renesas SuperH DMA controllers. + +config SH_DMAE + tristate "Renesas SuperH DMAC support" + depends on SH_DMAE_BASE + help + Enable support for the Renesas SuperH DMA controllers. |