1 // SPDX-License-Identifier: GPL-2.0-only
3 * DMA driver for Nvidia's Tegra20 APB DMA controller.
5 * Copyright (c) 2012-2013, NVIDIA CORPORATION. All rights reserved.
8 #include <linux/bitops.h>
10 #include <linux/delay.h>
11 #include <linux/dmaengine.h>
12 #include <linux/dma-mapping.h>
13 #include <linux/err.h>
14 #include <linux/init.h>
15 #include <linux/interrupt.h>
18 #include <linux/module.h>
20 #include <linux/of_dma.h>
21 #include <linux/platform_device.h>
23 #include <linux/pm_runtime.h>
24 #include <linux/reset.h>
25 #include <linux/slab.h>
26 #include <linux/wait.h>
28 #include "dmaengine.h"
30 #define CREATE_TRACE_POINTS
31 #include <trace/events/tegra_apb_dma.h>
33 #define TEGRA_APBDMA_GENERAL 0x0
34 #define TEGRA_APBDMA_GENERAL_ENABLE BIT(31)
36 #define TEGRA_APBDMA_CONTROL 0x010
37 #define TEGRA_APBDMA_IRQ_MASK 0x01c
38 #define TEGRA_APBDMA_IRQ_MASK_SET 0x020
41 #define TEGRA_APBDMA_CHAN_CSR 0x00
42 #define TEGRA_APBDMA_CSR_ENB BIT(31)
43 #define TEGRA_APBDMA_CSR_IE_EOC BIT(30)
44 #define TEGRA_APBDMA_CSR_HOLD BIT(29)
45 #define TEGRA_APBDMA_CSR_DIR BIT(28)
46 #define TEGRA_APBDMA_CSR_ONCE BIT(27)
47 #define TEGRA_APBDMA_CSR_FLOW BIT(21)
48 #define TEGRA_APBDMA_CSR_REQ_SEL_SHIFT 16
49 #define TEGRA_APBDMA_CSR_REQ_SEL_MASK 0x1F
50 #define TEGRA_APBDMA_CSR_WCOUNT_MASK 0xFFFC
53 #define TEGRA_APBDMA_CHAN_STATUS 0x004
54 #define TEGRA_APBDMA_STATUS_BUSY BIT(31)
55 #define TEGRA_APBDMA_STATUS_ISE_EOC BIT(30)
56 #define TEGRA_APBDMA_STATUS_HALT BIT(29)
57 #define TEGRA_APBDMA_STATUS_PING_PONG BIT(28)
58 #define TEGRA_APBDMA_STATUS_COUNT_SHIFT 2
59 #define TEGRA_APBDMA_STATUS_COUNT_MASK 0xFFFC
61 #define TEGRA_APBDMA_CHAN_CSRE 0x00C
62 #define TEGRA_APBDMA_CHAN_CSRE_PAUSE BIT(31)
64 /* AHB memory address */
65 #define TEGRA_APBDMA_CHAN_AHBPTR 0x010
67 /* AHB sequence register */
68 #define TEGRA_APBDMA_CHAN_AHBSEQ 0x14
69 #define TEGRA_APBDMA_AHBSEQ_INTR_ENB BIT(31)
70 #define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_8 (0 << 28)
71 #define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_16 (1 << 28)
72 #define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32 (2 << 28)
73 #define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_64 (3 << 28)
74 #define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_128 (4 << 28)
75 #define TEGRA_APBDMA_AHBSEQ_DATA_SWAP BIT(27)
76 #define TEGRA_APBDMA_AHBSEQ_BURST_1 (4 << 24)
77 #define TEGRA_APBDMA_AHBSEQ_BURST_4 (5 << 24)
78 #define TEGRA_APBDMA_AHBSEQ_BURST_8 (6 << 24)
79 #define TEGRA_APBDMA_AHBSEQ_DBL_BUF BIT(19)
80 #define TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT 16
81 #define TEGRA_APBDMA_AHBSEQ_WRAP_NONE 0
84 #define TEGRA_APBDMA_CHAN_APBPTR 0x018
86 /* APB sequence register */
87 #define TEGRA_APBDMA_CHAN_APBSEQ 0x01c
88 #define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_8 (0 << 28)
89 #define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_16 (1 << 28)
90 #define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32 (2 << 28)
91 #define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_64 (3 << 28)
92 #define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_128 (4 << 28)
93 #define TEGRA_APBDMA_APBSEQ_DATA_SWAP BIT(27)
94 #define TEGRA_APBDMA_APBSEQ_WRAP_WORD_1 (1 << 16)
96 /* Tegra148 specific registers */
97 #define TEGRA_APBDMA_CHAN_WCOUNT 0x20
99 #define TEGRA_APBDMA_CHAN_WORD_TRANSFER 0x24
102 * If any burst is in flight and DMA paused then this is the time to complete
103 * on-flight burst and update DMA status register.
105 #define TEGRA_APBDMA_BURST_COMPLETE_TIME 20
107 /* Channel base address offset from APBDMA base address */
108 #define TEGRA_APBDMA_CHANNEL_BASE_ADD_OFFSET 0x1000
110 #define TEGRA_APBDMA_SLAVE_ID_INVALID (TEGRA_APBDMA_CSR_REQ_SEL_MASK + 1)
115 * tegra_dma_chip_data Tegra chip specific DMA data
116 * @nr_channels: Number of channels available in the controller.
117 * @channel_reg_size: Channel register size/stride.
118 * @max_dma_count: Maximum DMA transfer count supported by DMA controller.
119 * @support_channel_pause: Support channel wise pause of dma.
120 * @support_separate_wcount_reg: Support separate word count register.
122 struct tegra_dma_chip_data {
123 unsigned int nr_channels;
124 unsigned int channel_reg_size;
125 unsigned int max_dma_count;
126 bool support_channel_pause;
127 bool support_separate_wcount_reg;
130 /* DMA channel registers */
131 struct tegra_dma_channel_regs {
141 * tegra_dma_sg_req: DMA request details to configure hardware. This
142 * contains the details for one transfer to configure DMA hw.
143 * The client's request for data transfer can be broken into multiple
144 * sub-transfer as per requester details and hw support.
145 * This sub transfer get added in the list of transfer and point to Tegra
146 * DMA descriptor which manages the transfer details.
148 struct tegra_dma_sg_req {
149 struct tegra_dma_channel_regs ch_regs;
150 unsigned int req_len;
153 struct list_head node;
154 struct tegra_dma_desc *dma_desc;
155 unsigned int words_xferred;
159 * tegra_dma_desc: Tegra DMA descriptors which manages the client requests.
160 * This descriptor keep track of transfer status, callbacks and request
163 struct tegra_dma_desc {
164 struct dma_async_tx_descriptor txd;
165 unsigned int bytes_requested;
166 unsigned int bytes_transferred;
167 enum dma_status dma_status;
168 struct list_head node;
169 struct list_head tx_list;
170 struct list_head cb_node;
171 unsigned int cb_count;
174 struct tegra_dma_channel;
176 typedef void (*dma_isr_handler)(struct tegra_dma_channel *tdc,
179 /* tegra_dma_channel: Channel specific information */
180 struct tegra_dma_channel {
181 struct dma_chan dma_chan;
185 void __iomem *chan_addr;
188 struct tegra_dma *tdma;
191 /* Different lists for managing the requests */
192 struct list_head free_sg_req;
193 struct list_head pending_sg_req;
194 struct list_head free_dma_desc;
195 struct list_head cb_desc;
197 /* ISR handler and tasklet for bottom half of isr handling */
198 dma_isr_handler isr_handler;
199 struct tasklet_struct tasklet;
201 /* Channel-slave specific configuration */
202 unsigned int slave_id;
203 struct dma_slave_config dma_sconfig;
204 struct tegra_dma_channel_regs channel_reg;
206 struct wait_queue_head wq;
209 /* tegra_dma: Tegra DMA specific information */
211 struct dma_device dma_dev;
214 struct reset_control *rst;
215 spinlock_t global_lock;
216 void __iomem *base_addr;
217 const struct tegra_dma_chip_data *chip_data;
220 * Counter for managing global pausing of the DMA controller.
221 * Only applicable for devices that don't support individual
224 u32 global_pause_count;
226 /* Last member of the structure */
227 struct tegra_dma_channel channels[];
230 static inline void tdma_write(struct tegra_dma *tdma, u32 reg, u32 val)
232 writel(val, tdma->base_addr + reg);
235 static inline void tdc_write(struct tegra_dma_channel *tdc,
238 writel(val, tdc->chan_addr + reg);
241 static inline u32 tdc_read(struct tegra_dma_channel *tdc, u32 reg)
243 return readl(tdc->chan_addr + reg);
246 static inline struct tegra_dma_channel *to_tegra_dma_chan(struct dma_chan *dc)
248 return container_of(dc, struct tegra_dma_channel, dma_chan);
251 static inline struct tegra_dma_desc *
252 txd_to_tegra_dma_desc(struct dma_async_tx_descriptor *td)
254 return container_of(td, struct tegra_dma_desc, txd);
257 static inline struct device *tdc2dev(struct tegra_dma_channel *tdc)
259 return &tdc->dma_chan.dev->device;
262 static dma_cookie_t tegra_dma_tx_submit(struct dma_async_tx_descriptor *tx);
264 /* Get DMA desc from free list, if not there then allocate it. */
265 static struct tegra_dma_desc *tegra_dma_desc_get(struct tegra_dma_channel *tdc)
267 struct tegra_dma_desc *dma_desc;
270 spin_lock_irqsave(&tdc->lock, flags);
272 /* Do not allocate if desc are waiting for ack */
273 list_for_each_entry(dma_desc, &tdc->free_dma_desc, node) {
274 if (async_tx_test_ack(&dma_desc->txd) && !dma_desc->cb_count) {
275 list_del(&dma_desc->node);
276 spin_unlock_irqrestore(&tdc->lock, flags);
277 dma_desc->txd.flags = 0;
282 spin_unlock_irqrestore(&tdc->lock, flags);
284 /* Allocate DMA desc */
285 dma_desc = kzalloc(sizeof(*dma_desc), GFP_NOWAIT);
289 dma_async_tx_descriptor_init(&dma_desc->txd, &tdc->dma_chan);
290 dma_desc->txd.tx_submit = tegra_dma_tx_submit;
291 dma_desc->txd.flags = 0;
296 static void tegra_dma_desc_put(struct tegra_dma_channel *tdc,
297 struct tegra_dma_desc *dma_desc)
301 spin_lock_irqsave(&tdc->lock, flags);
302 if (!list_empty(&dma_desc->tx_list))
303 list_splice_init(&dma_desc->tx_list, &tdc->free_sg_req);
304 list_add_tail(&dma_desc->node, &tdc->free_dma_desc);
305 spin_unlock_irqrestore(&tdc->lock, flags);
308 static struct tegra_dma_sg_req *
309 tegra_dma_sg_req_get(struct tegra_dma_channel *tdc)
311 struct tegra_dma_sg_req *sg_req;
314 spin_lock_irqsave(&tdc->lock, flags);
315 if (!list_empty(&tdc->free_sg_req)) {
316 sg_req = list_first_entry(&tdc->free_sg_req, typeof(*sg_req),
318 list_del(&sg_req->node);
319 spin_unlock_irqrestore(&tdc->lock, flags);
322 spin_unlock_irqrestore(&tdc->lock, flags);
324 sg_req = kzalloc(sizeof(*sg_req), GFP_NOWAIT);
329 static int tegra_dma_slave_config(struct dma_chan *dc,
330 struct dma_slave_config *sconfig)
332 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
334 if (!list_empty(&tdc->pending_sg_req)) {
335 dev_err(tdc2dev(tdc), "Configuration not allowed\n");
339 memcpy(&tdc->dma_sconfig, sconfig, sizeof(*sconfig));
340 tdc->config_init = true;
345 static void tegra_dma_global_pause(struct tegra_dma_channel *tdc,
346 bool wait_for_burst_complete)
348 struct tegra_dma *tdma = tdc->tdma;
350 spin_lock(&tdma->global_lock);
352 if (tdc->tdma->global_pause_count == 0) {
353 tdma_write(tdma, TEGRA_APBDMA_GENERAL, 0);
354 if (wait_for_burst_complete)
355 udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME);
358 tdc->tdma->global_pause_count++;
360 spin_unlock(&tdma->global_lock);
363 static void tegra_dma_global_resume(struct tegra_dma_channel *tdc)
365 struct tegra_dma *tdma = tdc->tdma;
367 spin_lock(&tdma->global_lock);
369 if (WARN_ON(tdc->tdma->global_pause_count == 0))
372 if (--tdc->tdma->global_pause_count == 0)
373 tdma_write(tdma, TEGRA_APBDMA_GENERAL,
374 TEGRA_APBDMA_GENERAL_ENABLE);
377 spin_unlock(&tdma->global_lock);
380 static void tegra_dma_pause(struct tegra_dma_channel *tdc,
381 bool wait_for_burst_complete)
383 struct tegra_dma *tdma = tdc->tdma;
385 if (tdma->chip_data->support_channel_pause) {
386 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSRE,
387 TEGRA_APBDMA_CHAN_CSRE_PAUSE);
388 if (wait_for_burst_complete)
389 udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME);
391 tegra_dma_global_pause(tdc, wait_for_burst_complete);
395 static void tegra_dma_resume(struct tegra_dma_channel *tdc)
397 struct tegra_dma *tdma = tdc->tdma;
399 if (tdma->chip_data->support_channel_pause)
400 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSRE, 0);
402 tegra_dma_global_resume(tdc);
405 static void tegra_dma_stop(struct tegra_dma_channel *tdc)
409 /* Disable interrupts */
410 csr = tdc_read(tdc, TEGRA_APBDMA_CHAN_CSR);
411 csr &= ~TEGRA_APBDMA_CSR_IE_EOC;
412 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, csr);
415 csr &= ~TEGRA_APBDMA_CSR_ENB;
416 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, csr);
418 /* Clear interrupt status if it is there */
419 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
420 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
421 dev_dbg(tdc2dev(tdc), "%s():clearing interrupt\n", __func__);
422 tdc_write(tdc, TEGRA_APBDMA_CHAN_STATUS, status);
427 static void tegra_dma_start(struct tegra_dma_channel *tdc,
428 struct tegra_dma_sg_req *sg_req)
430 struct tegra_dma_channel_regs *ch_regs = &sg_req->ch_regs;
432 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, ch_regs->csr);
433 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBSEQ, ch_regs->apb_seq);
434 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, ch_regs->apb_ptr);
435 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBSEQ, ch_regs->ahb_seq);
436 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, ch_regs->ahb_ptr);
437 if (tdc->tdma->chip_data->support_separate_wcount_reg)
438 tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT, ch_regs->wcount);
441 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR,
442 ch_regs->csr | TEGRA_APBDMA_CSR_ENB);
445 static void tegra_dma_configure_for_next(struct tegra_dma_channel *tdc,
446 struct tegra_dma_sg_req *nsg_req)
448 unsigned long status;
451 * The DMA controller reloads the new configuration for next transfer
452 * after last burst of current transfer completes.
453 * If there is no IEC status then this makes sure that last burst
454 * has not be completed. There may be case that last burst is on
455 * flight and so it can complete but because DMA is paused, it
456 * will not generates interrupt as well as not reload the new
458 * If there is already IEC status then interrupt handler need to
459 * load new configuration.
461 tegra_dma_pause(tdc, false);
462 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
465 * If interrupt is pending then do nothing as the ISR will handle
466 * the programing for new request.
468 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
469 dev_err(tdc2dev(tdc),
470 "Skipping new configuration as interrupt is pending\n");
471 tegra_dma_resume(tdc);
475 /* Safe to program new configuration */
476 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, nsg_req->ch_regs.apb_ptr);
477 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, nsg_req->ch_regs.ahb_ptr);
478 if (tdc->tdma->chip_data->support_separate_wcount_reg)
479 tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT,
480 nsg_req->ch_regs.wcount);
481 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR,
482 nsg_req->ch_regs.csr | TEGRA_APBDMA_CSR_ENB);
483 nsg_req->configured = true;
484 nsg_req->words_xferred = 0;
486 tegra_dma_resume(tdc);
489 static void tdc_start_head_req(struct tegra_dma_channel *tdc)
491 struct tegra_dma_sg_req *sg_req;
493 sg_req = list_first_entry(&tdc->pending_sg_req, typeof(*sg_req), node);
494 tegra_dma_start(tdc, sg_req);
495 sg_req->configured = true;
496 sg_req->words_xferred = 0;
500 static void tdc_configure_next_head_desc(struct tegra_dma_channel *tdc)
502 struct tegra_dma_sg_req *hsgreq, *hnsgreq;
504 hsgreq = list_first_entry(&tdc->pending_sg_req, typeof(*hsgreq), node);
505 if (!list_is_last(&hsgreq->node, &tdc->pending_sg_req)) {
506 hnsgreq = list_first_entry(&hsgreq->node, typeof(*hnsgreq),
508 tegra_dma_configure_for_next(tdc, hnsgreq);
512 static inline unsigned int
513 get_current_xferred_count(struct tegra_dma_channel *tdc,
514 struct tegra_dma_sg_req *sg_req,
515 unsigned long status)
517 return sg_req->req_len - (status & TEGRA_APBDMA_STATUS_COUNT_MASK) - 4;
520 static void tegra_dma_abort_all(struct tegra_dma_channel *tdc)
522 struct tegra_dma_desc *dma_desc;
523 struct tegra_dma_sg_req *sgreq;
525 while (!list_empty(&tdc->pending_sg_req)) {
526 sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq),
528 list_move_tail(&sgreq->node, &tdc->free_sg_req);
529 if (sgreq->last_sg) {
530 dma_desc = sgreq->dma_desc;
531 dma_desc->dma_status = DMA_ERROR;
532 list_add_tail(&dma_desc->node, &tdc->free_dma_desc);
534 /* Add in cb list if it is not there. */
535 if (!dma_desc->cb_count)
536 list_add_tail(&dma_desc->cb_node,
538 dma_desc->cb_count++;
541 tdc->isr_handler = NULL;
544 static bool handle_continuous_head_request(struct tegra_dma_channel *tdc,
547 struct tegra_dma_sg_req *hsgreq;
550 * Check that head req on list should be in flight.
551 * If it is not in flight then abort transfer as
552 * looping of transfer can not continue.
554 hsgreq = list_first_entry(&tdc->pending_sg_req, typeof(*hsgreq), node);
555 if (!hsgreq->configured) {
557 pm_runtime_put(tdc->tdma->dev);
558 dev_err(tdc2dev(tdc), "DMA transfer underflow, aborting DMA\n");
559 tegra_dma_abort_all(tdc);
563 /* Configure next request */
565 tdc_configure_next_head_desc(tdc);
570 static void handle_once_dma_done(struct tegra_dma_channel *tdc,
573 struct tegra_dma_desc *dma_desc;
574 struct tegra_dma_sg_req *sgreq;
577 sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq), node);
578 dma_desc = sgreq->dma_desc;
579 dma_desc->bytes_transferred += sgreq->req_len;
581 list_del(&sgreq->node);
582 if (sgreq->last_sg) {
583 dma_desc->dma_status = DMA_COMPLETE;
584 dma_cookie_complete(&dma_desc->txd);
585 if (!dma_desc->cb_count)
586 list_add_tail(&dma_desc->cb_node, &tdc->cb_desc);
587 dma_desc->cb_count++;
588 list_add_tail(&dma_desc->node, &tdc->free_dma_desc);
590 list_add_tail(&sgreq->node, &tdc->free_sg_req);
592 /* Do not start DMA if it is going to be terminate */
596 if (list_empty(&tdc->pending_sg_req)) {
597 pm_runtime_put(tdc->tdma->dev);
601 tdc_start_head_req(tdc);
604 static void handle_cont_sngl_cycle_dma_done(struct tegra_dma_channel *tdc,
607 struct tegra_dma_desc *dma_desc;
608 struct tegra_dma_sg_req *sgreq;
611 sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq), node);
612 dma_desc = sgreq->dma_desc;
613 /* if we dma for long enough the transfer count will wrap */
614 dma_desc->bytes_transferred =
615 (dma_desc->bytes_transferred + sgreq->req_len) %
616 dma_desc->bytes_requested;
618 /* Callback need to be call */
619 if (!dma_desc->cb_count)
620 list_add_tail(&dma_desc->cb_node, &tdc->cb_desc);
621 dma_desc->cb_count++;
623 sgreq->words_xferred = 0;
625 /* If not last req then put at end of pending list */
626 if (!list_is_last(&sgreq->node, &tdc->pending_sg_req)) {
627 list_move_tail(&sgreq->node, &tdc->pending_sg_req);
628 sgreq->configured = false;
629 st = handle_continuous_head_request(tdc, to_terminate);
631 dma_desc->dma_status = DMA_ERROR;
635 static void tegra_dma_tasklet(struct tasklet_struct *t)
637 struct tegra_dma_channel *tdc = from_tasklet(tdc, t, tasklet);
638 struct dmaengine_desc_callback cb;
639 struct tegra_dma_desc *dma_desc;
640 unsigned int cb_count;
643 spin_lock_irqsave(&tdc->lock, flags);
644 while (!list_empty(&tdc->cb_desc)) {
645 dma_desc = list_first_entry(&tdc->cb_desc, typeof(*dma_desc),
647 list_del(&dma_desc->cb_node);
648 dmaengine_desc_get_callback(&dma_desc->txd, &cb);
649 cb_count = dma_desc->cb_count;
650 dma_desc->cb_count = 0;
651 trace_tegra_dma_complete_cb(&tdc->dma_chan, cb_count,
653 spin_unlock_irqrestore(&tdc->lock, flags);
655 dmaengine_desc_callback_invoke(&cb, NULL);
656 spin_lock_irqsave(&tdc->lock, flags);
658 spin_unlock_irqrestore(&tdc->lock, flags);
661 static irqreturn_t tegra_dma_isr(int irq, void *dev_id)
663 struct tegra_dma_channel *tdc = dev_id;
666 spin_lock(&tdc->lock);
668 trace_tegra_dma_isr(&tdc->dma_chan, irq);
669 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
670 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
671 tdc_write(tdc, TEGRA_APBDMA_CHAN_STATUS, status);
672 tdc->isr_handler(tdc, false);
673 tasklet_schedule(&tdc->tasklet);
674 wake_up_all(&tdc->wq);
675 spin_unlock(&tdc->lock);
679 spin_unlock(&tdc->lock);
680 dev_info(tdc2dev(tdc), "Interrupt already served status 0x%08x\n",
686 static dma_cookie_t tegra_dma_tx_submit(struct dma_async_tx_descriptor *txd)
688 struct tegra_dma_desc *dma_desc = txd_to_tegra_dma_desc(txd);
689 struct tegra_dma_channel *tdc = to_tegra_dma_chan(txd->chan);
693 spin_lock_irqsave(&tdc->lock, flags);
694 dma_desc->dma_status = DMA_IN_PROGRESS;
695 cookie = dma_cookie_assign(&dma_desc->txd);
696 list_splice_tail_init(&dma_desc->tx_list, &tdc->pending_sg_req);
697 spin_unlock_irqrestore(&tdc->lock, flags);
702 static void tegra_dma_issue_pending(struct dma_chan *dc)
704 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
708 spin_lock_irqsave(&tdc->lock, flags);
709 if (list_empty(&tdc->pending_sg_req)) {
710 dev_err(tdc2dev(tdc), "No DMA request\n");
714 err = pm_runtime_resume_and_get(tdc->tdma->dev);
716 dev_err(tdc2dev(tdc), "Failed to enable DMA\n");
720 tdc_start_head_req(tdc);
722 /* Continuous single mode: Configure next req */
725 * Wait for 1 burst time for configure DMA for
728 udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME);
729 tdc_configure_next_head_desc(tdc);
733 spin_unlock_irqrestore(&tdc->lock, flags);
736 static int tegra_dma_terminate_all(struct dma_chan *dc)
738 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
739 struct tegra_dma_desc *dma_desc;
740 struct tegra_dma_sg_req *sgreq;
745 spin_lock_irqsave(&tdc->lock, flags);
750 /* Pause DMA before checking the queue status */
751 tegra_dma_pause(tdc, true);
753 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
754 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
755 dev_dbg(tdc2dev(tdc), "%s():handling isr\n", __func__);
756 tdc->isr_handler(tdc, true);
757 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
759 if (tdc->tdma->chip_data->support_separate_wcount_reg)
760 wcount = tdc_read(tdc, TEGRA_APBDMA_CHAN_WORD_TRANSFER);
764 was_busy = tdc->busy;
767 if (!list_empty(&tdc->pending_sg_req) && was_busy) {
768 sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq),
770 sgreq->dma_desc->bytes_transferred +=
771 get_current_xferred_count(tdc, sgreq, wcount);
773 tegra_dma_resume(tdc);
775 pm_runtime_put(tdc->tdma->dev);
776 wake_up_all(&tdc->wq);
779 tegra_dma_abort_all(tdc);
781 while (!list_empty(&tdc->cb_desc)) {
782 dma_desc = list_first_entry(&tdc->cb_desc, typeof(*dma_desc),
784 list_del(&dma_desc->cb_node);
785 dma_desc->cb_count = 0;
787 spin_unlock_irqrestore(&tdc->lock, flags);
792 static bool tegra_dma_eoc_interrupt_deasserted(struct tegra_dma_channel *tdc)
797 spin_lock_irqsave(&tdc->lock, flags);
798 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
799 spin_unlock_irqrestore(&tdc->lock, flags);
801 return !(status & TEGRA_APBDMA_STATUS_ISE_EOC);
804 static void tegra_dma_synchronize(struct dma_chan *dc)
806 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
809 err = pm_runtime_resume_and_get(tdc->tdma->dev);
811 dev_err(tdc2dev(tdc), "Failed to synchronize DMA: %d\n", err);
816 * CPU, which handles interrupt, could be busy in
817 * uninterruptible state, in this case sibling CPU
818 * should wait until interrupt is handled.
820 wait_event(tdc->wq, tegra_dma_eoc_interrupt_deasserted(tdc));
822 tasklet_kill(&tdc->tasklet);
824 pm_runtime_put(tdc->tdma->dev);
827 static unsigned int tegra_dma_sg_bytes_xferred(struct tegra_dma_channel *tdc,
828 struct tegra_dma_sg_req *sg_req)
830 u32 status, wcount = 0;
832 if (!list_is_first(&sg_req->node, &tdc->pending_sg_req))
835 if (tdc->tdma->chip_data->support_separate_wcount_reg)
836 wcount = tdc_read(tdc, TEGRA_APBDMA_CHAN_WORD_TRANSFER);
838 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
840 if (!tdc->tdma->chip_data->support_separate_wcount_reg)
843 if (status & TEGRA_APBDMA_STATUS_ISE_EOC)
844 return sg_req->req_len;
846 wcount = get_current_xferred_count(tdc, sg_req, wcount);
850 * If wcount wasn't ever polled for this SG before, then
851 * simply assume that transfer hasn't started yet.
853 * Otherwise it's the end of the transfer.
855 * The alternative would be to poll the status register
856 * until EOC bit is set or wcount goes UP. That's so
857 * because EOC bit is getting set only after the last
858 * burst's completion and counter is less than the actual
859 * transfer size by 4 bytes. The counter value wraps around
860 * in a cyclic mode before EOC is set(!), so we can't easily
861 * distinguish start of transfer from its end.
863 if (sg_req->words_xferred)
864 wcount = sg_req->req_len - 4;
866 } else if (wcount < sg_req->words_xferred) {
868 * This case will never happen for a non-cyclic transfer.
870 * For a cyclic transfer, although it is possible for the
871 * next transfer to have already started (resetting the word
872 * count), this case should still not happen because we should
873 * have detected that the EOC bit is set and hence the transfer
878 wcount = sg_req->req_len - 4;
880 sg_req->words_xferred = wcount;
886 static enum dma_status tegra_dma_tx_status(struct dma_chan *dc,
888 struct dma_tx_state *txstate)
890 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
891 struct tegra_dma_desc *dma_desc;
892 struct tegra_dma_sg_req *sg_req;
895 unsigned int residual;
896 unsigned int bytes = 0;
898 ret = dma_cookie_status(dc, cookie, txstate);
899 if (ret == DMA_COMPLETE)
902 spin_lock_irqsave(&tdc->lock, flags);
904 /* Check on wait_ack desc status */
905 list_for_each_entry(dma_desc, &tdc->free_dma_desc, node) {
906 if (dma_desc->txd.cookie == cookie) {
907 ret = dma_desc->dma_status;
912 /* Check in pending list */
913 list_for_each_entry(sg_req, &tdc->pending_sg_req, node) {
914 dma_desc = sg_req->dma_desc;
915 if (dma_desc->txd.cookie == cookie) {
916 bytes = tegra_dma_sg_bytes_xferred(tdc, sg_req);
917 ret = dma_desc->dma_status;
922 dev_dbg(tdc2dev(tdc), "cookie %d not found\n", cookie);
926 if (dma_desc && txstate) {
927 residual = dma_desc->bytes_requested -
928 ((dma_desc->bytes_transferred + bytes) %
929 dma_desc->bytes_requested);
930 dma_set_residue(txstate, residual);
933 trace_tegra_dma_tx_status(&tdc->dma_chan, cookie, txstate);
934 spin_unlock_irqrestore(&tdc->lock, flags);
939 static inline unsigned int get_bus_width(struct tegra_dma_channel *tdc,
940 enum dma_slave_buswidth slave_bw)
943 case DMA_SLAVE_BUSWIDTH_1_BYTE:
944 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_8;
945 case DMA_SLAVE_BUSWIDTH_2_BYTES:
946 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_16;
947 case DMA_SLAVE_BUSWIDTH_4_BYTES:
948 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32;
949 case DMA_SLAVE_BUSWIDTH_8_BYTES:
950 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_64;
952 dev_warn(tdc2dev(tdc),
953 "slave bw is not supported, using 32bits\n");
954 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32;
958 static inline unsigned int get_burst_size(struct tegra_dma_channel *tdc,
960 enum dma_slave_buswidth slave_bw,
963 unsigned int burst_byte, burst_ahb_width;
966 * burst_size from client is in terms of the bus_width.
967 * convert them into AHB memory width which is 4 byte.
969 burst_byte = burst_size * slave_bw;
970 burst_ahb_width = burst_byte / 4;
972 /* If burst size is 0 then calculate the burst size based on length */
973 if (!burst_ahb_width) {
975 return TEGRA_APBDMA_AHBSEQ_BURST_1;
976 else if ((len >> 4) & 0x1)
977 return TEGRA_APBDMA_AHBSEQ_BURST_4;
979 return TEGRA_APBDMA_AHBSEQ_BURST_8;
981 if (burst_ahb_width < 4)
982 return TEGRA_APBDMA_AHBSEQ_BURST_1;
983 else if (burst_ahb_width < 8)
984 return TEGRA_APBDMA_AHBSEQ_BURST_4;
986 return TEGRA_APBDMA_AHBSEQ_BURST_8;
989 static int get_transfer_param(struct tegra_dma_channel *tdc,
990 enum dma_transfer_direction direction,
994 unsigned int *burst_size,
995 enum dma_slave_buswidth *slave_bw)
999 *apb_addr = tdc->dma_sconfig.dst_addr;
1000 *apb_seq = get_bus_width(tdc, tdc->dma_sconfig.dst_addr_width);
1001 *burst_size = tdc->dma_sconfig.dst_maxburst;
1002 *slave_bw = tdc->dma_sconfig.dst_addr_width;
1003 *csr = TEGRA_APBDMA_CSR_DIR;
1006 case DMA_DEV_TO_MEM:
1007 *apb_addr = tdc->dma_sconfig.src_addr;
1008 *apb_seq = get_bus_width(tdc, tdc->dma_sconfig.src_addr_width);
1009 *burst_size = tdc->dma_sconfig.src_maxburst;
1010 *slave_bw = tdc->dma_sconfig.src_addr_width;
1015 dev_err(tdc2dev(tdc), "DMA direction is not supported\n");
1022 static void tegra_dma_prep_wcount(struct tegra_dma_channel *tdc,
1023 struct tegra_dma_channel_regs *ch_regs,
1026 u32 len_field = (len - 4) & 0xFFFC;
1028 if (tdc->tdma->chip_data->support_separate_wcount_reg)
1029 ch_regs->wcount = len_field;
1031 ch_regs->csr |= len_field;
1034 static struct dma_async_tx_descriptor *
1035 tegra_dma_prep_slave_sg(struct dma_chan *dc,
1036 struct scatterlist *sgl,
1037 unsigned int sg_len,
1038 enum dma_transfer_direction direction,
1039 unsigned long flags,
1042 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
1043 struct tegra_dma_sg_req *sg_req = NULL;
1044 u32 csr, ahb_seq, apb_ptr, apb_seq;
1045 enum dma_slave_buswidth slave_bw;
1046 struct tegra_dma_desc *dma_desc;
1047 struct list_head req_list;
1048 struct scatterlist *sg;
1049 unsigned int burst_size;
1052 if (!tdc->config_init) {
1053 dev_err(tdc2dev(tdc), "DMA channel is not configured\n");
1057 dev_err(tdc2dev(tdc), "Invalid segment length %d\n", sg_len);
1061 if (get_transfer_param(tdc, direction, &apb_ptr, &apb_seq, &csr,
1062 &burst_size, &slave_bw) < 0)
1065 INIT_LIST_HEAD(&req_list);
1067 ahb_seq = TEGRA_APBDMA_AHBSEQ_INTR_ENB;
1068 ahb_seq |= TEGRA_APBDMA_AHBSEQ_WRAP_NONE <<
1069 TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT;
1070 ahb_seq |= TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32;
1072 csr |= TEGRA_APBDMA_CSR_ONCE;
1074 if (tdc->slave_id != TEGRA_APBDMA_SLAVE_ID_INVALID) {
1075 csr |= TEGRA_APBDMA_CSR_FLOW;
1076 csr |= tdc->slave_id << TEGRA_APBDMA_CSR_REQ_SEL_SHIFT;
1079 if (flags & DMA_PREP_INTERRUPT) {
1080 csr |= TEGRA_APBDMA_CSR_IE_EOC;
1086 apb_seq |= TEGRA_APBDMA_APBSEQ_WRAP_WORD_1;
1088 dma_desc = tegra_dma_desc_get(tdc);
1090 dev_err(tdc2dev(tdc), "DMA descriptors not available\n");
1093 INIT_LIST_HEAD(&dma_desc->tx_list);
1094 INIT_LIST_HEAD(&dma_desc->cb_node);
1095 dma_desc->cb_count = 0;
1096 dma_desc->bytes_requested = 0;
1097 dma_desc->bytes_transferred = 0;
1098 dma_desc->dma_status = DMA_IN_PROGRESS;
1100 /* Make transfer requests */
1101 for_each_sg(sgl, sg, sg_len, i) {
1104 mem = sg_dma_address(sg);
1105 len = sg_dma_len(sg);
1107 if ((len & 3) || (mem & 3) ||
1108 len > tdc->tdma->chip_data->max_dma_count) {
1109 dev_err(tdc2dev(tdc),
1110 "DMA length/memory address is not supported\n");
1111 tegra_dma_desc_put(tdc, dma_desc);
1115 sg_req = tegra_dma_sg_req_get(tdc);
1117 dev_err(tdc2dev(tdc), "DMA sg-req not available\n");
1118 tegra_dma_desc_put(tdc, dma_desc);
1122 ahb_seq |= get_burst_size(tdc, burst_size, slave_bw, len);
1123 dma_desc->bytes_requested += len;
1125 sg_req->ch_regs.apb_ptr = apb_ptr;
1126 sg_req->ch_regs.ahb_ptr = mem;
1127 sg_req->ch_regs.csr = csr;
1128 tegra_dma_prep_wcount(tdc, &sg_req->ch_regs, len);
1129 sg_req->ch_regs.apb_seq = apb_seq;
1130 sg_req->ch_regs.ahb_seq = ahb_seq;
1131 sg_req->configured = false;
1132 sg_req->last_sg = false;
1133 sg_req->dma_desc = dma_desc;
1134 sg_req->req_len = len;
1136 list_add_tail(&sg_req->node, &dma_desc->tx_list);
1138 sg_req->last_sg = true;
1139 if (flags & DMA_CTRL_ACK)
1140 dma_desc->txd.flags = DMA_CTRL_ACK;
1143 * Make sure that mode should not be conflicting with currently
1146 if (!tdc->isr_handler) {
1147 tdc->isr_handler = handle_once_dma_done;
1148 tdc->cyclic = false;
1151 dev_err(tdc2dev(tdc), "DMA configured in cyclic mode\n");
1152 tegra_dma_desc_put(tdc, dma_desc);
1157 return &dma_desc->txd;
1160 static struct dma_async_tx_descriptor *
1161 tegra_dma_prep_dma_cyclic(struct dma_chan *dc, dma_addr_t buf_addr,
1164 enum dma_transfer_direction direction,
1165 unsigned long flags)
1167 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
1168 struct tegra_dma_sg_req *sg_req = NULL;
1169 u32 csr, ahb_seq, apb_ptr, apb_seq;
1170 enum dma_slave_buswidth slave_bw;
1171 struct tegra_dma_desc *dma_desc;
1172 dma_addr_t mem = buf_addr;
1173 unsigned int burst_size;
1174 size_t len, remain_len;
1176 if (!buf_len || !period_len) {
1177 dev_err(tdc2dev(tdc), "Invalid buffer/period len\n");
1181 if (!tdc->config_init) {
1182 dev_err(tdc2dev(tdc), "DMA slave is not configured\n");
1187 * We allow to take more number of requests till DMA is
1188 * not started. The driver will loop over all requests.
1189 * Once DMA is started then new requests can be queued only after
1190 * terminating the DMA.
1193 dev_err(tdc2dev(tdc), "Request not allowed when DMA running\n");
1198 * We only support cycle transfer when buf_len is multiple of
1201 if (buf_len % period_len) {
1202 dev_err(tdc2dev(tdc), "buf_len is not multiple of period_len\n");
1207 if ((len & 3) || (buf_addr & 3) ||
1208 len > tdc->tdma->chip_data->max_dma_count) {
1209 dev_err(tdc2dev(tdc), "Req len/mem address is not correct\n");
1213 if (get_transfer_param(tdc, direction, &apb_ptr, &apb_seq, &csr,
1214 &burst_size, &slave_bw) < 0)
1217 ahb_seq = TEGRA_APBDMA_AHBSEQ_INTR_ENB;
1218 ahb_seq |= TEGRA_APBDMA_AHBSEQ_WRAP_NONE <<
1219 TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT;
1220 ahb_seq |= TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32;
1222 if (tdc->slave_id != TEGRA_APBDMA_SLAVE_ID_INVALID) {
1223 csr |= TEGRA_APBDMA_CSR_FLOW;
1224 csr |= tdc->slave_id << TEGRA_APBDMA_CSR_REQ_SEL_SHIFT;
1227 if (flags & DMA_PREP_INTERRUPT) {
1228 csr |= TEGRA_APBDMA_CSR_IE_EOC;
1234 apb_seq |= TEGRA_APBDMA_APBSEQ_WRAP_WORD_1;
1236 dma_desc = tegra_dma_desc_get(tdc);
1238 dev_err(tdc2dev(tdc), "not enough descriptors available\n");
1242 INIT_LIST_HEAD(&dma_desc->tx_list);
1243 INIT_LIST_HEAD(&dma_desc->cb_node);
1244 dma_desc->cb_count = 0;
1246 dma_desc->bytes_transferred = 0;
1247 dma_desc->bytes_requested = buf_len;
1248 remain_len = buf_len;
1250 /* Split transfer equal to period size */
1251 while (remain_len) {
1252 sg_req = tegra_dma_sg_req_get(tdc);
1254 dev_err(tdc2dev(tdc), "DMA sg-req not available\n");
1255 tegra_dma_desc_put(tdc, dma_desc);
1259 ahb_seq |= get_burst_size(tdc, burst_size, slave_bw, len);
1260 sg_req->ch_regs.apb_ptr = apb_ptr;
1261 sg_req->ch_regs.ahb_ptr = mem;
1262 sg_req->ch_regs.csr = csr;
1263 tegra_dma_prep_wcount(tdc, &sg_req->ch_regs, len);
1264 sg_req->ch_regs.apb_seq = apb_seq;
1265 sg_req->ch_regs.ahb_seq = ahb_seq;
1266 sg_req->configured = false;
1267 sg_req->last_sg = false;
1268 sg_req->dma_desc = dma_desc;
1269 sg_req->req_len = len;
1271 list_add_tail(&sg_req->node, &dma_desc->tx_list);
1275 sg_req->last_sg = true;
1276 if (flags & DMA_CTRL_ACK)
1277 dma_desc->txd.flags = DMA_CTRL_ACK;
1280 * Make sure that mode should not be conflicting with currently
1283 if (!tdc->isr_handler) {
1284 tdc->isr_handler = handle_cont_sngl_cycle_dma_done;
1288 dev_err(tdc2dev(tdc), "DMA configuration conflict\n");
1289 tegra_dma_desc_put(tdc, dma_desc);
1294 return &dma_desc->txd;
1297 static int tegra_dma_alloc_chan_resources(struct dma_chan *dc)
1299 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
1301 dma_cookie_init(&tdc->dma_chan);
1306 static void tegra_dma_free_chan_resources(struct dma_chan *dc)
1308 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
1309 struct tegra_dma_desc *dma_desc;
1310 struct tegra_dma_sg_req *sg_req;
1311 struct list_head dma_desc_list;
1312 struct list_head sg_req_list;
1314 INIT_LIST_HEAD(&dma_desc_list);
1315 INIT_LIST_HEAD(&sg_req_list);
1317 dev_dbg(tdc2dev(tdc), "Freeing channel %d\n", tdc->id);
1319 tegra_dma_terminate_all(dc);
1320 tasklet_kill(&tdc->tasklet);
1322 list_splice_init(&tdc->pending_sg_req, &sg_req_list);
1323 list_splice_init(&tdc->free_sg_req, &sg_req_list);
1324 list_splice_init(&tdc->free_dma_desc, &dma_desc_list);
1325 INIT_LIST_HEAD(&tdc->cb_desc);
1326 tdc->config_init = false;
1327 tdc->isr_handler = NULL;
1329 while (!list_empty(&dma_desc_list)) {
1330 dma_desc = list_first_entry(&dma_desc_list, typeof(*dma_desc),
1332 list_del(&dma_desc->node);
1336 while (!list_empty(&sg_req_list)) {
1337 sg_req = list_first_entry(&sg_req_list, typeof(*sg_req), node);
1338 list_del(&sg_req->node);
1342 tdc->slave_id = TEGRA_APBDMA_SLAVE_ID_INVALID;
1345 static struct dma_chan *tegra_dma_of_xlate(struct of_phandle_args *dma_spec,
1346 struct of_dma *ofdma)
1348 struct tegra_dma *tdma = ofdma->of_dma_data;
1349 struct tegra_dma_channel *tdc;
1350 struct dma_chan *chan;
1352 if (dma_spec->args[0] > TEGRA_APBDMA_CSR_REQ_SEL_MASK) {
1353 dev_err(tdma->dev, "Invalid slave id: %d\n", dma_spec->args[0]);
1357 chan = dma_get_any_slave_channel(&tdma->dma_dev);
1361 tdc = to_tegra_dma_chan(chan);
1362 tdc->slave_id = dma_spec->args[0];
1367 /* Tegra20 specific DMA controller information */
1368 static const struct tegra_dma_chip_data tegra20_dma_chip_data = {
1370 .channel_reg_size = 0x20,
1371 .max_dma_count = 1024UL * 64,
1372 .support_channel_pause = false,
1373 .support_separate_wcount_reg = false,
1376 /* Tegra30 specific DMA controller information */
1377 static const struct tegra_dma_chip_data tegra30_dma_chip_data = {
1379 .channel_reg_size = 0x20,
1380 .max_dma_count = 1024UL * 64,
1381 .support_channel_pause = false,
1382 .support_separate_wcount_reg = false,
1385 /* Tegra114 specific DMA controller information */
1386 static const struct tegra_dma_chip_data tegra114_dma_chip_data = {
1388 .channel_reg_size = 0x20,
1389 .max_dma_count = 1024UL * 64,
1390 .support_channel_pause = true,
1391 .support_separate_wcount_reg = false,
1394 /* Tegra148 specific DMA controller information */
1395 static const struct tegra_dma_chip_data tegra148_dma_chip_data = {
1397 .channel_reg_size = 0x40,
1398 .max_dma_count = 1024UL * 64,
1399 .support_channel_pause = true,
1400 .support_separate_wcount_reg = true,
1403 static int tegra_dma_init_hw(struct tegra_dma *tdma)
1407 err = reset_control_assert(tdma->rst);
1409 dev_err(tdma->dev, "failed to assert reset: %d\n", err);
1413 err = clk_enable(tdma->dma_clk);
1415 dev_err(tdma->dev, "failed to enable clk: %d\n", err);
1419 /* reset DMA controller */
1421 reset_control_deassert(tdma->rst);
1423 /* enable global DMA registers */
1424 tdma_write(tdma, TEGRA_APBDMA_GENERAL, TEGRA_APBDMA_GENERAL_ENABLE);
1425 tdma_write(tdma, TEGRA_APBDMA_CONTROL, 0);
1426 tdma_write(tdma, TEGRA_APBDMA_IRQ_MASK_SET, 0xFFFFFFFF);
1428 clk_disable(tdma->dma_clk);
1433 static int tegra_dma_probe(struct platform_device *pdev)
1435 const struct tegra_dma_chip_data *cdata;
1436 struct tegra_dma *tdma;
1441 cdata = of_device_get_match_data(&pdev->dev);
1442 size = struct_size(tdma, channels, cdata->nr_channels);
1444 tdma = devm_kzalloc(&pdev->dev, size, GFP_KERNEL);
1448 tdma->dev = &pdev->dev;
1449 tdma->chip_data = cdata;
1450 platform_set_drvdata(pdev, tdma);
1452 tdma->base_addr = devm_platform_ioremap_resource(pdev, 0);
1453 if (IS_ERR(tdma->base_addr))
1454 return PTR_ERR(tdma->base_addr);
1456 tdma->dma_clk = devm_clk_get(&pdev->dev, NULL);
1457 if (IS_ERR(tdma->dma_clk)) {
1458 dev_err(&pdev->dev, "Error: Missing controller clock\n");
1459 return PTR_ERR(tdma->dma_clk);
1462 tdma->rst = devm_reset_control_get(&pdev->dev, "dma");
1463 if (IS_ERR(tdma->rst)) {
1464 dev_err(&pdev->dev, "Error: Missing reset\n");
1465 return PTR_ERR(tdma->rst);
1468 spin_lock_init(&tdma->global_lock);
1470 ret = clk_prepare(tdma->dma_clk);
1474 ret = tegra_dma_init_hw(tdma);
1476 goto err_clk_unprepare;
1478 pm_runtime_irq_safe(&pdev->dev);
1479 pm_runtime_enable(&pdev->dev);
1481 INIT_LIST_HEAD(&tdma->dma_dev.channels);
1482 for (i = 0; i < cdata->nr_channels; i++) {
1483 struct tegra_dma_channel *tdc = &tdma->channels[i];
1486 tdc->chan_addr = tdma->base_addr +
1487 TEGRA_APBDMA_CHANNEL_BASE_ADD_OFFSET +
1488 (i * cdata->channel_reg_size);
1490 irq = platform_get_irq(pdev, i);
1493 goto err_pm_disable;
1496 snprintf(tdc->name, sizeof(tdc->name), "apbdma.%d", i);
1497 ret = devm_request_irq(&pdev->dev, irq, tegra_dma_isr, 0,
1501 "request_irq failed with err %d channel %d\n",
1503 goto err_pm_disable;
1506 tdc->dma_chan.device = &tdma->dma_dev;
1507 dma_cookie_init(&tdc->dma_chan);
1508 list_add_tail(&tdc->dma_chan.device_node,
1509 &tdma->dma_dev.channels);
1512 tdc->slave_id = TEGRA_APBDMA_SLAVE_ID_INVALID;
1514 tasklet_setup(&tdc->tasklet, tegra_dma_tasklet);
1515 spin_lock_init(&tdc->lock);
1516 init_waitqueue_head(&tdc->wq);
1518 INIT_LIST_HEAD(&tdc->pending_sg_req);
1519 INIT_LIST_HEAD(&tdc->free_sg_req);
1520 INIT_LIST_HEAD(&tdc->free_dma_desc);
1521 INIT_LIST_HEAD(&tdc->cb_desc);
1524 dma_cap_set(DMA_SLAVE, tdma->dma_dev.cap_mask);
1525 dma_cap_set(DMA_PRIVATE, tdma->dma_dev.cap_mask);
1526 dma_cap_set(DMA_CYCLIC, tdma->dma_dev.cap_mask);
1528 tdma->global_pause_count = 0;
1529 tdma->dma_dev.dev = &pdev->dev;
1530 tdma->dma_dev.device_alloc_chan_resources =
1531 tegra_dma_alloc_chan_resources;
1532 tdma->dma_dev.device_free_chan_resources =
1533 tegra_dma_free_chan_resources;
1534 tdma->dma_dev.device_prep_slave_sg = tegra_dma_prep_slave_sg;
1535 tdma->dma_dev.device_prep_dma_cyclic = tegra_dma_prep_dma_cyclic;
1536 tdma->dma_dev.src_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1537 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1538 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) |
1539 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES);
1540 tdma->dma_dev.dst_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1541 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1542 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) |
1543 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES);
1544 tdma->dma_dev.directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
1545 tdma->dma_dev.residue_granularity = DMA_RESIDUE_GRANULARITY_BURST;
1546 tdma->dma_dev.device_config = tegra_dma_slave_config;
1547 tdma->dma_dev.device_terminate_all = tegra_dma_terminate_all;
1548 tdma->dma_dev.device_synchronize = tegra_dma_synchronize;
1549 tdma->dma_dev.device_tx_status = tegra_dma_tx_status;
1550 tdma->dma_dev.device_issue_pending = tegra_dma_issue_pending;
1552 ret = dma_async_device_register(&tdma->dma_dev);
1555 "Tegra20 APB DMA driver registration failed %d\n", ret);
1556 goto err_pm_disable;
1559 ret = of_dma_controller_register(pdev->dev.of_node,
1560 tegra_dma_of_xlate, tdma);
1563 "Tegra20 APB DMA OF registration failed %d\n", ret);
1564 goto err_unregister_dma_dev;
1567 dev_info(&pdev->dev, "Tegra20 APB DMA driver registered %u channels\n",
1568 cdata->nr_channels);
1572 err_unregister_dma_dev:
1573 dma_async_device_unregister(&tdma->dma_dev);
1576 pm_runtime_disable(&pdev->dev);
1579 clk_unprepare(tdma->dma_clk);
1584 static int tegra_dma_remove(struct platform_device *pdev)
1586 struct tegra_dma *tdma = platform_get_drvdata(pdev);
1588 of_dma_controller_free(pdev->dev.of_node);
1589 dma_async_device_unregister(&tdma->dma_dev);
1590 pm_runtime_disable(&pdev->dev);
1591 clk_unprepare(tdma->dma_clk);
1596 static int __maybe_unused tegra_dma_runtime_suspend(struct device *dev)
1598 struct tegra_dma *tdma = dev_get_drvdata(dev);
1600 clk_disable(tdma->dma_clk);
1605 static int __maybe_unused tegra_dma_runtime_resume(struct device *dev)
1607 struct tegra_dma *tdma = dev_get_drvdata(dev);
1609 return clk_enable(tdma->dma_clk);
1612 static int __maybe_unused tegra_dma_dev_suspend(struct device *dev)
1614 struct tegra_dma *tdma = dev_get_drvdata(dev);
1615 unsigned long flags;
1619 for (i = 0; i < tdma->chip_data->nr_channels; i++) {
1620 struct tegra_dma_channel *tdc = &tdma->channels[i];
1622 tasklet_kill(&tdc->tasklet);
1624 spin_lock_irqsave(&tdc->lock, flags);
1626 spin_unlock_irqrestore(&tdc->lock, flags);
1629 dev_err(tdma->dev, "channel %u busy\n", i);
1634 return pm_runtime_force_suspend(dev);
1637 static int __maybe_unused tegra_dma_dev_resume(struct device *dev)
1639 struct tegra_dma *tdma = dev_get_drvdata(dev);
1642 err = tegra_dma_init_hw(tdma);
1646 return pm_runtime_force_resume(dev);
1649 static const struct dev_pm_ops tegra_dma_dev_pm_ops = {
1650 SET_RUNTIME_PM_OPS(tegra_dma_runtime_suspend, tegra_dma_runtime_resume,
1652 SET_SYSTEM_SLEEP_PM_OPS(tegra_dma_dev_suspend, tegra_dma_dev_resume)
1655 static const struct of_device_id tegra_dma_of_match[] = {
1657 .compatible = "nvidia,tegra148-apbdma",
1658 .data = &tegra148_dma_chip_data,
1660 .compatible = "nvidia,tegra114-apbdma",
1661 .data = &tegra114_dma_chip_data,
1663 .compatible = "nvidia,tegra30-apbdma",
1664 .data = &tegra30_dma_chip_data,
1666 .compatible = "nvidia,tegra20-apbdma",
1667 .data = &tegra20_dma_chip_data,
1671 MODULE_DEVICE_TABLE(of, tegra_dma_of_match);
1673 static struct platform_driver tegra_dmac_driver = {
1675 .name = "tegra-apbdma",
1676 .pm = &tegra_dma_dev_pm_ops,
1677 .of_match_table = tegra_dma_of_match,
1679 .probe = tegra_dma_probe,
1680 .remove = tegra_dma_remove,
1683 module_platform_driver(tegra_dmac_driver);
1685 MODULE_DESCRIPTION("NVIDIA Tegra APB DMA Controller driver");
1686 MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
1687 MODULE_LICENSE("GPL v2");