Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
#ifndef __MACH_DMA_H
#define __MACH_DMA_H

/* This platform uses the common S3C DMA API driver for PL330 */
#include <plat/s3c-dma-pl330.h>
/* This platform uses the common DMA API driver for PL330 */
#include <plat/dma-pl330.h>

#endif /* __MACH_DMA_H */
+1 −1
Original line number Diff line number Diff line
@@ -21,6 +21,6 @@
#define __MACH_DMA_H

/* 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 */
+1 −1
Original line number Diff line number Diff line
@@ -21,6 +21,6 @@
#define __MACH_DMA_H

/* 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 */
+1 −1
Original line number Diff line number Diff line
@@ -21,6 +21,6 @@
#define __MACH_DMA_H

/* 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 */
+9 −0
Original line number Diff line number Diff line
@@ -306,6 +306,15 @@ config S3C_PL330_DMA
	help
	  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"

config SAMSUNG_PM_DEBUG
Loading