blob: 8ea51c745953a37963e3a0151cfbf02b92b26989 [file] [log] [blame]
Rongjun Yingca21a142011-10-27 19:22:39 -07001/*
2 * DMA controller driver for CSR SiRFprimaII
3 *
4 * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
5 *
6 * Licensed under GPLv2 or later.
7 */
8
9#include <linux/module.h>
10#include <linux/dmaengine.h>
11#include <linux/dma-mapping.h>
Barry Song2a766892013-07-30 17:44:34 +080012#include <linux/pm_runtime.h>
Rongjun Yingca21a142011-10-27 19:22:39 -070013#include <linux/interrupt.h>
14#include <linux/io.h>
15#include <linux/slab.h>
16#include <linux/of_irq.h>
17#include <linux/of_address.h>
18#include <linux/of_device.h>
19#include <linux/of_platform.h>
Barry Songa7e34062013-03-18 16:33:43 +080020#include <linux/clk.h>
Barry Song2e041c92014-03-27 15:49:31 +080021#include <linux/of_dma.h>
Rongjun Yingca21a142011-10-27 19:22:39 -070022#include <linux/sirfsoc_dma.h>
23
Vinod Koul949ff5b2012-03-13 11:58:12 +053024#include "dmaengine.h"
25
Hao Liu0a45dca2015-05-26 07:32:28 +000026#define SIRFSOC_DMA_VER_A7V1 1
27#define SIRFSOC_DMA_VER_A7V2 2
28#define SIRFSOC_DMA_VER_A6 4
29
Rongjun Yingca21a142011-10-27 19:22:39 -070030#define SIRFSOC_DMA_DESCRIPTORS 16
31#define SIRFSOC_DMA_CHANNELS 16
Hao Liu0a45dca2015-05-26 07:32:28 +000032#define SIRFSOC_DMA_TABLE_NUM 256
Rongjun Yingca21a142011-10-27 19:22:39 -070033
34#define SIRFSOC_DMA_CH_ADDR 0x00
35#define SIRFSOC_DMA_CH_XLEN 0x04
36#define SIRFSOC_DMA_CH_YLEN 0x08
37#define SIRFSOC_DMA_CH_CTRL 0x0C
38
39#define SIRFSOC_DMA_WIDTH_0 0x100
40#define SIRFSOC_DMA_CH_VALID 0x140
41#define SIRFSOC_DMA_CH_INT 0x144
42#define SIRFSOC_DMA_INT_EN 0x148
Hao Liu0a45dca2015-05-26 07:32:28 +000043#define SIRFSOC_DMA_INT_EN_CLR 0x14C
Rongjun Yingca21a142011-10-27 19:22:39 -070044#define SIRFSOC_DMA_CH_LOOP_CTRL 0x150
Hao Liu0a45dca2015-05-26 07:32:28 +000045#define SIRFSOC_DMA_CH_LOOP_CTRL_CLR 0x154
46#define SIRFSOC_DMA_WIDTH_ATLAS7 0x10
47#define SIRFSOC_DMA_VALID_ATLAS7 0x14
48#define SIRFSOC_DMA_INT_ATLAS7 0x18
49#define SIRFSOC_DMA_INT_EN_ATLAS7 0x1c
50#define SIRFSOC_DMA_LOOP_CTRL_ATLAS7 0x20
51#define SIRFSOC_DMA_CUR_DATA_ADDR 0x34
52#define SIRFSOC_DMA_MUL_ATLAS7 0x38
53#define SIRFSOC_DMA_CH_LOOP_CTRL_ATLAS7 0x158
54#define SIRFSOC_DMA_CH_LOOP_CTRL_CLR_ATLAS7 0x15C
55#define SIRFSOC_DMA_IOBG_SCMD_EN 0x800
56#define SIRFSOC_DMA_EARLY_RESP_SET 0x818
57#define SIRFSOC_DMA_EARLY_RESP_CLR 0x81C
Rongjun Yingca21a142011-10-27 19:22:39 -070058
59#define SIRFSOC_DMA_MODE_CTRL_BIT 4
60#define SIRFSOC_DMA_DIR_CTRL_BIT 5
Hao Liu0a45dca2015-05-26 07:32:28 +000061#define SIRFSOC_DMA_MODE_CTRL_BIT_ATLAS7 2
62#define SIRFSOC_DMA_CHAIN_CTRL_BIT_ATLAS7 3
63#define SIRFSOC_DMA_DIR_CTRL_BIT_ATLAS7 4
64#define SIRFSOC_DMA_TAB_NUM_ATLAS7 7
65#define SIRFSOC_DMA_CHAIN_INT_BIT_ATLAS7 5
66#define SIRFSOC_DMA_CHAIN_FLAG_SHIFT_ATLAS7 25
67#define SIRFSOC_DMA_CHAIN_ADDR_SHIFT 32
68
69#define SIRFSOC_DMA_INT_FINI_INT_ATLAS7 BIT(0)
70#define SIRFSOC_DMA_INT_CNT_INT_ATLAS7 BIT(1)
71#define SIRFSOC_DMA_INT_PAU_INT_ATLAS7 BIT(2)
72#define SIRFSOC_DMA_INT_LOOP_INT_ATLAS7 BIT(3)
73#define SIRFSOC_DMA_INT_INV_INT_ATLAS7 BIT(4)
74#define SIRFSOC_DMA_INT_END_INT_ATLAS7 BIT(5)
75#define SIRFSOC_DMA_INT_ALL_ATLAS7 0x3F
Rongjun Yingca21a142011-10-27 19:22:39 -070076
77/* xlen and dma_width register is in 4 bytes boundary */
78#define SIRFSOC_DMA_WORD_LEN 4
Hao Liu0a45dca2015-05-26 07:32:28 +000079#define SIRFSOC_DMA_XLEN_MAX_V1 0x800
80#define SIRFSOC_DMA_XLEN_MAX_V2 0x1000
Rongjun Yingca21a142011-10-27 19:22:39 -070081
82struct sirfsoc_dma_desc {
83 struct dma_async_tx_descriptor desc;
84 struct list_head node;
85
86 /* SiRFprimaII 2D-DMA parameters */
87
88 int xlen; /* DMA xlen */
89 int ylen; /* DMA ylen */
90 int width; /* DMA width */
91 int dir;
92 bool cyclic; /* is loop DMA? */
Hao Liu0a45dca2015-05-26 07:32:28 +000093 bool chain; /* is chain DMA? */
Rongjun Yingca21a142011-10-27 19:22:39 -070094 u32 addr; /* DMA buffer address */
Hao Liu0a45dca2015-05-26 07:32:28 +000095 u64 chain_table[SIRFSOC_DMA_TABLE_NUM]; /* chain tbl */
Rongjun Yingca21a142011-10-27 19:22:39 -070096};
97
98struct sirfsoc_dma_chan {
99 struct dma_chan chan;
100 struct list_head free;
101 struct list_head prepared;
102 struct list_head queued;
103 struct list_head active;
104 struct list_head completed;
Rongjun Yingca21a142011-10-27 19:22:39 -0700105 unsigned long happened_cyclic;
106 unsigned long completed_cyclic;
107
108 /* Lock for this structure */
109 spinlock_t lock;
110
111 int mode;
112};
113
Barry Song2a766892013-07-30 17:44:34 +0800114struct sirfsoc_dma_regs {
115 u32 ctrl[SIRFSOC_DMA_CHANNELS];
116 u32 interrupt_en;
117};
118
Rongjun Yingca21a142011-10-27 19:22:39 -0700119struct sirfsoc_dma {
120 struct dma_device dma;
121 struct tasklet_struct tasklet;
122 struct sirfsoc_dma_chan channels[SIRFSOC_DMA_CHANNELS];
123 void __iomem *base;
124 int irq;
Barry Songa7e34062013-03-18 16:33:43 +0800125 struct clk *clk;
Hao Liu0a45dca2015-05-26 07:32:28 +0000126 int type;
127 void (*exec_desc)(struct sirfsoc_dma_desc *sdesc,
128 int cid, int burst_mode, void __iomem *base);
Barry Song2a766892013-07-30 17:44:34 +0800129 struct sirfsoc_dma_regs regs_save;
Rongjun Yingca21a142011-10-27 19:22:39 -0700130};
131
Hao Liu0a45dca2015-05-26 07:32:28 +0000132struct sirfsoc_dmadata {
133 void (*exec)(struct sirfsoc_dma_desc *sdesc,
134 int cid, int burst_mode, void __iomem *base);
135 int type;
136};
137
138enum sirfsoc_dma_chain_flag {
139 SIRFSOC_DMA_CHAIN_NORMAL = 0x01,
140 SIRFSOC_DMA_CHAIN_PAUSE = 0x02,
141 SIRFSOC_DMA_CHAIN_LOOP = 0x03,
142 SIRFSOC_DMA_CHAIN_END = 0x04
143};
144
Rongjun Yingca21a142011-10-27 19:22:39 -0700145#define DRV_NAME "sirfsoc_dma"
146
Barry Song2a766892013-07-30 17:44:34 +0800147static int sirfsoc_dma_runtime_suspend(struct device *dev);
148
Rongjun Yingca21a142011-10-27 19:22:39 -0700149/* Convert struct dma_chan to struct sirfsoc_dma_chan */
150static inline
151struct sirfsoc_dma_chan *dma_chan_to_sirfsoc_dma_chan(struct dma_chan *c)
152{
153 return container_of(c, struct sirfsoc_dma_chan, chan);
154}
155
156/* Convert struct dma_chan to struct sirfsoc_dma */
157static inline struct sirfsoc_dma *dma_chan_to_sirfsoc_dma(struct dma_chan *c)
158{
159 struct sirfsoc_dma_chan *schan = dma_chan_to_sirfsoc_dma_chan(c);
160 return container_of(schan, struct sirfsoc_dma, channels[c->chan_id]);
161}
162
Hao Liu0a45dca2015-05-26 07:32:28 +0000163static void sirfsoc_dma_execute_hw_a7v2(struct sirfsoc_dma_desc *sdesc,
164 int cid, int burst_mode, void __iomem *base)
165{
166 if (sdesc->chain) {
167 /* DMA v2 HW chain mode */
168 writel_relaxed((sdesc->dir << SIRFSOC_DMA_DIR_CTRL_BIT_ATLAS7) |
169 (sdesc->chain <<
170 SIRFSOC_DMA_CHAIN_CTRL_BIT_ATLAS7) |
171 (0x8 << SIRFSOC_DMA_TAB_NUM_ATLAS7) | 0x3,
172 base + SIRFSOC_DMA_CH_CTRL);
173 } else {
174 /* DMA v2 legacy mode */
175 writel_relaxed(sdesc->xlen, base + SIRFSOC_DMA_CH_XLEN);
176 writel_relaxed(sdesc->ylen, base + SIRFSOC_DMA_CH_YLEN);
177 writel_relaxed(sdesc->width, base + SIRFSOC_DMA_WIDTH_ATLAS7);
178 writel_relaxed((sdesc->width*((sdesc->ylen+1)>>1)),
179 base + SIRFSOC_DMA_MUL_ATLAS7);
180 writel_relaxed((sdesc->dir << SIRFSOC_DMA_DIR_CTRL_BIT_ATLAS7) |
181 (sdesc->chain <<
182 SIRFSOC_DMA_CHAIN_CTRL_BIT_ATLAS7) |
183 0x3, base + SIRFSOC_DMA_CH_CTRL);
184 }
185 writel_relaxed(sdesc->chain ? SIRFSOC_DMA_INT_END_INT_ATLAS7 :
186 (SIRFSOC_DMA_INT_FINI_INT_ATLAS7 |
187 SIRFSOC_DMA_INT_LOOP_INT_ATLAS7),
188 base + SIRFSOC_DMA_INT_EN_ATLAS7);
189 writel(sdesc->addr, base + SIRFSOC_DMA_CH_ADDR);
190 if (sdesc->cyclic)
191 writel(0x10001, base + SIRFSOC_DMA_LOOP_CTRL_ATLAS7);
192}
193
194static void sirfsoc_dma_execute_hw_a7v1(struct sirfsoc_dma_desc *sdesc,
195 int cid, int burst_mode, void __iomem *base)
196{
197 writel_relaxed(1, base + SIRFSOC_DMA_IOBG_SCMD_EN);
198 writel_relaxed((1 << cid), base + SIRFSOC_DMA_EARLY_RESP_SET);
199 writel_relaxed(sdesc->width, base + SIRFSOC_DMA_WIDTH_0 + cid * 4);
200 writel_relaxed(cid | (burst_mode << SIRFSOC_DMA_MODE_CTRL_BIT) |
201 (sdesc->dir << SIRFSOC_DMA_DIR_CTRL_BIT),
202 base + cid * 0x10 + SIRFSOC_DMA_CH_CTRL);
203 writel_relaxed(sdesc->xlen, base + cid * 0x10 + SIRFSOC_DMA_CH_XLEN);
204 writel_relaxed(sdesc->ylen, base + cid * 0x10 + SIRFSOC_DMA_CH_YLEN);
205 writel_relaxed(readl_relaxed(base + SIRFSOC_DMA_INT_EN) |
206 (1 << cid), base + SIRFSOC_DMA_INT_EN);
207 writel(sdesc->addr >> 2, base + cid * 0x10 + SIRFSOC_DMA_CH_ADDR);
208 if (sdesc->cyclic) {
209 writel((1 << cid) | 1 << (cid + 16) |
210 readl_relaxed(base + SIRFSOC_DMA_CH_LOOP_CTRL_ATLAS7),
211 base + SIRFSOC_DMA_CH_LOOP_CTRL_ATLAS7);
212 }
213
214}
215
216static void sirfsoc_dma_execute_hw_a6(struct sirfsoc_dma_desc *sdesc,
217 int cid, int burst_mode, void __iomem *base)
218{
219 writel_relaxed(sdesc->width, base + SIRFSOC_DMA_WIDTH_0 + cid * 4);
220 writel_relaxed(cid | (burst_mode << SIRFSOC_DMA_MODE_CTRL_BIT) |
221 (sdesc->dir << SIRFSOC_DMA_DIR_CTRL_BIT),
222 base + cid * 0x10 + SIRFSOC_DMA_CH_CTRL);
223 writel_relaxed(sdesc->xlen, base + cid * 0x10 + SIRFSOC_DMA_CH_XLEN);
224 writel_relaxed(sdesc->ylen, base + cid * 0x10 + SIRFSOC_DMA_CH_YLEN);
225 writel_relaxed(readl_relaxed(base + SIRFSOC_DMA_INT_EN) |
226 (1 << cid), base + SIRFSOC_DMA_INT_EN);
227 writel(sdesc->addr >> 2, base + cid * 0x10 + SIRFSOC_DMA_CH_ADDR);
228 if (sdesc->cyclic) {
229 writel((1 << cid) | 1 << (cid + 16) |
230 readl_relaxed(base + SIRFSOC_DMA_CH_LOOP_CTRL),
231 base + SIRFSOC_DMA_CH_LOOP_CTRL);
232 }
233
234}
235
Rongjun Yingca21a142011-10-27 19:22:39 -0700236/* Execute all queued DMA descriptors */
237static void sirfsoc_dma_execute(struct sirfsoc_dma_chan *schan)
238{
239 struct sirfsoc_dma *sdma = dma_chan_to_sirfsoc_dma(&schan->chan);
240 int cid = schan->chan.chan_id;
241 struct sirfsoc_dma_desc *sdesc = NULL;
Hao Liu0a45dca2015-05-26 07:32:28 +0000242 void __iomem *base;
Rongjun Yingca21a142011-10-27 19:22:39 -0700243
244 /*
245 * lock has been held by functions calling this, so we don't hold
246 * lock again
247 */
Hao Liu0a45dca2015-05-26 07:32:28 +0000248 base = sdma->base;
Rongjun Yingca21a142011-10-27 19:22:39 -0700249 sdesc = list_first_entry(&schan->queued, struct sirfsoc_dma_desc,
Hao Liu0a45dca2015-05-26 07:32:28 +0000250 node);
Rongjun Yingca21a142011-10-27 19:22:39 -0700251 /* Move the first queued descriptor to active list */
Barry Song26fd1222012-09-27 16:36:10 +0800252 list_move_tail(&sdesc->node, &schan->active);
Rongjun Yingca21a142011-10-27 19:22:39 -0700253
Hao Liu0a45dca2015-05-26 07:32:28 +0000254 if (sdma->type == SIRFSOC_DMA_VER_A7V2)
255 cid = 0;
256
Rongjun Yingca21a142011-10-27 19:22:39 -0700257 /* Start the DMA transfer */
Hao Liu0a45dca2015-05-26 07:32:28 +0000258 sdma->exec_desc(sdesc, cid, schan->mode, base);
Rongjun Yingca21a142011-10-27 19:22:39 -0700259
Hao Liu0a45dca2015-05-26 07:32:28 +0000260 if (sdesc->cyclic)
Rongjun Yingca21a142011-10-27 19:22:39 -0700261 schan->happened_cyclic = schan->completed_cyclic = 0;
Rongjun Yingca21a142011-10-27 19:22:39 -0700262}
263
264/* Interrupt handler */
265static irqreturn_t sirfsoc_dma_irq(int irq, void *data)
266{
267 struct sirfsoc_dma *sdma = data;
268 struct sirfsoc_dma_chan *schan;
269 struct sirfsoc_dma_desc *sdesc = NULL;
270 u32 is;
Hao Liu0a45dca2015-05-26 07:32:28 +0000271 bool chain;
Rongjun Yingca21a142011-10-27 19:22:39 -0700272 int ch;
Hao Liu0a45dca2015-05-26 07:32:28 +0000273 void __iomem *reg;
Rongjun Yingca21a142011-10-27 19:22:39 -0700274
Hao Liu0a45dca2015-05-26 07:32:28 +0000275 switch (sdma->type) {
276 case SIRFSOC_DMA_VER_A6:
277 case SIRFSOC_DMA_VER_A7V1:
278 is = readl(sdma->base + SIRFSOC_DMA_CH_INT);
279 reg = sdma->base + SIRFSOC_DMA_CH_INT;
280 while ((ch = fls(is) - 1) >= 0) {
281 is &= ~(1 << ch);
282 writel_relaxed(1 << ch, reg);
283 schan = &sdma->channels[ch];
284 spin_lock(&schan->lock);
285 sdesc = list_first_entry(&schan->active,
286 struct sirfsoc_dma_desc, node);
287 if (!sdesc->cyclic) {
288 /* Execute queued descriptors */
289 list_splice_tail_init(&schan->active,
290 &schan->completed);
291 dma_cookie_complete(&sdesc->desc);
292 if (!list_empty(&schan->queued))
293 sirfsoc_dma_execute(schan);
294 } else
295 schan->happened_cyclic++;
296 spin_unlock(&schan->lock);
297 }
298 break;
Rongjun Yingca21a142011-10-27 19:22:39 -0700299
Hao Liu0a45dca2015-05-26 07:32:28 +0000300 case SIRFSOC_DMA_VER_A7V2:
301 is = readl(sdma->base + SIRFSOC_DMA_INT_ATLAS7);
302
303 reg = sdma->base + SIRFSOC_DMA_INT_ATLAS7;
304 writel_relaxed(SIRFSOC_DMA_INT_ALL_ATLAS7, reg);
305 schan = &sdma->channels[0];
Rongjun Yingca21a142011-10-27 19:22:39 -0700306 spin_lock(&schan->lock);
Hao Liu0a45dca2015-05-26 07:32:28 +0000307 sdesc = list_first_entry(&schan->active,
308 struct sirfsoc_dma_desc, node);
Rongjun Yingca21a142011-10-27 19:22:39 -0700309 if (!sdesc->cyclic) {
Hao Liu0a45dca2015-05-26 07:32:28 +0000310 chain = sdesc->chain;
311 if ((chain && (is & SIRFSOC_DMA_INT_END_INT_ATLAS7)) ||
312 (!chain &&
313 (is & SIRFSOC_DMA_INT_FINI_INT_ATLAS7))) {
314 /* Execute queued descriptors */
315 list_splice_tail_init(&schan->active,
316 &schan->completed);
317 dma_cookie_complete(&sdesc->desc);
318 if (!list_empty(&schan->queued))
319 sirfsoc_dma_execute(schan);
320 }
321 } else if (sdesc->cyclic && (is &
322 SIRFSOC_DMA_INT_LOOP_INT_ATLAS7))
Rongjun Yingca21a142011-10-27 19:22:39 -0700323 schan->happened_cyclic++;
324
325 spin_unlock(&schan->lock);
Hao Liu0a45dca2015-05-26 07:32:28 +0000326 break;
327
328 default:
329 break;
Rongjun Yingca21a142011-10-27 19:22:39 -0700330 }
331
332 /* Schedule tasklet */
333 tasklet_schedule(&sdma->tasklet);
334
335 return IRQ_HANDLED;
336}
337
338/* process completed descriptors */
339static void sirfsoc_dma_process_completed(struct sirfsoc_dma *sdma)
340{
341 dma_cookie_t last_cookie = 0;
342 struct sirfsoc_dma_chan *schan;
343 struct sirfsoc_dma_desc *sdesc;
344 struct dma_async_tx_descriptor *desc;
345 unsigned long flags;
346 unsigned long happened_cyclic;
347 LIST_HEAD(list);
348 int i;
349
350 for (i = 0; i < sdma->dma.chancnt; i++) {
351 schan = &sdma->channels[i];
352
353 /* Get all completed descriptors */
354 spin_lock_irqsave(&schan->lock, flags);
355 if (!list_empty(&schan->completed)) {
356 list_splice_tail_init(&schan->completed, &list);
357 spin_unlock_irqrestore(&schan->lock, flags);
358
359 /* Execute callbacks and run dependencies */
360 list_for_each_entry(sdesc, &list, node) {
361 desc = &sdesc->desc;
362
363 if (desc->callback)
364 desc->callback(desc->callback_param);
365
366 last_cookie = desc->cookie;
367 dma_run_dependencies(desc);
368 }
369
370 /* Free descriptors */
371 spin_lock_irqsave(&schan->lock, flags);
372 list_splice_tail_init(&list, &schan->free);
Russell King - ARM Linux4d4e58d2012-03-06 22:34:06 +0000373 schan->chan.completed_cookie = last_cookie;
Rongjun Yingca21a142011-10-27 19:22:39 -0700374 spin_unlock_irqrestore(&schan->lock, flags);
375 } else {
Hao Liu0a45dca2015-05-26 07:32:28 +0000376 if (list_empty(&schan->active)) {
Rongjun Yingca21a142011-10-27 19:22:39 -0700377 spin_unlock_irqrestore(&schan->lock, flags);
378 continue;
379 }
380
Hao Liu0a45dca2015-05-26 07:32:28 +0000381 /* for cyclic channel, desc is always in active list */
382 sdesc = list_first_entry(&schan->active,
383 struct sirfsoc_dma_desc, node);
384
Rongjun Yingca21a142011-10-27 19:22:39 -0700385 /* cyclic DMA */
386 happened_cyclic = schan->happened_cyclic;
387 spin_unlock_irqrestore(&schan->lock, flags);
388
389 desc = &sdesc->desc;
390 while (happened_cyclic != schan->completed_cyclic) {
391 if (desc->callback)
392 desc->callback(desc->callback_param);
393 schan->completed_cyclic++;
394 }
395 }
396 }
397}
398
399/* DMA Tasklet */
400static void sirfsoc_dma_tasklet(unsigned long data)
401{
402 struct sirfsoc_dma *sdma = (void *)data;
403
404 sirfsoc_dma_process_completed(sdma);
405}
406
407/* Submit descriptor to hardware */
408static dma_cookie_t sirfsoc_dma_tx_submit(struct dma_async_tx_descriptor *txd)
409{
410 struct sirfsoc_dma_chan *schan = dma_chan_to_sirfsoc_dma_chan(txd->chan);
411 struct sirfsoc_dma_desc *sdesc;
412 unsigned long flags;
413 dma_cookie_t cookie;
414
415 sdesc = container_of(txd, struct sirfsoc_dma_desc, desc);
416
417 spin_lock_irqsave(&schan->lock, flags);
418
419 /* Move descriptor to queue */
420 list_move_tail(&sdesc->node, &schan->queued);
421
Russell King - ARM Linux884485e2012-03-06 22:34:46 +0000422 cookie = dma_cookie_assign(txd);
Rongjun Yingca21a142011-10-27 19:22:39 -0700423
424 spin_unlock_irqrestore(&schan->lock, flags);
425
426 return cookie;
427}
428
Maxime Riparded14a7c2014-11-17 14:42:34 +0100429static int sirfsoc_dma_slave_config(struct dma_chan *chan,
430 struct dma_slave_config *config)
Rongjun Yingca21a142011-10-27 19:22:39 -0700431{
Maxime Riparded14a7c2014-11-17 14:42:34 +0100432 struct sirfsoc_dma_chan *schan = dma_chan_to_sirfsoc_dma_chan(chan);
Rongjun Yingca21a142011-10-27 19:22:39 -0700433 unsigned long flags;
434
435 if ((config->src_addr_width != DMA_SLAVE_BUSWIDTH_4_BYTES) ||
436 (config->dst_addr_width != DMA_SLAVE_BUSWIDTH_4_BYTES))
437 return -EINVAL;
438
439 spin_lock_irqsave(&schan->lock, flags);
440 schan->mode = (config->src_maxburst == 4 ? 1 : 0);
441 spin_unlock_irqrestore(&schan->lock, flags);
442
443 return 0;
444}
445
Maxime Riparded14a7c2014-11-17 14:42:34 +0100446static int sirfsoc_dma_terminate_all(struct dma_chan *chan)
Rongjun Yingca21a142011-10-27 19:22:39 -0700447{
Maxime Riparded14a7c2014-11-17 14:42:34 +0100448 struct sirfsoc_dma_chan *schan = dma_chan_to_sirfsoc_dma_chan(chan);
Rongjun Yingca21a142011-10-27 19:22:39 -0700449 struct sirfsoc_dma *sdma = dma_chan_to_sirfsoc_dma(&schan->chan);
450 int cid = schan->chan.chan_id;
451 unsigned long flags;
452
Barry Song2b99c252012-12-14 11:06:58 +0000453 spin_lock_irqsave(&schan->lock, flags);
454
Hao Liu0a45dca2015-05-26 07:32:28 +0000455 switch (sdma->type) {
456 case SIRFSOC_DMA_VER_A7V1:
Barry Songf7d935d2012-11-01 22:54:43 +0800457 writel_relaxed(1 << cid, sdma->base + SIRFSOC_DMA_INT_EN_CLR);
Yanchang Liac9bd0e2015-07-27 05:50:21 +0000458 writel_relaxed(1 << cid, sdma->base + SIRFSOC_DMA_CH_INT);
Barry Songf7d935d2012-11-01 22:54:43 +0800459 writel_relaxed((1 << cid) | 1 << (cid + 16),
Hao Liu0a45dca2015-05-26 07:32:28 +0000460 sdma->base +
461 SIRFSOC_DMA_CH_LOOP_CTRL_CLR_ATLAS7);
462 writel_relaxed(1 << cid, sdma->base + SIRFSOC_DMA_CH_VALID);
463 break;
464 case SIRFSOC_DMA_VER_A7V2:
465 writel_relaxed(0, sdma->base + SIRFSOC_DMA_INT_EN_ATLAS7);
Yanchang Liac9bd0e2015-07-27 05:50:21 +0000466 writel_relaxed(SIRFSOC_DMA_INT_ALL_ATLAS7,
467 sdma->base + SIRFSOC_DMA_INT_ATLAS7);
Hao Liu0a45dca2015-05-26 07:32:28 +0000468 writel_relaxed(0, sdma->base + SIRFSOC_DMA_LOOP_CTRL_ATLAS7);
469 writel_relaxed(0, sdma->base + SIRFSOC_DMA_VALID_ATLAS7);
470 break;
471 case SIRFSOC_DMA_VER_A6:
472 writel_relaxed(readl_relaxed(sdma->base + SIRFSOC_DMA_INT_EN) &
473 ~(1 << cid), sdma->base + SIRFSOC_DMA_INT_EN);
474 writel_relaxed(readl_relaxed(sdma->base +
475 SIRFSOC_DMA_CH_LOOP_CTRL) &
476 ~((1 << cid) | 1 << (cid + 16)),
477 sdma->base + SIRFSOC_DMA_CH_LOOP_CTRL);
478 writel_relaxed(1 << cid, sdma->base + SIRFSOC_DMA_CH_VALID);
479 break;
480 default:
481 break;
Barry Songf7d935d2012-11-01 22:54:43 +0800482 }
483
Rongjun Yingca21a142011-10-27 19:22:39 -0700484 list_splice_tail_init(&schan->active, &schan->free);
485 list_splice_tail_init(&schan->queued, &schan->free);
Barry Song2b99c252012-12-14 11:06:58 +0000486
Rongjun Yingca21a142011-10-27 19:22:39 -0700487 spin_unlock_irqrestore(&schan->lock, flags);
488
489 return 0;
490}
491
Maxime Riparded14a7c2014-11-17 14:42:34 +0100492static int sirfsoc_dma_pause_chan(struct dma_chan *chan)
Barry Song2518d1d2012-12-14 10:59:22 +0000493{
Maxime Riparded14a7c2014-11-17 14:42:34 +0100494 struct sirfsoc_dma_chan *schan = dma_chan_to_sirfsoc_dma_chan(chan);
Barry Song2518d1d2012-12-14 10:59:22 +0000495 struct sirfsoc_dma *sdma = dma_chan_to_sirfsoc_dma(&schan->chan);
496 int cid = schan->chan.chan_id;
497 unsigned long flags;
498
499 spin_lock_irqsave(&schan->lock, flags);
500
Hao Liu0a45dca2015-05-26 07:32:28 +0000501 switch (sdma->type) {
502 case SIRFSOC_DMA_VER_A7V1:
Barry Song2518d1d2012-12-14 10:59:22 +0000503 writel_relaxed((1 << cid) | 1 << (cid + 16),
Hao Liu0a45dca2015-05-26 07:32:28 +0000504 sdma->base +
505 SIRFSOC_DMA_CH_LOOP_CTRL_CLR_ATLAS7);
506 break;
507 case SIRFSOC_DMA_VER_A7V2:
508 writel_relaxed(0, sdma->base + SIRFSOC_DMA_LOOP_CTRL_ATLAS7);
509 break;
510 case SIRFSOC_DMA_VER_A6:
511 writel_relaxed(readl_relaxed(sdma->base +
512 SIRFSOC_DMA_CH_LOOP_CTRL) &
513 ~((1 << cid) | 1 << (cid + 16)),
514 sdma->base + SIRFSOC_DMA_CH_LOOP_CTRL);
515 break;
516
517 default:
518 break;
519 }
Barry Song2518d1d2012-12-14 10:59:22 +0000520
521 spin_unlock_irqrestore(&schan->lock, flags);
522
523 return 0;
524}
525
Maxime Riparded14a7c2014-11-17 14:42:34 +0100526static int sirfsoc_dma_resume_chan(struct dma_chan *chan)
Barry Song2518d1d2012-12-14 10:59:22 +0000527{
Maxime Riparded14a7c2014-11-17 14:42:34 +0100528 struct sirfsoc_dma_chan *schan = dma_chan_to_sirfsoc_dma_chan(chan);
Barry Song2518d1d2012-12-14 10:59:22 +0000529 struct sirfsoc_dma *sdma = dma_chan_to_sirfsoc_dma(&schan->chan);
530 int cid = schan->chan.chan_id;
531 unsigned long flags;
532
533 spin_lock_irqsave(&schan->lock, flags);
Hao Liu0a45dca2015-05-26 07:32:28 +0000534 switch (sdma->type) {
535 case SIRFSOC_DMA_VER_A7V1:
Barry Song2518d1d2012-12-14 10:59:22 +0000536 writel_relaxed((1 << cid) | 1 << (cid + 16),
Hao Liu0a45dca2015-05-26 07:32:28 +0000537 sdma->base + SIRFSOC_DMA_CH_LOOP_CTRL_ATLAS7);
538 break;
539 case SIRFSOC_DMA_VER_A7V2:
540 writel_relaxed(0x10001,
541 sdma->base + SIRFSOC_DMA_LOOP_CTRL_ATLAS7);
542 break;
543 case SIRFSOC_DMA_VER_A6:
544 writel_relaxed(readl_relaxed(sdma->base +
545 SIRFSOC_DMA_CH_LOOP_CTRL) |
546 ((1 << cid) | 1 << (cid + 16)),
547 sdma->base + SIRFSOC_DMA_CH_LOOP_CTRL);
548 break;
549
550 default:
551 break;
552 }
Barry Song2518d1d2012-12-14 10:59:22 +0000553
Rongjun Yingca21a142011-10-27 19:22:39 -0700554 spin_unlock_irqrestore(&schan->lock, flags);
555
556 return 0;
557}
558
Rongjun Yingca21a142011-10-27 19:22:39 -0700559/* Alloc channel resources */
560static int sirfsoc_dma_alloc_chan_resources(struct dma_chan *chan)
561{
562 struct sirfsoc_dma *sdma = dma_chan_to_sirfsoc_dma(chan);
563 struct sirfsoc_dma_chan *schan = dma_chan_to_sirfsoc_dma_chan(chan);
564 struct sirfsoc_dma_desc *sdesc;
565 unsigned long flags;
566 LIST_HEAD(descs);
567 int i;
568
Barry Song2a766892013-07-30 17:44:34 +0800569 pm_runtime_get_sync(sdma->dma.dev);
570
Rongjun Yingca21a142011-10-27 19:22:39 -0700571 /* Alloc descriptors for this channel */
572 for (i = 0; i < SIRFSOC_DMA_DESCRIPTORS; i++) {
573 sdesc = kzalloc(sizeof(*sdesc), GFP_KERNEL);
574 if (!sdesc) {
575 dev_notice(sdma->dma.dev, "Memory allocation error. "
576 "Allocated only %u descriptors\n", i);
577 break;
578 }
579
580 dma_async_tx_descriptor_init(&sdesc->desc, chan);
581 sdesc->desc.flags = DMA_CTRL_ACK;
582 sdesc->desc.tx_submit = sirfsoc_dma_tx_submit;
583
584 list_add_tail(&sdesc->node, &descs);
585 }
586
587 /* Return error only if no descriptors were allocated */
588 if (i == 0)
589 return -ENOMEM;
590
591 spin_lock_irqsave(&schan->lock, flags);
592
593 list_splice_tail_init(&descs, &schan->free);
594 spin_unlock_irqrestore(&schan->lock, flags);
595
596 return i;
597}
598
599/* Free channel resources */
600static void sirfsoc_dma_free_chan_resources(struct dma_chan *chan)
601{
602 struct sirfsoc_dma_chan *schan = dma_chan_to_sirfsoc_dma_chan(chan);
Barry Song2a766892013-07-30 17:44:34 +0800603 struct sirfsoc_dma *sdma = dma_chan_to_sirfsoc_dma(chan);
Rongjun Yingca21a142011-10-27 19:22:39 -0700604 struct sirfsoc_dma_desc *sdesc, *tmp;
605 unsigned long flags;
606 LIST_HEAD(descs);
607
608 spin_lock_irqsave(&schan->lock, flags);
609
610 /* Channel must be idle */
611 BUG_ON(!list_empty(&schan->prepared));
612 BUG_ON(!list_empty(&schan->queued));
613 BUG_ON(!list_empty(&schan->active));
614 BUG_ON(!list_empty(&schan->completed));
615
616 /* Move data */
617 list_splice_tail_init(&schan->free, &descs);
618
619 spin_unlock_irqrestore(&schan->lock, flags);
620
621 /* Free descriptors */
622 list_for_each_entry_safe(sdesc, tmp, &descs, node)
623 kfree(sdesc);
Barry Song2a766892013-07-30 17:44:34 +0800624
625 pm_runtime_put(sdma->dma.dev);
Rongjun Yingca21a142011-10-27 19:22:39 -0700626}
627
628/* Send pending descriptor to hardware */
629static void sirfsoc_dma_issue_pending(struct dma_chan *chan)
630{
631 struct sirfsoc_dma_chan *schan = dma_chan_to_sirfsoc_dma_chan(chan);
632 unsigned long flags;
633
634 spin_lock_irqsave(&schan->lock, flags);
635
636 if (list_empty(&schan->active) && !list_empty(&schan->queued))
637 sirfsoc_dma_execute(schan);
638
639 spin_unlock_irqrestore(&schan->lock, flags);
640}
641
642/* Check request completion status */
643static enum dma_status
644sirfsoc_dma_tx_status(struct dma_chan *chan, dma_cookie_t cookie,
645 struct dma_tx_state *txstate)
646{
Rongjun Yingadd93b52013-05-14 23:03:20 +0800647 struct sirfsoc_dma *sdma = dma_chan_to_sirfsoc_dma(chan);
Rongjun Yingca21a142011-10-27 19:22:39 -0700648 struct sirfsoc_dma_chan *schan = dma_chan_to_sirfsoc_dma_chan(chan);
649 unsigned long flags;
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +0000650 enum dma_status ret;
Rongjun Yingadd93b52013-05-14 23:03:20 +0800651 struct sirfsoc_dma_desc *sdesc;
652 int cid = schan->chan.chan_id;
653 unsigned long dma_pos;
654 unsigned long dma_request_bytes;
655 unsigned long residue;
Rongjun Yingca21a142011-10-27 19:22:39 -0700656
657 spin_lock_irqsave(&schan->lock, flags);
Rongjun Yingadd93b52013-05-14 23:03:20 +0800658
Hao Liu0a45dca2015-05-26 07:32:28 +0000659 if (list_empty(&schan->active)) {
660 ret = dma_cookie_status(chan, cookie, txstate);
661 dma_set_residue(txstate, 0);
662 spin_unlock_irqrestore(&schan->lock, flags);
663 return ret;
664 }
665 sdesc = list_first_entry(&schan->active, struct sirfsoc_dma_desc, node);
666 if (sdesc->cyclic)
667 dma_request_bytes = (sdesc->xlen + 1) * (sdesc->ylen + 1) *
668 (sdesc->width * SIRFSOC_DMA_WORD_LEN);
669 else
670 dma_request_bytes = sdesc->xlen * SIRFSOC_DMA_WORD_LEN;
Rongjun Yingadd93b52013-05-14 23:03:20 +0800671
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +0000672 ret = dma_cookie_status(chan, cookie, txstate);
Hao Liu0a45dca2015-05-26 07:32:28 +0000673
674 if (sdma->type == SIRFSOC_DMA_VER_A7V2)
675 cid = 0;
676
677 if (sdma->type == SIRFSOC_DMA_VER_A7V2) {
678 dma_pos = readl_relaxed(sdma->base + SIRFSOC_DMA_CUR_DATA_ADDR);
679 } else {
680 dma_pos = readl_relaxed(
681 sdma->base + cid * 0x10 + SIRFSOC_DMA_CH_ADDR) << 2;
682 }
683
Rongjun Yingadd93b52013-05-14 23:03:20 +0800684 residue = dma_request_bytes - (dma_pos - sdesc->addr);
685 dma_set_residue(txstate, residue);
686
Rongjun Yingca21a142011-10-27 19:22:39 -0700687 spin_unlock_irqrestore(&schan->lock, flags);
688
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +0000689 return ret;
Rongjun Yingca21a142011-10-27 19:22:39 -0700690}
691
692static struct dma_async_tx_descriptor *sirfsoc_dma_prep_interleaved(
693 struct dma_chan *chan, struct dma_interleaved_template *xt,
694 unsigned long flags)
695{
696 struct sirfsoc_dma *sdma = dma_chan_to_sirfsoc_dma(chan);
697 struct sirfsoc_dma_chan *schan = dma_chan_to_sirfsoc_dma_chan(chan);
698 struct sirfsoc_dma_desc *sdesc = NULL;
699 unsigned long iflags;
700 int ret;
701
Barry Song5997e082012-09-27 16:35:38 +0800702 if ((xt->dir != DMA_MEM_TO_DEV) && (xt->dir != DMA_DEV_TO_MEM)) {
Rongjun Yingca21a142011-10-27 19:22:39 -0700703 ret = -EINVAL;
704 goto err_dir;
705 }
706
707 /* Get free descriptor */
708 spin_lock_irqsave(&schan->lock, iflags);
709 if (!list_empty(&schan->free)) {
710 sdesc = list_first_entry(&schan->free, struct sirfsoc_dma_desc,
711 node);
712 list_del(&sdesc->node);
713 }
714 spin_unlock_irqrestore(&schan->lock, iflags);
715
716 if (!sdesc) {
717 /* try to free completed descriptors */
718 sirfsoc_dma_process_completed(sdma);
719 ret = 0;
720 goto no_desc;
721 }
722
723 /* Place descriptor in prepared list */
724 spin_lock_irqsave(&schan->lock, iflags);
725
726 /*
727 * Number of chunks in a frame can only be 1 for prima2
728 * and ylen (number of frame - 1) must be at least 0
729 */
730 if ((xt->frame_size == 1) && (xt->numf > 0)) {
731 sdesc->cyclic = 0;
732 sdesc->xlen = xt->sgl[0].size / SIRFSOC_DMA_WORD_LEN;
733 sdesc->width = (xt->sgl[0].size + xt->sgl[0].icg) /
734 SIRFSOC_DMA_WORD_LEN;
735 sdesc->ylen = xt->numf - 1;
736 if (xt->dir == DMA_MEM_TO_DEV) {
737 sdesc->addr = xt->src_start;
738 sdesc->dir = 1;
739 } else {
740 sdesc->addr = xt->dst_start;
741 sdesc->dir = 0;
742 }
743
744 list_add_tail(&sdesc->node, &schan->prepared);
745 } else {
746 pr_err("sirfsoc DMA Invalid xfer\n");
747 ret = -EINVAL;
748 goto err_xfer;
749 }
750 spin_unlock_irqrestore(&schan->lock, iflags);
751
752 return &sdesc->desc;
753err_xfer:
754 spin_unlock_irqrestore(&schan->lock, iflags);
755no_desc:
756err_dir:
757 return ERR_PTR(ret);
758}
759
760static struct dma_async_tx_descriptor *
761sirfsoc_dma_prep_cyclic(struct dma_chan *chan, dma_addr_t addr,
762 size_t buf_len, size_t period_len,
Laurent Pinchart31c1e5a2014-08-01 12:20:10 +0200763 enum dma_transfer_direction direction, unsigned long flags)
Rongjun Yingca21a142011-10-27 19:22:39 -0700764{
765 struct sirfsoc_dma_chan *schan = dma_chan_to_sirfsoc_dma_chan(chan);
766 struct sirfsoc_dma_desc *sdesc = NULL;
767 unsigned long iflags;
768
769 /*
770 * we only support cycle transfer with 2 period
771 * If the X-length is set to 0, it would be the loop mode.
772 * The DMA address keeps increasing until reaching the end of a loop
773 * area whose size is defined by (DMA_WIDTH x (Y_LENGTH + 1)). Then
774 * the DMA address goes back to the beginning of this area.
775 * In loop mode, the DMA data region is divided into two parts, BUFA
776 * and BUFB. DMA controller generates interrupts twice in each loop:
777 * when the DMA address reaches the end of BUFA or the end of the
778 * BUFB
779 */
780 if (buf_len != 2 * period_len)
781 return ERR_PTR(-EINVAL);
782
783 /* Get free descriptor */
784 spin_lock_irqsave(&schan->lock, iflags);
785 if (!list_empty(&schan->free)) {
786 sdesc = list_first_entry(&schan->free, struct sirfsoc_dma_desc,
787 node);
788 list_del(&sdesc->node);
789 }
790 spin_unlock_irqrestore(&schan->lock, iflags);
791
792 if (!sdesc)
Jingoo Han696b4ff2013-08-06 19:37:56 +0900793 return NULL;
Rongjun Yingca21a142011-10-27 19:22:39 -0700794
795 /* Place descriptor in prepared list */
796 spin_lock_irqsave(&schan->lock, iflags);
797 sdesc->addr = addr;
798 sdesc->cyclic = 1;
799 sdesc->xlen = 0;
800 sdesc->ylen = buf_len / SIRFSOC_DMA_WORD_LEN - 1;
801 sdesc->width = 1;
802 list_add_tail(&sdesc->node, &schan->prepared);
803 spin_unlock_irqrestore(&schan->lock, iflags);
804
805 return &sdesc->desc;
806}
807
808/*
809 * The DMA controller consists of 16 independent DMA channels.
810 * Each channel is allocated to a different function
811 */
812bool sirfsoc_dma_filter_id(struct dma_chan *chan, void *chan_id)
813{
814 unsigned int ch_nr = (unsigned int) chan_id;
815
816 if (ch_nr == chan->chan_id +
817 chan->device->dev_id * SIRFSOC_DMA_CHANNELS)
818 return true;
819
820 return false;
821}
822EXPORT_SYMBOL(sirfsoc_dma_filter_id);
823
Rongjun Yingba07d812013-12-23 20:19:21 +0800824#define SIRFSOC_DMA_BUSWIDTHS \
825 (BIT(DMA_SLAVE_BUSWIDTH_UNDEFINED) | \
826 BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) | \
827 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) | \
828 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) | \
829 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES))
830
Barry Song2e041c92014-03-27 15:49:31 +0800831static struct dma_chan *of_dma_sirfsoc_xlate(struct of_phandle_args *dma_spec,
832 struct of_dma *ofdma)
833{
834 struct sirfsoc_dma *sdma = ofdma->of_dma_data;
835 unsigned int request = dma_spec->args[0];
836
Dan Carpenterf3817e72014-04-03 10:29:33 +0300837 if (request >= SIRFSOC_DMA_CHANNELS)
Barry Song2e041c92014-03-27 15:49:31 +0800838 return NULL;
839
840 return dma_get_slave_channel(&sdma->channels[request].chan);
841}
842
Bill Pemberton463a1f82012-11-19 13:22:55 -0500843static int sirfsoc_dma_probe(struct platform_device *op)
Rongjun Yingca21a142011-10-27 19:22:39 -0700844{
845 struct device_node *dn = op->dev.of_node;
846 struct device *dev = &op->dev;
847 struct dma_device *dma;
848 struct sirfsoc_dma *sdma;
849 struct sirfsoc_dma_chan *schan;
Hao Liu0a45dca2015-05-26 07:32:28 +0000850 struct sirfsoc_dmadata *data;
Rongjun Yingca21a142011-10-27 19:22:39 -0700851 struct resource res;
852 ulong regs_start, regs_size;
853 u32 id;
854 int ret, i;
855
856 sdma = devm_kzalloc(dev, sizeof(*sdma), GFP_KERNEL);
Peter Griffinaef94fe2016-06-07 18:38:41 +0100857 if (!sdma)
Rongjun Yingca21a142011-10-27 19:22:39 -0700858 return -ENOMEM;
Peter Griffinaef94fe2016-06-07 18:38:41 +0100859
Hao Liu0a45dca2015-05-26 07:32:28 +0000860 data = (struct sirfsoc_dmadata *)
861 (of_match_device(op->dev.driver->of_match_table,
862 &op->dev)->data);
863 sdma->exec_desc = data->exec;
864 sdma->type = data->type;
Barry Songf7d935d2012-11-01 22:54:43 +0800865
Rongjun Yingca21a142011-10-27 19:22:39 -0700866 if (of_property_read_u32(dn, "cell-index", &id)) {
867 dev_err(dev, "Fail to get DMAC index\n");
Julia Lawall94d39012012-08-04 10:35:30 +0200868 return -ENODEV;
Rongjun Yingca21a142011-10-27 19:22:39 -0700869 }
870
871 sdma->irq = irq_of_parse_and_map(dn, 0);
872 if (sdma->irq == NO_IRQ) {
873 dev_err(dev, "Error mapping IRQ!\n");
Julia Lawall94d39012012-08-04 10:35:30 +0200874 return -EINVAL;
Rongjun Yingca21a142011-10-27 19:22:39 -0700875 }
876
Barry Songa7e34062013-03-18 16:33:43 +0800877 sdma->clk = devm_clk_get(dev, NULL);
878 if (IS_ERR(sdma->clk)) {
879 dev_err(dev, "failed to get a clock.\n");
880 return PTR_ERR(sdma->clk);
881 }
882
Rongjun Yingca21a142011-10-27 19:22:39 -0700883 ret = of_address_to_resource(dn, 0, &res);
884 if (ret) {
885 dev_err(dev, "Error parsing memory region!\n");
Julia Lawall94d39012012-08-04 10:35:30 +0200886 goto irq_dispose;
Rongjun Yingca21a142011-10-27 19:22:39 -0700887 }
888
889 regs_start = res.start;
890 regs_size = resource_size(&res);
891
892 sdma->base = devm_ioremap(dev, regs_start, regs_size);
893 if (!sdma->base) {
894 dev_err(dev, "Error mapping memory region!\n");
895 ret = -ENOMEM;
896 goto irq_dispose;
897 }
898
Julia Lawall94d39012012-08-04 10:35:30 +0200899 ret = request_irq(sdma->irq, &sirfsoc_dma_irq, 0, DRV_NAME, sdma);
Rongjun Yingca21a142011-10-27 19:22:39 -0700900 if (ret) {
901 dev_err(dev, "Error requesting IRQ!\n");
902 ret = -EINVAL;
Julia Lawall94d39012012-08-04 10:35:30 +0200903 goto irq_dispose;
Rongjun Yingca21a142011-10-27 19:22:39 -0700904 }
905
906 dma = &sdma->dma;
907 dma->dev = dev;
Rongjun Yingca21a142011-10-27 19:22:39 -0700908
909 dma->device_alloc_chan_resources = sirfsoc_dma_alloc_chan_resources;
910 dma->device_free_chan_resources = sirfsoc_dma_free_chan_resources;
911 dma->device_issue_pending = sirfsoc_dma_issue_pending;
Maxime Riparded14a7c2014-11-17 14:42:34 +0100912 dma->device_config = sirfsoc_dma_slave_config;
913 dma->device_pause = sirfsoc_dma_pause_chan;
914 dma->device_resume = sirfsoc_dma_resume_chan;
915 dma->device_terminate_all = sirfsoc_dma_terminate_all;
Rongjun Yingca21a142011-10-27 19:22:39 -0700916 dma->device_tx_status = sirfsoc_dma_tx_status;
917 dma->device_prep_interleaved_dma = sirfsoc_dma_prep_interleaved;
918 dma->device_prep_dma_cyclic = sirfsoc_dma_prep_cyclic;
Maxime Ripard07ffa6b2014-11-17 14:42:51 +0100919 dma->src_addr_widths = SIRFSOC_DMA_BUSWIDTHS;
920 dma->dst_addr_widths = SIRFSOC_DMA_BUSWIDTHS;
921 dma->directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
Rongjun Yingca21a142011-10-27 19:22:39 -0700922
923 INIT_LIST_HEAD(&dma->channels);
924 dma_cap_set(DMA_SLAVE, dma->cap_mask);
925 dma_cap_set(DMA_CYCLIC, dma->cap_mask);
926 dma_cap_set(DMA_INTERLEAVE, dma->cap_mask);
927 dma_cap_set(DMA_PRIVATE, dma->cap_mask);
928
Maxime Ripard35202452014-10-16 11:01:02 +0200929 for (i = 0; i < SIRFSOC_DMA_CHANNELS; i++) {
Rongjun Yingca21a142011-10-27 19:22:39 -0700930 schan = &sdma->channels[i];
931
932 schan->chan.device = dma;
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +0000933 dma_cookie_init(&schan->chan);
Rongjun Yingca21a142011-10-27 19:22:39 -0700934
935 INIT_LIST_HEAD(&schan->free);
936 INIT_LIST_HEAD(&schan->prepared);
937 INIT_LIST_HEAD(&schan->queued);
938 INIT_LIST_HEAD(&schan->active);
939 INIT_LIST_HEAD(&schan->completed);
940
941 spin_lock_init(&schan->lock);
942 list_add_tail(&schan->chan.device_node, &dma->channels);
943 }
944
945 tasklet_init(&sdma->tasklet, sirfsoc_dma_tasklet, (unsigned long)sdma);
946
947 /* Register DMA engine */
948 dev_set_drvdata(dev, sdma);
Barry Song2a766892013-07-30 17:44:34 +0800949
Rongjun Yingca21a142011-10-27 19:22:39 -0700950 ret = dma_async_device_register(dma);
951 if (ret)
952 goto free_irq;
953
Barry Song2e041c92014-03-27 15:49:31 +0800954 /* Device-tree DMA controller registration */
955 ret = of_dma_controller_register(dn, of_dma_sirfsoc_xlate, sdma);
956 if (ret) {
957 dev_err(dev, "failed to register DMA controller\n");
958 goto unreg_dma_dev;
959 }
960
Barry Song2a766892013-07-30 17:44:34 +0800961 pm_runtime_enable(&op->dev);
Rongjun Yingca21a142011-10-27 19:22:39 -0700962 dev_info(dev, "initialized SIRFSOC DMAC driver\n");
963
964 return 0;
965
Barry Song2e041c92014-03-27 15:49:31 +0800966unreg_dma_dev:
967 dma_async_device_unregister(dma);
Rongjun Yingca21a142011-10-27 19:22:39 -0700968free_irq:
Julia Lawall94d39012012-08-04 10:35:30 +0200969 free_irq(sdma->irq, sdma);
Rongjun Yingca21a142011-10-27 19:22:39 -0700970irq_dispose:
971 irq_dispose_mapping(sdma->irq);
Rongjun Yingca21a142011-10-27 19:22:39 -0700972 return ret;
973}
974
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -0800975static int sirfsoc_dma_remove(struct platform_device *op)
Rongjun Yingca21a142011-10-27 19:22:39 -0700976{
977 struct device *dev = &op->dev;
978 struct sirfsoc_dma *sdma = dev_get_drvdata(dev);
979
Barry Song2e041c92014-03-27 15:49:31 +0800980 of_dma_controller_free(op->dev.of_node);
Rongjun Yingca21a142011-10-27 19:22:39 -0700981 dma_async_device_unregister(&sdma->dma);
Julia Lawall94d39012012-08-04 10:35:30 +0200982 free_irq(sdma->irq, sdma);
Rongjun Yingca21a142011-10-27 19:22:39 -0700983 irq_dispose_mapping(sdma->irq);
Barry Song2a766892013-07-30 17:44:34 +0800984 pm_runtime_disable(&op->dev);
985 if (!pm_runtime_status_suspended(&op->dev))
986 sirfsoc_dma_runtime_suspend(&op->dev);
987
Rongjun Yingca21a142011-10-27 19:22:39 -0700988 return 0;
989}
990
Arnd Bergmann6ff1cb82016-03-02 16:58:58 +0100991static int __maybe_unused sirfsoc_dma_runtime_suspend(struct device *dev)
Barry Song2a766892013-07-30 17:44:34 +0800992{
993 struct sirfsoc_dma *sdma = dev_get_drvdata(dev);
994
995 clk_disable_unprepare(sdma->clk);
996 return 0;
997}
998
Arnd Bergmann6ff1cb82016-03-02 16:58:58 +0100999static int __maybe_unused sirfsoc_dma_runtime_resume(struct device *dev)
Barry Song2a766892013-07-30 17:44:34 +08001000{
1001 struct sirfsoc_dma *sdma = dev_get_drvdata(dev);
1002 int ret;
1003
1004 ret = clk_prepare_enable(sdma->clk);
1005 if (ret < 0) {
1006 dev_err(dev, "clk_enable failed: %d\n", ret);
1007 return ret;
1008 }
1009 return 0;
1010}
1011
Arnd Bergmann6ff1cb82016-03-02 16:58:58 +01001012static int __maybe_unused sirfsoc_dma_pm_suspend(struct device *dev)
Barry Song2a766892013-07-30 17:44:34 +08001013{
1014 struct sirfsoc_dma *sdma = dev_get_drvdata(dev);
1015 struct sirfsoc_dma_regs *save = &sdma->regs_save;
1016 struct sirfsoc_dma_desc *sdesc;
1017 struct sirfsoc_dma_chan *schan;
1018 int ch;
1019 int ret;
Hao Liu0a45dca2015-05-26 07:32:28 +00001020 int count;
1021 u32 int_offset;
Barry Song2a766892013-07-30 17:44:34 +08001022
1023 /*
1024 * if we were runtime-suspended before, resume to enable clock
1025 * before accessing register
1026 */
1027 if (pm_runtime_status_suspended(dev)) {
1028 ret = sirfsoc_dma_runtime_resume(dev);
1029 if (ret < 0)
1030 return ret;
1031 }
1032
Hao Liu0a45dca2015-05-26 07:32:28 +00001033 if (sdma->type == SIRFSOC_DMA_VER_A7V2) {
1034 count = 1;
1035 int_offset = SIRFSOC_DMA_INT_EN_ATLAS7;
1036 } else {
1037 count = SIRFSOC_DMA_CHANNELS;
1038 int_offset = SIRFSOC_DMA_INT_EN;
1039 }
1040
Barry Song2a766892013-07-30 17:44:34 +08001041 /*
1042 * DMA controller will lose all registers while suspending
1043 * so we need to save registers for active channels
1044 */
Hao Liu0a45dca2015-05-26 07:32:28 +00001045 for (ch = 0; ch < count; ch++) {
Barry Song2a766892013-07-30 17:44:34 +08001046 schan = &sdma->channels[ch];
1047 if (list_empty(&schan->active))
1048 continue;
1049 sdesc = list_first_entry(&schan->active,
1050 struct sirfsoc_dma_desc,
1051 node);
1052 save->ctrl[ch] = readl_relaxed(sdma->base +
1053 ch * 0x10 + SIRFSOC_DMA_CH_CTRL);
1054 }
Hao Liu0a45dca2015-05-26 07:32:28 +00001055 save->interrupt_en = readl_relaxed(sdma->base + int_offset);
Barry Song2a766892013-07-30 17:44:34 +08001056
1057 /* Disable clock */
1058 sirfsoc_dma_runtime_suspend(dev);
1059
1060 return 0;
1061}
1062
Arnd Bergmann6ff1cb82016-03-02 16:58:58 +01001063static int __maybe_unused sirfsoc_dma_pm_resume(struct device *dev)
Barry Song2a766892013-07-30 17:44:34 +08001064{
1065 struct sirfsoc_dma *sdma = dev_get_drvdata(dev);
1066 struct sirfsoc_dma_regs *save = &sdma->regs_save;
1067 struct sirfsoc_dma_desc *sdesc;
1068 struct sirfsoc_dma_chan *schan;
1069 int ch;
1070 int ret;
Hao Liu0a45dca2015-05-26 07:32:28 +00001071 int count;
1072 u32 int_offset;
1073 u32 width_offset;
Barry Song2a766892013-07-30 17:44:34 +08001074
1075 /* Enable clock before accessing register */
1076 ret = sirfsoc_dma_runtime_resume(dev);
1077 if (ret < 0)
1078 return ret;
1079
Hao Liu0a45dca2015-05-26 07:32:28 +00001080 if (sdma->type == SIRFSOC_DMA_VER_A7V2) {
1081 count = 1;
1082 int_offset = SIRFSOC_DMA_INT_EN_ATLAS7;
1083 width_offset = SIRFSOC_DMA_WIDTH_ATLAS7;
1084 } else {
1085 count = SIRFSOC_DMA_CHANNELS;
1086 int_offset = SIRFSOC_DMA_INT_EN;
1087 width_offset = SIRFSOC_DMA_WIDTH_0;
1088 }
1089
1090 writel_relaxed(save->interrupt_en, sdma->base + int_offset);
1091 for (ch = 0; ch < count; ch++) {
Barry Song2a766892013-07-30 17:44:34 +08001092 schan = &sdma->channels[ch];
1093 if (list_empty(&schan->active))
1094 continue;
1095 sdesc = list_first_entry(&schan->active,
1096 struct sirfsoc_dma_desc,
1097 node);
1098 writel_relaxed(sdesc->width,
Hao Liu0a45dca2015-05-26 07:32:28 +00001099 sdma->base + width_offset + ch * 4);
Barry Song2a766892013-07-30 17:44:34 +08001100 writel_relaxed(sdesc->xlen,
1101 sdma->base + ch * 0x10 + SIRFSOC_DMA_CH_XLEN);
1102 writel_relaxed(sdesc->ylen,
1103 sdma->base + ch * 0x10 + SIRFSOC_DMA_CH_YLEN);
1104 writel_relaxed(save->ctrl[ch],
1105 sdma->base + ch * 0x10 + SIRFSOC_DMA_CH_CTRL);
Hao Liu0a45dca2015-05-26 07:32:28 +00001106 if (sdma->type == SIRFSOC_DMA_VER_A7V2) {
1107 writel_relaxed(sdesc->addr,
1108 sdma->base + SIRFSOC_DMA_CH_ADDR);
1109 } else {
1110 writel_relaxed(sdesc->addr >> 2,
1111 sdma->base + ch * 0x10 + SIRFSOC_DMA_CH_ADDR);
1112
1113 }
Barry Song2a766892013-07-30 17:44:34 +08001114 }
1115
1116 /* if we were runtime-suspended before, suspend again */
1117 if (pm_runtime_status_suspended(dev))
1118 sirfsoc_dma_runtime_suspend(dev);
1119
1120 return 0;
1121}
1122
1123static const struct dev_pm_ops sirfsoc_dma_pm_ops = {
1124 SET_RUNTIME_PM_OPS(sirfsoc_dma_runtime_suspend, sirfsoc_dma_runtime_resume, NULL)
1125 SET_SYSTEM_SLEEP_PM_OPS(sirfsoc_dma_pm_suspend, sirfsoc_dma_pm_resume)
1126};
1127
Hao Liu0a45dca2015-05-26 07:32:28 +00001128struct sirfsoc_dmadata sirfsoc_dmadata_a6 = {
1129 .exec = sirfsoc_dma_execute_hw_a6,
1130 .type = SIRFSOC_DMA_VER_A6,
1131};
1132
1133struct sirfsoc_dmadata sirfsoc_dmadata_a7v1 = {
1134 .exec = sirfsoc_dma_execute_hw_a7v1,
1135 .type = SIRFSOC_DMA_VER_A7V1,
1136};
1137
1138struct sirfsoc_dmadata sirfsoc_dmadata_a7v2 = {
1139 .exec = sirfsoc_dma_execute_hw_a7v2,
1140 .type = SIRFSOC_DMA_VER_A7V2,
1141};
1142
Fabian Frederick57c03422015-03-16 20:17:14 +01001143static const struct of_device_id sirfsoc_dma_match[] = {
Hao Liu0a45dca2015-05-26 07:32:28 +00001144 { .compatible = "sirf,prima2-dmac", .data = &sirfsoc_dmadata_a6,},
1145 { .compatible = "sirf,atlas7-dmac", .data = &sirfsoc_dmadata_a7v1,},
1146 { .compatible = "sirf,atlas7-dmac-v2", .data = &sirfsoc_dmadata_a7v2,},
Rongjun Yingca21a142011-10-27 19:22:39 -07001147 {},
1148};
Luis de Bethencourte0c26f22015-09-16 22:58:53 +02001149MODULE_DEVICE_TABLE(of, sirfsoc_dma_match);
Rongjun Yingca21a142011-10-27 19:22:39 -07001150
1151static struct platform_driver sirfsoc_dma_driver = {
1152 .probe = sirfsoc_dma_probe,
Bill Pembertona7d6e3e2012-11-19 13:20:04 -05001153 .remove = sirfsoc_dma_remove,
Rongjun Yingca21a142011-10-27 19:22:39 -07001154 .driver = {
1155 .name = DRV_NAME,
Barry Song2a766892013-07-30 17:44:34 +08001156 .pm = &sirfsoc_dma_pm_ops,
Rongjun Yingca21a142011-10-27 19:22:39 -07001157 .of_match_table = sirfsoc_dma_match,
1158 },
1159};
1160
Barry Song42361f22013-04-11 14:09:28 +08001161static __init int sirfsoc_dma_init(void)
1162{
1163 return platform_driver_register(&sirfsoc_dma_driver);
1164}
1165
1166static void __exit sirfsoc_dma_exit(void)
1167{
1168 platform_driver_unregister(&sirfsoc_dma_driver);
1169}
1170
1171subsys_initcall(sirfsoc_dma_init);
1172module_exit(sirfsoc_dma_exit);
Rongjun Yingca21a142011-10-27 19:22:39 -07001173
Hao Liu0a45dca2015-05-26 07:32:28 +00001174MODULE_AUTHOR("Rongjun Ying <rongjun.ying@csr.com>");
1175MODULE_AUTHOR("Barry Song <baohua.song@csr.com>");
Rongjun Yingca21a142011-10-27 19:22:39 -07001176MODULE_DESCRIPTION("SIRFSOC DMA control driver");
1177MODULE_LICENSE("GPL v2");