aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-01-17 21:40:24 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2012-01-17 21:40:24 -0500
commit57f2685c16fa8e0cb86e4bc7c8ac33bfed943819 (patch)
tree96a42fe632687c8486c250c4805bf1d4c9c34d19 /drivers/mtd
parent488a9d018256dc9f29e041c0360445b6d25eea9a (diff)
parente08b881a69d638175bfa99b5af4d72b731633ea7 (diff)
Merge branch 'next' of git://git.infradead.org/users/vkoul/slave-dma
* 'next' of git://git.infradead.org/users/vkoul/slave-dma: (53 commits) ARM: mach-shmobile: specify CHCLR registers on SH7372 dma: shdma: fix runtime PM: clear channel buffers on reset dma/imx-sdma: save irq flags when use spin_lock in sdma_tx_submit dmaengine/ste_dma40: clear LNK on channel startup dmaengine: intel_mid_dma: remove legacy pm interface ASoC: mxs: correct 'direction' of device_prep_dma_cyclic dmaengine: intel_mid_dma: error path fix dmaengine: intel_mid_dma: locking and freeing fixes mtd: gpmi-nand: move to dma_transfer_direction mtd: fix compile error for gpmi-nand mmc: mxs-mmc: fix the dma_transfer_direction migration dmaengine: add DMA_TRANS_NONE to dma_transfer_direction dma: mxs-dma: Don't use CLKGATE bits in CTRL0 to disable DMA channels dma: mxs-dma: make mxs_dma_prep_slave_sg() multi user safe dma: mxs-dma: Always leave mxs_dma_init() with the clock disabled. dma: mxs-dma: fix a typo in comment DMA: PL330: Remove pm_runtime_xxx calls from pl330 probe/remove video i.MX IPU: Fix display connections i.MX IPU DMA: Fix wrong burstsize settings dmaengine/ste_dma40: allow fixed physical channel ... Fix up conflicts in drivers/dma/{Kconfig,mxs-dma.c,pl330.c} The conflicts looked pretty trivial, but I'll ask people to verify them.
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/nand/gpmi-nand/gpmi-lib.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-lib.c b/drivers/mtd/nand/gpmi-nand/gpmi-lib.c
index 2a56fc6f399..7f680420bfa 100644
--- a/drivers/mtd/nand/gpmi-nand/gpmi-lib.c
+++ b/drivers/mtd/nand/gpmi-nand/gpmi-lib.c
@@ -827,7 +827,7 @@ int gpmi_send_command(struct gpmi_nand_data *this)
827 pio[1] = pio[2] = 0; 827 pio[1] = pio[2] = 0;
828 desc = channel->device->device_prep_slave_sg(channel, 828 desc = channel->device->device_prep_slave_sg(channel,
829 (struct scatterlist *)pio, 829 (struct scatterlist *)pio,
830 ARRAY_SIZE(pio), DMA_NONE, 0); 830 ARRAY_SIZE(pio), DMA_TRANS_NONE, 0);
831 if (!desc) { 831 if (!desc) {
832 pr_err("step 1 error\n"); 832 pr_err("step 1 error\n");
833 return -1; 833 return -1;
@@ -839,7 +839,7 @@ int gpmi_send_command(struct gpmi_nand_data *this)
839 sg_init_one(sgl, this->cmd_buffer, this->command_length); 839 sg_init_one(sgl, this->cmd_buffer, this->command_length);
840 dma_map_sg(this->dev, sgl, 1, DMA_TO_DEVICE); 840 dma_map_sg(this->dev, sgl, 1, DMA_TO_DEVICE);
841 desc = channel->device->device_prep_slave_sg(channel, 841 desc = channel->device->device_prep_slave_sg(channel,
842 sgl, 1, DMA_TO_DEVICE, 1); 842 sgl, 1, DMA_MEM_TO_DEV, 1);
843 if (!desc) { 843 if (!desc) {
844 pr_err("step 2 error\n"); 844 pr_err("step 2 error\n");
845 return -1; 845 return -1;
@@ -872,7 +872,7 @@ int gpmi_send_data(struct gpmi_nand_data *this)
872 pio[1] = 0; 872 pio[1] = 0;
873 desc = channel->device->device_prep_slave_sg(channel, 873 desc = channel->device->device_prep_slave_sg(channel,
874 (struct scatterlist *)pio, 874 (struct scatterlist *)pio,
875 ARRAY_SIZE(pio), DMA_NONE, 0); 875 ARRAY_SIZE(pio), DMA_TRANS_NONE, 0);
876 if (!desc) { 876 if (!desc) {
877 pr_err("step 1 error\n"); 877 pr_err("step 1 error\n");
878 return -1; 878 return -1;
@@ -881,7 +881,7 @@ int gpmi_send_data(struct gpmi_nand_data *this)
881 /* [2] send DMA request */ 881 /* [2] send DMA request */
882 prepare_data_dma(this, DMA_TO_DEVICE); 882 prepare_data_dma(this, DMA_TO_DEVICE);
883 desc = channel->device->device_prep_slave_sg(channel, &this->data_sgl, 883 desc = channel->device->device_prep_slave_sg(channel, &this->data_sgl,
884 1, DMA_TO_DEVICE, 1); 884 1, DMA_MEM_TO_DEV, 1);
885 if (!desc) { 885 if (!desc) {
886 pr_err("step 2 error\n"); 886 pr_err("step 2 error\n");
887 return -1; 887 return -1;
@@ -908,7 +908,7 @@ int gpmi_read_data(struct gpmi_nand_data *this)
908 pio[1] = 0; 908 pio[1] = 0;
909 desc = channel->device->device_prep_slave_sg(channel, 909 desc = channel->device->device_prep_slave_sg(channel,
910 (struct scatterlist *)pio, 910 (struct scatterlist *)pio,
911 ARRAY_SIZE(pio), DMA_NONE, 0); 911 ARRAY_SIZE(pio), DMA_TRANS_NONE, 0);
912 if (!desc) { 912 if (!desc) {
913 pr_err("step 1 error\n"); 913 pr_err("step 1 error\n");
914 return -1; 914 return -1;
@@ -917,7 +917,7 @@ int gpmi_read_data(struct gpmi_nand_data *this)
917 /* [2] : send DMA request */ 917 /* [2] : send DMA request */
918 prepare_data_dma(this, DMA_FROM_DEVICE); 918 prepare_data_dma(this, DMA_FROM_DEVICE);
919 desc = channel->device->device_prep_slave_sg(channel, &this->data_sgl, 919 desc = channel->device->device_prep_slave_sg(channel, &this->data_sgl,
920 1, DMA_FROM_DEVICE, 1); 920 1, DMA_DEV_TO_MEM, 1);
921 if (!desc) { 921 if (!desc) {
922 pr_err("step 2 error\n"); 922 pr_err("step 2 error\n");
923 return -1; 923 return -1;
@@ -964,7 +964,7 @@ int gpmi_send_page(struct gpmi_nand_data *this,
964 964
965 desc = channel->device->device_prep_slave_sg(channel, 965 desc = channel->device->device_prep_slave_sg(channel,
966 (struct scatterlist *)pio, 966 (struct scatterlist *)pio,
967 ARRAY_SIZE(pio), DMA_NONE, 0); 967 ARRAY_SIZE(pio), DMA_TRANS_NONE, 0);
968 if (!desc) { 968 if (!desc) {
969 pr_err("step 2 error\n"); 969 pr_err("step 2 error\n");
970 return -1; 970 return -1;
@@ -998,7 +998,8 @@ int gpmi_read_page(struct gpmi_nand_data *this,
998 | BF_GPMI_CTRL0_XFER_COUNT(0); 998 | BF_GPMI_CTRL0_XFER_COUNT(0);
999 pio[1] = 0; 999 pio[1] = 0;
1000 desc = channel->device->device_prep_slave_sg(channel, 1000 desc = channel->device->device_prep_slave_sg(channel,
1001 (struct scatterlist *)pio, 2, DMA_NONE, 0); 1001 (struct scatterlist *)pio, 2,
1002 DMA_TRANS_NONE, 0);
1002 if (!desc) { 1003 if (!desc) {
1003 pr_err("step 1 error\n"); 1004 pr_err("step 1 error\n");
1004 return -1; 1005 return -1;
@@ -1027,7 +1028,7 @@ int gpmi_read_page(struct gpmi_nand_data *this,
1027 pio[5] = auxiliary; 1028 pio[5] = auxiliary;
1028 desc = channel->device->device_prep_slave_sg(channel, 1029 desc = channel->device->device_prep_slave_sg(channel,
1029 (struct scatterlist *)pio, 1030 (struct scatterlist *)pio,
1030 ARRAY_SIZE(pio), DMA_NONE, 1); 1031 ARRAY_SIZE(pio), DMA_TRANS_NONE, 1);
1031 if (!desc) { 1032 if (!desc) {
1032 pr_err("step 2 error\n"); 1033 pr_err("step 2 error\n");
1033 return -1; 1034 return -1;
@@ -1045,7 +1046,8 @@ int gpmi_read_page(struct gpmi_nand_data *this,
1045 | BF_GPMI_CTRL0_XFER_COUNT(geo->page_size); 1046 | BF_GPMI_CTRL0_XFER_COUNT(geo->page_size);
1046 pio[1] = 0; 1047 pio[1] = 0;
1047 desc = channel->device->device_prep_slave_sg(channel, 1048 desc = channel->device->device_prep_slave_sg(channel,
1048 (struct scatterlist *)pio, 2, DMA_NONE, 1); 1049 (struct scatterlist *)pio, 2,
1050 DMA_TRANS_NONE, 1);
1049 if (!desc) { 1051 if (!desc) {
1050 pr_err("step 3 error\n"); 1052 pr_err("step 3 error\n");
1051 return -1; 1053 return -1;