diff options
author | Boojin Kim <boojin.kim@samsung.com> | 2011-09-01 20:44:34 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2011-09-14 01:40:01 -0400 |
commit | aa0de00e4b9b3adba5db5ef5ee01e61b1b2e4329 (patch) | |
tree | 1ee82573afe3ed777f29609b5c7e48d3d369c347 | |
parent | 42bc9cf45939c26a5c5eb946d4fd35f1a7b0f9f8 (diff) |
ARM: SAMSUNG: Update to use PL330-DMA driver
This patch adds to support PL330-DMA driver on DMADEVICE for S5P SoCs.
Signed-off-by: Boojin Kim <boojin.kim@samsung.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
-rw-r--r-- | arch/arm/mach-exynos4/include/mach/dma.h | 4 | ||||
-rw-r--r-- | arch/arm/mach-s5p64x0/include/mach/dma.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-s5pc100/include/mach/dma.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-s5pv210/include/mach/dma.h | 2 | ||||
-rw-r--r-- | arch/arm/plat-samsung/Kconfig | 9 | ||||
-rw-r--r-- | arch/arm/plat-samsung/include/plat/dma-pl330.h (renamed from arch/arm/plat-samsung/include/plat/s3c-dma-pl330.h) | 8 | ||||
-rw-r--r-- | arch/arm/plat-samsung/include/plat/s3c-pl330-pdata.h | 2 |
7 files changed, 19 insertions, 10 deletions
diff --git a/arch/arm/mach-exynos4/include/mach/dma.h b/arch/arm/mach-exynos4/include/mach/dma.h index 81209eb1409b..201842a3769e 100644 --- a/arch/arm/mach-exynos4/include/mach/dma.h +++ b/arch/arm/mach-exynos4/include/mach/dma.h | |||
@@ -20,7 +20,7 @@ | |||
20 | #ifndef __MACH_DMA_H | 20 | #ifndef __MACH_DMA_H |
21 | #define __MACH_DMA_H | 21 | #define __MACH_DMA_H |
22 | 22 | ||
23 | /* This platform uses the common S3C DMA API driver for PL330 */ | 23 | /* This platform uses the common DMA API driver for PL330 */ |
24 | #include <plat/s3c-dma-pl330.h> | 24 | #include <plat/dma-pl330.h> |
25 | 25 | ||
26 | #endif /* __MACH_DMA_H */ | 26 | #endif /* __MACH_DMA_H */ |
diff --git a/arch/arm/mach-s5p64x0/include/mach/dma.h b/arch/arm/mach-s5p64x0/include/mach/dma.h index 81209eb1409b..1beae2cca6a3 100644 --- a/arch/arm/mach-s5p64x0/include/mach/dma.h +++ b/arch/arm/mach-s5p64x0/include/mach/dma.h | |||
@@ -21,6 +21,6 @@ | |||
21 | #define __MACH_DMA_H | 21 | #define __MACH_DMA_H |
22 | 22 | ||
23 | /* This platform uses the common S3C DMA API driver for PL330 */ | 23 | /* This platform uses the common S3C DMA API driver for PL330 */ |
24 | #include <plat/s3c-dma-pl330.h> | 24 | #include <plat/dma-pl330.h> |
25 | 25 | ||
26 | #endif /* __MACH_DMA_H */ | 26 | #endif /* __MACH_DMA_H */ |
diff --git a/arch/arm/mach-s5pc100/include/mach/dma.h b/arch/arm/mach-s5pc100/include/mach/dma.h index 81209eb1409b..1beae2cca6a3 100644 --- a/arch/arm/mach-s5pc100/include/mach/dma.h +++ b/arch/arm/mach-s5pc100/include/mach/dma.h | |||
@@ -21,6 +21,6 @@ | |||
21 | #define __MACH_DMA_H | 21 | #define __MACH_DMA_H |
22 | 22 | ||
23 | /* This platform uses the common S3C DMA API driver for PL330 */ | 23 | /* This platform uses the common S3C DMA API driver for PL330 */ |
24 | #include <plat/s3c-dma-pl330.h> | 24 | #include <plat/dma-pl330.h> |
25 | 25 | ||
26 | #endif /* __MACH_DMA_H */ | 26 | #endif /* __MACH_DMA_H */ |
diff --git a/arch/arm/mach-s5pv210/include/mach/dma.h b/arch/arm/mach-s5pv210/include/mach/dma.h index 81209eb1409b..1beae2cca6a3 100644 --- a/arch/arm/mach-s5pv210/include/mach/dma.h +++ b/arch/arm/mach-s5pv210/include/mach/dma.h | |||
@@ -21,6 +21,6 @@ | |||
21 | #define __MACH_DMA_H | 21 | #define __MACH_DMA_H |
22 | 22 | ||
23 | /* This platform uses the common S3C DMA API driver for PL330 */ | 23 | /* This platform uses the common S3C DMA API driver for PL330 */ |
24 | #include <plat/s3c-dma-pl330.h> | 24 | #include <plat/dma-pl330.h> |
25 | 25 | ||
26 | #endif /* __MACH_DMA_H */ | 26 | #endif /* __MACH_DMA_H */ |
diff --git a/arch/arm/plat-samsung/Kconfig b/arch/arm/plat-samsung/Kconfig index b3e10659e4b8..e6f01ab86208 100644 --- a/arch/arm/plat-samsung/Kconfig +++ b/arch/arm/plat-samsung/Kconfig | |||
@@ -306,6 +306,15 @@ config S3C_PL330_DMA | |||
306 | help | 306 | help |
307 | S3C DMA API Driver for PL330 DMAC. | 307 | S3C DMA API Driver for PL330 DMAC. |
308 | 308 | ||
309 | config SAMSUNG_DMADEV | ||
310 | bool | ||
311 | select DMADEVICES | ||
312 | select PL330_DMA if (CPU_EXYNOS4210 || CPU_S5PV210 || CPU_S5PC100 || \ | ||
313 | CPU_S5P6450 || CPU_S5P6440) | ||
314 | select ARM_AMBA | ||
315 | help | ||
316 | Use DMA device engine for PL330 DMAC. | ||
317 | |||
309 | comment "Power management" | 318 | comment "Power management" |
310 | 319 | ||
311 | config SAMSUNG_PM_DEBUG | 320 | config SAMSUNG_PM_DEBUG |
diff --git a/arch/arm/plat-samsung/include/plat/s3c-dma-pl330.h b/arch/arm/plat-samsung/include/plat/dma-pl330.h index 810744213120..0a5dade0e85c 100644 --- a/arch/arm/plat-samsung/include/plat/s3c-dma-pl330.h +++ b/arch/arm/plat-samsung/include/plat/dma-pl330.h | |||
@@ -8,8 +8,8 @@ | |||
8 | * (at your option) any later version. | 8 | * (at your option) any later version. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #ifndef __S3C_DMA_PL330_H_ | 11 | #ifndef __DMA_PL330_H_ |
12 | #define __S3C_DMA_PL330_H_ | 12 | #define __DMA_PL330_H_ __FILE__ |
13 | 13 | ||
14 | #define S3C2410_DMAF_AUTOSTART (1 << 0) | 14 | #define S3C2410_DMAF_AUTOSTART (1 << 0) |
15 | #define S3C2410_DMAF_CIRCULAR (1 << 1) | 15 | #define S3C2410_DMAF_CIRCULAR (1 << 1) |
@@ -20,7 +20,7 @@ | |||
20 | * For the sake of consistency across client drivers, | 20 | * For the sake of consistency across client drivers, |
21 | * We keep the channel names unchanged and only add | 21 | * We keep the channel names unchanged and only add |
22 | * missing peripherals are added. | 22 | * missing peripherals are added. |
23 | * Order is not important since S3C PL330 API driver | 23 | * Order is not important since DMA PL330 API driver |
24 | * use these just as IDs. | 24 | * use these just as IDs. |
25 | */ | 25 | */ |
26 | enum dma_ch { | 26 | enum dma_ch { |
@@ -95,4 +95,4 @@ static inline bool s3c_dma_has_circular(void) | |||
95 | 95 | ||
96 | #include <plat/dma.h> | 96 | #include <plat/dma.h> |
97 | 97 | ||
98 | #endif /* __S3C_DMA_PL330_H_ */ | 98 | #endif /* __DMA_PL330_H_ */ |
diff --git a/arch/arm/plat-samsung/include/plat/s3c-pl330-pdata.h b/arch/arm/plat-samsung/include/plat/s3c-pl330-pdata.h index bf5e2a9d408d..64fdf66ff9cf 100644 --- a/arch/arm/plat-samsung/include/plat/s3c-pl330-pdata.h +++ b/arch/arm/plat-samsung/include/plat/s3c-pl330-pdata.h | |||
@@ -12,7 +12,7 @@ | |||
12 | #ifndef __S3C_PL330_PDATA_H | 12 | #ifndef __S3C_PL330_PDATA_H |
13 | #define __S3C_PL330_PDATA_H | 13 | #define __S3C_PL330_PDATA_H |
14 | 14 | ||
15 | #include <plat/s3c-dma-pl330.h> | 15 | #include <plat/dma-pl330.h> |
16 | 16 | ||
17 | /* | 17 | /* |
18 | * Every PL330 DMAC has max 32 peripheral interfaces, | 18 | * Every PL330 DMAC has max 32 peripheral interfaces, |