2 * PXA2xx SPI private DMA support.
4 * Copyright (C) 2005 Stephen Street / StreetFire Sound Labs
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/delay.h>
18 #include <linux/device.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/pxa2xx_ssp.h>
21 #include <linux/spi/spi.h>
22 #include <linux/spi/pxa2xx_spi.h>
25 #include "spi-pxa2xx.h"
27 #define DMA_INT_MASK (DCSR_ENDINTR | DCSR_STARTINTR | DCSR_BUSERR)
28 #define RESET_DMA_CHANNEL (DCSR_NODESC | DMA_INT_MASK)
30 bool pxa2xx_spi_dma_is_possible(size_t len
)
32 /* Try to map dma buffer and do a dma transfer if successful, but
33 * only if the length is non-zero and less than MAX_DMA_LEN.
35 * Zero-length non-descriptor DMA is illegal on PXA2xx; force use
36 * of PIO instead. Care is needed above because the transfer may
37 * have have been passed with buffers that are already dma mapped.
38 * A zero-length transfer in PIO mode will not try to write/read
41 * REVISIT large transfers are exactly where we most want to be
42 * using DMA. If this happens much, split those transfers into
43 * multiple DMA segments rather than forcing PIO.
45 return len
> 0 && len
<= MAX_DMA_LEN
;
48 int pxa2xx_spi_map_dma_buffers(struct driver_data
*drv_data
)
50 struct spi_message
*msg
= drv_data
->cur_msg
;
51 struct device
*dev
= &msg
->spi
->dev
;
53 if (!drv_data
->cur_chip
->enable_dma
)
56 if (msg
->is_dma_mapped
)
57 return drv_data
->rx_dma
&& drv_data
->tx_dma
;
59 if (!IS_DMA_ALIGNED(drv_data
->rx
) || !IS_DMA_ALIGNED(drv_data
->tx
))
62 /* Modify setup if rx buffer is null */
63 if (drv_data
->rx
== NULL
) {
64 *drv_data
->null_dma_buf
= 0;
65 drv_data
->rx
= drv_data
->null_dma_buf
;
66 drv_data
->rx_map_len
= 4;
68 drv_data
->rx_map_len
= drv_data
->len
;
71 /* Modify setup if tx buffer is null */
72 if (drv_data
->tx
== NULL
) {
73 *drv_data
->null_dma_buf
= 0;
74 drv_data
->tx
= drv_data
->null_dma_buf
;
75 drv_data
->tx_map_len
= 4;
77 drv_data
->tx_map_len
= drv_data
->len
;
79 /* Stream map the tx buffer. Always do DMA_TO_DEVICE first
80 * so we flush the cache *before* invalidating it, in case
81 * the tx and rx buffers overlap.
83 drv_data
->tx_dma
= dma_map_single(dev
, drv_data
->tx
,
84 drv_data
->tx_map_len
, DMA_TO_DEVICE
);
85 if (dma_mapping_error(dev
, drv_data
->tx_dma
))
88 /* Stream map the rx buffer */
89 drv_data
->rx_dma
= dma_map_single(dev
, drv_data
->rx
,
90 drv_data
->rx_map_len
, DMA_FROM_DEVICE
);
91 if (dma_mapping_error(dev
, drv_data
->rx_dma
)) {
92 dma_unmap_single(dev
, drv_data
->tx_dma
,
93 drv_data
->tx_map_len
, DMA_TO_DEVICE
);
100 static void pxa2xx_spi_unmap_dma_buffers(struct driver_data
*drv_data
)
104 if (!drv_data
->dma_mapped
)
107 if (!drv_data
->cur_msg
->is_dma_mapped
) {
108 dev
= &drv_data
->cur_msg
->spi
->dev
;
109 dma_unmap_single(dev
, drv_data
->rx_dma
,
110 drv_data
->rx_map_len
, DMA_FROM_DEVICE
);
111 dma_unmap_single(dev
, drv_data
->tx_dma
,
112 drv_data
->tx_map_len
, DMA_TO_DEVICE
);
115 drv_data
->dma_mapped
= 0;
118 static int wait_ssp_rx_stall(struct driver_data
*drv_data
)
120 unsigned long limit
= loops_per_jiffy
<< 1;
122 while ((pxa2xx_spi_read(drv_data
, SSSR
) & SSSR_BSY
) && --limit
)
128 static int wait_dma_channel_stop(int channel
)
130 unsigned long limit
= loops_per_jiffy
<< 1;
132 while (!(DCSR(channel
) & DCSR_STOPSTATE
) && --limit
)
138 static void pxa2xx_spi_dma_error_stop(struct driver_data
*drv_data
,
142 DCSR(drv_data
->rx_channel
) = RESET_DMA_CHANNEL
;
143 DCSR(drv_data
->tx_channel
) = RESET_DMA_CHANNEL
;
144 write_SSSR_CS(drv_data
, drv_data
->clear_sr
);
145 pxa2xx_spi_write(drv_data
, SSCR1
,
146 pxa2xx_spi_read(drv_data
, SSCR1
)
147 & ~drv_data
->dma_cr1
);
148 if (!pxa25x_ssp_comp(drv_data
))
149 pxa2xx_spi_write(drv_data
, SSTO
, 0);
150 pxa2xx_spi_flush(drv_data
);
151 pxa2xx_spi_write(drv_data
, SSCR0
,
152 pxa2xx_spi_read(drv_data
, SSCR0
) & ~SSCR0_SSE
);
154 pxa2xx_spi_unmap_dma_buffers(drv_data
);
156 dev_err(&drv_data
->pdev
->dev
, "%s\n", msg
);
158 drv_data
->cur_msg
->state
= ERROR_STATE
;
159 tasklet_schedule(&drv_data
->pump_transfers
);
162 static void pxa2xx_spi_dma_transfer_complete(struct driver_data
*drv_data
)
164 struct spi_message
*msg
= drv_data
->cur_msg
;
166 /* Clear and disable interrupts on SSP and DMA channels*/
167 pxa2xx_spi_write(drv_data
, SSCR1
,
168 pxa2xx_spi_read(drv_data
, SSCR1
)
169 & ~drv_data
->dma_cr1
);
170 write_SSSR_CS(drv_data
, drv_data
->clear_sr
);
171 DCSR(drv_data
->tx_channel
) = RESET_DMA_CHANNEL
;
172 DCSR(drv_data
->rx_channel
) = RESET_DMA_CHANNEL
;
174 if (wait_dma_channel_stop(drv_data
->rx_channel
) == 0)
175 dev_err(&drv_data
->pdev
->dev
,
176 "dma_handler: dma rx channel stop failed\n");
178 if (wait_ssp_rx_stall(drv_data
->ioaddr
) == 0)
179 dev_err(&drv_data
->pdev
->dev
,
180 "dma_transfer: ssp rx stall failed\n");
182 pxa2xx_spi_unmap_dma_buffers(drv_data
);
184 /* update the buffer pointer for the amount completed in dma */
185 drv_data
->rx
+= drv_data
->len
-
186 (DCMD(drv_data
->rx_channel
) & DCMD_LENGTH
);
188 /* read trailing data from fifo, it does not matter how many
189 * bytes are in the fifo just read until buffer is full
190 * or fifo is empty, which ever occurs first */
191 drv_data
->read(drv_data
);
193 /* return count of what was actually read */
194 msg
->actual_length
+= drv_data
->len
-
195 (drv_data
->rx_end
- drv_data
->rx
);
197 /* Transfer delays and chip select release are
198 * handled in pump_transfers or giveback
201 /* Move to next transfer */
202 msg
->state
= pxa2xx_spi_next_transfer(drv_data
);
204 /* Schedule transfer tasklet */
205 tasklet_schedule(&drv_data
->pump_transfers
);
208 void pxa2xx_spi_dma_handler(int channel
, void *data
)
210 struct driver_data
*drv_data
= data
;
211 u32 irq_status
= DCSR(channel
) & DMA_INT_MASK
;
213 if (irq_status
& DCSR_BUSERR
) {
215 if (channel
== drv_data
->tx_channel
)
216 pxa2xx_spi_dma_error_stop(drv_data
,
217 "dma_handler: bad bus address on tx channel");
219 pxa2xx_spi_dma_error_stop(drv_data
,
220 "dma_handler: bad bus address on rx channel");
224 /* PXA255x_SSP has no timeout interrupt, wait for tailing bytes */
225 if ((channel
== drv_data
->tx_channel
)
226 && (irq_status
& DCSR_ENDINTR
)
227 && (drv_data
->ssp_type
== PXA25x_SSP
)) {
229 /* Wait for rx to stall */
230 if (wait_ssp_rx_stall(drv_data
) == 0)
231 dev_err(&drv_data
->pdev
->dev
,
232 "dma_handler: ssp rx stall failed\n");
234 /* finish this transfer, start the next */
235 pxa2xx_spi_dma_transfer_complete(drv_data
);
239 irqreturn_t
pxa2xx_spi_dma_transfer(struct driver_data
*drv_data
)
243 irq_status
= pxa2xx_spi_read(drv_data
, SSSR
) & drv_data
->mask_sr
;
244 if (irq_status
& SSSR_ROR
) {
245 pxa2xx_spi_dma_error_stop(drv_data
,
246 "dma_transfer: fifo overrun");
250 /* Check for false positive timeout */
251 if ((irq_status
& SSSR_TINT
)
252 && (DCSR(drv_data
->tx_channel
) & DCSR_RUN
)) {
253 pxa2xx_spi_write(drv_data
, SSSR
, SSSR_TINT
);
257 if (irq_status
& SSSR_TINT
|| drv_data
->rx
== drv_data
->rx_end
) {
259 /* Clear and disable timeout interrupt, do the rest in
260 * dma_transfer_complete */
261 if (!pxa25x_ssp_comp(drv_data
))
262 pxa2xx_spi_write(drv_data
, SSTO
, 0);
264 /* finish this transfer, start the next */
265 pxa2xx_spi_dma_transfer_complete(drv_data
);
270 /* Opps problem detected */
274 int pxa2xx_spi_dma_prepare(struct driver_data
*drv_data
, u32 dma_burst
)
278 switch (drv_data
->n_bytes
) {
280 dma_width
= DCMD_WIDTH1
;
283 dma_width
= DCMD_WIDTH2
;
286 dma_width
= DCMD_WIDTH4
;
290 /* Setup rx DMA Channel */
291 DCSR(drv_data
->rx_channel
) = RESET_DMA_CHANNEL
;
292 DSADR(drv_data
->rx_channel
) = drv_data
->ssdr_physical
;
293 DTADR(drv_data
->rx_channel
) = drv_data
->rx_dma
;
294 if (drv_data
->rx
== drv_data
->null_dma_buf
)
295 /* No target address increment */
296 DCMD(drv_data
->rx_channel
) = DCMD_FLOWSRC
301 DCMD(drv_data
->rx_channel
) = DCMD_INCTRGADDR
307 /* Setup tx DMA Channel */
308 DCSR(drv_data
->tx_channel
) = RESET_DMA_CHANNEL
;
309 DSADR(drv_data
->tx_channel
) = drv_data
->tx_dma
;
310 DTADR(drv_data
->tx_channel
) = drv_data
->ssdr_physical
;
311 if (drv_data
->tx
== drv_data
->null_dma_buf
)
312 /* No source address increment */
313 DCMD(drv_data
->tx_channel
) = DCMD_FLOWTRG
318 DCMD(drv_data
->tx_channel
) = DCMD_INCSRCADDR
324 /* Enable dma end irqs on SSP to detect end of transfer */
325 if (drv_data
->ssp_type
== PXA25x_SSP
)
326 DCMD(drv_data
->tx_channel
) |= DCMD_ENDIRQEN
;
331 void pxa2xx_spi_dma_start(struct driver_data
*drv_data
)
333 DCSR(drv_data
->rx_channel
) |= DCSR_RUN
;
334 DCSR(drv_data
->tx_channel
) |= DCSR_RUN
;
337 int pxa2xx_spi_dma_setup(struct driver_data
*drv_data
)
339 struct device
*dev
= &drv_data
->pdev
->dev
;
340 struct ssp_device
*ssp
= drv_data
->ssp
;
342 /* Get two DMA channels (rx and tx) */
343 drv_data
->rx_channel
= pxa_request_dma("pxa2xx_spi_ssp_rx",
345 pxa2xx_spi_dma_handler
,
347 if (drv_data
->rx_channel
< 0) {
348 dev_err(dev
, "problem (%d) requesting rx channel\n",
349 drv_data
->rx_channel
);
352 drv_data
->tx_channel
= pxa_request_dma("pxa2xx_spi_ssp_tx",
354 pxa2xx_spi_dma_handler
,
356 if (drv_data
->tx_channel
< 0) {
357 dev_err(dev
, "problem (%d) requesting tx channel\n",
358 drv_data
->tx_channel
);
359 pxa_free_dma(drv_data
->rx_channel
);
363 DRCMR(ssp
->drcmr_rx
) = DRCMR_MAPVLD
| drv_data
->rx_channel
;
364 DRCMR(ssp
->drcmr_tx
) = DRCMR_MAPVLD
| drv_data
->tx_channel
;
369 void pxa2xx_spi_dma_release(struct driver_data
*drv_data
)
371 struct ssp_device
*ssp
= drv_data
->ssp
;
373 DRCMR(ssp
->drcmr_rx
) = 0;
374 DRCMR(ssp
->drcmr_tx
) = 0;
376 if (drv_data
->tx_channel
!= 0)
377 pxa_free_dma(drv_data
->tx_channel
);
378 if (drv_data
->rx_channel
!= 0)
379 pxa_free_dma(drv_data
->rx_channel
);
382 void pxa2xx_spi_dma_resume(struct driver_data
*drv_data
)
384 if (drv_data
->rx_channel
!= -1)
385 DRCMR(drv_data
->ssp
->drcmr_rx
) =
386 DRCMR_MAPVLD
| drv_data
->rx_channel
;
387 if (drv_data
->tx_channel
!= -1)
388 DRCMR(drv_data
->ssp
->drcmr_tx
) =
389 DRCMR_MAPVLD
| drv_data
->tx_channel
;
392 int pxa2xx_spi_set_dma_burst_and_threshold(struct chip_data
*chip
,
393 struct spi_device
*spi
,
394 u8 bits_per_word
, u32
*burst_code
,
397 struct pxa2xx_spi_chip
*chip_info
=
398 (struct pxa2xx_spi_chip
*)spi
->controller_data
;
405 /* Set the threshold (in registers) to equal the same amount of data
406 * as represented by burst size (in bytes). The computation below
407 * is (burst_size rounded up to nearest 8 byte, word or long word)
408 * divided by (bytes/register); the tx threshold is the inverse of
409 * the rx, so that there will always be enough data in the rx fifo
410 * to satisfy a burst, and there will always be enough space in the
411 * tx fifo to accept a burst (a tx burst will overwrite the fifo if
412 * there is not enough space), there must always remain enough empty
413 * space in the rx fifo for any data loaded to the tx fifo.
414 * Whenever burst_size (in bytes) equals bits/word, the fifo threshold
415 * will be 8, or half the fifo;
416 * The threshold can only be set to 2, 4 or 8, but not 16, because
417 * to burst 16 to the tx fifo, the fifo would have to be empty;
418 * however, the minimum fifo trigger level is 1, and the tx will
419 * request service when the fifo is at this level, with only 15 spaces.
422 /* find bytes/word */
423 if (bits_per_word
<= 8)
425 else if (bits_per_word
<= 16)
430 /* use struct pxa2xx_spi_chip->dma_burst_size if available */
432 req_burst_size
= chip_info
->dma_burst_size
;
434 switch (chip
->dma_burst_size
) {
436 /* if the default burst size is not set,
438 chip
->dma_burst_size
= DCMD_BURST8
;
450 if (req_burst_size
<= 8) {
451 *burst_code
= DCMD_BURST8
;
453 } else if (req_burst_size
<= 16) {
454 if (bytes_per_word
== 1) {
455 /* don't burst more than 1/2 the fifo */
456 *burst_code
= DCMD_BURST8
;
460 *burst_code
= DCMD_BURST16
;
464 if (bytes_per_word
== 1) {
465 /* don't burst more than 1/2 the fifo */
466 *burst_code
= DCMD_BURST8
;
469 } else if (bytes_per_word
== 2) {
470 /* don't burst more than 1/2 the fifo */
471 *burst_code
= DCMD_BURST16
;
475 *burst_code
= DCMD_BURST32
;
480 thresh_words
= burst_bytes
/ bytes_per_word
;
482 /* thresh_words will be between 2 and 8 */
483 *threshold
= (SSCR1_RxTresh(thresh_words
) & SSCR1_RFT
)
484 | (SSCR1_TxTresh(16-thresh_words
) & SSCR1_TFT
);