blob: 80c490faca85b0172af30989d4fe510681769176 [file] [log] [blame]
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301/*
2 * DMA driver for Nvidia's Tegra20 APB DMA controller.
3 *
Stephen Warren996556c2013-11-11 13:09:35 -07004 * Copyright (c) 2012-2013, NVIDIA CORPORATION. All rights reserved.
Laxman Dewanganec8a1582012-06-06 10:55:27 +05305 *
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>
Thierry Reding73312052013-01-21 11:09:00 +010024#include <linux/err.h>
Laxman Dewanganec8a1582012-06-06 10:55:27 +053025#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>
Stephen Warren996556c2013-11-11 13:09:35 -070032#include <linux/of_dma.h>
Laxman Dewanganec8a1582012-06-06 10:55:27 +053033#include <linux/platform_device.h>
Laxman Dewangan3065c192013-04-24 15:24:27 +053034#include <linux/pm.h>
Laxman Dewanganec8a1582012-06-06 10:55:27 +053035#include <linux/pm_runtime.h>
Stephen Warren9aa433d2013-11-06 16:35:34 -070036#include <linux/reset.h>
Laxman Dewanganec8a1582012-06-06 10:55:27 +053037#include <linux/slab.h>
38
Laxman Dewanganec8a1582012-06-06 10:55:27 +053039#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
Shardar Shariff Md00ef4492016-04-23 15:06:00 +053057#define TEGRA_APBDMA_CSR_REQ_SEL_MASK 0x1F
Laxman Dewanganec8a1582012-06-06 10:55:27 +053058#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
Laxman Dewangan1b140902013-01-06 21:52:02 +053069#define TEGRA_APBDMA_CHAN_CSRE 0x00C
70#define TEGRA_APBDMA_CHAN_CSRE_PAUSE (1 << 31)
71
Laxman Dewanganec8a1582012-06-06 10:55:27 +053072/* 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
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700104/* Tegra148 specific registers */
105#define TEGRA_APBDMA_CHAN_WCOUNT 0x20
106
107#define TEGRA_APBDMA_CHAN_WORD_TRANSFER 0x24
108
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530109/*
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
Shardar Shariff Md00ef4492016-04-23 15:06:00 +0530118#define TEGRA_APBDMA_SLAVE_ID_INVALID (TEGRA_APBDMA_CSR_REQ_SEL_MASK + 1)
119
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530120struct tegra_dma;
121
122/*
123 * tegra_dma_chip_data Tegra chip specific DMA data
124 * @nr_channels: Number of channels available in the controller.
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700125 * @channel_reg_size: Channel register size/stride.
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530126 * @max_dma_count: Maximum DMA transfer count supported by DMA controller.
Laxman Dewangan1b140902013-01-06 21:52:02 +0530127 * @support_channel_pause: Support channel wise pause of dma.
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700128 * @support_separate_wcount_reg: Support separate word count register.
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530129 */
130struct tegra_dma_chip_data {
131 int nr_channels;
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700132 int channel_reg_size;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530133 int max_dma_count;
Laxman Dewangan1b140902013-01-06 21:52:02 +0530134 bool support_channel_pause;
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700135 bool support_separate_wcount_reg;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530136};
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;
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700145 unsigned long wcount;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530146};
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;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530161 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;
Laxman Dewangand0fc9052012-10-03 22:48:07 +0530189 char name[30];
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530190 bool config_init;
191 int id;
192 int irq;
Jon Hunter13a33282015-08-06 14:32:31 +0100193 void __iomem *chan_addr;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530194 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;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530208
209 /* Channel-slave specific configuration */
Stephen Warren996556c2013-11-11 13:09:35 -0700210 unsigned int slave_id;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530211 struct dma_slave_config dma_sconfig;
Laxman Dewangan3065c192013-04-24 15:24:27 +0530212 struct tegra_dma_channel_regs channel_reg;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530213};
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;
Stephen Warren9aa433d2013-11-06 16:35:34 -0700220 struct reset_control *rst;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530221 spinlock_t global_lock;
222 void __iomem *base_addr;
Laxman Dewangan83a1ef22012-08-29 10:23:07 +0200223 const struct tegra_dma_chip_data *chip_data;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530224
Jon Hunter23a1ec32015-08-06 14:32:33 +0100225 /*
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
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530232 /* 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{
Jon Hunter13a33282015-08-06 14:32:31 +0100252 writel(val, tdc->chan_addr + reg);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530253}
254
255static inline u32 tdc_read(struct tegra_dma_channel *tdc, u32 reg)
256{
Jon Hunter13a33282015-08-06 14:32:31 +0100257 return readl(tdc->chan_addr + reg);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530258}
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);
Laxman Dewanganb9bb37f2013-01-09 15:26:22 +0530294 dma_desc->txd.flags = 0;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530295 return dma_desc;
296 }
297 }
298
299 spin_unlock_irqrestore(&tdc->lock, flags);
300
301 /* Allocate DMA desc */
Jon Hunter8fe97392015-11-13 16:39:42 +0000302 dma_desc = kzalloc(sizeof(*dma_desc), GFP_NOWAIT);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530303 if (!dma_desc) {
304 dev_err(tdc2dev(tdc), "dma_desc alloc failed\n");
305 return NULL;
306 }
307
308 dma_async_tx_descriptor_init(&dma_desc->txd, &tdc->dma_chan);
309 dma_desc->txd.tx_submit = tegra_dma_tx_submit;
310 dma_desc->txd.flags = 0;
311 return dma_desc;
312}
313
314static void tegra_dma_desc_put(struct tegra_dma_channel *tdc,
315 struct tegra_dma_desc *dma_desc)
316{
317 unsigned long flags;
318
319 spin_lock_irqsave(&tdc->lock, flags);
320 if (!list_empty(&dma_desc->tx_list))
321 list_splice_init(&dma_desc->tx_list, &tdc->free_sg_req);
322 list_add_tail(&dma_desc->node, &tdc->free_dma_desc);
323 spin_unlock_irqrestore(&tdc->lock, flags);
324}
325
326static struct tegra_dma_sg_req *tegra_dma_sg_req_get(
327 struct tegra_dma_channel *tdc)
328{
329 struct tegra_dma_sg_req *sg_req = NULL;
330 unsigned long flags;
331
332 spin_lock_irqsave(&tdc->lock, flags);
333 if (!list_empty(&tdc->free_sg_req)) {
334 sg_req = list_first_entry(&tdc->free_sg_req,
335 typeof(*sg_req), node);
336 list_del(&sg_req->node);
337 spin_unlock_irqrestore(&tdc->lock, flags);
338 return sg_req;
339 }
340 spin_unlock_irqrestore(&tdc->lock, flags);
341
Jon Hunter8fe97392015-11-13 16:39:42 +0000342 sg_req = kzalloc(sizeof(struct tegra_dma_sg_req), GFP_NOWAIT);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530343 if (!sg_req)
344 dev_err(tdc2dev(tdc), "sg_req alloc failed\n");
345 return sg_req;
346}
347
348static int tegra_dma_slave_config(struct dma_chan *dc,
349 struct dma_slave_config *sconfig)
350{
351 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
352
353 if (!list_empty(&tdc->pending_sg_req)) {
354 dev_err(tdc2dev(tdc), "Configuration not allowed\n");
355 return -EBUSY;
356 }
357
358 memcpy(&tdc->dma_sconfig, sconfig, sizeof(*sconfig));
Shardar Shariff Md00ef4492016-04-23 15:06:00 +0530359 if (tdc->slave_id == TEGRA_APBDMA_SLAVE_ID_INVALID) {
360 if (sconfig->slave_id > TEGRA_APBDMA_CSR_REQ_SEL_MASK)
361 return -EINVAL;
Stephen Warren996556c2013-11-11 13:09:35 -0700362 tdc->slave_id = sconfig->slave_id;
Shardar Shariff Md00ef4492016-04-23 15:06:00 +0530363 }
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530364 tdc->config_init = true;
365 return 0;
366}
367
368static void tegra_dma_global_pause(struct tegra_dma_channel *tdc,
369 bool wait_for_burst_complete)
370{
371 struct tegra_dma *tdma = tdc->tdma;
372
373 spin_lock(&tdma->global_lock);
Jon Hunter23a1ec32015-08-06 14:32:33 +0100374
375 if (tdc->tdma->global_pause_count == 0) {
376 tdma_write(tdma, TEGRA_APBDMA_GENERAL, 0);
377 if (wait_for_burst_complete)
378 udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME);
379 }
380
381 tdc->tdma->global_pause_count++;
382
383 spin_unlock(&tdma->global_lock);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530384}
385
386static void tegra_dma_global_resume(struct tegra_dma_channel *tdc)
387{
388 struct tegra_dma *tdma = tdc->tdma;
389
Jon Hunter23a1ec32015-08-06 14:32:33 +0100390 spin_lock(&tdma->global_lock);
391
392 if (WARN_ON(tdc->tdma->global_pause_count == 0))
393 goto out;
394
395 if (--tdc->tdma->global_pause_count == 0)
396 tdma_write(tdma, TEGRA_APBDMA_GENERAL,
397 TEGRA_APBDMA_GENERAL_ENABLE);
398
399out:
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530400 spin_unlock(&tdma->global_lock);
401}
402
Laxman Dewangan1b140902013-01-06 21:52:02 +0530403static void tegra_dma_pause(struct tegra_dma_channel *tdc,
404 bool wait_for_burst_complete)
405{
406 struct tegra_dma *tdma = tdc->tdma;
407
408 if (tdma->chip_data->support_channel_pause) {
409 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSRE,
410 TEGRA_APBDMA_CHAN_CSRE_PAUSE);
411 if (wait_for_burst_complete)
412 udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME);
413 } else {
414 tegra_dma_global_pause(tdc, wait_for_burst_complete);
415 }
416}
417
418static void tegra_dma_resume(struct tegra_dma_channel *tdc)
419{
420 struct tegra_dma *tdma = tdc->tdma;
421
422 if (tdma->chip_data->support_channel_pause) {
423 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSRE, 0);
424 } else {
425 tegra_dma_global_resume(tdc);
426 }
427}
428
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530429static void tegra_dma_stop(struct tegra_dma_channel *tdc)
430{
431 u32 csr;
432 u32 status;
433
434 /* Disable interrupts */
435 csr = tdc_read(tdc, TEGRA_APBDMA_CHAN_CSR);
436 csr &= ~TEGRA_APBDMA_CSR_IE_EOC;
437 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, csr);
438
439 /* Disable DMA */
440 csr &= ~TEGRA_APBDMA_CSR_ENB;
441 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, csr);
442
443 /* Clear interrupt status if it is there */
444 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
445 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
446 dev_dbg(tdc2dev(tdc), "%s():clearing interrupt\n", __func__);
447 tdc_write(tdc, TEGRA_APBDMA_CHAN_STATUS, status);
448 }
449 tdc->busy = false;
450}
451
452static void tegra_dma_start(struct tegra_dma_channel *tdc,
453 struct tegra_dma_sg_req *sg_req)
454{
455 struct tegra_dma_channel_regs *ch_regs = &sg_req->ch_regs;
456
457 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, ch_regs->csr);
458 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBSEQ, ch_regs->apb_seq);
459 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, ch_regs->apb_ptr);
460 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBSEQ, ch_regs->ahb_seq);
461 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, ch_regs->ahb_ptr);
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700462 if (tdc->tdma->chip_data->support_separate_wcount_reg)
463 tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT, ch_regs->wcount);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530464
465 /* Start DMA */
466 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR,
467 ch_regs->csr | TEGRA_APBDMA_CSR_ENB);
468}
469
470static void tegra_dma_configure_for_next(struct tegra_dma_channel *tdc,
471 struct tegra_dma_sg_req *nsg_req)
472{
473 unsigned long status;
474
475 /*
476 * The DMA controller reloads the new configuration for next transfer
477 * after last burst of current transfer completes.
478 * If there is no IEC status then this makes sure that last burst
479 * has not be completed. There may be case that last burst is on
480 * flight and so it can complete but because DMA is paused, it
481 * will not generates interrupt as well as not reload the new
482 * configuration.
483 * If there is already IEC status then interrupt handler need to
484 * load new configuration.
485 */
Laxman Dewangan1b140902013-01-06 21:52:02 +0530486 tegra_dma_pause(tdc, false);
Thierry Reding7b0e00d2016-06-14 16:18:46 +0200487 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530488
489 /*
490 * If interrupt is pending then do nothing as the ISR will handle
491 * the programing for new request.
492 */
493 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
494 dev_err(tdc2dev(tdc),
495 "Skipping new configuration as interrupt is pending\n");
Laxman Dewangan1b140902013-01-06 21:52:02 +0530496 tegra_dma_resume(tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530497 return;
498 }
499
500 /* Safe to program new configuration */
501 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, nsg_req->ch_regs.apb_ptr);
502 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, nsg_req->ch_regs.ahb_ptr);
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700503 if (tdc->tdma->chip_data->support_separate_wcount_reg)
504 tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT,
505 nsg_req->ch_regs.wcount);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530506 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR,
507 nsg_req->ch_regs.csr | TEGRA_APBDMA_CSR_ENB);
508 nsg_req->configured = true;
509
Laxman Dewangan1b140902013-01-06 21:52:02 +0530510 tegra_dma_resume(tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530511}
512
513static void tdc_start_head_req(struct tegra_dma_channel *tdc)
514{
515 struct tegra_dma_sg_req *sg_req;
516
517 if (list_empty(&tdc->pending_sg_req))
518 return;
519
520 sg_req = list_first_entry(&tdc->pending_sg_req,
521 typeof(*sg_req), node);
522 tegra_dma_start(tdc, sg_req);
523 sg_req->configured = true;
524 tdc->busy = true;
525}
526
527static void tdc_configure_next_head_desc(struct tegra_dma_channel *tdc)
528{
529 struct tegra_dma_sg_req *hsgreq;
530 struct tegra_dma_sg_req *hnsgreq;
531
532 if (list_empty(&tdc->pending_sg_req))
533 return;
534
535 hsgreq = list_first_entry(&tdc->pending_sg_req, typeof(*hsgreq), node);
536 if (!list_is_last(&hsgreq->node, &tdc->pending_sg_req)) {
537 hnsgreq = list_first_entry(&hsgreq->node,
538 typeof(*hnsgreq), node);
539 tegra_dma_configure_for_next(tdc, hnsgreq);
540 }
541}
542
543static inline int get_current_xferred_count(struct tegra_dma_channel *tdc,
544 struct tegra_dma_sg_req *sg_req, unsigned long status)
545{
546 return sg_req->req_len - (status & TEGRA_APBDMA_STATUS_COUNT_MASK) - 4;
547}
548
549static void tegra_dma_abort_all(struct tegra_dma_channel *tdc)
550{
551 struct tegra_dma_sg_req *sgreq;
552 struct tegra_dma_desc *dma_desc;
553
554 while (!list_empty(&tdc->pending_sg_req)) {
555 sgreq = list_first_entry(&tdc->pending_sg_req,
556 typeof(*sgreq), node);
Wei Yongjun2cc44e62012-09-05 15:08:56 +0800557 list_move_tail(&sgreq->node, &tdc->free_sg_req);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530558 if (sgreq->last_sg) {
559 dma_desc = sgreq->dma_desc;
560 dma_desc->dma_status = DMA_ERROR;
561 list_add_tail(&dma_desc->node, &tdc->free_dma_desc);
562
563 /* Add in cb list if it is not there. */
564 if (!dma_desc->cb_count)
565 list_add_tail(&dma_desc->cb_node,
566 &tdc->cb_desc);
567 dma_desc->cb_count++;
568 }
569 }
570 tdc->isr_handler = NULL;
571}
572
573static bool handle_continuous_head_request(struct tegra_dma_channel *tdc,
574 struct tegra_dma_sg_req *last_sg_req, bool to_terminate)
575{
576 struct tegra_dma_sg_req *hsgreq = NULL;
577
578 if (list_empty(&tdc->pending_sg_req)) {
579 dev_err(tdc2dev(tdc), "Dma is running without req\n");
580 tegra_dma_stop(tdc);
581 return false;
582 }
583
584 /*
585 * Check that head req on list should be in flight.
586 * If it is not in flight then abort transfer as
587 * looping of transfer can not continue.
588 */
589 hsgreq = list_first_entry(&tdc->pending_sg_req, typeof(*hsgreq), node);
590 if (!hsgreq->configured) {
591 tegra_dma_stop(tdc);
592 dev_err(tdc2dev(tdc), "Error in dma transfer, aborting dma\n");
593 tegra_dma_abort_all(tdc);
594 return false;
595 }
596
597 /* Configure next request */
598 if (!to_terminate)
599 tdc_configure_next_head_desc(tdc);
600 return true;
601}
602
603static void handle_once_dma_done(struct tegra_dma_channel *tdc,
604 bool to_terminate)
605{
606 struct tegra_dma_sg_req *sgreq;
607 struct tegra_dma_desc *dma_desc;
608
609 tdc->busy = false;
610 sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq), node);
611 dma_desc = sgreq->dma_desc;
612 dma_desc->bytes_transferred += sgreq->req_len;
613
614 list_del(&sgreq->node);
615 if (sgreq->last_sg) {
Vinod Koul00d696f2013-10-16 21:04:50 +0530616 dma_desc->dma_status = DMA_COMPLETE;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530617 dma_cookie_complete(&dma_desc->txd);
618 if (!dma_desc->cb_count)
619 list_add_tail(&dma_desc->cb_node, &tdc->cb_desc);
620 dma_desc->cb_count++;
621 list_add_tail(&dma_desc->node, &tdc->free_dma_desc);
622 }
623 list_add_tail(&sgreq->node, &tdc->free_sg_req);
624
625 /* Do not start DMA if it is going to be terminate */
626 if (to_terminate || list_empty(&tdc->pending_sg_req))
627 return;
628
629 tdc_start_head_req(tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530630}
631
632static void handle_cont_sngl_cycle_dma_done(struct tegra_dma_channel *tdc,
633 bool to_terminate)
634{
635 struct tegra_dma_sg_req *sgreq;
636 struct tegra_dma_desc *dma_desc;
637 bool st;
638
639 sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq), node);
640 dma_desc = sgreq->dma_desc;
641 dma_desc->bytes_transferred += sgreq->req_len;
642
643 /* Callback need to be call */
644 if (!dma_desc->cb_count)
645 list_add_tail(&dma_desc->cb_node, &tdc->cb_desc);
646 dma_desc->cb_count++;
647
648 /* If not last req then put at end of pending list */
649 if (!list_is_last(&sgreq->node, &tdc->pending_sg_req)) {
Wei Yongjun2cc44e62012-09-05 15:08:56 +0800650 list_move_tail(&sgreq->node, &tdc->pending_sg_req);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530651 sgreq->configured = false;
652 st = handle_continuous_head_request(tdc, sgreq, to_terminate);
653 if (!st)
654 dma_desc->dma_status = DMA_ERROR;
655 }
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530656}
657
658static void tegra_dma_tasklet(unsigned long data)
659{
660 struct tegra_dma_channel *tdc = (struct tegra_dma_channel *)data;
661 dma_async_tx_callback callback = NULL;
662 void *callback_param = NULL;
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 callback = dma_desc->txd.callback;
673 callback_param = dma_desc->txd.callback_param;
674 cb_count = dma_desc->cb_count;
675 dma_desc->cb_count = 0;
676 spin_unlock_irqrestore(&tdc->lock, flags);
677 while (cb_count-- && callback)
678 callback(callback_param);
679 spin_lock_irqsave(&tdc->lock, flags);
680 }
681 spin_unlock_irqrestore(&tdc->lock, flags);
682}
683
684static irqreturn_t tegra_dma_isr(int irq, void *dev_id)
685{
686 struct tegra_dma_channel *tdc = dev_id;
687 unsigned long status;
688 unsigned long flags;
689
690 spin_lock_irqsave(&tdc->lock, flags);
691
692 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
693 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
694 tdc_write(tdc, TEGRA_APBDMA_CHAN_STATUS, status);
695 tdc->isr_handler(tdc, false);
696 tasklet_schedule(&tdc->tasklet);
697 spin_unlock_irqrestore(&tdc->lock, flags);
698 return IRQ_HANDLED;
699 }
700
701 spin_unlock_irqrestore(&tdc->lock, flags);
702 dev_info(tdc2dev(tdc),
703 "Interrupt already served status 0x%08lx\n", status);
704 return IRQ_NONE;
705}
706
707static dma_cookie_t tegra_dma_tx_submit(struct dma_async_tx_descriptor *txd)
708{
709 struct tegra_dma_desc *dma_desc = txd_to_tegra_dma_desc(txd);
710 struct tegra_dma_channel *tdc = to_tegra_dma_chan(txd->chan);
711 unsigned long flags;
712 dma_cookie_t cookie;
713
714 spin_lock_irqsave(&tdc->lock, flags);
715 dma_desc->dma_status = DMA_IN_PROGRESS;
716 cookie = dma_cookie_assign(&dma_desc->txd);
717 list_splice_tail_init(&dma_desc->tx_list, &tdc->pending_sg_req);
718 spin_unlock_irqrestore(&tdc->lock, flags);
719 return cookie;
720}
721
722static void tegra_dma_issue_pending(struct dma_chan *dc)
723{
724 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
725 unsigned long flags;
726
727 spin_lock_irqsave(&tdc->lock, flags);
728 if (list_empty(&tdc->pending_sg_req)) {
729 dev_err(tdc2dev(tdc), "No DMA request\n");
730 goto end;
731 }
732 if (!tdc->busy) {
733 tdc_start_head_req(tdc);
734
735 /* Continuous single mode: Configure next req */
736 if (tdc->cyclic) {
737 /*
738 * Wait for 1 burst time for configure DMA for
739 * next transfer.
740 */
741 udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME);
742 tdc_configure_next_head_desc(tdc);
743 }
744 }
745end:
746 spin_unlock_irqrestore(&tdc->lock, flags);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530747}
748
Vinod Koula7c439a2014-12-08 11:30:17 +0530749static int tegra_dma_terminate_all(struct dma_chan *dc)
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530750{
751 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
752 struct tegra_dma_sg_req *sgreq;
753 struct tegra_dma_desc *dma_desc;
754 unsigned long flags;
755 unsigned long status;
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700756 unsigned long wcount;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530757 bool was_busy;
758
759 spin_lock_irqsave(&tdc->lock, flags);
760 if (list_empty(&tdc->pending_sg_req)) {
761 spin_unlock_irqrestore(&tdc->lock, flags);
Vinod Koula7c439a2014-12-08 11:30:17 +0530762 return 0;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530763 }
764
765 if (!tdc->busy)
766 goto skip_dma_stop;
767
768 /* Pause DMA before checking the queue status */
Laxman Dewangan1b140902013-01-06 21:52:02 +0530769 tegra_dma_pause(tdc, true);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530770
771 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
772 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
773 dev_dbg(tdc2dev(tdc), "%s():handling isr\n", __func__);
774 tdc->isr_handler(tdc, true);
775 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
776 }
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700777 if (tdc->tdma->chip_data->support_separate_wcount_reg)
778 wcount = tdc_read(tdc, TEGRA_APBDMA_CHAN_WORD_TRANSFER);
779 else
780 wcount = status;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530781
782 was_busy = tdc->busy;
783 tegra_dma_stop(tdc);
784
785 if (!list_empty(&tdc->pending_sg_req) && was_busy) {
786 sgreq = list_first_entry(&tdc->pending_sg_req,
787 typeof(*sgreq), node);
788 sgreq->dma_desc->bytes_transferred +=
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700789 get_current_xferred_count(tdc, sgreq, wcount);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530790 }
Laxman Dewangan1b140902013-01-06 21:52:02 +0530791 tegra_dma_resume(tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530792
793skip_dma_stop:
794 tegra_dma_abort_all(tdc);
795
796 while (!list_empty(&tdc->cb_desc)) {
797 dma_desc = list_first_entry(&tdc->cb_desc,
798 typeof(*dma_desc), cb_node);
799 list_del(&dma_desc->cb_node);
800 dma_desc->cb_count = 0;
801 }
802 spin_unlock_irqrestore(&tdc->lock, flags);
Vinod Koula7c439a2014-12-08 11:30:17 +0530803 return 0;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530804}
805
806static enum dma_status tegra_dma_tx_status(struct dma_chan *dc,
807 dma_cookie_t cookie, struct dma_tx_state *txstate)
808{
809 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
810 struct tegra_dma_desc *dma_desc;
811 struct tegra_dma_sg_req *sg_req;
812 enum dma_status ret;
813 unsigned long flags;
Laxman Dewangan4a46ba32012-07-02 13:52:07 +0530814 unsigned int residual;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530815
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530816 ret = dma_cookie_status(dc, cookie, txstate);
Vinod Koul00d696f2013-10-16 21:04:50 +0530817 if (ret == DMA_COMPLETE)
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530818 return ret;
Andy Shevchenko0a0aee22013-05-27 15:14:39 +0300819
820 spin_lock_irqsave(&tdc->lock, flags);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530821
822 /* Check on wait_ack desc status */
823 list_for_each_entry(dma_desc, &tdc->free_dma_desc, node) {
824 if (dma_desc->txd.cookie == cookie) {
Laxman Dewangan4a46ba32012-07-02 13:52:07 +0530825 residual = dma_desc->bytes_requested -
826 (dma_desc->bytes_transferred %
827 dma_desc->bytes_requested);
828 dma_set_residue(txstate, residual);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530829 ret = dma_desc->dma_status;
830 spin_unlock_irqrestore(&tdc->lock, flags);
831 return ret;
832 }
833 }
834
835 /* Check in pending list */
836 list_for_each_entry(sg_req, &tdc->pending_sg_req, node) {
837 dma_desc = sg_req->dma_desc;
838 if (dma_desc->txd.cookie == cookie) {
Laxman Dewangan4a46ba32012-07-02 13:52:07 +0530839 residual = dma_desc->bytes_requested -
840 (dma_desc->bytes_transferred %
841 dma_desc->bytes_requested);
842 dma_set_residue(txstate, residual);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530843 ret = dma_desc->dma_status;
844 spin_unlock_irqrestore(&tdc->lock, flags);
845 return ret;
846 }
847 }
848
849 dev_dbg(tdc2dev(tdc), "cookie %d does not found\n", cookie);
850 spin_unlock_irqrestore(&tdc->lock, flags);
851 return ret;
852}
853
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530854static inline int get_bus_width(struct tegra_dma_channel *tdc,
855 enum dma_slave_buswidth slave_bw)
856{
857 switch (slave_bw) {
858 case DMA_SLAVE_BUSWIDTH_1_BYTE:
859 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_8;
860 case DMA_SLAVE_BUSWIDTH_2_BYTES:
861 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_16;
862 case DMA_SLAVE_BUSWIDTH_4_BYTES:
863 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32;
864 case DMA_SLAVE_BUSWIDTH_8_BYTES:
865 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_64;
866 default:
867 dev_warn(tdc2dev(tdc),
868 "slave bw is not supported, using 32bits\n");
869 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32;
870 }
871}
872
873static inline int get_burst_size(struct tegra_dma_channel *tdc,
874 u32 burst_size, enum dma_slave_buswidth slave_bw, int len)
875{
876 int burst_byte;
877 int burst_ahb_width;
878
879 /*
880 * burst_size from client is in terms of the bus_width.
881 * convert them into AHB memory width which is 4 byte.
882 */
883 burst_byte = burst_size * slave_bw;
884 burst_ahb_width = burst_byte / 4;
885
886 /* If burst size is 0 then calculate the burst size based on length */
887 if (!burst_ahb_width) {
888 if (len & 0xF)
889 return TEGRA_APBDMA_AHBSEQ_BURST_1;
890 else if ((len >> 4) & 0x1)
891 return TEGRA_APBDMA_AHBSEQ_BURST_4;
892 else
893 return TEGRA_APBDMA_AHBSEQ_BURST_8;
894 }
895 if (burst_ahb_width < 4)
896 return TEGRA_APBDMA_AHBSEQ_BURST_1;
897 else if (burst_ahb_width < 8)
898 return TEGRA_APBDMA_AHBSEQ_BURST_4;
899 else
900 return TEGRA_APBDMA_AHBSEQ_BURST_8;
901}
902
903static int get_transfer_param(struct tegra_dma_channel *tdc,
904 enum dma_transfer_direction direction, unsigned long *apb_addr,
905 unsigned long *apb_seq, unsigned long *csr, unsigned int *burst_size,
906 enum dma_slave_buswidth *slave_bw)
907{
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530908 switch (direction) {
909 case DMA_MEM_TO_DEV:
910 *apb_addr = tdc->dma_sconfig.dst_addr;
911 *apb_seq = get_bus_width(tdc, tdc->dma_sconfig.dst_addr_width);
912 *burst_size = tdc->dma_sconfig.dst_maxburst;
913 *slave_bw = tdc->dma_sconfig.dst_addr_width;
914 *csr = TEGRA_APBDMA_CSR_DIR;
915 return 0;
916
917 case DMA_DEV_TO_MEM:
918 *apb_addr = tdc->dma_sconfig.src_addr;
919 *apb_seq = get_bus_width(tdc, tdc->dma_sconfig.src_addr_width);
920 *burst_size = tdc->dma_sconfig.src_maxburst;
921 *slave_bw = tdc->dma_sconfig.src_addr_width;
922 *csr = 0;
923 return 0;
924
925 default:
926 dev_err(tdc2dev(tdc), "Dma direction is not supported\n");
927 return -EINVAL;
928 }
929 return -EINVAL;
930}
931
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700932static void tegra_dma_prep_wcount(struct tegra_dma_channel *tdc,
933 struct tegra_dma_channel_regs *ch_regs, u32 len)
934{
935 u32 len_field = (len - 4) & 0xFFFC;
936
937 if (tdc->tdma->chip_data->support_separate_wcount_reg)
938 ch_regs->wcount = len_field;
939 else
940 ch_regs->csr |= len_field;
941}
942
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530943static struct dma_async_tx_descriptor *tegra_dma_prep_slave_sg(
944 struct dma_chan *dc, struct scatterlist *sgl, unsigned int sg_len,
945 enum dma_transfer_direction direction, unsigned long flags,
946 void *context)
947{
948 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
949 struct tegra_dma_desc *dma_desc;
Thierry Reding7b0e00d2016-06-14 16:18:46 +0200950 unsigned int i;
951 struct scatterlist *sg;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530952 unsigned long csr, ahb_seq, apb_ptr, apb_seq;
953 struct list_head req_list;
954 struct tegra_dma_sg_req *sg_req = NULL;
955 u32 burst_size;
956 enum dma_slave_buswidth slave_bw;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530957
958 if (!tdc->config_init) {
959 dev_err(tdc2dev(tdc), "dma channel is not configured\n");
960 return NULL;
961 }
962 if (sg_len < 1) {
963 dev_err(tdc2dev(tdc), "Invalid segment length %d\n", sg_len);
964 return NULL;
965 }
966
Jon Hunterdc1ff4b2015-08-06 14:32:32 +0100967 if (get_transfer_param(tdc, direction, &apb_ptr, &apb_seq, &csr,
968 &burst_size, &slave_bw) < 0)
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530969 return NULL;
970
971 INIT_LIST_HEAD(&req_list);
972
973 ahb_seq = TEGRA_APBDMA_AHBSEQ_INTR_ENB;
974 ahb_seq |= TEGRA_APBDMA_AHBSEQ_WRAP_NONE <<
975 TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT;
976 ahb_seq |= TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32;
977
978 csr |= TEGRA_APBDMA_CSR_ONCE | TEGRA_APBDMA_CSR_FLOW;
Stephen Warren996556c2013-11-11 13:09:35 -0700979 csr |= tdc->slave_id << TEGRA_APBDMA_CSR_REQ_SEL_SHIFT;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530980 if (flags & DMA_PREP_INTERRUPT)
981 csr |= TEGRA_APBDMA_CSR_IE_EOC;
982
983 apb_seq |= TEGRA_APBDMA_APBSEQ_WRAP_WORD_1;
984
985 dma_desc = tegra_dma_desc_get(tdc);
986 if (!dma_desc) {
987 dev_err(tdc2dev(tdc), "Dma descriptors not available\n");
988 return NULL;
989 }
990 INIT_LIST_HEAD(&dma_desc->tx_list);
991 INIT_LIST_HEAD(&dma_desc->cb_node);
992 dma_desc->cb_count = 0;
993 dma_desc->bytes_requested = 0;
994 dma_desc->bytes_transferred = 0;
995 dma_desc->dma_status = DMA_IN_PROGRESS;
996
997 /* Make transfer requests */
998 for_each_sg(sgl, sg, sg_len, i) {
999 u32 len, mem;
1000
Laxman Dewangan597c8542012-06-22 20:41:10 +05301001 mem = sg_dma_address(sg);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301002 len = sg_dma_len(sg);
1003
1004 if ((len & 3) || (mem & 3) ||
1005 (len > tdc->tdma->chip_data->max_dma_count)) {
1006 dev_err(tdc2dev(tdc),
1007 "Dma length/memory address is not supported\n");
1008 tegra_dma_desc_put(tdc, dma_desc);
1009 return NULL;
1010 }
1011
1012 sg_req = tegra_dma_sg_req_get(tdc);
1013 if (!sg_req) {
1014 dev_err(tdc2dev(tdc), "Dma sg-req not available\n");
1015 tegra_dma_desc_put(tdc, dma_desc);
1016 return NULL;
1017 }
1018
1019 ahb_seq |= get_burst_size(tdc, burst_size, slave_bw, len);
1020 dma_desc->bytes_requested += len;
1021
1022 sg_req->ch_regs.apb_ptr = apb_ptr;
1023 sg_req->ch_regs.ahb_ptr = mem;
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001024 sg_req->ch_regs.csr = csr;
1025 tegra_dma_prep_wcount(tdc, &sg_req->ch_regs, len);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301026 sg_req->ch_regs.apb_seq = apb_seq;
1027 sg_req->ch_regs.ahb_seq = ahb_seq;
1028 sg_req->configured = false;
1029 sg_req->last_sg = false;
1030 sg_req->dma_desc = dma_desc;
1031 sg_req->req_len = len;
1032
1033 list_add_tail(&sg_req->node, &dma_desc->tx_list);
1034 }
1035 sg_req->last_sg = true;
1036 if (flags & DMA_CTRL_ACK)
1037 dma_desc->txd.flags = DMA_CTRL_ACK;
1038
1039 /*
1040 * Make sure that mode should not be conflicting with currently
1041 * configured mode.
1042 */
1043 if (!tdc->isr_handler) {
1044 tdc->isr_handler = handle_once_dma_done;
1045 tdc->cyclic = false;
1046 } else {
1047 if (tdc->cyclic) {
1048 dev_err(tdc2dev(tdc), "DMA configured in cyclic mode\n");
1049 tegra_dma_desc_put(tdc, dma_desc);
1050 return NULL;
1051 }
1052 }
1053
1054 return &dma_desc->txd;
1055}
1056
Sachin Kamat404ff6692013-09-06 17:16:22 +05301057static struct dma_async_tx_descriptor *tegra_dma_prep_dma_cyclic(
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301058 struct dma_chan *dc, dma_addr_t buf_addr, size_t buf_len,
1059 size_t period_len, enum dma_transfer_direction direction,
Laurent Pinchart31c1e5a2014-08-01 12:20:10 +02001060 unsigned long flags)
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301061{
1062 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
1063 struct tegra_dma_desc *dma_desc = NULL;
Thierry Reding7b0e00d2016-06-14 16:18:46 +02001064 struct tegra_dma_sg_req *sg_req = NULL;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301065 unsigned long csr, ahb_seq, apb_ptr, apb_seq;
1066 int len;
1067 size_t remain_len;
1068 dma_addr_t mem = buf_addr;
1069 u32 burst_size;
1070 enum dma_slave_buswidth slave_bw;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301071
1072 if (!buf_len || !period_len) {
1073 dev_err(tdc2dev(tdc), "Invalid buffer/period len\n");
1074 return NULL;
1075 }
1076
1077 if (!tdc->config_init) {
1078 dev_err(tdc2dev(tdc), "DMA slave is not configured\n");
1079 return NULL;
1080 }
1081
1082 /*
1083 * We allow to take more number of requests till DMA is
1084 * not started. The driver will loop over all requests.
1085 * Once DMA is started then new requests can be queued only after
1086 * terminating the DMA.
1087 */
1088 if (tdc->busy) {
1089 dev_err(tdc2dev(tdc), "Request not allowed when dma running\n");
1090 return NULL;
1091 }
1092
1093 /*
1094 * We only support cycle transfer when buf_len is multiple of
1095 * period_len.
1096 */
1097 if (buf_len % period_len) {
1098 dev_err(tdc2dev(tdc), "buf_len is not multiple of period_len\n");
1099 return NULL;
1100 }
1101
1102 len = period_len;
1103 if ((len & 3) || (buf_addr & 3) ||
1104 (len > tdc->tdma->chip_data->max_dma_count)) {
1105 dev_err(tdc2dev(tdc), "Req len/mem address is not correct\n");
1106 return NULL;
1107 }
1108
Jon Hunterdc1ff4b2015-08-06 14:32:32 +01001109 if (get_transfer_param(tdc, direction, &apb_ptr, &apb_seq, &csr,
1110 &burst_size, &slave_bw) < 0)
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301111 return NULL;
1112
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301113 ahb_seq = TEGRA_APBDMA_AHBSEQ_INTR_ENB;
1114 ahb_seq |= TEGRA_APBDMA_AHBSEQ_WRAP_NONE <<
1115 TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT;
1116 ahb_seq |= TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32;
1117
Laxman Dewanganb9bb37f2013-01-09 15:26:22 +05301118 csr |= TEGRA_APBDMA_CSR_FLOW;
1119 if (flags & DMA_PREP_INTERRUPT)
1120 csr |= TEGRA_APBDMA_CSR_IE_EOC;
Stephen Warren996556c2013-11-11 13:09:35 -07001121 csr |= tdc->slave_id << TEGRA_APBDMA_CSR_REQ_SEL_SHIFT;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301122
1123 apb_seq |= TEGRA_APBDMA_APBSEQ_WRAP_WORD_1;
1124
1125 dma_desc = tegra_dma_desc_get(tdc);
1126 if (!dma_desc) {
1127 dev_err(tdc2dev(tdc), "not enough descriptors available\n");
1128 return NULL;
1129 }
1130
1131 INIT_LIST_HEAD(&dma_desc->tx_list);
1132 INIT_LIST_HEAD(&dma_desc->cb_node);
1133 dma_desc->cb_count = 0;
1134
1135 dma_desc->bytes_transferred = 0;
1136 dma_desc->bytes_requested = buf_len;
1137 remain_len = buf_len;
1138
1139 /* Split transfer equal to period size */
1140 while (remain_len) {
1141 sg_req = tegra_dma_sg_req_get(tdc);
1142 if (!sg_req) {
1143 dev_err(tdc2dev(tdc), "Dma sg-req not available\n");
1144 tegra_dma_desc_put(tdc, dma_desc);
1145 return NULL;
1146 }
1147
1148 ahb_seq |= get_burst_size(tdc, burst_size, slave_bw, len);
1149 sg_req->ch_regs.apb_ptr = apb_ptr;
1150 sg_req->ch_regs.ahb_ptr = mem;
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001151 sg_req->ch_regs.csr = csr;
1152 tegra_dma_prep_wcount(tdc, &sg_req->ch_regs, len);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301153 sg_req->ch_regs.apb_seq = apb_seq;
1154 sg_req->ch_regs.ahb_seq = ahb_seq;
1155 sg_req->configured = false;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301156 sg_req->last_sg = false;
1157 sg_req->dma_desc = dma_desc;
1158 sg_req->req_len = len;
1159
1160 list_add_tail(&sg_req->node, &dma_desc->tx_list);
1161 remain_len -= len;
1162 mem += len;
1163 }
1164 sg_req->last_sg = true;
Laxman Dewanganb9bb37f2013-01-09 15:26:22 +05301165 if (flags & DMA_CTRL_ACK)
1166 dma_desc->txd.flags = DMA_CTRL_ACK;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301167
1168 /*
1169 * Make sure that mode should not be conflicting with currently
1170 * configured mode.
1171 */
1172 if (!tdc->isr_handler) {
1173 tdc->isr_handler = handle_cont_sngl_cycle_dma_done;
1174 tdc->cyclic = true;
1175 } else {
1176 if (!tdc->cyclic) {
1177 dev_err(tdc2dev(tdc), "DMA configuration conflict\n");
1178 tegra_dma_desc_put(tdc, dma_desc);
1179 return NULL;
1180 }
1181 }
1182
1183 return &dma_desc->txd;
1184}
1185
1186static int tegra_dma_alloc_chan_resources(struct dma_chan *dc)
1187{
1188 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
Laxman Dewanganffc49302012-07-20 13:31:08 +05301189 struct tegra_dma *tdma = tdc->tdma;
1190 int ret;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301191
1192 dma_cookie_init(&tdc->dma_chan);
1193 tdc->config_init = false;
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001194
1195 ret = pm_runtime_get_sync(tdma->dev);
Laxman Dewanganffc49302012-07-20 13:31:08 +05301196 if (ret < 0)
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001197 return ret;
1198
1199 return 0;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301200}
1201
1202static void tegra_dma_free_chan_resources(struct dma_chan *dc)
1203{
1204 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
Laxman Dewanganffc49302012-07-20 13:31:08 +05301205 struct tegra_dma *tdma = tdc->tdma;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301206 struct tegra_dma_desc *dma_desc;
1207 struct tegra_dma_sg_req *sg_req;
1208 struct list_head dma_desc_list;
1209 struct list_head sg_req_list;
1210 unsigned long flags;
1211
1212 INIT_LIST_HEAD(&dma_desc_list);
1213 INIT_LIST_HEAD(&sg_req_list);
1214
1215 dev_dbg(tdc2dev(tdc), "Freeing channel %d\n", tdc->id);
1216
1217 if (tdc->busy)
1218 tegra_dma_terminate_all(dc);
1219
1220 spin_lock_irqsave(&tdc->lock, flags);
1221 list_splice_init(&tdc->pending_sg_req, &sg_req_list);
1222 list_splice_init(&tdc->free_sg_req, &sg_req_list);
1223 list_splice_init(&tdc->free_dma_desc, &dma_desc_list);
1224 INIT_LIST_HEAD(&tdc->cb_desc);
1225 tdc->config_init = false;
Dmitry Osipenko7bdc1e22013-05-11 20:30:53 +04001226 tdc->isr_handler = NULL;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301227 spin_unlock_irqrestore(&tdc->lock, flags);
1228
1229 while (!list_empty(&dma_desc_list)) {
1230 dma_desc = list_first_entry(&dma_desc_list,
1231 typeof(*dma_desc), node);
1232 list_del(&dma_desc->node);
1233 kfree(dma_desc);
1234 }
1235
1236 while (!list_empty(&sg_req_list)) {
1237 sg_req = list_first_entry(&sg_req_list, typeof(*sg_req), node);
1238 list_del(&sg_req->node);
1239 kfree(sg_req);
1240 }
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001241 pm_runtime_put(tdma->dev);
Stephen Warren996556c2013-11-11 13:09:35 -07001242
Shardar Shariff Md00ef4492016-04-23 15:06:00 +05301243 tdc->slave_id = TEGRA_APBDMA_SLAVE_ID_INVALID;
Stephen Warren996556c2013-11-11 13:09:35 -07001244}
1245
1246static struct dma_chan *tegra_dma_of_xlate(struct of_phandle_args *dma_spec,
1247 struct of_dma *ofdma)
1248{
1249 struct tegra_dma *tdma = ofdma->of_dma_data;
1250 struct dma_chan *chan;
1251 struct tegra_dma_channel *tdc;
1252
Shardar Shariff Md00ef4492016-04-23 15:06:00 +05301253 if (dma_spec->args[0] > TEGRA_APBDMA_CSR_REQ_SEL_MASK) {
1254 dev_err(tdma->dev, "Invalid slave id: %d\n", dma_spec->args[0]);
1255 return NULL;
1256 }
1257
Stephen Warren996556c2013-11-11 13:09:35 -07001258 chan = dma_get_any_slave_channel(&tdma->dma_dev);
1259 if (!chan)
1260 return NULL;
1261
1262 tdc = to_tegra_dma_chan(chan);
1263 tdc->slave_id = dma_spec->args[0];
1264
1265 return chan;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301266}
1267
1268/* Tegra20 specific DMA controller information */
Laxman Dewangan75f21632012-08-29 10:31:18 +02001269static const struct tegra_dma_chip_data tegra20_dma_chip_data = {
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301270 .nr_channels = 16,
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001271 .channel_reg_size = 0x20,
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301272 .max_dma_count = 1024UL * 64,
Laxman Dewangan1b140902013-01-06 21:52:02 +05301273 .support_channel_pause = false,
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001274 .support_separate_wcount_reg = false,
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301275};
1276
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301277/* Tegra30 specific DMA controller information */
Laxman Dewangan75f21632012-08-29 10:31:18 +02001278static const struct tegra_dma_chip_data tegra30_dma_chip_data = {
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301279 .nr_channels = 32,
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001280 .channel_reg_size = 0x20,
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301281 .max_dma_count = 1024UL * 64,
Laxman Dewangan1b140902013-01-06 21:52:02 +05301282 .support_channel_pause = false,
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001283 .support_separate_wcount_reg = false,
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301284};
1285
Laxman Dewangan5ea7caf2013-01-06 21:52:03 +05301286/* Tegra114 specific DMA controller information */
1287static const struct tegra_dma_chip_data tegra114_dma_chip_data = {
1288 .nr_channels = 32,
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001289 .channel_reg_size = 0x20,
Laxman Dewangan5ea7caf2013-01-06 21:52:03 +05301290 .max_dma_count = 1024UL * 64,
1291 .support_channel_pause = true,
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001292 .support_separate_wcount_reg = false,
1293};
1294
1295/* Tegra148 specific DMA controller information */
1296static const struct tegra_dma_chip_data tegra148_dma_chip_data = {
1297 .nr_channels = 32,
1298 .channel_reg_size = 0x40,
1299 .max_dma_count = 1024UL * 64,
1300 .support_channel_pause = true,
1301 .support_separate_wcount_reg = true,
Laxman Dewangan5ea7caf2013-01-06 21:52:03 +05301302};
1303
Bill Pemberton463a1f82012-11-19 13:22:55 -05001304static int tegra_dma_probe(struct platform_device *pdev)
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301305{
Thierry Reding7b0e00d2016-06-14 16:18:46 +02001306 struct resource *res;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301307 struct tegra_dma *tdma;
1308 int ret;
1309 int i;
Laxman Dewangan333f16e2016-03-01 18:54:40 +05301310 const struct tegra_dma_chip_data *cdata;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301311
Laxman Dewangan333f16e2016-03-01 18:54:40 +05301312 cdata = of_device_get_match_data(&pdev->dev);
1313 if (!cdata) {
1314 dev_err(&pdev->dev, "Error: No device match data found\n");
Stephen Warrendc7badb2013-03-11 16:30:26 -06001315 return -ENODEV;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301316 }
1317
1318 tdma = devm_kzalloc(&pdev->dev, sizeof(*tdma) + cdata->nr_channels *
1319 sizeof(struct tegra_dma_channel), GFP_KERNEL);
1320 if (!tdma) {
1321 dev_err(&pdev->dev, "Error: memory allocation failed\n");
1322 return -ENOMEM;
1323 }
1324
1325 tdma->dev = &pdev->dev;
1326 tdma->chip_data = cdata;
1327 platform_set_drvdata(pdev, tdma);
1328
1329 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding73312052013-01-21 11:09:00 +01001330 tdma->base_addr = devm_ioremap_resource(&pdev->dev, res);
1331 if (IS_ERR(tdma->base_addr))
1332 return PTR_ERR(tdma->base_addr);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301333
1334 tdma->dma_clk = devm_clk_get(&pdev->dev, NULL);
1335 if (IS_ERR(tdma->dma_clk)) {
1336 dev_err(&pdev->dev, "Error: Missing controller clock\n");
1337 return PTR_ERR(tdma->dma_clk);
1338 }
1339
Stephen Warren9aa433d2013-11-06 16:35:34 -07001340 tdma->rst = devm_reset_control_get(&pdev->dev, "dma");
1341 if (IS_ERR(tdma->rst)) {
1342 dev_err(&pdev->dev, "Error: Missing reset\n");
1343 return PTR_ERR(tdma->rst);
1344 }
1345
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301346 spin_lock_init(&tdma->global_lock);
1347
1348 pm_runtime_enable(&pdev->dev);
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001349 if (!pm_runtime_enabled(&pdev->dev))
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301350 ret = tegra_dma_runtime_resume(&pdev->dev);
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001351 else
1352 ret = pm_runtime_get_sync(&pdev->dev);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301353
Laxman Dewanganffc49302012-07-20 13:31:08 +05301354 if (ret < 0) {
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001355 pm_runtime_disable(&pdev->dev);
1356 return ret;
Laxman Dewanganffc49302012-07-20 13:31:08 +05301357 }
1358
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301359 /* Reset DMA controller */
Stephen Warren9aa433d2013-11-06 16:35:34 -07001360 reset_control_assert(tdma->rst);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301361 udelay(2);
Stephen Warren9aa433d2013-11-06 16:35:34 -07001362 reset_control_deassert(tdma->rst);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301363
1364 /* Enable global DMA registers */
1365 tdma_write(tdma, TEGRA_APBDMA_GENERAL, TEGRA_APBDMA_GENERAL_ENABLE);
1366 tdma_write(tdma, TEGRA_APBDMA_CONTROL, 0);
1367 tdma_write(tdma, TEGRA_APBDMA_IRQ_MASK_SET, 0xFFFFFFFFul);
1368
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001369 pm_runtime_put(&pdev->dev);
Laxman Dewanganffc49302012-07-20 13:31:08 +05301370
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301371 INIT_LIST_HEAD(&tdma->dma_dev.channels);
1372 for (i = 0; i < cdata->nr_channels; i++) {
1373 struct tegra_dma_channel *tdc = &tdma->channels[i];
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301374
Jon Hunter13a33282015-08-06 14:32:31 +01001375 tdc->chan_addr = tdma->base_addr +
1376 TEGRA_APBDMA_CHANNEL_BASE_ADD_OFFSET +
1377 (i * cdata->channel_reg_size);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301378
1379 res = platform_get_resource(pdev, IORESOURCE_IRQ, i);
1380 if (!res) {
1381 ret = -EINVAL;
1382 dev_err(&pdev->dev, "No irq resource for chan %d\n", i);
1383 goto err_irq;
1384 }
1385 tdc->irq = res->start;
Laxman Dewangand0fc9052012-10-03 22:48:07 +05301386 snprintf(tdc->name, sizeof(tdc->name), "apbdma.%d", i);
Jon Hunter05e866b2015-11-13 16:39:43 +00001387 ret = request_irq(tdc->irq, tegra_dma_isr, 0, tdc->name, tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301388 if (ret) {
1389 dev_err(&pdev->dev,
1390 "request_irq failed with err %d channel %d\n",
Dmitry Osipenkoac7ae752013-05-11 20:30:52 +04001391 ret, i);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301392 goto err_irq;
1393 }
1394
1395 tdc->dma_chan.device = &tdma->dma_dev;
1396 dma_cookie_init(&tdc->dma_chan);
1397 list_add_tail(&tdc->dma_chan.device_node,
1398 &tdma->dma_dev.channels);
1399 tdc->tdma = tdma;
1400 tdc->id = i;
Shardar Shariff Md00ef4492016-04-23 15:06:00 +05301401 tdc->slave_id = TEGRA_APBDMA_SLAVE_ID_INVALID;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301402
1403 tasklet_init(&tdc->tasklet, tegra_dma_tasklet,
1404 (unsigned long)tdc);
1405 spin_lock_init(&tdc->lock);
1406
1407 INIT_LIST_HEAD(&tdc->pending_sg_req);
1408 INIT_LIST_HEAD(&tdc->free_sg_req);
1409 INIT_LIST_HEAD(&tdc->free_dma_desc);
1410 INIT_LIST_HEAD(&tdc->cb_desc);
1411 }
1412
1413 dma_cap_set(DMA_SLAVE, tdma->dma_dev.cap_mask);
1414 dma_cap_set(DMA_PRIVATE, tdma->dma_dev.cap_mask);
Laxman Dewangan46fb3f82012-06-22 17:12:43 +05301415 dma_cap_set(DMA_CYCLIC, tdma->dma_dev.cap_mask);
1416
Jon Hunter23a1ec32015-08-06 14:32:33 +01001417 tdma->global_pause_count = 0;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301418 tdma->dma_dev.dev = &pdev->dev;
1419 tdma->dma_dev.device_alloc_chan_resources =
1420 tegra_dma_alloc_chan_resources;
1421 tdma->dma_dev.device_free_chan_resources =
1422 tegra_dma_free_chan_resources;
1423 tdma->dma_dev.device_prep_slave_sg = tegra_dma_prep_slave_sg;
1424 tdma->dma_dev.device_prep_dma_cyclic = tegra_dma_prep_dma_cyclic;
Paul Walmsley891653a2015-01-06 06:44:56 +00001425 tdma->dma_dev.src_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1426 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1427 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) |
1428 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES);
1429 tdma->dma_dev.dst_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1430 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1431 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) |
1432 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES);
1433 tdma->dma_dev.directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
1434 /*
1435 * XXX The hardware appears to support
1436 * DMA_RESIDUE_GRANULARITY_BURST-level reporting, but it's
1437 * only used by this driver during tegra_dma_terminate_all()
1438 */
1439 tdma->dma_dev.residue_granularity = DMA_RESIDUE_GRANULARITY_SEGMENT;
Maxime Ripard662f1ac2014-11-17 14:42:37 +01001440 tdma->dma_dev.device_config = tegra_dma_slave_config;
1441 tdma->dma_dev.device_terminate_all = tegra_dma_terminate_all;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301442 tdma->dma_dev.device_tx_status = tegra_dma_tx_status;
1443 tdma->dma_dev.device_issue_pending = tegra_dma_issue_pending;
1444
1445 ret = dma_async_device_register(&tdma->dma_dev);
1446 if (ret < 0) {
1447 dev_err(&pdev->dev,
1448 "Tegra20 APB DMA driver registration failed %d\n", ret);
1449 goto err_irq;
1450 }
1451
Stephen Warren996556c2013-11-11 13:09:35 -07001452 ret = of_dma_controller_register(pdev->dev.of_node,
1453 tegra_dma_of_xlate, tdma);
1454 if (ret < 0) {
1455 dev_err(&pdev->dev,
1456 "Tegra20 APB DMA OF registration failed %d\n", ret);
1457 goto err_unregister_dma_dev;
1458 }
1459
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301460 dev_info(&pdev->dev, "Tegra20 APB DMA driver register %d channels\n",
1461 cdata->nr_channels);
1462 return 0;
1463
Stephen Warren996556c2013-11-11 13:09:35 -07001464err_unregister_dma_dev:
1465 dma_async_device_unregister(&tdma->dma_dev);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301466err_irq:
1467 while (--i >= 0) {
1468 struct tegra_dma_channel *tdc = &tdma->channels[i];
Jon Hunter05e866b2015-11-13 16:39:43 +00001469
1470 free_irq(tdc->irq, tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301471 tasklet_kill(&tdc->tasklet);
1472 }
1473
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301474 pm_runtime_disable(&pdev->dev);
1475 if (!pm_runtime_status_suspended(&pdev->dev))
1476 tegra_dma_runtime_suspend(&pdev->dev);
1477 return ret;
1478}
1479
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -08001480static int tegra_dma_remove(struct platform_device *pdev)
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301481{
1482 struct tegra_dma *tdma = platform_get_drvdata(pdev);
1483 int i;
1484 struct tegra_dma_channel *tdc;
1485
1486 dma_async_device_unregister(&tdma->dma_dev);
1487
1488 for (i = 0; i < tdma->chip_data->nr_channels; ++i) {
1489 tdc = &tdma->channels[i];
Jon Hunter05e866b2015-11-13 16:39:43 +00001490 free_irq(tdc->irq, tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301491 tasklet_kill(&tdc->tasklet);
1492 }
1493
1494 pm_runtime_disable(&pdev->dev);
1495 if (!pm_runtime_status_suspended(&pdev->dev))
1496 tegra_dma_runtime_suspend(&pdev->dev);
1497
1498 return 0;
1499}
1500
1501static int tegra_dma_runtime_suspend(struct device *dev)
1502{
Jon Hunter286a6442015-11-13 16:39:39 +00001503 struct tegra_dma *tdma = dev_get_drvdata(dev);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301504
Prashant Gaikwad56482ec2012-06-25 12:01:31 +05301505 clk_disable_unprepare(tdma->dma_clk);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301506 return 0;
1507}
1508
1509static int tegra_dma_runtime_resume(struct device *dev)
1510{
Jon Hunter286a6442015-11-13 16:39:39 +00001511 struct tegra_dma *tdma = dev_get_drvdata(dev);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301512 int ret;
1513
Prashant Gaikwad56482ec2012-06-25 12:01:31 +05301514 ret = clk_prepare_enable(tdma->dma_clk);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301515 if (ret < 0) {
1516 dev_err(dev, "clk_enable failed: %d\n", ret);
1517 return ret;
1518 }
1519 return 0;
1520}
1521
Laxman Dewangan3065c192013-04-24 15:24:27 +05301522#ifdef CONFIG_PM_SLEEP
1523static int tegra_dma_pm_suspend(struct device *dev)
1524{
1525 struct tegra_dma *tdma = dev_get_drvdata(dev);
1526 int i;
1527 int ret;
1528
1529 /* Enable clock before accessing register */
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001530 ret = pm_runtime_get_sync(dev);
Laxman Dewangan3065c192013-04-24 15:24:27 +05301531 if (ret < 0)
1532 return ret;
1533
1534 tdma->reg_gen = tdma_read(tdma, TEGRA_APBDMA_GENERAL);
1535 for (i = 0; i < tdma->chip_data->nr_channels; i++) {
1536 struct tegra_dma_channel *tdc = &tdma->channels[i];
1537 struct tegra_dma_channel_regs *ch_reg = &tdc->channel_reg;
1538
Jon Hunter4aad5be2015-11-13 16:39:41 +00001539 /* Only save the state of DMA channels that are in use */
1540 if (!tdc->config_init)
1541 continue;
1542
Laxman Dewangan3065c192013-04-24 15:24:27 +05301543 ch_reg->csr = tdc_read(tdc, TEGRA_APBDMA_CHAN_CSR);
1544 ch_reg->ahb_ptr = tdc_read(tdc, TEGRA_APBDMA_CHAN_AHBPTR);
1545 ch_reg->apb_ptr = tdc_read(tdc, TEGRA_APBDMA_CHAN_APBPTR);
1546 ch_reg->ahb_seq = tdc_read(tdc, TEGRA_APBDMA_CHAN_AHBSEQ);
1547 ch_reg->apb_seq = tdc_read(tdc, TEGRA_APBDMA_CHAN_APBSEQ);
Jon Hunter68ae7a92015-11-13 16:39:40 +00001548 if (tdma->chip_data->support_separate_wcount_reg)
1549 ch_reg->wcount = tdc_read(tdc,
1550 TEGRA_APBDMA_CHAN_WCOUNT);
Laxman Dewangan3065c192013-04-24 15:24:27 +05301551 }
1552
1553 /* Disable clock */
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001554 pm_runtime_put(dev);
Laxman Dewangan3065c192013-04-24 15:24:27 +05301555 return 0;
1556}
1557
1558static int tegra_dma_pm_resume(struct device *dev)
1559{
1560 struct tegra_dma *tdma = dev_get_drvdata(dev);
1561 int i;
1562 int ret;
1563
1564 /* Enable clock before accessing register */
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001565 ret = pm_runtime_get_sync(dev);
Laxman Dewangan3065c192013-04-24 15:24:27 +05301566 if (ret < 0)
1567 return ret;
1568
1569 tdma_write(tdma, TEGRA_APBDMA_GENERAL, tdma->reg_gen);
1570 tdma_write(tdma, TEGRA_APBDMA_CONTROL, 0);
1571 tdma_write(tdma, TEGRA_APBDMA_IRQ_MASK_SET, 0xFFFFFFFFul);
1572
1573 for (i = 0; i < tdma->chip_data->nr_channels; i++) {
1574 struct tegra_dma_channel *tdc = &tdma->channels[i];
1575 struct tegra_dma_channel_regs *ch_reg = &tdc->channel_reg;
1576
Jon Hunter4aad5be2015-11-13 16:39:41 +00001577 /* Only restore the state of DMA channels that are in use */
1578 if (!tdc->config_init)
1579 continue;
1580
Jon Hunter68ae7a92015-11-13 16:39:40 +00001581 if (tdma->chip_data->support_separate_wcount_reg)
1582 tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT,
1583 ch_reg->wcount);
Laxman Dewangan3065c192013-04-24 15:24:27 +05301584 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBSEQ, ch_reg->apb_seq);
1585 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, ch_reg->apb_ptr);
1586 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBSEQ, ch_reg->ahb_seq);
1587 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, ch_reg->ahb_ptr);
1588 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR,
1589 (ch_reg->csr & ~TEGRA_APBDMA_CSR_ENB));
1590 }
1591
1592 /* Disable clock */
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001593 pm_runtime_put(dev);
Laxman Dewangan3065c192013-04-24 15:24:27 +05301594 return 0;
1595}
1596#endif
1597
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -08001598static const struct dev_pm_ops tegra_dma_dev_pm_ops = {
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001599 SET_RUNTIME_PM_OPS(tegra_dma_runtime_suspend, tegra_dma_runtime_resume,
1600 NULL)
Laxman Dewangan3065c192013-04-24 15:24:27 +05301601 SET_SYSTEM_SLEEP_PM_OPS(tegra_dma_pm_suspend, tegra_dma_pm_resume)
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301602};
1603
Laxman Dewangan242637b2016-03-04 15:55:11 +05301604static const struct of_device_id tegra_dma_of_match[] = {
1605 {
1606 .compatible = "nvidia,tegra148-apbdma",
1607 .data = &tegra148_dma_chip_data,
1608 }, {
1609 .compatible = "nvidia,tegra114-apbdma",
1610 .data = &tegra114_dma_chip_data,
1611 }, {
1612 .compatible = "nvidia,tegra30-apbdma",
1613 .data = &tegra30_dma_chip_data,
1614 }, {
1615 .compatible = "nvidia,tegra20-apbdma",
1616 .data = &tegra20_dma_chip_data,
1617 }, {
1618 },
1619};
1620MODULE_DEVICE_TABLE(of, tegra_dma_of_match);
1621
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301622static struct platform_driver tegra_dmac_driver = {
1623 .driver = {
Laxman Dewangancd9092c2012-07-02 13:52:08 +05301624 .name = "tegra-apbdma",
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301625 .pm = &tegra_dma_dev_pm_ops,
Stephen Warrendc7badb2013-03-11 16:30:26 -06001626 .of_match_table = tegra_dma_of_match,
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301627 },
1628 .probe = tegra_dma_probe,
Bill Pembertona7d6e3e2012-11-19 13:20:04 -05001629 .remove = tegra_dma_remove,
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301630};
1631
1632module_platform_driver(tegra_dmac_driver);
1633
1634MODULE_ALIAS("platform:tegra20-apbdma");
1635MODULE_DESCRIPTION("NVIDIA Tegra APB DMA Controller driver");
1636MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
1637MODULE_LICENSE("GPL v2");