2014-07-31 08:34:04 +08:00
|
|
|
#
|
|
|
|
# DMA Engine Helpers
|
|
|
|
#
|
|
|
|
|
2013-06-19 00:16:57 +08:00
|
|
|
obj-$(CONFIG_SH_DMAE_BASE) += shdma-base.o shdma-of.o
|
2014-07-31 08:34:04 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# DMA Controllers
|
|
|
|
#
|
|
|
|
|
2013-08-02 22:50:36 +08:00
|
|
|
shdma-y := shdmac.o
|
2014-07-31 08:34:04 +08:00
|
|
|
shdma-$(CONFIG_SH_DMAE_R8A73A4) += shdma-r8a73a4.o
|
2013-08-02 22:50:36 +08:00
|
|
|
shdma-objs := $(shdma-y)
|
2014-07-31 08:34:04 +08:00
|
|
|
obj-$(CONFIG_SH_DMAE) += shdma.o
|
|
|
|
|
2013-04-23 19:00:12 +08:00
|
|
|
obj-$(CONFIG_SUDMAC) += sudmac.o
|
dma: add driver for R-Car HPB-DMAC
Add support for HPB-DMAC found in Renesas R-Car SoCs, using 'shdma-base' DMA
driver framework.
Based on the original patch by Phil Edworthy <phil.edworthy@renesas.com>.
Signed-off-by: Max Filippov <max.filippov@cogentembedded.com>
[Sergei: removed useless #include, sorted #include's, fixed HPB_DMA_TCR_MAX,
fixed formats and removed line breaks in the dev_dbg() calls, rephrased and
added IRQ # to the shdma_request_irq() failure message, added MODULE_AUTHOR(),
removed '__init'/'__exit' annotations from the probe()/remove() methods, removed
'__initdata' annotation from 'hpb_dmae_driver', fixed guard macro name in the
header file, fixed #define ASYNCRSTR_ASRST20, added #define ASYNCRSTR_ASRST24,
added the necessary runtime PM calls to the probe() and remove() methods,
handled errors returned by dma_async_device_register(), beautified comments
and #define's.]
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
2013-08-25 04:33:24 +08:00
|
|
|
obj-$(CONFIG_RCAR_HPB_DMAE) += rcar-hpbdma.o
|
2014-03-11 09:11:50 +08:00
|
|
|
obj-$(CONFIG_RCAR_AUDMAC_PP) += rcar-audmapp.o
|
2014-07-09 06:42:19 +08:00
|
|
|
obj-$(CONFIG_RCAR_DMAC) += rcar-dmac.o
|