blob: fb23993430d31490b66da870954187f0b80e05f7 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001/*
2 * DMA driver for Nvidia's Tegra20 APB DMA controller.
3 *
4 * Copyright (c) 2012-2013, NVIDIA CORPORATION. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#include <linux/bitops.h>
20#include <linux/clk.h>
21#include <linux/delay.h>
22#include <linux/dmaengine.h>
23#include <linux/dma-mapping.h>
24#include <linux/err.h>
25#include <linux/init.h>
26#include <linux/interrupt.h>
27#include <linux/io.h>
28#include <linux/mm.h>
29#include <linux/module.h>
30#include <linux/of.h>
31#include <linux/of_device.h>
32#include <linux/of_dma.h>
33#include <linux/platform_device.h>
34#include <linux/pm.h>
35#include <linux/pm_runtime.h>
36#include <linux/reset.h>
37#include <linux/slab.h>
38
39#include "dmaengine.h"
40
41#define TEGRA_APBDMA_GENERAL 0x0
42#define TEGRA_APBDMA_GENERAL_ENABLE BIT(31)
43
44#define TEGRA_APBDMA_CONTROL 0x010
45#define TEGRA_APBDMA_IRQ_MASK 0x01c
46#define TEGRA_APBDMA_IRQ_MASK_SET 0x020
47
48/* CSR register */
49#define TEGRA_APBDMA_CHAN_CSR 0x00
50#define TEGRA_APBDMA_CSR_ENB BIT(31)
51#define TEGRA_APBDMA_CSR_IE_EOC BIT(30)
52#define TEGRA_APBDMA_CSR_HOLD BIT(29)
53#define TEGRA_APBDMA_CSR_DIR BIT(28)
54#define TEGRA_APBDMA_CSR_ONCE BIT(27)
55#define TEGRA_APBDMA_CSR_FLOW BIT(21)
56#define TEGRA_APBDMA_CSR_REQ_SEL_SHIFT 16
57#define TEGRA_APBDMA_CSR_REQ_SEL_MASK 0x1F
58#define TEGRA_APBDMA_CSR_WCOUNT_MASK 0xFFFC
59
60/* STATUS register */
61#define TEGRA_APBDMA_CHAN_STATUS 0x004
62#define TEGRA_APBDMA_STATUS_BUSY BIT(31)
63#define TEGRA_APBDMA_STATUS_ISE_EOC BIT(30)
64#define TEGRA_APBDMA_STATUS_HALT BIT(29)
65#define TEGRA_APBDMA_STATUS_PING_PONG BIT(28)
66#define TEGRA_APBDMA_STATUS_COUNT_SHIFT 2
67#define TEGRA_APBDMA_STATUS_COUNT_MASK 0xFFFC
68
69#define TEGRA_APBDMA_CHAN_CSRE 0x00C
70#define TEGRA_APBDMA_CHAN_CSRE_PAUSE (1 << 31)
71
72/* AHB memory address */
73#define TEGRA_APBDMA_CHAN_AHBPTR 0x010
74
75/* AHB sequence register */
76#define TEGRA_APBDMA_CHAN_AHBSEQ 0x14
77#define TEGRA_APBDMA_AHBSEQ_INTR_ENB BIT(31)
78#define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_8 (0 << 28)
79#define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_16 (1 << 28)
80#define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32 (2 << 28)
81#define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_64 (3 << 28)
82#define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_128 (4 << 28)
83#define TEGRA_APBDMA_AHBSEQ_DATA_SWAP BIT(27)
84#define TEGRA_APBDMA_AHBSEQ_BURST_1 (4 << 24)
85#define TEGRA_APBDMA_AHBSEQ_BURST_4 (5 << 24)
86#define TEGRA_APBDMA_AHBSEQ_BURST_8 (6 << 24)
87#define TEGRA_APBDMA_AHBSEQ_DBL_BUF BIT(19)
88#define TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT 16
89#define TEGRA_APBDMA_AHBSEQ_WRAP_NONE 0
90
91/* APB address */
92#define TEGRA_APBDMA_CHAN_APBPTR 0x018
93
94/* APB sequence register */
95#define TEGRA_APBDMA_CHAN_APBSEQ 0x01c
96#define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_8 (0 << 28)
97#define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_16 (1 << 28)
98#define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32 (2 << 28)
99#define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_64 (3 << 28)
100#define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_128 (4 << 28)
101#define TEGRA_APBDMA_APBSEQ_DATA_SWAP BIT(27)
102#define TEGRA_APBDMA_APBSEQ_WRAP_WORD_1 (1 << 16)
103
104/* Tegra148 specific registers */
105#define TEGRA_APBDMA_CHAN_WCOUNT 0x20
106
107#define TEGRA_APBDMA_CHAN_WORD_TRANSFER 0x24
108
109/*
110 * If any burst is in flight and DMA paused then this is the time to complete
111 * on-flight burst and update DMA status register.
112 */
113#define TEGRA_APBDMA_BURST_COMPLETE_TIME 20
114
115/* Channel base address offset from APBDMA base address */
116#define TEGRA_APBDMA_CHANNEL_BASE_ADD_OFFSET 0x1000
117
118#define TEGRA_APBDMA_SLAVE_ID_INVALID (TEGRA_APBDMA_CSR_REQ_SEL_MASK + 1)
119
120struct tegra_dma;
121
122/*
123 * tegra_dma_chip_data Tegra chip specific DMA data
124 * @nr_channels: Number of channels available in the controller.
125 * @channel_reg_size: Channel register size/stride.
126 * @max_dma_count: Maximum DMA transfer count supported by DMA controller.
127 * @support_channel_pause: Support channel wise pause of dma.
128 * @support_separate_wcount_reg: Support separate word count register.
129 */
130struct tegra_dma_chip_data {
131 int nr_channels;
132 int channel_reg_size;
133 int max_dma_count;
134 bool support_channel_pause;
135 bool support_separate_wcount_reg;
136};
137
138/* DMA channel registers */
139struct tegra_dma_channel_regs {
140 unsigned long csr;
141 unsigned long ahb_ptr;
142 unsigned long apb_ptr;
143 unsigned long ahb_seq;
144 unsigned long apb_seq;
145 unsigned long wcount;
146};
147
148/*
149 * tegra_dma_sg_req: Dma request details to configure hardware. This
150 * contains the details for one transfer to configure DMA hw.
151 * The client's request for data transfer can be broken into multiple
152 * sub-transfer as per requester details and hw support.
153 * This sub transfer get added in the list of transfer and point to Tegra
154 * DMA descriptor which manages the transfer details.
155 */
156struct tegra_dma_sg_req {
157 struct tegra_dma_channel_regs ch_regs;
158 int req_len;
159 bool configured;
160 bool last_sg;
161 struct list_head node;
162 struct tegra_dma_desc *dma_desc;
163};
164
165/*
166 * tegra_dma_desc: Tegra DMA descriptors which manages the client requests.
167 * This descriptor keep track of transfer status, callbacks and request
168 * counts etc.
169 */
170struct tegra_dma_desc {
171 struct dma_async_tx_descriptor txd;
172 int bytes_requested;
173 int bytes_transferred;
174 enum dma_status dma_status;
175 struct list_head node;
176 struct list_head tx_list;
177 struct list_head cb_node;
178 int cb_count;
179};
180
181struct tegra_dma_channel;
182
183typedef void (*dma_isr_handler)(struct tegra_dma_channel *tdc,
184 bool to_terminate);
185
186/* tegra_dma_channel: Channel specific information */
187struct tegra_dma_channel {
188 struct dma_chan dma_chan;
189 char name[30];
190 bool config_init;
191 int id;
192 int irq;
193 void __iomem *chan_addr;
194 spinlock_t lock;
195 bool busy;
196 struct tegra_dma *tdma;
197 bool cyclic;
198
199 /* Different lists for managing the requests */
200 struct list_head free_sg_req;
201 struct list_head pending_sg_req;
202 struct list_head free_dma_desc;
203 struct list_head cb_desc;
204
205 /* ISR handler and tasklet for bottom half of isr handling */
206 dma_isr_handler isr_handler;
207 struct tasklet_struct tasklet;
208
209 /* Channel-slave specific configuration */
210 unsigned int slave_id;
211 struct dma_slave_config dma_sconfig;
212 struct tegra_dma_channel_regs channel_reg;
213};
214
215/* tegra_dma: Tegra DMA specific information */
216struct tegra_dma {
217 struct dma_device dma_dev;
218 struct device *dev;
219 struct clk *dma_clk;
220 struct reset_control *rst;
221 spinlock_t global_lock;
222 void __iomem *base_addr;
223 const struct tegra_dma_chip_data *chip_data;
224
225 /*
226 * Counter for managing global pausing of the DMA controller.
227 * Only applicable for devices that don't support individual
228 * channel pausing.
229 */
230 u32 global_pause_count;
231
232 /* Some register need to be cache before suspend */
233 u32 reg_gen;
234
235 /* Last member of the structure */
236 struct tegra_dma_channel channels[0];
237};
238
239static inline void tdma_write(struct tegra_dma *tdma, u32 reg, u32 val)
240{
241 writel(val, tdma->base_addr + reg);
242}
243
244static inline u32 tdma_read(struct tegra_dma *tdma, u32 reg)
245{
246 return readl(tdma->base_addr + reg);
247}
248
249static inline void tdc_write(struct tegra_dma_channel *tdc,
250 u32 reg, u32 val)
251{
252 writel(val, tdc->chan_addr + reg);
253}
254
255static inline u32 tdc_read(struct tegra_dma_channel *tdc, u32 reg)
256{
257 return readl(tdc->chan_addr + reg);
258}
259
260static inline struct tegra_dma_channel *to_tegra_dma_chan(struct dma_chan *dc)
261{
262 return container_of(dc, struct tegra_dma_channel, dma_chan);
263}
264
265static inline struct tegra_dma_desc *txd_to_tegra_dma_desc(
266 struct dma_async_tx_descriptor *td)
267{
268 return container_of(td, struct tegra_dma_desc, txd);
269}
270
271static inline struct device *tdc2dev(struct tegra_dma_channel *tdc)
272{
273 return &tdc->dma_chan.dev->device;
274}
275
276static dma_cookie_t tegra_dma_tx_submit(struct dma_async_tx_descriptor *tx);
277static int tegra_dma_runtime_suspend(struct device *dev);
278static int tegra_dma_runtime_resume(struct device *dev);
279
280/* Get DMA desc from free list, if not there then allocate it. */
281static struct tegra_dma_desc *tegra_dma_desc_get(
282 struct tegra_dma_channel *tdc)
283{
284 struct tegra_dma_desc *dma_desc;
285 unsigned long flags;
286
287 spin_lock_irqsave(&tdc->lock, flags);
288
289 /* Do not allocate if desc are waiting for ack */
290 list_for_each_entry(dma_desc, &tdc->free_dma_desc, node) {
291 if (async_tx_test_ack(&dma_desc->txd)) {
292 list_del(&dma_desc->node);
293 spin_unlock_irqrestore(&tdc->lock, flags);
294 dma_desc->txd.flags = 0;
295 return dma_desc;
296 }
297 }
298
299 spin_unlock_irqrestore(&tdc->lock, flags);
300
301 /* Allocate DMA desc */
302 dma_desc = kzalloc(sizeof(*dma_desc), GFP_NOWAIT);
303 if (!dma_desc)
304 return NULL;
305
306 dma_async_tx_descriptor_init(&dma_desc->txd, &tdc->dma_chan);
307 dma_desc->txd.tx_submit = tegra_dma_tx_submit;
308 dma_desc->txd.flags = 0;
309 return dma_desc;
310}
311
312static void tegra_dma_desc_put(struct tegra_dma_channel *tdc,
313 struct tegra_dma_desc *dma_desc)
314{
315 unsigned long flags;
316
317 spin_lock_irqsave(&tdc->lock, flags);
318 if (!list_empty(&dma_desc->tx_list))
319 list_splice_init(&dma_desc->tx_list, &tdc->free_sg_req);
320 list_add_tail(&dma_desc->node, &tdc->free_dma_desc);
321 spin_unlock_irqrestore(&tdc->lock, flags);
322}
323
324static struct tegra_dma_sg_req *tegra_dma_sg_req_get(
325 struct tegra_dma_channel *tdc)
326{
327 struct tegra_dma_sg_req *sg_req = NULL;
328 unsigned long flags;
329
330 spin_lock_irqsave(&tdc->lock, flags);
331 if (!list_empty(&tdc->free_sg_req)) {
332 sg_req = list_first_entry(&tdc->free_sg_req,
333 typeof(*sg_req), node);
334 list_del(&sg_req->node);
335 spin_unlock_irqrestore(&tdc->lock, flags);
336 return sg_req;
337 }
338 spin_unlock_irqrestore(&tdc->lock, flags);
339
340 sg_req = kzalloc(sizeof(struct tegra_dma_sg_req), GFP_NOWAIT);
341
342 return sg_req;
343}
344
345static int tegra_dma_slave_config(struct dma_chan *dc,
346 struct dma_slave_config *sconfig)
347{
348 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
349
350 if (!list_empty(&tdc->pending_sg_req)) {
351 dev_err(tdc2dev(tdc), "Configuration not allowed\n");
352 return -EBUSY;
353 }
354
355 memcpy(&tdc->dma_sconfig, sconfig, sizeof(*sconfig));
356 if (tdc->slave_id == TEGRA_APBDMA_SLAVE_ID_INVALID &&
357 sconfig->device_fc) {
358 if (sconfig->slave_id > TEGRA_APBDMA_CSR_REQ_SEL_MASK)
359 return -EINVAL;
360 tdc->slave_id = sconfig->slave_id;
361 }
362 tdc->config_init = true;
363 return 0;
364}
365
366static void tegra_dma_global_pause(struct tegra_dma_channel *tdc,
367 bool wait_for_burst_complete)
368{
369 struct tegra_dma *tdma = tdc->tdma;
370
371 spin_lock(&tdma->global_lock);
372
373 if (tdc->tdma->global_pause_count == 0) {
374 tdma_write(tdma, TEGRA_APBDMA_GENERAL, 0);
375 if (wait_for_burst_complete)
376 udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME);
377 }
378
379 tdc->tdma->global_pause_count++;
380
381 spin_unlock(&tdma->global_lock);
382}
383
384static void tegra_dma_global_resume(struct tegra_dma_channel *tdc)
385{
386 struct tegra_dma *tdma = tdc->tdma;
387
388 spin_lock(&tdma->global_lock);
389
390 if (WARN_ON(tdc->tdma->global_pause_count == 0))
391 goto out;
392
393 if (--tdc->tdma->global_pause_count == 0)
394 tdma_write(tdma, TEGRA_APBDMA_GENERAL,
395 TEGRA_APBDMA_GENERAL_ENABLE);
396
397out:
398 spin_unlock(&tdma->global_lock);
399}
400
401static void tegra_dma_pause(struct tegra_dma_channel *tdc,
402 bool wait_for_burst_complete)
403{
404 struct tegra_dma *tdma = tdc->tdma;
405
406 if (tdma->chip_data->support_channel_pause) {
407 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSRE,
408 TEGRA_APBDMA_CHAN_CSRE_PAUSE);
409 if (wait_for_burst_complete)
410 udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME);
411 } else {
412 tegra_dma_global_pause(tdc, wait_for_burst_complete);
413 }
414}
415
416static void tegra_dma_resume(struct tegra_dma_channel *tdc)
417{
418 struct tegra_dma *tdma = tdc->tdma;
419
420 if (tdma->chip_data->support_channel_pause) {
421 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSRE, 0);
422 } else {
423 tegra_dma_global_resume(tdc);
424 }
425}
426
427static void tegra_dma_stop(struct tegra_dma_channel *tdc)
428{
429 u32 csr;
430 u32 status;
431
432 /* Disable interrupts */
433 csr = tdc_read(tdc, TEGRA_APBDMA_CHAN_CSR);
434 csr &= ~TEGRA_APBDMA_CSR_IE_EOC;
435 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, csr);
436
437 /* Disable DMA */
438 csr &= ~TEGRA_APBDMA_CSR_ENB;
439 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, csr);
440
441 /* Clear interrupt status if it is there */
442 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
443 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
444 dev_dbg(tdc2dev(tdc), "%s():clearing interrupt\n", __func__);
445 tdc_write(tdc, TEGRA_APBDMA_CHAN_STATUS, status);
446 }
447 tdc->busy = false;
448}
449
450static void tegra_dma_start(struct tegra_dma_channel *tdc,
451 struct tegra_dma_sg_req *sg_req)
452{
453 struct tegra_dma_channel_regs *ch_regs = &sg_req->ch_regs;
454
455 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, ch_regs->csr);
456 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBSEQ, ch_regs->apb_seq);
457 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, ch_regs->apb_ptr);
458 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBSEQ, ch_regs->ahb_seq);
459 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, ch_regs->ahb_ptr);
460 if (tdc->tdma->chip_data->support_separate_wcount_reg)
461 tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT, ch_regs->wcount);
462
463 /* Start DMA */
464 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR,
465 ch_regs->csr | TEGRA_APBDMA_CSR_ENB);
466}
467
468static void tegra_dma_configure_for_next(struct tegra_dma_channel *tdc,
469 struct tegra_dma_sg_req *nsg_req)
470{
471 unsigned long status;
472
473 /*
474 * The DMA controller reloads the new configuration for next transfer
475 * after last burst of current transfer completes.
476 * If there is no IEC status then this makes sure that last burst
477 * has not be completed. There may be case that last burst is on
478 * flight and so it can complete but because DMA is paused, it
479 * will not generates interrupt as well as not reload the new
480 * configuration.
481 * If there is already IEC status then interrupt handler need to
482 * load new configuration.
483 */
484 tegra_dma_pause(tdc, false);
485 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
486
487 /*
488 * If interrupt is pending then do nothing as the ISR will handle
489 * the programing for new request.
490 */
491 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
492 dev_err(tdc2dev(tdc),
493 "Skipping new configuration as interrupt is pending\n");
494 tegra_dma_resume(tdc);
495 return;
496 }
497
498 /* Safe to program new configuration */
499 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, nsg_req->ch_regs.apb_ptr);
500 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, nsg_req->ch_regs.ahb_ptr);
501 if (tdc->tdma->chip_data->support_separate_wcount_reg)
502 tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT,
503 nsg_req->ch_regs.wcount);
504 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR,
505 nsg_req->ch_regs.csr | TEGRA_APBDMA_CSR_ENB);
506 nsg_req->configured = true;
507
508 tegra_dma_resume(tdc);
509}
510
511static void tdc_start_head_req(struct tegra_dma_channel *tdc)
512{
513 struct tegra_dma_sg_req *sg_req;
514
515 if (list_empty(&tdc->pending_sg_req))
516 return;
517
518 sg_req = list_first_entry(&tdc->pending_sg_req,
519 typeof(*sg_req), node);
520 tegra_dma_start(tdc, sg_req);
521 sg_req->configured = true;
522 tdc->busy = true;
523}
524
525static void tdc_configure_next_head_desc(struct tegra_dma_channel *tdc)
526{
527 struct tegra_dma_sg_req *hsgreq;
528 struct tegra_dma_sg_req *hnsgreq;
529
530 if (list_empty(&tdc->pending_sg_req))
531 return;
532
533 hsgreq = list_first_entry(&tdc->pending_sg_req, typeof(*hsgreq), node);
534 if (!list_is_last(&hsgreq->node, &tdc->pending_sg_req)) {
535 hnsgreq = list_first_entry(&hsgreq->node,
536 typeof(*hnsgreq), node);
537 tegra_dma_configure_for_next(tdc, hnsgreq);
538 }
539}
540
541static inline int get_current_xferred_count(struct tegra_dma_channel *tdc,
542 struct tegra_dma_sg_req *sg_req, unsigned long status)
543{
544 return sg_req->req_len - (status & TEGRA_APBDMA_STATUS_COUNT_MASK) - 4;
545}
546
547static void tegra_dma_abort_all(struct tegra_dma_channel *tdc)
548{
549 struct tegra_dma_sg_req *sgreq;
550 struct tegra_dma_desc *dma_desc;
551
552 while (!list_empty(&tdc->pending_sg_req)) {
553 sgreq = list_first_entry(&tdc->pending_sg_req,
554 typeof(*sgreq), node);
555 list_move_tail(&sgreq->node, &tdc->free_sg_req);
556 if (sgreq->last_sg) {
557 dma_desc = sgreq->dma_desc;
558 dma_desc->dma_status = DMA_ERROR;
559 list_add_tail(&dma_desc->node, &tdc->free_dma_desc);
560
561 /* Add in cb list if it is not there. */
562 if (!dma_desc->cb_count)
563 list_add_tail(&dma_desc->cb_node,
564 &tdc->cb_desc);
565 dma_desc->cb_count++;
566 }
567 }
568 tdc->isr_handler = NULL;
569}
570
571static bool handle_continuous_head_request(struct tegra_dma_channel *tdc,
572 struct tegra_dma_sg_req *last_sg_req, bool to_terminate)
573{
574 struct tegra_dma_sg_req *hsgreq = NULL;
575
576 if (list_empty(&tdc->pending_sg_req)) {
577 dev_err(tdc2dev(tdc), "Dma is running without req\n");
578 tegra_dma_stop(tdc);
579 return false;
580 }
581
582 /*
583 * Check that head req on list should be in flight.
584 * If it is not in flight then abort transfer as
585 * looping of transfer can not continue.
586 */
587 hsgreq = list_first_entry(&tdc->pending_sg_req, typeof(*hsgreq), node);
588 if (!hsgreq->configured) {
589 tegra_dma_stop(tdc);
590 dev_err(tdc2dev(tdc), "Error in dma transfer, aborting dma\n");
591 tegra_dma_abort_all(tdc);
592 return false;
593 }
594
595 /* Configure next request */
596 if (!to_terminate)
597 tdc_configure_next_head_desc(tdc);
598 return true;
599}
600
601static void handle_once_dma_done(struct tegra_dma_channel *tdc,
602 bool to_terminate)
603{
604 struct tegra_dma_sg_req *sgreq;
605 struct tegra_dma_desc *dma_desc;
606
607 tdc->busy = false;
608 sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq), node);
609 dma_desc = sgreq->dma_desc;
610 dma_desc->bytes_transferred += sgreq->req_len;
611
612 list_del(&sgreq->node);
613 if (sgreq->last_sg) {
614 dma_desc->dma_status = DMA_COMPLETE;
615 dma_cookie_complete(&dma_desc->txd);
616 if (!dma_desc->cb_count)
617 list_add_tail(&dma_desc->cb_node, &tdc->cb_desc);
618 dma_desc->cb_count++;
619 list_add_tail(&dma_desc->node, &tdc->free_dma_desc);
620 }
621 list_add_tail(&sgreq->node, &tdc->free_sg_req);
622
623 /* Do not start DMA if it is going to be terminate */
624 if (to_terminate || list_empty(&tdc->pending_sg_req))
625 return;
626
627 tdc_start_head_req(tdc);
628}
629
630static void handle_cont_sngl_cycle_dma_done(struct tegra_dma_channel *tdc,
631 bool to_terminate)
632{
633 struct tegra_dma_sg_req *sgreq;
634 struct tegra_dma_desc *dma_desc;
635 bool st;
636
637 sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq), node);
638 dma_desc = sgreq->dma_desc;
639 /* if we dma for long enough the transfer count will wrap */
640 dma_desc->bytes_transferred =
641 (dma_desc->bytes_transferred + sgreq->req_len) %
642 dma_desc->bytes_requested;
643
644 /* Callback need to be call */
645 if (!dma_desc->cb_count)
646 list_add_tail(&dma_desc->cb_node, &tdc->cb_desc);
647 dma_desc->cb_count++;
648
649 /* If not last req then put at end of pending list */
650 if (!list_is_last(&sgreq->node, &tdc->pending_sg_req)) {
651 list_move_tail(&sgreq->node, &tdc->pending_sg_req);
652 sgreq->configured = false;
653 st = handle_continuous_head_request(tdc, sgreq, to_terminate);
654 if (!st)
655 dma_desc->dma_status = DMA_ERROR;
656 }
657}
658
659static void tegra_dma_tasklet(unsigned long data)
660{
661 struct tegra_dma_channel *tdc = (struct tegra_dma_channel *)data;
662 struct dmaengine_desc_callback cb;
663 struct tegra_dma_desc *dma_desc;
664 unsigned long flags;
665 int cb_count;
666
667 spin_lock_irqsave(&tdc->lock, flags);
668 while (!list_empty(&tdc->cb_desc)) {
669 dma_desc = list_first_entry(&tdc->cb_desc,
670 typeof(*dma_desc), cb_node);
671 list_del(&dma_desc->cb_node);
672 dmaengine_desc_get_callback(&dma_desc->txd, &cb);
673 cb_count = dma_desc->cb_count;
674 dma_desc->cb_count = 0;
675 spin_unlock_irqrestore(&tdc->lock, flags);
676 while (cb_count--)
677 dmaengine_desc_callback_invoke(&cb, NULL);
678 spin_lock_irqsave(&tdc->lock, flags);
679 }
680 spin_unlock_irqrestore(&tdc->lock, flags);
681}
682
683static irqreturn_t tegra_dma_isr(int irq, void *dev_id)
684{
685 struct tegra_dma_channel *tdc = dev_id;
686 unsigned long status;
687 unsigned long flags;
688
689 spin_lock_irqsave(&tdc->lock, flags);
690
691 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
692 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
693 tdc_write(tdc, TEGRA_APBDMA_CHAN_STATUS, status);
694 tdc->isr_handler(tdc, false);
695 tasklet_schedule(&tdc->tasklet);
696 spin_unlock_irqrestore(&tdc->lock, flags);
697 return IRQ_HANDLED;
698 }
699
700 spin_unlock_irqrestore(&tdc->lock, flags);
701 dev_info(tdc2dev(tdc),
702 "Interrupt already served status 0x%08lx\n", status);
703 return IRQ_NONE;
704}
705
706static dma_cookie_t tegra_dma_tx_submit(struct dma_async_tx_descriptor *txd)
707{
708 struct tegra_dma_desc *dma_desc = txd_to_tegra_dma_desc(txd);
709 struct tegra_dma_channel *tdc = to_tegra_dma_chan(txd->chan);
710 unsigned long flags;
711 dma_cookie_t cookie;
712
713 spin_lock_irqsave(&tdc->lock, flags);
714 dma_desc->dma_status = DMA_IN_PROGRESS;
715 cookie = dma_cookie_assign(&dma_desc->txd);
716 list_splice_tail_init(&dma_desc->tx_list, &tdc->pending_sg_req);
717 spin_unlock_irqrestore(&tdc->lock, flags);
718 return cookie;
719}
720
721static void tegra_dma_issue_pending(struct dma_chan *dc)
722{
723 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
724 unsigned long flags;
725
726 spin_lock_irqsave(&tdc->lock, flags);
727 if (list_empty(&tdc->pending_sg_req)) {
728 dev_err(tdc2dev(tdc), "No DMA request\n");
729 goto end;
730 }
731 if (!tdc->busy) {
732 tdc_start_head_req(tdc);
733
734 /* Continuous single mode: Configure next req */
735 if (tdc->cyclic) {
736 /*
737 * Wait for 1 burst time for configure DMA for
738 * next transfer.
739 */
740 udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME);
741 tdc_configure_next_head_desc(tdc);
742 }
743 }
744end:
745 spin_unlock_irqrestore(&tdc->lock, flags);
746}
747
748static int tegra_dma_terminate_all(struct dma_chan *dc)
749{
750 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
751 struct tegra_dma_sg_req *sgreq;
752 struct tegra_dma_desc *dma_desc;
753 unsigned long flags;
754 unsigned long status;
755 unsigned long wcount;
756 bool was_busy;
757
758 spin_lock_irqsave(&tdc->lock, flags);
759 if (list_empty(&tdc->pending_sg_req)) {
760 spin_unlock_irqrestore(&tdc->lock, flags);
761 return 0;
762 }
763
764 if (!tdc->busy)
765 goto skip_dma_stop;
766
767 /* Pause DMA before checking the queue status */
768 tegra_dma_pause(tdc, true);
769
770 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
771 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
772 dev_dbg(tdc2dev(tdc), "%s():handling isr\n", __func__);
773 tdc->isr_handler(tdc, true);
774 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
775 }
776 if (tdc->tdma->chip_data->support_separate_wcount_reg)
777 wcount = tdc_read(tdc, TEGRA_APBDMA_CHAN_WORD_TRANSFER);
778 else
779 wcount = status;
780
781 was_busy = tdc->busy;
782 tegra_dma_stop(tdc);
783
784 if (!list_empty(&tdc->pending_sg_req) && was_busy) {
785 sgreq = list_first_entry(&tdc->pending_sg_req,
786 typeof(*sgreq), node);
787 sgreq->dma_desc->bytes_transferred +=
788 get_current_xferred_count(tdc, sgreq, wcount);
789 }
790 tegra_dma_resume(tdc);
791
792skip_dma_stop:
793 tegra_dma_abort_all(tdc);
794
795 while (!list_empty(&tdc->cb_desc)) {
796 dma_desc = list_first_entry(&tdc->cb_desc,
797 typeof(*dma_desc), cb_node);
798 list_del(&dma_desc->cb_node);
799 dma_desc->cb_count = 0;
800 }
801 spin_unlock_irqrestore(&tdc->lock, flags);
802 return 0;
803}
804
805static enum dma_status tegra_dma_tx_status(struct dma_chan *dc,
806 dma_cookie_t cookie, struct dma_tx_state *txstate)
807{
808 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
809 struct tegra_dma_desc *dma_desc;
810 struct tegra_dma_sg_req *sg_req;
811 enum dma_status ret;
812 unsigned long flags;
813 unsigned int residual;
814
815 ret = dma_cookie_status(dc, cookie, txstate);
816 if (ret == DMA_COMPLETE)
817 return ret;
818
819 spin_lock_irqsave(&tdc->lock, flags);
820
821 /* Check on wait_ack desc status */
822 list_for_each_entry(dma_desc, &tdc->free_dma_desc, node) {
823 if (dma_desc->txd.cookie == cookie) {
824 ret = dma_desc->dma_status;
825 goto found;
826 }
827 }
828
829 /* Check in pending list */
830 list_for_each_entry(sg_req, &tdc->pending_sg_req, node) {
831 dma_desc = sg_req->dma_desc;
832 if (dma_desc->txd.cookie == cookie) {
833 ret = dma_desc->dma_status;
834 goto found;
835 }
836 }
837
838 dev_dbg(tdc2dev(tdc), "cookie %d not found\n", cookie);
839 dma_desc = NULL;
840
841found:
842 if (dma_desc && txstate) {
843 residual = dma_desc->bytes_requested -
844 (dma_desc->bytes_transferred %
845 dma_desc->bytes_requested);
846 dma_set_residue(txstate, residual);
847 }
848
849 spin_unlock_irqrestore(&tdc->lock, flags);
850 return ret;
851}
852
853static inline int get_bus_width(struct tegra_dma_channel *tdc,
854 enum dma_slave_buswidth slave_bw)
855{
856 switch (slave_bw) {
857 case DMA_SLAVE_BUSWIDTH_1_BYTE:
858 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_8;
859 case DMA_SLAVE_BUSWIDTH_2_BYTES:
860 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_16;
861 case DMA_SLAVE_BUSWIDTH_4_BYTES:
862 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32;
863 case DMA_SLAVE_BUSWIDTH_8_BYTES:
864 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_64;
865 default:
866 dev_warn(tdc2dev(tdc),
867 "slave bw is not supported, using 32bits\n");
868 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32;
869 }
870}
871
872static inline int get_burst_size(struct tegra_dma_channel *tdc,
873 u32 burst_size, enum dma_slave_buswidth slave_bw, int len)
874{
875 int burst_byte;
876 int burst_ahb_width;
877
878 /*
879 * burst_size from client is in terms of the bus_width.
880 * convert them into AHB memory width which is 4 byte.
881 */
882 burst_byte = burst_size * slave_bw;
883 burst_ahb_width = burst_byte / 4;
884
885 /* If burst size is 0 then calculate the burst size based on length */
886 if (!burst_ahb_width) {
887 if (len & 0xF)
888 return TEGRA_APBDMA_AHBSEQ_BURST_1;
889 else if ((len >> 4) & 0x1)
890 return TEGRA_APBDMA_AHBSEQ_BURST_4;
891 else
892 return TEGRA_APBDMA_AHBSEQ_BURST_8;
893 }
894 if (burst_ahb_width < 4)
895 return TEGRA_APBDMA_AHBSEQ_BURST_1;
896 else if (burst_ahb_width < 8)
897 return TEGRA_APBDMA_AHBSEQ_BURST_4;
898 else
899 return TEGRA_APBDMA_AHBSEQ_BURST_8;
900}
901
902static int get_transfer_param(struct tegra_dma_channel *tdc,
903 enum dma_transfer_direction direction, unsigned long *apb_addr,
904 unsigned long *apb_seq, unsigned long *csr, unsigned int *burst_size,
905 enum dma_slave_buswidth *slave_bw)
906{
907 switch (direction) {
908 case DMA_MEM_TO_DEV:
909 *apb_addr = tdc->dma_sconfig.dst_addr;
910 *apb_seq = get_bus_width(tdc, tdc->dma_sconfig.dst_addr_width);
911 *burst_size = tdc->dma_sconfig.dst_maxburst;
912 *slave_bw = tdc->dma_sconfig.dst_addr_width;
913 *csr = TEGRA_APBDMA_CSR_DIR;
914 return 0;
915
916 case DMA_DEV_TO_MEM:
917 *apb_addr = tdc->dma_sconfig.src_addr;
918 *apb_seq = get_bus_width(tdc, tdc->dma_sconfig.src_addr_width);
919 *burst_size = tdc->dma_sconfig.src_maxburst;
920 *slave_bw = tdc->dma_sconfig.src_addr_width;
921 *csr = 0;
922 return 0;
923
924 default:
925 dev_err(tdc2dev(tdc), "Dma direction is not supported\n");
926 return -EINVAL;
927 }
928 return -EINVAL;
929}
930
931static void tegra_dma_prep_wcount(struct tegra_dma_channel *tdc,
932 struct tegra_dma_channel_regs *ch_regs, u32 len)
933{
934 u32 len_field = (len - 4) & 0xFFFC;
935
936 if (tdc->tdma->chip_data->support_separate_wcount_reg)
937 ch_regs->wcount = len_field;
938 else
939 ch_regs->csr |= len_field;
940}
941
942static struct dma_async_tx_descriptor *tegra_dma_prep_slave_sg(
943 struct dma_chan *dc, struct scatterlist *sgl, unsigned int sg_len,
944 enum dma_transfer_direction direction, unsigned long flags,
945 void *context)
946{
947 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
948 struct tegra_dma_desc *dma_desc;
949 unsigned int i;
950 struct scatterlist *sg;
951 unsigned long csr, ahb_seq, apb_ptr, apb_seq;
952 struct list_head req_list;
953 struct tegra_dma_sg_req *sg_req = NULL;
954 u32 burst_size;
955 enum dma_slave_buswidth slave_bw;
956
957 if (!tdc->config_init) {
958 dev_err(tdc2dev(tdc), "dma channel is not configured\n");
959 return NULL;
960 }
961 if (sg_len < 1) {
962 dev_err(tdc2dev(tdc), "Invalid segment length %d\n", sg_len);
963 return NULL;
964 }
965
966 if (get_transfer_param(tdc, direction, &apb_ptr, &apb_seq, &csr,
967 &burst_size, &slave_bw) < 0)
968 return NULL;
969
970 INIT_LIST_HEAD(&req_list);
971
972 ahb_seq = TEGRA_APBDMA_AHBSEQ_INTR_ENB;
973 ahb_seq |= TEGRA_APBDMA_AHBSEQ_WRAP_NONE <<
974 TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT;
975 ahb_seq |= TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32;
976
977 csr |= TEGRA_APBDMA_CSR_ONCE;
978
979 if (tdc->slave_id != TEGRA_APBDMA_SLAVE_ID_INVALID) {
980 csr |= TEGRA_APBDMA_CSR_FLOW;
981 csr |= tdc->slave_id << TEGRA_APBDMA_CSR_REQ_SEL_SHIFT;
982 }
983
984 if (flags & DMA_PREP_INTERRUPT) {
985 csr |= TEGRA_APBDMA_CSR_IE_EOC;
986 } else {
987 WARN_ON_ONCE(1);
988 return NULL;
989 }
990
991 apb_seq |= TEGRA_APBDMA_APBSEQ_WRAP_WORD_1;
992
993 dma_desc = tegra_dma_desc_get(tdc);
994 if (!dma_desc) {
995 dev_err(tdc2dev(tdc), "Dma descriptors not available\n");
996 return NULL;
997 }
998 INIT_LIST_HEAD(&dma_desc->tx_list);
999 INIT_LIST_HEAD(&dma_desc->cb_node);
1000 dma_desc->cb_count = 0;
1001 dma_desc->bytes_requested = 0;
1002 dma_desc->bytes_transferred = 0;
1003 dma_desc->dma_status = DMA_IN_PROGRESS;
1004
1005 /* Make transfer requests */
1006 for_each_sg(sgl, sg, sg_len, i) {
1007 u32 len, mem;
1008
1009 mem = sg_dma_address(sg);
1010 len = sg_dma_len(sg);
1011
1012 if ((len & 3) || (mem & 3) ||
1013 (len > tdc->tdma->chip_data->max_dma_count)) {
1014 dev_err(tdc2dev(tdc),
1015 "Dma length/memory address is not supported\n");
1016 tegra_dma_desc_put(tdc, dma_desc);
1017 return NULL;
1018 }
1019
1020 sg_req = tegra_dma_sg_req_get(tdc);
1021 if (!sg_req) {
1022 dev_err(tdc2dev(tdc), "Dma sg-req not available\n");
1023 tegra_dma_desc_put(tdc, dma_desc);
1024 return NULL;
1025 }
1026
1027 ahb_seq |= get_burst_size(tdc, burst_size, slave_bw, len);
1028 dma_desc->bytes_requested += len;
1029
1030 sg_req->ch_regs.apb_ptr = apb_ptr;
1031 sg_req->ch_regs.ahb_ptr = mem;
1032 sg_req->ch_regs.csr = csr;
1033 tegra_dma_prep_wcount(tdc, &sg_req->ch_regs, len);
1034 sg_req->ch_regs.apb_seq = apb_seq;
1035 sg_req->ch_regs.ahb_seq = ahb_seq;
1036 sg_req->configured = false;
1037 sg_req->last_sg = false;
1038 sg_req->dma_desc = dma_desc;
1039 sg_req->req_len = len;
1040
1041 list_add_tail(&sg_req->node, &dma_desc->tx_list);
1042 }
1043 sg_req->last_sg = true;
1044 if (flags & DMA_CTRL_ACK)
1045 dma_desc->txd.flags = DMA_CTRL_ACK;
1046
1047 /*
1048 * Make sure that mode should not be conflicting with currently
1049 * configured mode.
1050 */
1051 if (!tdc->isr_handler) {
1052 tdc->isr_handler = handle_once_dma_done;
1053 tdc->cyclic = false;
1054 } else {
1055 if (tdc->cyclic) {
1056 dev_err(tdc2dev(tdc), "DMA configured in cyclic mode\n");
1057 tegra_dma_desc_put(tdc, dma_desc);
1058 return NULL;
1059 }
1060 }
1061
1062 return &dma_desc->txd;
1063}
1064
1065static struct dma_async_tx_descriptor *tegra_dma_prep_dma_cyclic(
1066 struct dma_chan *dc, dma_addr_t buf_addr, size_t buf_len,
1067 size_t period_len, enum dma_transfer_direction direction,
1068 unsigned long flags)
1069{
1070 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
1071 struct tegra_dma_desc *dma_desc = NULL;
1072 struct tegra_dma_sg_req *sg_req = NULL;
1073 unsigned long csr, ahb_seq, apb_ptr, apb_seq;
1074 int len;
1075 size_t remain_len;
1076 dma_addr_t mem = buf_addr;
1077 u32 burst_size;
1078 enum dma_slave_buswidth slave_bw;
1079
1080 if (!buf_len || !period_len) {
1081 dev_err(tdc2dev(tdc), "Invalid buffer/period len\n");
1082 return NULL;
1083 }
1084
1085 if (!tdc->config_init) {
1086 dev_err(tdc2dev(tdc), "DMA slave is not configured\n");
1087 return NULL;
1088 }
1089
1090 /*
1091 * We allow to take more number of requests till DMA is
1092 * not started. The driver will loop over all requests.
1093 * Once DMA is started then new requests can be queued only after
1094 * terminating the DMA.
1095 */
1096 if (tdc->busy) {
1097 dev_err(tdc2dev(tdc), "Request not allowed when dma running\n");
1098 return NULL;
1099 }
1100
1101 /*
1102 * We only support cycle transfer when buf_len is multiple of
1103 * period_len.
1104 */
1105 if (buf_len % period_len) {
1106 dev_err(tdc2dev(tdc), "buf_len is not multiple of period_len\n");
1107 return NULL;
1108 }
1109
1110 len = period_len;
1111 if ((len & 3) || (buf_addr & 3) ||
1112 (len > tdc->tdma->chip_data->max_dma_count)) {
1113 dev_err(tdc2dev(tdc), "Req len/mem address is not correct\n");
1114 return NULL;
1115 }
1116
1117 if (get_transfer_param(tdc, direction, &apb_ptr, &apb_seq, &csr,
1118 &burst_size, &slave_bw) < 0)
1119 return NULL;
1120
1121 ahb_seq = TEGRA_APBDMA_AHBSEQ_INTR_ENB;
1122 ahb_seq |= TEGRA_APBDMA_AHBSEQ_WRAP_NONE <<
1123 TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT;
1124 ahb_seq |= TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32;
1125
1126 if (tdc->slave_id != TEGRA_APBDMA_SLAVE_ID_INVALID) {
1127 csr |= TEGRA_APBDMA_CSR_FLOW;
1128 csr |= tdc->slave_id << TEGRA_APBDMA_CSR_REQ_SEL_SHIFT;
1129 }
1130
1131 if (flags & DMA_PREP_INTERRUPT) {
1132 csr |= TEGRA_APBDMA_CSR_IE_EOC;
1133 } else {
1134 WARN_ON_ONCE(1);
1135 return NULL;
1136 }
1137
1138 apb_seq |= TEGRA_APBDMA_APBSEQ_WRAP_WORD_1;
1139
1140 dma_desc = tegra_dma_desc_get(tdc);
1141 if (!dma_desc) {
1142 dev_err(tdc2dev(tdc), "not enough descriptors available\n");
1143 return NULL;
1144 }
1145
1146 INIT_LIST_HEAD(&dma_desc->tx_list);
1147 INIT_LIST_HEAD(&dma_desc->cb_node);
1148 dma_desc->cb_count = 0;
1149
1150 dma_desc->bytes_transferred = 0;
1151 dma_desc->bytes_requested = buf_len;
1152 remain_len = buf_len;
1153
1154 /* Split transfer equal to period size */
1155 while (remain_len) {
1156 sg_req = tegra_dma_sg_req_get(tdc);
1157 if (!sg_req) {
1158 dev_err(tdc2dev(tdc), "Dma sg-req not available\n");
1159 tegra_dma_desc_put(tdc, dma_desc);
1160 return NULL;
1161 }
1162
1163 ahb_seq |= get_burst_size(tdc, burst_size, slave_bw, len);
1164 sg_req->ch_regs.apb_ptr = apb_ptr;
1165 sg_req->ch_regs.ahb_ptr = mem;
1166 sg_req->ch_regs.csr = csr;
1167 tegra_dma_prep_wcount(tdc, &sg_req->ch_regs, len);
1168 sg_req->ch_regs.apb_seq = apb_seq;
1169 sg_req->ch_regs.ahb_seq = ahb_seq;
1170 sg_req->configured = false;
1171 sg_req->last_sg = false;
1172 sg_req->dma_desc = dma_desc;
1173 sg_req->req_len = len;
1174
1175 list_add_tail(&sg_req->node, &dma_desc->tx_list);
1176 remain_len -= len;
1177 mem += len;
1178 }
1179 sg_req->last_sg = true;
1180 if (flags & DMA_CTRL_ACK)
1181 dma_desc->txd.flags = DMA_CTRL_ACK;
1182
1183 /*
1184 * Make sure that mode should not be conflicting with currently
1185 * configured mode.
1186 */
1187 if (!tdc->isr_handler) {
1188 tdc->isr_handler = handle_cont_sngl_cycle_dma_done;
1189 tdc->cyclic = true;
1190 } else {
1191 if (!tdc->cyclic) {
1192 dev_err(tdc2dev(tdc), "DMA configuration conflict\n");
1193 tegra_dma_desc_put(tdc, dma_desc);
1194 return NULL;
1195 }
1196 }
1197
1198 return &dma_desc->txd;
1199}
1200
1201static int tegra_dma_alloc_chan_resources(struct dma_chan *dc)
1202{
1203 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
1204 struct tegra_dma *tdma = tdc->tdma;
1205 int ret;
1206
1207 dma_cookie_init(&tdc->dma_chan);
1208 tdc->config_init = false;
1209
1210 ret = pm_runtime_get_sync(tdma->dev);
1211 if (ret < 0)
1212 return ret;
1213
1214 return 0;
1215}
1216
1217static void tegra_dma_free_chan_resources(struct dma_chan *dc)
1218{
1219 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
1220 struct tegra_dma *tdma = tdc->tdma;
1221 struct tegra_dma_desc *dma_desc;
1222 struct tegra_dma_sg_req *sg_req;
1223 struct list_head dma_desc_list;
1224 struct list_head sg_req_list;
1225 unsigned long flags;
1226
1227 INIT_LIST_HEAD(&dma_desc_list);
1228 INIT_LIST_HEAD(&sg_req_list);
1229
1230 dev_dbg(tdc2dev(tdc), "Freeing channel %d\n", tdc->id);
1231
1232 if (tdc->busy)
1233 tegra_dma_terminate_all(dc);
1234
1235 spin_lock_irqsave(&tdc->lock, flags);
1236 list_splice_init(&tdc->pending_sg_req, &sg_req_list);
1237 list_splice_init(&tdc->free_sg_req, &sg_req_list);
1238 list_splice_init(&tdc->free_dma_desc, &dma_desc_list);
1239 INIT_LIST_HEAD(&tdc->cb_desc);
1240 tdc->config_init = false;
1241 tdc->isr_handler = NULL;
1242 spin_unlock_irqrestore(&tdc->lock, flags);
1243
1244 while (!list_empty(&dma_desc_list)) {
1245 dma_desc = list_first_entry(&dma_desc_list,
1246 typeof(*dma_desc), node);
1247 list_del(&dma_desc->node);
1248 kfree(dma_desc);
1249 }
1250
1251 while (!list_empty(&sg_req_list)) {
1252 sg_req = list_first_entry(&sg_req_list, typeof(*sg_req), node);
1253 list_del(&sg_req->node);
1254 kfree(sg_req);
1255 }
1256 pm_runtime_put(tdma->dev);
1257
1258 tdc->slave_id = TEGRA_APBDMA_SLAVE_ID_INVALID;
1259}
1260
1261static struct dma_chan *tegra_dma_of_xlate(struct of_phandle_args *dma_spec,
1262 struct of_dma *ofdma)
1263{
1264 struct tegra_dma *tdma = ofdma->of_dma_data;
1265 struct dma_chan *chan;
1266 struct tegra_dma_channel *tdc;
1267
1268 if (dma_spec->args[0] > TEGRA_APBDMA_CSR_REQ_SEL_MASK) {
1269 dev_err(tdma->dev, "Invalid slave id: %d\n", dma_spec->args[0]);
1270 return NULL;
1271 }
1272
1273 chan = dma_get_any_slave_channel(&tdma->dma_dev);
1274 if (!chan)
1275 return NULL;
1276
1277 tdc = to_tegra_dma_chan(chan);
1278 tdc->slave_id = dma_spec->args[0];
1279
1280 return chan;
1281}
1282
1283/* Tegra20 specific DMA controller information */
1284static const struct tegra_dma_chip_data tegra20_dma_chip_data = {
1285 .nr_channels = 16,
1286 .channel_reg_size = 0x20,
1287 .max_dma_count = 1024UL * 64,
1288 .support_channel_pause = false,
1289 .support_separate_wcount_reg = false,
1290};
1291
1292/* Tegra30 specific DMA controller information */
1293static const struct tegra_dma_chip_data tegra30_dma_chip_data = {
1294 .nr_channels = 32,
1295 .channel_reg_size = 0x20,
1296 .max_dma_count = 1024UL * 64,
1297 .support_channel_pause = false,
1298 .support_separate_wcount_reg = false,
1299};
1300
1301/* Tegra114 specific DMA controller information */
1302static const struct tegra_dma_chip_data tegra114_dma_chip_data = {
1303 .nr_channels = 32,
1304 .channel_reg_size = 0x20,
1305 .max_dma_count = 1024UL * 64,
1306 .support_channel_pause = true,
1307 .support_separate_wcount_reg = false,
1308};
1309
1310/* Tegra148 specific DMA controller information */
1311static const struct tegra_dma_chip_data tegra148_dma_chip_data = {
1312 .nr_channels = 32,
1313 .channel_reg_size = 0x40,
1314 .max_dma_count = 1024UL * 64,
1315 .support_channel_pause = true,
1316 .support_separate_wcount_reg = true,
1317};
1318
1319static int tegra_dma_probe(struct platform_device *pdev)
1320{
1321 struct resource *res;
1322 struct tegra_dma *tdma;
1323 int ret;
1324 int i;
1325 const struct tegra_dma_chip_data *cdata;
1326
1327 cdata = of_device_get_match_data(&pdev->dev);
1328 if (!cdata) {
1329 dev_err(&pdev->dev, "Error: No device match data found\n");
1330 return -ENODEV;
1331 }
1332
1333 tdma = devm_kzalloc(&pdev->dev, sizeof(*tdma) + cdata->nr_channels *
1334 sizeof(struct tegra_dma_channel), GFP_KERNEL);
1335 if (!tdma)
1336 return -ENOMEM;
1337
1338 tdma->dev = &pdev->dev;
1339 tdma->chip_data = cdata;
1340 platform_set_drvdata(pdev, tdma);
1341
1342 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1343 tdma->base_addr = devm_ioremap_resource(&pdev->dev, res);
1344 if (IS_ERR(tdma->base_addr))
1345 return PTR_ERR(tdma->base_addr);
1346
1347 tdma->dma_clk = devm_clk_get(&pdev->dev, NULL);
1348 if (IS_ERR(tdma->dma_clk)) {
1349 dev_err(&pdev->dev, "Error: Missing controller clock\n");
1350 return PTR_ERR(tdma->dma_clk);
1351 }
1352
1353 tdma->rst = devm_reset_control_get(&pdev->dev, "dma");
1354 if (IS_ERR(tdma->rst)) {
1355 dev_err(&pdev->dev, "Error: Missing reset\n");
1356 return PTR_ERR(tdma->rst);
1357 }
1358
1359 spin_lock_init(&tdma->global_lock);
1360
1361 pm_runtime_enable(&pdev->dev);
1362 if (!pm_runtime_enabled(&pdev->dev))
1363 ret = tegra_dma_runtime_resume(&pdev->dev);
1364 else
1365 ret = pm_runtime_get_sync(&pdev->dev);
1366
1367 if (ret < 0) {
1368 pm_runtime_disable(&pdev->dev);
1369 return ret;
1370 }
1371
1372 /* Reset DMA controller */
1373 reset_control_assert(tdma->rst);
1374 udelay(2);
1375 reset_control_deassert(tdma->rst);
1376
1377 /* Enable global DMA registers */
1378 tdma_write(tdma, TEGRA_APBDMA_GENERAL, TEGRA_APBDMA_GENERAL_ENABLE);
1379 tdma_write(tdma, TEGRA_APBDMA_CONTROL, 0);
1380 tdma_write(tdma, TEGRA_APBDMA_IRQ_MASK_SET, 0xFFFFFFFFul);
1381
1382 pm_runtime_put(&pdev->dev);
1383
1384 INIT_LIST_HEAD(&tdma->dma_dev.channels);
1385 for (i = 0; i < cdata->nr_channels; i++) {
1386 struct tegra_dma_channel *tdc = &tdma->channels[i];
1387
1388 tdc->chan_addr = tdma->base_addr +
1389 TEGRA_APBDMA_CHANNEL_BASE_ADD_OFFSET +
1390 (i * cdata->channel_reg_size);
1391
1392 res = platform_get_resource(pdev, IORESOURCE_IRQ, i);
1393 if (!res) {
1394 ret = -EINVAL;
1395 dev_err(&pdev->dev, "No irq resource for chan %d\n", i);
1396 goto err_irq;
1397 }
1398 tdc->irq = res->start;
1399 snprintf(tdc->name, sizeof(tdc->name), "apbdma.%d", i);
1400 ret = request_irq(tdc->irq, tegra_dma_isr, 0, tdc->name, tdc);
1401 if (ret) {
1402 dev_err(&pdev->dev,
1403 "request_irq failed with err %d channel %d\n",
1404 ret, i);
1405 goto err_irq;
1406 }
1407
1408 tdc->dma_chan.device = &tdma->dma_dev;
1409 dma_cookie_init(&tdc->dma_chan);
1410 list_add_tail(&tdc->dma_chan.device_node,
1411 &tdma->dma_dev.channels);
1412 tdc->tdma = tdma;
1413 tdc->id = i;
1414 tdc->slave_id = TEGRA_APBDMA_SLAVE_ID_INVALID;
1415
1416 tasklet_init(&tdc->tasklet, tegra_dma_tasklet,
1417 (unsigned long)tdc);
1418 spin_lock_init(&tdc->lock);
1419
1420 INIT_LIST_HEAD(&tdc->pending_sg_req);
1421 INIT_LIST_HEAD(&tdc->free_sg_req);
1422 INIT_LIST_HEAD(&tdc->free_dma_desc);
1423 INIT_LIST_HEAD(&tdc->cb_desc);
1424 }
1425
1426 dma_cap_set(DMA_SLAVE, tdma->dma_dev.cap_mask);
1427 dma_cap_set(DMA_PRIVATE, tdma->dma_dev.cap_mask);
1428 dma_cap_set(DMA_CYCLIC, tdma->dma_dev.cap_mask);
1429
1430 tdma->global_pause_count = 0;
1431 tdma->dma_dev.dev = &pdev->dev;
1432 tdma->dma_dev.device_alloc_chan_resources =
1433 tegra_dma_alloc_chan_resources;
1434 tdma->dma_dev.device_free_chan_resources =
1435 tegra_dma_free_chan_resources;
1436 tdma->dma_dev.device_prep_slave_sg = tegra_dma_prep_slave_sg;
1437 tdma->dma_dev.device_prep_dma_cyclic = tegra_dma_prep_dma_cyclic;
1438 tdma->dma_dev.src_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1439 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1440 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) |
1441 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES);
1442 tdma->dma_dev.dst_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1443 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1444 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) |
1445 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES);
1446 tdma->dma_dev.directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
1447 /*
1448 * XXX The hardware appears to support
1449 * DMA_RESIDUE_GRANULARITY_BURST-level reporting, but it's
1450 * only used by this driver during tegra_dma_terminate_all()
1451 */
1452 tdma->dma_dev.residue_granularity = DMA_RESIDUE_GRANULARITY_SEGMENT;
1453 tdma->dma_dev.device_config = tegra_dma_slave_config;
1454 tdma->dma_dev.device_terminate_all = tegra_dma_terminate_all;
1455 tdma->dma_dev.device_tx_status = tegra_dma_tx_status;
1456 tdma->dma_dev.device_issue_pending = tegra_dma_issue_pending;
1457
1458 ret = dma_async_device_register(&tdma->dma_dev);
1459 if (ret < 0) {
1460 dev_err(&pdev->dev,
1461 "Tegra20 APB DMA driver registration failed %d\n", ret);
1462 goto err_irq;
1463 }
1464
1465 ret = of_dma_controller_register(pdev->dev.of_node,
1466 tegra_dma_of_xlate, tdma);
1467 if (ret < 0) {
1468 dev_err(&pdev->dev,
1469 "Tegra20 APB DMA OF registration failed %d\n", ret);
1470 goto err_unregister_dma_dev;
1471 }
1472
1473 dev_info(&pdev->dev, "Tegra20 APB DMA driver register %d channels\n",
1474 cdata->nr_channels);
1475 return 0;
1476
1477err_unregister_dma_dev:
1478 dma_async_device_unregister(&tdma->dma_dev);
1479err_irq:
1480 while (--i >= 0) {
1481 struct tegra_dma_channel *tdc = &tdma->channels[i];
1482
1483 free_irq(tdc->irq, tdc);
1484 tasklet_kill(&tdc->tasklet);
1485 }
1486
1487 pm_runtime_disable(&pdev->dev);
1488 if (!pm_runtime_status_suspended(&pdev->dev))
1489 tegra_dma_runtime_suspend(&pdev->dev);
1490 return ret;
1491}
1492
1493static int tegra_dma_remove(struct platform_device *pdev)
1494{
1495 struct tegra_dma *tdma = platform_get_drvdata(pdev);
1496 int i;
1497 struct tegra_dma_channel *tdc;
1498
1499 dma_async_device_unregister(&tdma->dma_dev);
1500
1501 for (i = 0; i < tdma->chip_data->nr_channels; ++i) {
1502 tdc = &tdma->channels[i];
1503 free_irq(tdc->irq, tdc);
1504 tasklet_kill(&tdc->tasklet);
1505 }
1506
1507 pm_runtime_disable(&pdev->dev);
1508 if (!pm_runtime_status_suspended(&pdev->dev))
1509 tegra_dma_runtime_suspend(&pdev->dev);
1510
1511 return 0;
1512}
1513
1514static int tegra_dma_runtime_suspend(struct device *dev)
1515{
1516 struct tegra_dma *tdma = dev_get_drvdata(dev);
1517 int i;
1518
1519 tdma->reg_gen = tdma_read(tdma, TEGRA_APBDMA_GENERAL);
1520 for (i = 0; i < tdma->chip_data->nr_channels; i++) {
1521 struct tegra_dma_channel *tdc = &tdma->channels[i];
1522 struct tegra_dma_channel_regs *ch_reg = &tdc->channel_reg;
1523
1524 /* Only save the state of DMA channels that are in use */
1525 if (!tdc->config_init)
1526 continue;
1527
1528 ch_reg->csr = tdc_read(tdc, TEGRA_APBDMA_CHAN_CSR);
1529 ch_reg->ahb_ptr = tdc_read(tdc, TEGRA_APBDMA_CHAN_AHBPTR);
1530 ch_reg->apb_ptr = tdc_read(tdc, TEGRA_APBDMA_CHAN_APBPTR);
1531 ch_reg->ahb_seq = tdc_read(tdc, TEGRA_APBDMA_CHAN_AHBSEQ);
1532 ch_reg->apb_seq = tdc_read(tdc, TEGRA_APBDMA_CHAN_APBSEQ);
1533 if (tdma->chip_data->support_separate_wcount_reg)
1534 ch_reg->wcount = tdc_read(tdc,
1535 TEGRA_APBDMA_CHAN_WCOUNT);
1536 }
1537
1538 clk_disable_unprepare(tdma->dma_clk);
1539
1540 return 0;
1541}
1542
1543static int tegra_dma_runtime_resume(struct device *dev)
1544{
1545 struct tegra_dma *tdma = dev_get_drvdata(dev);
1546 int i, ret;
1547
1548 ret = clk_prepare_enable(tdma->dma_clk);
1549 if (ret < 0) {
1550 dev_err(dev, "clk_enable failed: %d\n", ret);
1551 return ret;
1552 }
1553
1554 tdma_write(tdma, TEGRA_APBDMA_GENERAL, tdma->reg_gen);
1555 tdma_write(tdma, TEGRA_APBDMA_CONTROL, 0);
1556 tdma_write(tdma, TEGRA_APBDMA_IRQ_MASK_SET, 0xFFFFFFFFul);
1557
1558 for (i = 0; i < tdma->chip_data->nr_channels; i++) {
1559 struct tegra_dma_channel *tdc = &tdma->channels[i];
1560 struct tegra_dma_channel_regs *ch_reg = &tdc->channel_reg;
1561
1562 /* Only restore the state of DMA channels that are in use */
1563 if (!tdc->config_init)
1564 continue;
1565
1566 if (tdma->chip_data->support_separate_wcount_reg)
1567 tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT,
1568 ch_reg->wcount);
1569 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBSEQ, ch_reg->apb_seq);
1570 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, ch_reg->apb_ptr);
1571 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBSEQ, ch_reg->ahb_seq);
1572 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, ch_reg->ahb_ptr);
1573 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR,
1574 (ch_reg->csr & ~TEGRA_APBDMA_CSR_ENB));
1575 }
1576
1577 return 0;
1578}
1579
1580static const struct dev_pm_ops tegra_dma_dev_pm_ops = {
1581 SET_RUNTIME_PM_OPS(tegra_dma_runtime_suspend, tegra_dma_runtime_resume,
1582 NULL)
1583 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1584 pm_runtime_force_resume)
1585};
1586
1587static const struct of_device_id tegra_dma_of_match[] = {
1588 {
1589 .compatible = "nvidia,tegra148-apbdma",
1590 .data = &tegra148_dma_chip_data,
1591 }, {
1592 .compatible = "nvidia,tegra114-apbdma",
1593 .data = &tegra114_dma_chip_data,
1594 }, {
1595 .compatible = "nvidia,tegra30-apbdma",
1596 .data = &tegra30_dma_chip_data,
1597 }, {
1598 .compatible = "nvidia,tegra20-apbdma",
1599 .data = &tegra20_dma_chip_data,
1600 }, {
1601 },
1602};
1603MODULE_DEVICE_TABLE(of, tegra_dma_of_match);
1604
1605static struct platform_driver tegra_dmac_driver = {
1606 .driver = {
1607 .name = "tegra-apbdma",
1608 .pm = &tegra_dma_dev_pm_ops,
1609 .of_match_table = tegra_dma_of_match,
1610 },
1611 .probe = tegra_dma_probe,
1612 .remove = tegra_dma_remove,
1613};
1614
1615module_platform_driver(tegra_dmac_driver);
1616
1617MODULE_ALIAS("platform:tegra20-apbdma");
1618MODULE_DESCRIPTION("NVIDIA Tegra APB DMA Controller driver");
1619MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
1620MODULE_LICENSE("GPL v2");