blob: 4eaf92b2b8868a35ee8fda123b60a11372545d3c [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) {
Dmitry Osipenko40db8f42020-02-09 19:33:39 +0300291 if (async_tx_test_ack(&dma_desc->txd) && !dma_desc->cb_count) {
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530292 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);
Peter Griffinaef94fe2016-06-07 18:38:41 +0100303 if (!dma_desc)
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530304 return NULL;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530305
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
Jon Hunter8fe97392015-11-13 16:39:42 +0000340 sg_req = kzalloc(sizeof(struct tegra_dma_sg_req), GFP_NOWAIT);
Peter Griffinaef94fe2016-06-07 18:38:41 +0100341
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530342 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));
Shardar Shariff Md00ef4492016-04-23 15:06:00 +0530356 if (tdc->slave_id == TEGRA_APBDMA_SLAVE_ID_INVALID) {
357 if (sconfig->slave_id > TEGRA_APBDMA_CSR_REQ_SEL_MASK)
358 return -EINVAL;
Stephen Warren996556c2013-11-11 13:09:35 -0700359 tdc->slave_id = sconfig->slave_id;
Shardar Shariff Md00ef4492016-04-23 15:06:00 +0530360 }
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530361 tdc->config_init = true;
362 return 0;
363}
364
365static void tegra_dma_global_pause(struct tegra_dma_channel *tdc,
366 bool wait_for_burst_complete)
367{
368 struct tegra_dma *tdma = tdc->tdma;
369
370 spin_lock(&tdma->global_lock);
Jon Hunter23a1ec32015-08-06 14:32:33 +0100371
372 if (tdc->tdma->global_pause_count == 0) {
373 tdma_write(tdma, TEGRA_APBDMA_GENERAL, 0);
374 if (wait_for_burst_complete)
375 udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME);
376 }
377
378 tdc->tdma->global_pause_count++;
379
380 spin_unlock(&tdma->global_lock);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530381}
382
383static void tegra_dma_global_resume(struct tegra_dma_channel *tdc)
384{
385 struct tegra_dma *tdma = tdc->tdma;
386
Jon Hunter23a1ec32015-08-06 14:32:33 +0100387 spin_lock(&tdma->global_lock);
388
389 if (WARN_ON(tdc->tdma->global_pause_count == 0))
390 goto out;
391
392 if (--tdc->tdma->global_pause_count == 0)
393 tdma_write(tdma, TEGRA_APBDMA_GENERAL,
394 TEGRA_APBDMA_GENERAL_ENABLE);
395
396out:
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530397 spin_unlock(&tdma->global_lock);
398}
399
Laxman Dewangan1b140902013-01-06 21:52:02 +0530400static void tegra_dma_pause(struct tegra_dma_channel *tdc,
401 bool wait_for_burst_complete)
402{
403 struct tegra_dma *tdma = tdc->tdma;
404
405 if (tdma->chip_data->support_channel_pause) {
406 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSRE,
407 TEGRA_APBDMA_CHAN_CSRE_PAUSE);
408 if (wait_for_burst_complete)
409 udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME);
410 } else {
411 tegra_dma_global_pause(tdc, wait_for_burst_complete);
412 }
413}
414
415static void tegra_dma_resume(struct tegra_dma_channel *tdc)
416{
417 struct tegra_dma *tdma = tdc->tdma;
418
419 if (tdma->chip_data->support_channel_pause) {
420 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSRE, 0);
421 } else {
422 tegra_dma_global_resume(tdc);
423 }
424}
425
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530426static void tegra_dma_stop(struct tegra_dma_channel *tdc)
427{
428 u32 csr;
429 u32 status;
430
431 /* Disable interrupts */
432 csr = tdc_read(tdc, TEGRA_APBDMA_CHAN_CSR);
433 csr &= ~TEGRA_APBDMA_CSR_IE_EOC;
434 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, csr);
435
436 /* Disable DMA */
437 csr &= ~TEGRA_APBDMA_CSR_ENB;
438 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, csr);
439
440 /* Clear interrupt status if it is there */
441 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
442 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
443 dev_dbg(tdc2dev(tdc), "%s():clearing interrupt\n", __func__);
444 tdc_write(tdc, TEGRA_APBDMA_CHAN_STATUS, status);
445 }
446 tdc->busy = false;
447}
448
449static void tegra_dma_start(struct tegra_dma_channel *tdc,
450 struct tegra_dma_sg_req *sg_req)
451{
452 struct tegra_dma_channel_regs *ch_regs = &sg_req->ch_regs;
453
454 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, ch_regs->csr);
455 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBSEQ, ch_regs->apb_seq);
456 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, ch_regs->apb_ptr);
457 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBSEQ, ch_regs->ahb_seq);
458 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, ch_regs->ahb_ptr);
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700459 if (tdc->tdma->chip_data->support_separate_wcount_reg)
460 tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT, ch_regs->wcount);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530461
462 /* Start DMA */
463 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR,
464 ch_regs->csr | TEGRA_APBDMA_CSR_ENB);
465}
466
467static void tegra_dma_configure_for_next(struct tegra_dma_channel *tdc,
468 struct tegra_dma_sg_req *nsg_req)
469{
470 unsigned long status;
471
472 /*
473 * The DMA controller reloads the new configuration for next transfer
474 * after last burst of current transfer completes.
475 * If there is no IEC status then this makes sure that last burst
476 * has not be completed. There may be case that last burst is on
477 * flight and so it can complete but because DMA is paused, it
478 * will not generates interrupt as well as not reload the new
479 * configuration.
480 * If there is already IEC status then interrupt handler need to
481 * load new configuration.
482 */
Laxman Dewangan1b140902013-01-06 21:52:02 +0530483 tegra_dma_pause(tdc, false);
Thierry Reding7b0e00d2016-06-14 16:18:46 +0200484 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530485
486 /*
487 * If interrupt is pending then do nothing as the ISR will handle
488 * the programing for new request.
489 */
490 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
491 dev_err(tdc2dev(tdc),
492 "Skipping new configuration as interrupt is pending\n");
Laxman Dewangan1b140902013-01-06 21:52:02 +0530493 tegra_dma_resume(tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530494 return;
495 }
496
497 /* Safe to program new configuration */
498 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, nsg_req->ch_regs.apb_ptr);
499 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, nsg_req->ch_regs.ahb_ptr);
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700500 if (tdc->tdma->chip_data->support_separate_wcount_reg)
501 tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT,
502 nsg_req->ch_regs.wcount);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530503 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR,
504 nsg_req->ch_regs.csr | TEGRA_APBDMA_CSR_ENB);
505 nsg_req->configured = true;
506
Laxman Dewangan1b140902013-01-06 21:52:02 +0530507 tegra_dma_resume(tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530508}
509
510static void tdc_start_head_req(struct tegra_dma_channel *tdc)
511{
512 struct tegra_dma_sg_req *sg_req;
513
514 if (list_empty(&tdc->pending_sg_req))
515 return;
516
517 sg_req = list_first_entry(&tdc->pending_sg_req,
518 typeof(*sg_req), node);
519 tegra_dma_start(tdc, sg_req);
520 sg_req->configured = true;
521 tdc->busy = true;
522}
523
524static void tdc_configure_next_head_desc(struct tegra_dma_channel *tdc)
525{
526 struct tegra_dma_sg_req *hsgreq;
527 struct tegra_dma_sg_req *hnsgreq;
528
529 if (list_empty(&tdc->pending_sg_req))
530 return;
531
532 hsgreq = list_first_entry(&tdc->pending_sg_req, typeof(*hsgreq), node);
533 if (!list_is_last(&hsgreq->node, &tdc->pending_sg_req)) {
534 hnsgreq = list_first_entry(&hsgreq->node,
535 typeof(*hnsgreq), node);
536 tegra_dma_configure_for_next(tdc, hnsgreq);
537 }
538}
539
540static inline int get_current_xferred_count(struct tegra_dma_channel *tdc,
541 struct tegra_dma_sg_req *sg_req, unsigned long status)
542{
543 return sg_req->req_len - (status & TEGRA_APBDMA_STATUS_COUNT_MASK) - 4;
544}
545
546static void tegra_dma_abort_all(struct tegra_dma_channel *tdc)
547{
548 struct tegra_dma_sg_req *sgreq;
549 struct tegra_dma_desc *dma_desc;
550
551 while (!list_empty(&tdc->pending_sg_req)) {
552 sgreq = list_first_entry(&tdc->pending_sg_req,
553 typeof(*sgreq), node);
Wei Yongjun2cc44e62012-09-05 15:08:56 +0800554 list_move_tail(&sgreq->node, &tdc->free_sg_req);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530555 if (sgreq->last_sg) {
556 dma_desc = sgreq->dma_desc;
557 dma_desc->dma_status = DMA_ERROR;
558 list_add_tail(&dma_desc->node, &tdc->free_dma_desc);
559
560 /* Add in cb list if it is not there. */
561 if (!dma_desc->cb_count)
562 list_add_tail(&dma_desc->cb_node,
563 &tdc->cb_desc);
564 dma_desc->cb_count++;
565 }
566 }
567 tdc->isr_handler = NULL;
568}
569
570static bool handle_continuous_head_request(struct tegra_dma_channel *tdc,
571 struct tegra_dma_sg_req *last_sg_req, bool to_terminate)
572{
573 struct tegra_dma_sg_req *hsgreq = NULL;
574
575 if (list_empty(&tdc->pending_sg_req)) {
576 dev_err(tdc2dev(tdc), "Dma is running without req\n");
577 tegra_dma_stop(tdc);
578 return false;
579 }
580
581 /*
582 * Check that head req on list should be in flight.
583 * If it is not in flight then abort transfer as
584 * looping of transfer can not continue.
585 */
586 hsgreq = list_first_entry(&tdc->pending_sg_req, typeof(*hsgreq), node);
587 if (!hsgreq->configured) {
588 tegra_dma_stop(tdc);
589 dev_err(tdc2dev(tdc), "Error in dma transfer, aborting dma\n");
590 tegra_dma_abort_all(tdc);
591 return false;
592 }
593
594 /* Configure next request */
595 if (!to_terminate)
596 tdc_configure_next_head_desc(tdc);
597 return true;
598}
599
600static void handle_once_dma_done(struct tegra_dma_channel *tdc,
601 bool to_terminate)
602{
603 struct tegra_dma_sg_req *sgreq;
604 struct tegra_dma_desc *dma_desc;
605
606 tdc->busy = false;
607 sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq), node);
608 dma_desc = sgreq->dma_desc;
609 dma_desc->bytes_transferred += sgreq->req_len;
610
611 list_del(&sgreq->node);
612 if (sgreq->last_sg) {
Vinod Koul00d696f2013-10-16 21:04:50 +0530613 dma_desc->dma_status = DMA_COMPLETE;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530614 dma_cookie_complete(&dma_desc->txd);
615 if (!dma_desc->cb_count)
616 list_add_tail(&dma_desc->cb_node, &tdc->cb_desc);
617 dma_desc->cb_count++;
618 list_add_tail(&dma_desc->node, &tdc->free_dma_desc);
619 }
620 list_add_tail(&sgreq->node, &tdc->free_sg_req);
621
622 /* Do not start DMA if it is going to be terminate */
623 if (to_terminate || list_empty(&tdc->pending_sg_req))
624 return;
625
626 tdc_start_head_req(tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530627}
628
629static void handle_cont_sngl_cycle_dma_done(struct tegra_dma_channel *tdc,
630 bool to_terminate)
631{
632 struct tegra_dma_sg_req *sgreq;
633 struct tegra_dma_desc *dma_desc;
634 bool st;
635
636 sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq), node);
637 dma_desc = sgreq->dma_desc;
Ben Dooks5f99bd32018-11-21 16:13:19 +0000638 /* if we dma for long enough the transfer count will wrap */
639 dma_desc->bytes_transferred =
640 (dma_desc->bytes_transferred + sgreq->req_len) %
641 dma_desc->bytes_requested;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530642
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;
Dave Jiang370c0442016-07-20 13:13:16 -0700661 struct dmaengine_desc_callback cb;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530662 struct tegra_dma_desc *dma_desc;
663 unsigned long flags;
664 int cb_count;
665
666 spin_lock_irqsave(&tdc->lock, flags);
667 while (!list_empty(&tdc->cb_desc)) {
668 dma_desc = list_first_entry(&tdc->cb_desc,
669 typeof(*dma_desc), cb_node);
670 list_del(&dma_desc->cb_node);
Dave Jiang370c0442016-07-20 13:13:16 -0700671 dmaengine_desc_get_callback(&dma_desc->txd, &cb);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530672 cb_count = dma_desc->cb_count;
673 dma_desc->cb_count = 0;
674 spin_unlock_irqrestore(&tdc->lock, flags);
Dave Jiang370c0442016-07-20 13:13:16 -0700675 while (cb_count--)
676 dmaengine_desc_callback_invoke(&cb, NULL);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530677 spin_lock_irqsave(&tdc->lock, flags);
678 }
679 spin_unlock_irqrestore(&tdc->lock, flags);
680}
681
682static irqreturn_t tegra_dma_isr(int irq, void *dev_id)
683{
684 struct tegra_dma_channel *tdc = dev_id;
685 unsigned long status;
686 unsigned long flags;
687
688 spin_lock_irqsave(&tdc->lock, flags);
689
690 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
691 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
692 tdc_write(tdc, TEGRA_APBDMA_CHAN_STATUS, status);
693 tdc->isr_handler(tdc, false);
694 tasklet_schedule(&tdc->tasklet);
695 spin_unlock_irqrestore(&tdc->lock, flags);
696 return IRQ_HANDLED;
697 }
698
699 spin_unlock_irqrestore(&tdc->lock, flags);
700 dev_info(tdc2dev(tdc),
701 "Interrupt already served status 0x%08lx\n", status);
702 return IRQ_NONE;
703}
704
705static dma_cookie_t tegra_dma_tx_submit(struct dma_async_tx_descriptor *txd)
706{
707 struct tegra_dma_desc *dma_desc = txd_to_tegra_dma_desc(txd);
708 struct tegra_dma_channel *tdc = to_tegra_dma_chan(txd->chan);
709 unsigned long flags;
710 dma_cookie_t cookie;
711
712 spin_lock_irqsave(&tdc->lock, flags);
713 dma_desc->dma_status = DMA_IN_PROGRESS;
714 cookie = dma_cookie_assign(&dma_desc->txd);
715 list_splice_tail_init(&dma_desc->tx_list, &tdc->pending_sg_req);
716 spin_unlock_irqrestore(&tdc->lock, flags);
717 return cookie;
718}
719
720static void tegra_dma_issue_pending(struct dma_chan *dc)
721{
722 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
723 unsigned long flags;
724
725 spin_lock_irqsave(&tdc->lock, flags);
726 if (list_empty(&tdc->pending_sg_req)) {
727 dev_err(tdc2dev(tdc), "No DMA request\n");
728 goto end;
729 }
730 if (!tdc->busy) {
731 tdc_start_head_req(tdc);
732
733 /* Continuous single mode: Configure next req */
734 if (tdc->cyclic) {
735 /*
736 * Wait for 1 burst time for configure DMA for
737 * next transfer.
738 */
739 udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME);
740 tdc_configure_next_head_desc(tdc);
741 }
742 }
743end:
744 spin_unlock_irqrestore(&tdc->lock, flags);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530745}
746
Vinod Koula7c439a2014-12-08 11:30:17 +0530747static int tegra_dma_terminate_all(struct dma_chan *dc)
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530748{
749 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
750 struct tegra_dma_sg_req *sgreq;
751 struct tegra_dma_desc *dma_desc;
752 unsigned long flags;
753 unsigned long status;
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700754 unsigned long wcount;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530755 bool was_busy;
756
757 spin_lock_irqsave(&tdc->lock, flags);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530758
759 if (!tdc->busy)
760 goto skip_dma_stop;
761
762 /* Pause DMA before checking the queue status */
Laxman Dewangan1b140902013-01-06 21:52:02 +0530763 tegra_dma_pause(tdc, true);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530764
765 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
766 if (status & TEGRA_APBDMA_STATUS_ISE_EOC) {
767 dev_dbg(tdc2dev(tdc), "%s():handling isr\n", __func__);
768 tdc->isr_handler(tdc, true);
769 status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS);
770 }
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700771 if (tdc->tdma->chip_data->support_separate_wcount_reg)
772 wcount = tdc_read(tdc, TEGRA_APBDMA_CHAN_WORD_TRANSFER);
773 else
774 wcount = status;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530775
776 was_busy = tdc->busy;
777 tegra_dma_stop(tdc);
778
779 if (!list_empty(&tdc->pending_sg_req) && was_busy) {
780 sgreq = list_first_entry(&tdc->pending_sg_req,
781 typeof(*sgreq), node);
782 sgreq->dma_desc->bytes_transferred +=
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700783 get_current_xferred_count(tdc, sgreq, wcount);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530784 }
Laxman Dewangan1b140902013-01-06 21:52:02 +0530785 tegra_dma_resume(tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530786
787skip_dma_stop:
788 tegra_dma_abort_all(tdc);
789
790 while (!list_empty(&tdc->cb_desc)) {
791 dma_desc = list_first_entry(&tdc->cb_desc,
792 typeof(*dma_desc), cb_node);
793 list_del(&dma_desc->cb_node);
794 dma_desc->cb_count = 0;
795 }
796 spin_unlock_irqrestore(&tdc->lock, flags);
Vinod Koula7c439a2014-12-08 11:30:17 +0530797 return 0;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530798}
799
800static enum dma_status tegra_dma_tx_status(struct dma_chan *dc,
801 dma_cookie_t cookie, struct dma_tx_state *txstate)
802{
803 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
804 struct tegra_dma_desc *dma_desc;
805 struct tegra_dma_sg_req *sg_req;
806 enum dma_status ret;
807 unsigned long flags;
Laxman Dewangan4a46ba32012-07-02 13:52:07 +0530808 unsigned int residual;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530809
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530810 ret = dma_cookie_status(dc, cookie, txstate);
Jon Hunterd3183442016-06-29 17:08:39 +0100811 if (ret == DMA_COMPLETE)
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530812 return ret;
Andy Shevchenko0a0aee22013-05-27 15:14:39 +0300813
814 spin_lock_irqsave(&tdc->lock, flags);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530815
816 /* Check on wait_ack desc status */
817 list_for_each_entry(dma_desc, &tdc->free_dma_desc, node) {
818 if (dma_desc->txd.cookie == cookie) {
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530819 ret = dma_desc->dma_status;
Jon Hunter004f6142016-06-29 17:08:38 +0100820 goto found;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530821 }
822 }
823
824 /* Check in pending list */
825 list_for_each_entry(sg_req, &tdc->pending_sg_req, node) {
826 dma_desc = sg_req->dma_desc;
827 if (dma_desc->txd.cookie == cookie) {
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530828 ret = dma_desc->dma_status;
Jon Hunter004f6142016-06-29 17:08:38 +0100829 goto found;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530830 }
831 }
832
Jon Hunter019bfcc2016-06-29 17:08:37 +0100833 dev_dbg(tdc2dev(tdc), "cookie %d not found\n", cookie);
Jon Hunter004f6142016-06-29 17:08:38 +0100834 dma_desc = NULL;
835
836found:
Jon Hunterd3183442016-06-29 17:08:39 +0100837 if (dma_desc && txstate) {
Jon Hunter004f6142016-06-29 17:08:38 +0100838 residual = dma_desc->bytes_requested -
839 (dma_desc->bytes_transferred %
840 dma_desc->bytes_requested);
841 dma_set_residue(txstate, residual);
842 }
843
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530844 spin_unlock_irqrestore(&tdc->lock, flags);
845 return ret;
846}
847
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530848static inline int get_bus_width(struct tegra_dma_channel *tdc,
849 enum dma_slave_buswidth slave_bw)
850{
851 switch (slave_bw) {
852 case DMA_SLAVE_BUSWIDTH_1_BYTE:
853 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_8;
854 case DMA_SLAVE_BUSWIDTH_2_BYTES:
855 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_16;
856 case DMA_SLAVE_BUSWIDTH_4_BYTES:
857 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32;
858 case DMA_SLAVE_BUSWIDTH_8_BYTES:
859 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_64;
860 default:
861 dev_warn(tdc2dev(tdc),
862 "slave bw is not supported, using 32bits\n");
863 return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32;
864 }
865}
866
867static inline int get_burst_size(struct tegra_dma_channel *tdc,
868 u32 burst_size, enum dma_slave_buswidth slave_bw, int len)
869{
870 int burst_byte;
871 int burst_ahb_width;
872
873 /*
874 * burst_size from client is in terms of the bus_width.
875 * convert them into AHB memory width which is 4 byte.
876 */
877 burst_byte = burst_size * slave_bw;
878 burst_ahb_width = burst_byte / 4;
879
880 /* If burst size is 0 then calculate the burst size based on length */
881 if (!burst_ahb_width) {
882 if (len & 0xF)
883 return TEGRA_APBDMA_AHBSEQ_BURST_1;
884 else if ((len >> 4) & 0x1)
885 return TEGRA_APBDMA_AHBSEQ_BURST_4;
886 else
887 return TEGRA_APBDMA_AHBSEQ_BURST_8;
888 }
889 if (burst_ahb_width < 4)
890 return TEGRA_APBDMA_AHBSEQ_BURST_1;
891 else if (burst_ahb_width < 8)
892 return TEGRA_APBDMA_AHBSEQ_BURST_4;
893 else
894 return TEGRA_APBDMA_AHBSEQ_BURST_8;
895}
896
897static int get_transfer_param(struct tegra_dma_channel *tdc,
898 enum dma_transfer_direction direction, unsigned long *apb_addr,
899 unsigned long *apb_seq, unsigned long *csr, unsigned int *burst_size,
900 enum dma_slave_buswidth *slave_bw)
901{
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530902 switch (direction) {
903 case DMA_MEM_TO_DEV:
904 *apb_addr = tdc->dma_sconfig.dst_addr;
905 *apb_seq = get_bus_width(tdc, tdc->dma_sconfig.dst_addr_width);
906 *burst_size = tdc->dma_sconfig.dst_maxburst;
907 *slave_bw = tdc->dma_sconfig.dst_addr_width;
908 *csr = TEGRA_APBDMA_CSR_DIR;
909 return 0;
910
911 case DMA_DEV_TO_MEM:
912 *apb_addr = tdc->dma_sconfig.src_addr;
913 *apb_seq = get_bus_width(tdc, tdc->dma_sconfig.src_addr_width);
914 *burst_size = tdc->dma_sconfig.src_maxburst;
915 *slave_bw = tdc->dma_sconfig.src_addr_width;
916 *csr = 0;
917 return 0;
918
919 default:
920 dev_err(tdc2dev(tdc), "Dma direction is not supported\n");
921 return -EINVAL;
922 }
923 return -EINVAL;
924}
925
Laxman Dewangan911dacc2014-01-06 11:16:45 -0700926static void tegra_dma_prep_wcount(struct tegra_dma_channel *tdc,
927 struct tegra_dma_channel_regs *ch_regs, u32 len)
928{
929 u32 len_field = (len - 4) & 0xFFFC;
930
931 if (tdc->tdma->chip_data->support_separate_wcount_reg)
932 ch_regs->wcount = len_field;
933 else
934 ch_regs->csr |= len_field;
935}
936
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530937static struct dma_async_tx_descriptor *tegra_dma_prep_slave_sg(
938 struct dma_chan *dc, struct scatterlist *sgl, unsigned int sg_len,
939 enum dma_transfer_direction direction, unsigned long flags,
940 void *context)
941{
942 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
943 struct tegra_dma_desc *dma_desc;
Thierry Reding7b0e00d2016-06-14 16:18:46 +0200944 unsigned int i;
945 struct scatterlist *sg;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530946 unsigned long csr, ahb_seq, apb_ptr, apb_seq;
947 struct list_head req_list;
948 struct tegra_dma_sg_req *sg_req = NULL;
949 u32 burst_size;
950 enum dma_slave_buswidth slave_bw;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530951
952 if (!tdc->config_init) {
953 dev_err(tdc2dev(tdc), "dma channel is not configured\n");
954 return NULL;
955 }
956 if (sg_len < 1) {
957 dev_err(tdc2dev(tdc), "Invalid segment length %d\n", sg_len);
958 return NULL;
959 }
960
Jon Hunterdc1ff4b2015-08-06 14:32:32 +0100961 if (get_transfer_param(tdc, direction, &apb_ptr, &apb_seq, &csr,
962 &burst_size, &slave_bw) < 0)
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530963 return NULL;
964
965 INIT_LIST_HEAD(&req_list);
966
967 ahb_seq = TEGRA_APBDMA_AHBSEQ_INTR_ENB;
968 ahb_seq |= TEGRA_APBDMA_AHBSEQ_WRAP_NONE <<
969 TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT;
970 ahb_seq |= TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32;
971
972 csr |= TEGRA_APBDMA_CSR_ONCE | TEGRA_APBDMA_CSR_FLOW;
Stephen Warren996556c2013-11-11 13:09:35 -0700973 csr |= tdc->slave_id << TEGRA_APBDMA_CSR_REQ_SEL_SHIFT;
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530974 if (flags & DMA_PREP_INTERRUPT)
975 csr |= TEGRA_APBDMA_CSR_IE_EOC;
976
977 apb_seq |= TEGRA_APBDMA_APBSEQ_WRAP_WORD_1;
978
979 dma_desc = tegra_dma_desc_get(tdc);
980 if (!dma_desc) {
981 dev_err(tdc2dev(tdc), "Dma descriptors not available\n");
982 return NULL;
983 }
984 INIT_LIST_HEAD(&dma_desc->tx_list);
985 INIT_LIST_HEAD(&dma_desc->cb_node);
986 dma_desc->cb_count = 0;
987 dma_desc->bytes_requested = 0;
988 dma_desc->bytes_transferred = 0;
989 dma_desc->dma_status = DMA_IN_PROGRESS;
990
991 /* Make transfer requests */
992 for_each_sg(sgl, sg, sg_len, i) {
993 u32 len, mem;
994
Laxman Dewangan597c8542012-06-22 20:41:10 +0530995 mem = sg_dma_address(sg);
Laxman Dewanganec8a1582012-06-06 10:55:27 +0530996 len = sg_dma_len(sg);
997
998 if ((len & 3) || (mem & 3) ||
999 (len > tdc->tdma->chip_data->max_dma_count)) {
1000 dev_err(tdc2dev(tdc),
1001 "Dma length/memory address is not supported\n");
1002 tegra_dma_desc_put(tdc, dma_desc);
1003 return NULL;
1004 }
1005
1006 sg_req = tegra_dma_sg_req_get(tdc);
1007 if (!sg_req) {
1008 dev_err(tdc2dev(tdc), "Dma sg-req not available\n");
1009 tegra_dma_desc_put(tdc, dma_desc);
1010 return NULL;
1011 }
1012
1013 ahb_seq |= get_burst_size(tdc, burst_size, slave_bw, len);
1014 dma_desc->bytes_requested += len;
1015
1016 sg_req->ch_regs.apb_ptr = apb_ptr;
1017 sg_req->ch_regs.ahb_ptr = mem;
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001018 sg_req->ch_regs.csr = csr;
1019 tegra_dma_prep_wcount(tdc, &sg_req->ch_regs, len);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301020 sg_req->ch_regs.apb_seq = apb_seq;
1021 sg_req->ch_regs.ahb_seq = ahb_seq;
1022 sg_req->configured = false;
1023 sg_req->last_sg = false;
1024 sg_req->dma_desc = dma_desc;
1025 sg_req->req_len = len;
1026
1027 list_add_tail(&sg_req->node, &dma_desc->tx_list);
1028 }
1029 sg_req->last_sg = true;
1030 if (flags & DMA_CTRL_ACK)
1031 dma_desc->txd.flags = DMA_CTRL_ACK;
1032
1033 /*
1034 * Make sure that mode should not be conflicting with currently
1035 * configured mode.
1036 */
1037 if (!tdc->isr_handler) {
1038 tdc->isr_handler = handle_once_dma_done;
1039 tdc->cyclic = false;
1040 } else {
1041 if (tdc->cyclic) {
1042 dev_err(tdc2dev(tdc), "DMA configured in cyclic mode\n");
1043 tegra_dma_desc_put(tdc, dma_desc);
1044 return NULL;
1045 }
1046 }
1047
1048 return &dma_desc->txd;
1049}
1050
Sachin Kamat404ff6692013-09-06 17:16:22 +05301051static struct dma_async_tx_descriptor *tegra_dma_prep_dma_cyclic(
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301052 struct dma_chan *dc, dma_addr_t buf_addr, size_t buf_len,
1053 size_t period_len, enum dma_transfer_direction direction,
Laurent Pinchart31c1e5a2014-08-01 12:20:10 +02001054 unsigned long flags)
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301055{
1056 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
1057 struct tegra_dma_desc *dma_desc = NULL;
Thierry Reding7b0e00d2016-06-14 16:18:46 +02001058 struct tegra_dma_sg_req *sg_req = NULL;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301059 unsigned long csr, ahb_seq, apb_ptr, apb_seq;
1060 int len;
1061 size_t remain_len;
1062 dma_addr_t mem = buf_addr;
1063 u32 burst_size;
1064 enum dma_slave_buswidth slave_bw;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301065
1066 if (!buf_len || !period_len) {
1067 dev_err(tdc2dev(tdc), "Invalid buffer/period len\n");
1068 return NULL;
1069 }
1070
1071 if (!tdc->config_init) {
1072 dev_err(tdc2dev(tdc), "DMA slave is not configured\n");
1073 return NULL;
1074 }
1075
1076 /*
1077 * We allow to take more number of requests till DMA is
1078 * not started. The driver will loop over all requests.
1079 * Once DMA is started then new requests can be queued only after
1080 * terminating the DMA.
1081 */
1082 if (tdc->busy) {
1083 dev_err(tdc2dev(tdc), "Request not allowed when dma running\n");
1084 return NULL;
1085 }
1086
1087 /*
1088 * We only support cycle transfer when buf_len is multiple of
1089 * period_len.
1090 */
1091 if (buf_len % period_len) {
1092 dev_err(tdc2dev(tdc), "buf_len is not multiple of period_len\n");
1093 return NULL;
1094 }
1095
1096 len = period_len;
1097 if ((len & 3) || (buf_addr & 3) ||
1098 (len > tdc->tdma->chip_data->max_dma_count)) {
1099 dev_err(tdc2dev(tdc), "Req len/mem address is not correct\n");
1100 return NULL;
1101 }
1102
Jon Hunterdc1ff4b2015-08-06 14:32:32 +01001103 if (get_transfer_param(tdc, direction, &apb_ptr, &apb_seq, &csr,
1104 &burst_size, &slave_bw) < 0)
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301105 return NULL;
1106
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301107 ahb_seq = TEGRA_APBDMA_AHBSEQ_INTR_ENB;
1108 ahb_seq |= TEGRA_APBDMA_AHBSEQ_WRAP_NONE <<
1109 TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT;
1110 ahb_seq |= TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32;
1111
Laxman Dewanganb9bb37f2013-01-09 15:26:22 +05301112 csr |= TEGRA_APBDMA_CSR_FLOW;
1113 if (flags & DMA_PREP_INTERRUPT)
1114 csr |= TEGRA_APBDMA_CSR_IE_EOC;
Stephen Warren996556c2013-11-11 13:09:35 -07001115 csr |= tdc->slave_id << TEGRA_APBDMA_CSR_REQ_SEL_SHIFT;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301116
1117 apb_seq |= TEGRA_APBDMA_APBSEQ_WRAP_WORD_1;
1118
1119 dma_desc = tegra_dma_desc_get(tdc);
1120 if (!dma_desc) {
1121 dev_err(tdc2dev(tdc), "not enough descriptors available\n");
1122 return NULL;
1123 }
1124
1125 INIT_LIST_HEAD(&dma_desc->tx_list);
1126 INIT_LIST_HEAD(&dma_desc->cb_node);
1127 dma_desc->cb_count = 0;
1128
1129 dma_desc->bytes_transferred = 0;
1130 dma_desc->bytes_requested = buf_len;
1131 remain_len = buf_len;
1132
1133 /* Split transfer equal to period size */
1134 while (remain_len) {
1135 sg_req = tegra_dma_sg_req_get(tdc);
1136 if (!sg_req) {
1137 dev_err(tdc2dev(tdc), "Dma sg-req not available\n");
1138 tegra_dma_desc_put(tdc, dma_desc);
1139 return NULL;
1140 }
1141
1142 ahb_seq |= get_burst_size(tdc, burst_size, slave_bw, len);
1143 sg_req->ch_regs.apb_ptr = apb_ptr;
1144 sg_req->ch_regs.ahb_ptr = mem;
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001145 sg_req->ch_regs.csr = csr;
1146 tegra_dma_prep_wcount(tdc, &sg_req->ch_regs, len);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301147 sg_req->ch_regs.apb_seq = apb_seq;
1148 sg_req->ch_regs.ahb_seq = ahb_seq;
1149 sg_req->configured = false;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301150 sg_req->last_sg = false;
1151 sg_req->dma_desc = dma_desc;
1152 sg_req->req_len = len;
1153
1154 list_add_tail(&sg_req->node, &dma_desc->tx_list);
1155 remain_len -= len;
1156 mem += len;
1157 }
1158 sg_req->last_sg = true;
Laxman Dewanganb9bb37f2013-01-09 15:26:22 +05301159 if (flags & DMA_CTRL_ACK)
1160 dma_desc->txd.flags = DMA_CTRL_ACK;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301161
1162 /*
1163 * Make sure that mode should not be conflicting with currently
1164 * configured mode.
1165 */
1166 if (!tdc->isr_handler) {
1167 tdc->isr_handler = handle_cont_sngl_cycle_dma_done;
1168 tdc->cyclic = true;
1169 } else {
1170 if (!tdc->cyclic) {
1171 dev_err(tdc2dev(tdc), "DMA configuration conflict\n");
1172 tegra_dma_desc_put(tdc, dma_desc);
1173 return NULL;
1174 }
1175 }
1176
1177 return &dma_desc->txd;
1178}
1179
1180static int tegra_dma_alloc_chan_resources(struct dma_chan *dc)
1181{
1182 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
Laxman Dewanganffc49302012-07-20 13:31:08 +05301183 struct tegra_dma *tdma = tdc->tdma;
1184 int ret;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301185
1186 dma_cookie_init(&tdc->dma_chan);
1187 tdc->config_init = false;
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001188
1189 ret = pm_runtime_get_sync(tdma->dev);
Laxman Dewanganffc49302012-07-20 13:31:08 +05301190 if (ret < 0)
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001191 return ret;
1192
1193 return 0;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301194}
1195
1196static void tegra_dma_free_chan_resources(struct dma_chan *dc)
1197{
1198 struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc);
Laxman Dewanganffc49302012-07-20 13:31:08 +05301199 struct tegra_dma *tdma = tdc->tdma;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301200 struct tegra_dma_desc *dma_desc;
1201 struct tegra_dma_sg_req *sg_req;
1202 struct list_head dma_desc_list;
1203 struct list_head sg_req_list;
1204 unsigned long flags;
1205
1206 INIT_LIST_HEAD(&dma_desc_list);
1207 INIT_LIST_HEAD(&sg_req_list);
1208
1209 dev_dbg(tdc2dev(tdc), "Freeing channel %d\n", tdc->id);
1210
1211 if (tdc->busy)
1212 tegra_dma_terminate_all(dc);
1213
1214 spin_lock_irqsave(&tdc->lock, flags);
1215 list_splice_init(&tdc->pending_sg_req, &sg_req_list);
1216 list_splice_init(&tdc->free_sg_req, &sg_req_list);
1217 list_splice_init(&tdc->free_dma_desc, &dma_desc_list);
1218 INIT_LIST_HEAD(&tdc->cb_desc);
1219 tdc->config_init = false;
Dmitry Osipenko7bdc1e22013-05-11 20:30:53 +04001220 tdc->isr_handler = NULL;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301221 spin_unlock_irqrestore(&tdc->lock, flags);
1222
1223 while (!list_empty(&dma_desc_list)) {
1224 dma_desc = list_first_entry(&dma_desc_list,
1225 typeof(*dma_desc), node);
1226 list_del(&dma_desc->node);
1227 kfree(dma_desc);
1228 }
1229
1230 while (!list_empty(&sg_req_list)) {
1231 sg_req = list_first_entry(&sg_req_list, typeof(*sg_req), node);
1232 list_del(&sg_req->node);
1233 kfree(sg_req);
1234 }
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001235 pm_runtime_put(tdma->dev);
Stephen Warren996556c2013-11-11 13:09:35 -07001236
Shardar Shariff Md00ef4492016-04-23 15:06:00 +05301237 tdc->slave_id = TEGRA_APBDMA_SLAVE_ID_INVALID;
Stephen Warren996556c2013-11-11 13:09:35 -07001238}
1239
1240static struct dma_chan *tegra_dma_of_xlate(struct of_phandle_args *dma_spec,
1241 struct of_dma *ofdma)
1242{
1243 struct tegra_dma *tdma = ofdma->of_dma_data;
1244 struct dma_chan *chan;
1245 struct tegra_dma_channel *tdc;
1246
Shardar Shariff Md00ef4492016-04-23 15:06:00 +05301247 if (dma_spec->args[0] > TEGRA_APBDMA_CSR_REQ_SEL_MASK) {
1248 dev_err(tdma->dev, "Invalid slave id: %d\n", dma_spec->args[0]);
1249 return NULL;
1250 }
1251
Stephen Warren996556c2013-11-11 13:09:35 -07001252 chan = dma_get_any_slave_channel(&tdma->dma_dev);
1253 if (!chan)
1254 return NULL;
1255
1256 tdc = to_tegra_dma_chan(chan);
1257 tdc->slave_id = dma_spec->args[0];
1258
1259 return chan;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301260}
1261
1262/* Tegra20 specific DMA controller information */
Laxman Dewangan75f21632012-08-29 10:31:18 +02001263static const struct tegra_dma_chip_data tegra20_dma_chip_data = {
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301264 .nr_channels = 16,
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001265 .channel_reg_size = 0x20,
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301266 .max_dma_count = 1024UL * 64,
Laxman Dewangan1b140902013-01-06 21:52:02 +05301267 .support_channel_pause = false,
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001268 .support_separate_wcount_reg = false,
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301269};
1270
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301271/* Tegra30 specific DMA controller information */
Laxman Dewangan75f21632012-08-29 10:31:18 +02001272static const struct tegra_dma_chip_data tegra30_dma_chip_data = {
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301273 .nr_channels = 32,
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001274 .channel_reg_size = 0x20,
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301275 .max_dma_count = 1024UL * 64,
Laxman Dewangan1b140902013-01-06 21:52:02 +05301276 .support_channel_pause = false,
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001277 .support_separate_wcount_reg = false,
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301278};
1279
Laxman Dewangan5ea7caf2013-01-06 21:52:03 +05301280/* Tegra114 specific DMA controller information */
1281static const struct tegra_dma_chip_data tegra114_dma_chip_data = {
1282 .nr_channels = 32,
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001283 .channel_reg_size = 0x20,
Laxman Dewangan5ea7caf2013-01-06 21:52:03 +05301284 .max_dma_count = 1024UL * 64,
1285 .support_channel_pause = true,
Laxman Dewangan911dacc2014-01-06 11:16:45 -07001286 .support_separate_wcount_reg = false,
1287};
1288
1289/* Tegra148 specific DMA controller information */
1290static const struct tegra_dma_chip_data tegra148_dma_chip_data = {
1291 .nr_channels = 32,
1292 .channel_reg_size = 0x40,
1293 .max_dma_count = 1024UL * 64,
1294 .support_channel_pause = true,
1295 .support_separate_wcount_reg = true,
Laxman Dewangan5ea7caf2013-01-06 21:52:03 +05301296};
1297
Bill Pemberton463a1f82012-11-19 13:22:55 -05001298static int tegra_dma_probe(struct platform_device *pdev)
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301299{
Thierry Reding7b0e00d2016-06-14 16:18:46 +02001300 struct resource *res;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301301 struct tegra_dma *tdma;
1302 int ret;
1303 int i;
Laxman Dewangan333f16e2016-03-01 18:54:40 +05301304 const struct tegra_dma_chip_data *cdata;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301305
Laxman Dewangan333f16e2016-03-01 18:54:40 +05301306 cdata = of_device_get_match_data(&pdev->dev);
1307 if (!cdata) {
1308 dev_err(&pdev->dev, "Error: No device match data found\n");
Stephen Warrendc7badb2013-03-11 16:30:26 -06001309 return -ENODEV;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301310 }
1311
1312 tdma = devm_kzalloc(&pdev->dev, sizeof(*tdma) + cdata->nr_channels *
1313 sizeof(struct tegra_dma_channel), GFP_KERNEL);
Peter Griffinaef94fe2016-06-07 18:38:41 +01001314 if (!tdma)
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301315 return -ENOMEM;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301316
1317 tdma->dev = &pdev->dev;
1318 tdma->chip_data = cdata;
1319 platform_set_drvdata(pdev, tdma);
1320
1321 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding73312052013-01-21 11:09:00 +01001322 tdma->base_addr = devm_ioremap_resource(&pdev->dev, res);
1323 if (IS_ERR(tdma->base_addr))
1324 return PTR_ERR(tdma->base_addr);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301325
1326 tdma->dma_clk = devm_clk_get(&pdev->dev, NULL);
1327 if (IS_ERR(tdma->dma_clk)) {
1328 dev_err(&pdev->dev, "Error: Missing controller clock\n");
1329 return PTR_ERR(tdma->dma_clk);
1330 }
1331
Stephen Warren9aa433d2013-11-06 16:35:34 -07001332 tdma->rst = devm_reset_control_get(&pdev->dev, "dma");
1333 if (IS_ERR(tdma->rst)) {
1334 dev_err(&pdev->dev, "Error: Missing reset\n");
1335 return PTR_ERR(tdma->rst);
1336 }
1337
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301338 spin_lock_init(&tdma->global_lock);
1339
1340 pm_runtime_enable(&pdev->dev);
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001341 if (!pm_runtime_enabled(&pdev->dev))
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301342 ret = tegra_dma_runtime_resume(&pdev->dev);
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001343 else
1344 ret = pm_runtime_get_sync(&pdev->dev);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301345
Laxman Dewanganffc49302012-07-20 13:31:08 +05301346 if (ret < 0) {
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001347 pm_runtime_disable(&pdev->dev);
1348 return ret;
Laxman Dewanganffc49302012-07-20 13:31:08 +05301349 }
1350
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301351 /* Reset DMA controller */
Stephen Warren9aa433d2013-11-06 16:35:34 -07001352 reset_control_assert(tdma->rst);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301353 udelay(2);
Stephen Warren9aa433d2013-11-06 16:35:34 -07001354 reset_control_deassert(tdma->rst);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301355
1356 /* Enable global DMA registers */
1357 tdma_write(tdma, TEGRA_APBDMA_GENERAL, TEGRA_APBDMA_GENERAL_ENABLE);
1358 tdma_write(tdma, TEGRA_APBDMA_CONTROL, 0);
1359 tdma_write(tdma, TEGRA_APBDMA_IRQ_MASK_SET, 0xFFFFFFFFul);
1360
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001361 pm_runtime_put(&pdev->dev);
Laxman Dewanganffc49302012-07-20 13:31:08 +05301362
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301363 INIT_LIST_HEAD(&tdma->dma_dev.channels);
1364 for (i = 0; i < cdata->nr_channels; i++) {
1365 struct tegra_dma_channel *tdc = &tdma->channels[i];
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301366
Jon Hunter13a33282015-08-06 14:32:31 +01001367 tdc->chan_addr = tdma->base_addr +
1368 TEGRA_APBDMA_CHANNEL_BASE_ADD_OFFSET +
1369 (i * cdata->channel_reg_size);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301370
1371 res = platform_get_resource(pdev, IORESOURCE_IRQ, i);
1372 if (!res) {
1373 ret = -EINVAL;
1374 dev_err(&pdev->dev, "No irq resource for chan %d\n", i);
1375 goto err_irq;
1376 }
1377 tdc->irq = res->start;
Laxman Dewangand0fc9052012-10-03 22:48:07 +05301378 snprintf(tdc->name, sizeof(tdc->name), "apbdma.%d", i);
Jon Hunter05e866b2015-11-13 16:39:43 +00001379 ret = request_irq(tdc->irq, tegra_dma_isr, 0, tdc->name, tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301380 if (ret) {
1381 dev_err(&pdev->dev,
1382 "request_irq failed with err %d channel %d\n",
Dmitry Osipenkoac7ae752013-05-11 20:30:52 +04001383 ret, i);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301384 goto err_irq;
1385 }
1386
1387 tdc->dma_chan.device = &tdma->dma_dev;
1388 dma_cookie_init(&tdc->dma_chan);
1389 list_add_tail(&tdc->dma_chan.device_node,
1390 &tdma->dma_dev.channels);
1391 tdc->tdma = tdma;
1392 tdc->id = i;
Shardar Shariff Md00ef4492016-04-23 15:06:00 +05301393 tdc->slave_id = TEGRA_APBDMA_SLAVE_ID_INVALID;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301394
1395 tasklet_init(&tdc->tasklet, tegra_dma_tasklet,
1396 (unsigned long)tdc);
1397 spin_lock_init(&tdc->lock);
1398
1399 INIT_LIST_HEAD(&tdc->pending_sg_req);
1400 INIT_LIST_HEAD(&tdc->free_sg_req);
1401 INIT_LIST_HEAD(&tdc->free_dma_desc);
1402 INIT_LIST_HEAD(&tdc->cb_desc);
1403 }
1404
1405 dma_cap_set(DMA_SLAVE, tdma->dma_dev.cap_mask);
1406 dma_cap_set(DMA_PRIVATE, tdma->dma_dev.cap_mask);
Laxman Dewangan46fb3f82012-06-22 17:12:43 +05301407 dma_cap_set(DMA_CYCLIC, tdma->dma_dev.cap_mask);
1408
Jon Hunter23a1ec32015-08-06 14:32:33 +01001409 tdma->global_pause_count = 0;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301410 tdma->dma_dev.dev = &pdev->dev;
1411 tdma->dma_dev.device_alloc_chan_resources =
1412 tegra_dma_alloc_chan_resources;
1413 tdma->dma_dev.device_free_chan_resources =
1414 tegra_dma_free_chan_resources;
1415 tdma->dma_dev.device_prep_slave_sg = tegra_dma_prep_slave_sg;
1416 tdma->dma_dev.device_prep_dma_cyclic = tegra_dma_prep_dma_cyclic;
Paul Walmsley891653a2015-01-06 06:44:56 +00001417 tdma->dma_dev.src_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1418 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1419 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) |
1420 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES);
1421 tdma->dma_dev.dst_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
1422 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
1423 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) |
1424 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES);
1425 tdma->dma_dev.directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
1426 /*
1427 * XXX The hardware appears to support
1428 * DMA_RESIDUE_GRANULARITY_BURST-level reporting, but it's
1429 * only used by this driver during tegra_dma_terminate_all()
1430 */
1431 tdma->dma_dev.residue_granularity = DMA_RESIDUE_GRANULARITY_SEGMENT;
Maxime Ripard662f1ac2014-11-17 14:42:37 +01001432 tdma->dma_dev.device_config = tegra_dma_slave_config;
1433 tdma->dma_dev.device_terminate_all = tegra_dma_terminate_all;
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301434 tdma->dma_dev.device_tx_status = tegra_dma_tx_status;
1435 tdma->dma_dev.device_issue_pending = tegra_dma_issue_pending;
1436
1437 ret = dma_async_device_register(&tdma->dma_dev);
1438 if (ret < 0) {
1439 dev_err(&pdev->dev,
1440 "Tegra20 APB DMA driver registration failed %d\n", ret);
1441 goto err_irq;
1442 }
1443
Stephen Warren996556c2013-11-11 13:09:35 -07001444 ret = of_dma_controller_register(pdev->dev.of_node,
1445 tegra_dma_of_xlate, tdma);
1446 if (ret < 0) {
1447 dev_err(&pdev->dev,
1448 "Tegra20 APB DMA OF registration failed %d\n", ret);
1449 goto err_unregister_dma_dev;
1450 }
1451
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301452 dev_info(&pdev->dev, "Tegra20 APB DMA driver register %d channels\n",
1453 cdata->nr_channels);
1454 return 0;
1455
Stephen Warren996556c2013-11-11 13:09:35 -07001456err_unregister_dma_dev:
1457 dma_async_device_unregister(&tdma->dma_dev);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301458err_irq:
1459 while (--i >= 0) {
1460 struct tegra_dma_channel *tdc = &tdma->channels[i];
Jon Hunter05e866b2015-11-13 16:39:43 +00001461
1462 free_irq(tdc->irq, tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301463 tasklet_kill(&tdc->tasklet);
1464 }
1465
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301466 pm_runtime_disable(&pdev->dev);
1467 if (!pm_runtime_status_suspended(&pdev->dev))
1468 tegra_dma_runtime_suspend(&pdev->dev);
1469 return ret;
1470}
1471
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -08001472static int tegra_dma_remove(struct platform_device *pdev)
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301473{
1474 struct tegra_dma *tdma = platform_get_drvdata(pdev);
1475 int i;
1476 struct tegra_dma_channel *tdc;
1477
1478 dma_async_device_unregister(&tdma->dma_dev);
1479
1480 for (i = 0; i < tdma->chip_data->nr_channels; ++i) {
1481 tdc = &tdma->channels[i];
Jon Hunter05e866b2015-11-13 16:39:43 +00001482 free_irq(tdc->irq, tdc);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301483 tasklet_kill(&tdc->tasklet);
1484 }
1485
1486 pm_runtime_disable(&pdev->dev);
1487 if (!pm_runtime_status_suspended(&pdev->dev))
1488 tegra_dma_runtime_suspend(&pdev->dev);
1489
1490 return 0;
1491}
1492
1493static int tegra_dma_runtime_suspend(struct device *dev)
1494{
Jon Hunter286a6442015-11-13 16:39:39 +00001495 struct tegra_dma *tdma = dev_get_drvdata(dev);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301496
Prashant Gaikwad56482ec2012-06-25 12:01:31 +05301497 clk_disable_unprepare(tdma->dma_clk);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301498 return 0;
1499}
1500
1501static int tegra_dma_runtime_resume(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 int ret;
1505
Prashant Gaikwad56482ec2012-06-25 12:01:31 +05301506 ret = clk_prepare_enable(tdma->dma_clk);
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301507 if (ret < 0) {
1508 dev_err(dev, "clk_enable failed: %d\n", ret);
1509 return ret;
1510 }
1511 return 0;
1512}
1513
Laxman Dewangan3065c192013-04-24 15:24:27 +05301514#ifdef CONFIG_PM_SLEEP
1515static int tegra_dma_pm_suspend(struct device *dev)
1516{
1517 struct tegra_dma *tdma = dev_get_drvdata(dev);
1518 int i;
1519 int ret;
1520
1521 /* Enable clock before accessing register */
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001522 ret = pm_runtime_get_sync(dev);
Laxman Dewangan3065c192013-04-24 15:24:27 +05301523 if (ret < 0)
1524 return ret;
1525
1526 tdma->reg_gen = tdma_read(tdma, TEGRA_APBDMA_GENERAL);
1527 for (i = 0; i < tdma->chip_data->nr_channels; i++) {
1528 struct tegra_dma_channel *tdc = &tdma->channels[i];
1529 struct tegra_dma_channel_regs *ch_reg = &tdc->channel_reg;
1530
Jon Hunter4aad5be2015-11-13 16:39:41 +00001531 /* Only save the state of DMA channels that are in use */
1532 if (!tdc->config_init)
1533 continue;
1534
Laxman Dewangan3065c192013-04-24 15:24:27 +05301535 ch_reg->csr = tdc_read(tdc, TEGRA_APBDMA_CHAN_CSR);
1536 ch_reg->ahb_ptr = tdc_read(tdc, TEGRA_APBDMA_CHAN_AHBPTR);
1537 ch_reg->apb_ptr = tdc_read(tdc, TEGRA_APBDMA_CHAN_APBPTR);
1538 ch_reg->ahb_seq = tdc_read(tdc, TEGRA_APBDMA_CHAN_AHBSEQ);
1539 ch_reg->apb_seq = tdc_read(tdc, TEGRA_APBDMA_CHAN_APBSEQ);
Jon Hunter68ae7a92015-11-13 16:39:40 +00001540 if (tdma->chip_data->support_separate_wcount_reg)
1541 ch_reg->wcount = tdc_read(tdc,
1542 TEGRA_APBDMA_CHAN_WCOUNT);
Laxman Dewangan3065c192013-04-24 15:24:27 +05301543 }
1544
1545 /* Disable clock */
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001546 pm_runtime_put(dev);
Laxman Dewangan3065c192013-04-24 15:24:27 +05301547 return 0;
1548}
1549
1550static int tegra_dma_pm_resume(struct device *dev)
1551{
1552 struct tegra_dma *tdma = dev_get_drvdata(dev);
1553 int i;
1554 int ret;
1555
1556 /* Enable clock before accessing register */
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001557 ret = pm_runtime_get_sync(dev);
Laxman Dewangan3065c192013-04-24 15:24:27 +05301558 if (ret < 0)
1559 return ret;
1560
1561 tdma_write(tdma, TEGRA_APBDMA_GENERAL, tdma->reg_gen);
1562 tdma_write(tdma, TEGRA_APBDMA_CONTROL, 0);
1563 tdma_write(tdma, TEGRA_APBDMA_IRQ_MASK_SET, 0xFFFFFFFFul);
1564
1565 for (i = 0; i < tdma->chip_data->nr_channels; i++) {
1566 struct tegra_dma_channel *tdc = &tdma->channels[i];
1567 struct tegra_dma_channel_regs *ch_reg = &tdc->channel_reg;
1568
Jon Hunter4aad5be2015-11-13 16:39:41 +00001569 /* Only restore the state of DMA channels that are in use */
1570 if (!tdc->config_init)
1571 continue;
1572
Jon Hunter68ae7a92015-11-13 16:39:40 +00001573 if (tdma->chip_data->support_separate_wcount_reg)
1574 tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT,
1575 ch_reg->wcount);
Laxman Dewangan3065c192013-04-24 15:24:27 +05301576 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBSEQ, ch_reg->apb_seq);
1577 tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, ch_reg->apb_ptr);
1578 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBSEQ, ch_reg->ahb_seq);
1579 tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, ch_reg->ahb_ptr);
1580 tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR,
1581 (ch_reg->csr & ~TEGRA_APBDMA_CSR_ENB));
1582 }
1583
1584 /* Disable clock */
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001585 pm_runtime_put(dev);
Laxman Dewangan3065c192013-04-24 15:24:27 +05301586 return 0;
1587}
1588#endif
1589
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -08001590static const struct dev_pm_ops tegra_dma_dev_pm_ops = {
Jon Hunteredd3bdb2015-11-13 16:39:38 +00001591 SET_RUNTIME_PM_OPS(tegra_dma_runtime_suspend, tegra_dma_runtime_resume,
1592 NULL)
Laxman Dewangan3065c192013-04-24 15:24:27 +05301593 SET_SYSTEM_SLEEP_PM_OPS(tegra_dma_pm_suspend, tegra_dma_pm_resume)
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301594};
1595
Laxman Dewangan242637b2016-03-04 15:55:11 +05301596static const struct of_device_id tegra_dma_of_match[] = {
1597 {
1598 .compatible = "nvidia,tegra148-apbdma",
1599 .data = &tegra148_dma_chip_data,
1600 }, {
1601 .compatible = "nvidia,tegra114-apbdma",
1602 .data = &tegra114_dma_chip_data,
1603 }, {
1604 .compatible = "nvidia,tegra30-apbdma",
1605 .data = &tegra30_dma_chip_data,
1606 }, {
1607 .compatible = "nvidia,tegra20-apbdma",
1608 .data = &tegra20_dma_chip_data,
1609 }, {
1610 },
1611};
1612MODULE_DEVICE_TABLE(of, tegra_dma_of_match);
1613
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301614static struct platform_driver tegra_dmac_driver = {
1615 .driver = {
Laxman Dewangancd9092c2012-07-02 13:52:08 +05301616 .name = "tegra-apbdma",
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301617 .pm = &tegra_dma_dev_pm_ops,
Stephen Warrendc7badb2013-03-11 16:30:26 -06001618 .of_match_table = tegra_dma_of_match,
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301619 },
1620 .probe = tegra_dma_probe,
Bill Pembertona7d6e3e2012-11-19 13:20:04 -05001621 .remove = tegra_dma_remove,
Laxman Dewanganec8a1582012-06-06 10:55:27 +05301622};
1623
1624module_platform_driver(tegra_dmac_driver);
1625
1626MODULE_ALIAS("platform:tegra20-apbdma");
1627MODULE_DESCRIPTION("NVIDIA Tegra APB DMA Controller driver");
1628MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
1629MODULE_LICENSE("GPL v2");