[PATCH 6/6] dmaengine: remove FSLDMA_EXTERNAL_START

2014-10-11 Thread Vinod Koul
as users have been converted, so no need of this custom method Signed-off-by: Vinod Koul --- include/linux/dmaengine.h |3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index ce8a08e..3254a03 100644 --- a/include/linu

[PATCH 5/6] dmaengine: freescale: remove FSLDMA_EXTERNAL_START control method

2014-10-11 Thread Vinod Koul
since users have been move to fsl_dma_external_start() API, so remove this now Signed-off-by: Vinod Koul --- drivers/dma/fsldma.c |9 - 1 files changed, 0 insertions(+), 9 deletions(-) diff --git a/drivers/dma/fsldma.c b/drivers/dma/fsldma.c index 0cded86..994bcb2 100644 --- a/drive

[PATCH 4/6] carma-fpga: move to fsl_dma_external_start()

2014-10-11 Thread Vinod Koul
carma-fpga driver uses device control with custom FSLDMA_EXTERNAL_START command. Since we wnat to deprecate the device control, move this driver to use new fsl_dma_external_start() API Signed-off-by: Vinod Koul --- drivers/misc/carma/carma-fpga-program.c |3 ++- 1 files changed, 2 insertions

[PATCH 3/6] carma-fpga: use dmaengine_xxx() API

2014-10-11 Thread Vinod Koul
The drivers should use dmaengine_slave_config() and dmaengine_prep_dma_sg() API instead of accessing the device_control which will be deprecated soon Signed-off-by: Vinod Koul --- drivers/misc/carma/carma-fpga-program.c |9 - 1 files changed, 4 insertions(+), 5 deletions(-) diff --g

[PATCH 2/6] dmaengine: freescale: add and export fsl_dma_external_start()

2014-10-11 Thread Vinod Koul
The freescale driver uses custom device control FSLDMA_EXTERNAL_START to put the controller in external start mode. Since we are planning to deprecate the device control, move this to exported API. Subsequent patches will remove the FSLDMA_EXTERNAL_START Signed-off-by: Vinod Koul --- drivers/dma

[PATCH 1/6] dmaengine: add dmaengine_prep_dma_sg() helper

2014-10-11 Thread Vinod Koul
This was only prep API which didnt have an helper Signed-off-by: Vinod Koul --- include/linux/dmaengine.h | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 3d291f5..ce8a08e 100644 --- a/include/linux/dma

[PATCH 0/6] dmaengine: remove FSLDMA_EXTERNAL_START

2014-10-11 Thread Vinod Koul
FSLDMA_EXTERNAL_START is one of the custom methods in device_control. Since we are planning to deprecate device_control, we should move this to an API. This serries adds the fsl_dma_external_start() API for users and also converts the users. I would like this to be merged thru dmanegine tree due