Commit aa0de00e authored by Boojin Kim's avatar Boojin Kim Committed by Vinod Koul

ARM: SAMSUNG: Update to use PL330-DMA driver

This patch adds to support PL330-DMA driver on DMADEVICE for S5P SoCs.
Signed-off-by: default avatarBoojin Kim <boojin.kim@samsung.com>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Acked-by: default avatarVinod Koul <vinod.koul@intel.com>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent 42bc9cf4
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef __MACH_DMA_H #ifndef __MACH_DMA_H
#define __MACH_DMA_H #define __MACH_DMA_H
/* This platform uses the common S3C DMA API driver for PL330 */ /* This platform uses the common DMA API driver for PL330 */
#include <plat/s3c-dma-pl330.h> #include <plat/dma-pl330.h>
#endif /* __MACH_DMA_H */ #endif /* __MACH_DMA_H */
...@@ -21,6 +21,6 @@ ...@@ -21,6 +21,6 @@
#define __MACH_DMA_H #define __MACH_DMA_H
/* This platform uses the common S3C DMA API driver for PL330 */ /* This platform uses the common S3C DMA API driver for PL330 */
#include <plat/s3c-dma-pl330.h> #include <plat/dma-pl330.h>
#endif /* __MACH_DMA_H */ #endif /* __MACH_DMA_H */
...@@ -21,6 +21,6 @@ ...@@ -21,6 +21,6 @@
#define __MACH_DMA_H #define __MACH_DMA_H
/* This platform uses the common S3C DMA API driver for PL330 */ /* This platform uses the common S3C DMA API driver for PL330 */
#include <plat/s3c-dma-pl330.h> #include <plat/dma-pl330.h>
#endif /* __MACH_DMA_H */ #endif /* __MACH_DMA_H */
...@@ -21,6 +21,6 @@ ...@@ -21,6 +21,6 @@
#define __MACH_DMA_H #define __MACH_DMA_H
/* This platform uses the common S3C DMA API driver for PL330 */ /* This platform uses the common S3C DMA API driver for PL330 */
#include <plat/s3c-dma-pl330.h> #include <plat/dma-pl330.h>
#endif /* __MACH_DMA_H */ #endif /* __MACH_DMA_H */
...@@ -306,6 +306,15 @@ config S3C_PL330_DMA ...@@ -306,6 +306,15 @@ config S3C_PL330_DMA
help help
S3C DMA API Driver for PL330 DMAC. S3C DMA API Driver for PL330 DMAC.
config SAMSUNG_DMADEV
bool
select DMADEVICES
select PL330_DMA if (CPU_EXYNOS4210 || CPU_S5PV210 || CPU_S5PC100 || \
CPU_S5P6450 || CPU_S5P6440)
select ARM_AMBA
help
Use DMA device engine for PL330 DMAC.
comment "Power management" comment "Power management"
config SAMSUNG_PM_DEBUG config SAMSUNG_PM_DEBUG
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
* (at your option) any later version. * (at your option) any later version.
*/ */
#ifndef __S3C_DMA_PL330_H_ #ifndef __DMA_PL330_H_
#define __S3C_DMA_PL330_H_ #define __DMA_PL330_H_ __FILE__
#define S3C2410_DMAF_AUTOSTART (1 << 0) #define S3C2410_DMAF_AUTOSTART (1 << 0)
#define S3C2410_DMAF_CIRCULAR (1 << 1) #define S3C2410_DMAF_CIRCULAR (1 << 1)
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
* For the sake of consistency across client drivers, * For the sake of consistency across client drivers,
* We keep the channel names unchanged and only add * We keep the channel names unchanged and only add
* missing peripherals are added. * missing peripherals are added.
* Order is not important since S3C PL330 API driver * Order is not important since DMA PL330 API driver
* use these just as IDs. * use these just as IDs.
*/ */
enum dma_ch { enum dma_ch {
...@@ -95,4 +95,4 @@ static inline bool s3c_dma_has_circular(void) ...@@ -95,4 +95,4 @@ static inline bool s3c_dma_has_circular(void)
#include <plat/dma.h> #include <plat/dma.h>
#endif /* __S3C_DMA_PL330_H_ */ #endif /* __DMA_PL330_H_ */
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
#ifndef __S3C_PL330_PDATA_H #ifndef __S3C_PL330_PDATA_H
#define __S3C_PL330_PDATA_H #define __S3C_PL330_PDATA_H
#include <plat/s3c-dma-pl330.h> #include <plat/dma-pl330.h>
/* /*
* Every PL330 DMAC has max 32 peripheral interfaces, * Every PL330 DMAC has max 32 peripheral interfaces,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment