diff options
author | Dan Williams <dan.j.williams@intel.com> | 2009-09-08 17:32:24 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2009-09-08 17:32:24 -0400 |
commit | a348a7e6fdbcd2d5192a09719a479bb238fde727 (patch) | |
tree | 5ff94185f4e5a810777469d7fe7832a8ec2d3430 /drivers/dma | |
parent | 808347f6a31792079e345ec865e9cfcb6e8ae6b2 (diff) | |
parent | 28d0325ce6e0a52f53d8af687e6427fee59004d3 (diff) |
Merge commit 'v2.6.31-rc1' into dmaengine
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/Kconfig | 8 | ||||
-rw-r--r-- | drivers/dma/Makefile | 1 | ||||
-rw-r--r-- | drivers/dma/txx9dmac.c | 1358 | ||||
-rw-r--r-- | drivers/dma/txx9dmac.h | 307 |
4 files changed, 1674 insertions, 0 deletions
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index bc8fb41cd623..81e1020fb514 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig | |||
@@ -89,6 +89,14 @@ config MX3_IPU_IRQS | |||
89 | To avoid bloating the irq_desc[] array we allocate a sufficient | 89 | To avoid bloating the irq_desc[] array we allocate a sufficient |
90 | number of IRQ slots and map them dynamically to specific sources. | 90 | number of IRQ slots and map them dynamically to specific sources. |
91 | 91 | ||
92 | config TXX9_DMAC | ||
93 | tristate "Toshiba TXx9 SoC DMA support" | ||
94 | depends on MACH_TX49XX || MACH_TX39XX | ||
95 | select DMA_ENGINE | ||
96 | help | ||
97 | Support the TXx9 SoC internal DMA controller. This can be | ||
98 | integrated in chips such as the Toshiba TX4927/38/39. | ||
99 | |||
92 | config DMA_ENGINE | 100 | config DMA_ENGINE |
93 | bool | 101 | bool |
94 | 102 | ||
diff --git a/drivers/dma/Makefile b/drivers/dma/Makefile index d7bc5fd17d84..40e1e0083571 100644 --- a/drivers/dma/Makefile +++ b/drivers/dma/Makefile | |||
@@ -9,3 +9,4 @@ obj-$(CONFIG_MV_XOR) += mv_xor.o | |||
9 | obj-$(CONFIG_DW_DMAC) += dw_dmac.o | 9 | obj-$(CONFIG_DW_DMAC) += dw_dmac.o |
10 | obj-$(CONFIG_AT_HDMAC) += at_hdmac.o | 10 | obj-$(CONFIG_AT_HDMAC) += at_hdmac.o |
11 | obj-$(CONFIG_MX3_IPU) += ipu/ | 11 | obj-$(CONFIG_MX3_IPU) += ipu/ |
12 | obj-$(CONFIG_TXX9_DMAC) += txx9dmac.o | ||
diff --git a/drivers/dma/txx9dmac.c b/drivers/dma/txx9dmac.c new file mode 100644 index 000000000000..88dab52926f4 --- /dev/null +++ b/drivers/dma/txx9dmac.c | |||
@@ -0,0 +1,1358 @@ | |||
1 | /* | ||
2 | * Driver for the TXx9 SoC DMA Controller | ||
3 | * | ||
4 | * Copyright (C) 2009 Atsushi Nemoto | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #include <linux/dma-mapping.h> | ||
11 | #include <linux/init.h> | ||
12 | #include <linux/interrupt.h> | ||
13 | #include <linux/io.h> | ||
14 | #include <linux/module.h> | ||
15 | #include <linux/platform_device.h> | ||
16 | #include <linux/slab.h> | ||
17 | #include <linux/scatterlist.h> | ||
18 | #include "txx9dmac.h" | ||
19 | |||
20 | static struct txx9dmac_chan *to_txx9dmac_chan(struct dma_chan *chan) | ||
21 | { | ||
22 | return container_of(chan, struct txx9dmac_chan, chan); | ||
23 | } | ||
24 | |||
25 | static struct txx9dmac_cregs __iomem *__dma_regs(const struct txx9dmac_chan *dc) | ||
26 | { | ||
27 | return dc->ch_regs; | ||
28 | } | ||
29 | |||
30 | static struct txx9dmac_cregs32 __iomem *__dma_regs32( | ||
31 | const struct txx9dmac_chan *dc) | ||
32 | { | ||
33 | return dc->ch_regs; | ||
34 | } | ||
35 | |||
36 | #define channel64_readq(dc, name) \ | ||
37 | __raw_readq(&(__dma_regs(dc)->name)) | ||
38 | #define channel64_writeq(dc, name, val) \ | ||
39 | __raw_writeq((val), &(__dma_regs(dc)->name)) | ||
40 | #define channel64_readl(dc, name) \ | ||
41 | __raw_readl(&(__dma_regs(dc)->name)) | ||
42 | #define channel64_writel(dc, name, val) \ | ||
43 | __raw_writel((val), &(__dma_regs(dc)->name)) | ||
44 | |||
45 | #define channel32_readl(dc, name) \ | ||
46 | __raw_readl(&(__dma_regs32(dc)->name)) | ||
47 | #define channel32_writel(dc, name, val) \ | ||
48 | __raw_writel((val), &(__dma_regs32(dc)->name)) | ||
49 | |||
50 | #define channel_readq(dc, name) channel64_readq(dc, name) | ||
51 | #define channel_writeq(dc, name, val) channel64_writeq(dc, name, val) | ||
52 | #define channel_readl(dc, name) \ | ||
53 | (is_dmac64(dc) ? \ | ||
54 | channel64_readl(dc, name) : channel32_readl(dc, name)) | ||
55 | #define channel_writel(dc, name, val) \ | ||
56 | (is_dmac64(dc) ? \ | ||
57 | channel64_writel(dc, name, val) : channel32_writel(dc, name, val)) | ||
58 | |||
59 | static dma_addr_t channel64_read_CHAR(const struct txx9dmac_chan *dc) | ||
60 | { | ||
61 | if (sizeof(__dma_regs(dc)->CHAR) == sizeof(u64)) | ||
62 | return channel64_readq(dc, CHAR); | ||
63 | else | ||
64 | return channel64_readl(dc, CHAR); | ||
65 | } | ||
66 | |||
67 | static void channel64_write_CHAR(const struct txx9dmac_chan *dc, dma_addr_t val) | ||
68 | { | ||
69 | if (sizeof(__dma_regs(dc)->CHAR) == sizeof(u64)) | ||
70 | channel64_writeq(dc, CHAR, val); | ||
71 | else | ||
72 | channel64_writel(dc, CHAR, val); | ||
73 | } | ||
74 | |||
75 | static void channel64_clear_CHAR(const struct txx9dmac_chan *dc) | ||
76 | { | ||
77 | #if defined(CONFIG_32BIT) && !defined(CONFIG_64BIT_PHYS_ADDR) | ||
78 | channel64_writel(dc, CHAR, 0); | ||
79 | channel64_writel(dc, __pad_CHAR, 0); | ||
80 | #else | ||
81 | channel64_writeq(dc, CHAR, 0); | ||
82 | #endif | ||
83 | } | ||
84 | |||
85 | static dma_addr_t channel_read_CHAR(const struct txx9dmac_chan *dc) | ||
86 | { | ||
87 | if (is_dmac64(dc)) | ||
88 | return channel64_read_CHAR(dc); | ||
89 | else | ||
90 | return channel32_readl(dc, CHAR); | ||
91 | } | ||
92 | |||
93 | static void channel_write_CHAR(const struct txx9dmac_chan *dc, dma_addr_t val) | ||
94 | { | ||
95 | if (is_dmac64(dc)) | ||
96 | channel64_write_CHAR(dc, val); | ||
97 | else | ||
98 | channel32_writel(dc, CHAR, val); | ||
99 | } | ||
100 | |||
101 | static struct txx9dmac_regs __iomem *__txx9dmac_regs( | ||
102 | const struct txx9dmac_dev *ddev) | ||
103 | { | ||
104 | return ddev->regs; | ||
105 | } | ||
106 | |||
107 | static struct txx9dmac_regs32 __iomem *__txx9dmac_regs32( | ||
108 | const struct txx9dmac_dev *ddev) | ||
109 | { | ||
110 | return ddev->regs; | ||
111 | } | ||
112 | |||
113 | #define dma64_readl(ddev, name) \ | ||
114 | __raw_readl(&(__txx9dmac_regs(ddev)->name)) | ||
115 | #define dma64_writel(ddev, name, val) \ | ||
116 | __raw_writel((val), &(__txx9dmac_regs(ddev)->name)) | ||
117 | |||
118 | #define dma32_readl(ddev, name) \ | ||
119 | __raw_readl(&(__txx9dmac_regs32(ddev)->name)) | ||
120 | #define dma32_writel(ddev, name, val) \ | ||
121 | __raw_writel((val), &(__txx9dmac_regs32(ddev)->name)) | ||
122 | |||
123 | #define dma_readl(ddev, name) \ | ||
124 | (__is_dmac64(ddev) ? \ | ||
125 | dma64_readl(ddev, name) : dma32_readl(ddev, name)) | ||
126 | #define dma_writel(ddev, name, val) \ | ||
127 | (__is_dmac64(ddev) ? \ | ||
128 | dma64_writel(ddev, name, val) : dma32_writel(ddev, name, val)) | ||
129 | |||
130 | static struct device *chan2dev(struct dma_chan *chan) | ||
131 | { | ||
132 | return &chan->dev->device; | ||
133 | } | ||
134 | static struct device *chan2parent(struct dma_chan *chan) | ||
135 | { | ||
136 | return chan->dev->device.parent; | ||
137 | } | ||
138 | |||
139 | static struct txx9dmac_desc * | ||
140 | txd_to_txx9dmac_desc(struct dma_async_tx_descriptor *txd) | ||
141 | { | ||
142 | return container_of(txd, struct txx9dmac_desc, txd); | ||
143 | } | ||
144 | |||
145 | static dma_addr_t desc_read_CHAR(const struct txx9dmac_chan *dc, | ||
146 | const struct txx9dmac_desc *desc) | ||
147 | { | ||
148 | return is_dmac64(dc) ? desc->hwdesc.CHAR : desc->hwdesc32.CHAR; | ||
149 | } | ||
150 | |||
151 | static void desc_write_CHAR(const struct txx9dmac_chan *dc, | ||
152 | struct txx9dmac_desc *desc, dma_addr_t val) | ||
153 | { | ||
154 | if (is_dmac64(dc)) | ||
155 | desc->hwdesc.CHAR = val; | ||
156 | else | ||
157 | desc->hwdesc32.CHAR = val; | ||
158 | } | ||
159 | |||
160 | #define TXX9_DMA_MAX_COUNT 0x04000000 | ||
161 | |||
162 | #define TXX9_DMA_INITIAL_DESC_COUNT 64 | ||
163 | |||
164 | static struct txx9dmac_desc *txx9dmac_first_active(struct txx9dmac_chan *dc) | ||
165 | { | ||
166 | return list_entry(dc->active_list.next, | ||
167 | struct txx9dmac_desc, desc_node); | ||
168 | } | ||
169 | |||
170 | static struct txx9dmac_desc *txx9dmac_last_active(struct txx9dmac_chan *dc) | ||
171 | { | ||
172 | return list_entry(dc->active_list.prev, | ||
173 | struct txx9dmac_desc, desc_node); | ||
174 | } | ||
175 | |||
176 | static struct txx9dmac_desc *txx9dmac_first_queued(struct txx9dmac_chan *dc) | ||
177 | { | ||
178 | return list_entry(dc->queue.next, struct txx9dmac_desc, desc_node); | ||
179 | } | ||
180 | |||
181 | static struct txx9dmac_desc *txx9dmac_last_child(struct txx9dmac_desc *desc) | ||
182 | { | ||
183 | if (!list_empty(&desc->txd.tx_list)) | ||
184 | desc = list_entry(desc->txd.tx_list.prev, | ||
185 | struct txx9dmac_desc, desc_node); | ||
186 | return desc; | ||
187 | } | ||
188 | |||
189 | static dma_cookie_t txx9dmac_tx_submit(struct dma_async_tx_descriptor *tx); | ||
190 | |||
191 | static struct txx9dmac_desc *txx9dmac_desc_alloc(struct txx9dmac_chan *dc, | ||
192 | gfp_t flags) | ||
193 | { | ||
194 | struct txx9dmac_dev *ddev = dc->ddev; | ||
195 | struct txx9dmac_desc *desc; | ||
196 | |||
197 | desc = kzalloc(sizeof(*desc), flags); | ||
198 | if (!desc) | ||
199 | return NULL; | ||
200 | dma_async_tx_descriptor_init(&desc->txd, &dc->chan); | ||
201 | desc->txd.tx_submit = txx9dmac_tx_submit; | ||
202 | /* txd.flags will be overwritten in prep funcs */ | ||
203 | desc->txd.flags = DMA_CTRL_ACK; | ||
204 | desc->txd.phys = dma_map_single(chan2parent(&dc->chan), &desc->hwdesc, | ||
205 | ddev->descsize, DMA_TO_DEVICE); | ||
206 | return desc; | ||
207 | } | ||
208 | |||
209 | static struct txx9dmac_desc *txx9dmac_desc_get(struct txx9dmac_chan *dc) | ||
210 | { | ||
211 | struct txx9dmac_desc *desc, *_desc; | ||
212 | struct txx9dmac_desc *ret = NULL; | ||
213 | unsigned int i = 0; | ||
214 | |||
215 | spin_lock_bh(&dc->lock); | ||
216 | list_for_each_entry_safe(desc, _desc, &dc->free_list, desc_node) { | ||
217 | if (async_tx_test_ack(&desc->txd)) { | ||
218 | list_del(&desc->desc_node); | ||
219 | ret = desc; | ||
220 | break; | ||
221 | } | ||
222 | dev_dbg(chan2dev(&dc->chan), "desc %p not ACKed\n", desc); | ||
223 | i++; | ||
224 | } | ||
225 | spin_unlock_bh(&dc->lock); | ||
226 | |||
227 | dev_vdbg(chan2dev(&dc->chan), "scanned %u descriptors on freelist\n", | ||
228 | i); | ||
229 | if (!ret) { | ||
230 | ret = txx9dmac_desc_alloc(dc, GFP_ATOMIC); | ||
231 | if (ret) { | ||
232 | spin_lock_bh(&dc->lock); | ||
233 | dc->descs_allocated++; | ||
234 | spin_unlock_bh(&dc->lock); | ||
235 | } else | ||
236 | dev_err(chan2dev(&dc->chan), | ||
237 | "not enough descriptors available\n"); | ||
238 | } | ||
239 | return ret; | ||
240 | } | ||
241 | |||
242 | static void txx9dmac_sync_desc_for_cpu(struct txx9dmac_chan *dc, | ||
243 | struct txx9dmac_desc *desc) | ||
244 | { | ||
245 | struct txx9dmac_dev *ddev = dc->ddev; | ||
246 | struct txx9dmac_desc *child; | ||
247 | |||
248 | list_for_each_entry(child, &desc->txd.tx_list, desc_node) | ||
249 | dma_sync_single_for_cpu(chan2parent(&dc->chan), | ||
250 | child->txd.phys, ddev->descsize, | ||
251 | DMA_TO_DEVICE); | ||
252 | dma_sync_single_for_cpu(chan2parent(&dc->chan), | ||
253 | desc->txd.phys, ddev->descsize, | ||
254 | DMA_TO_DEVICE); | ||
255 | } | ||
256 | |||
257 | /* | ||
258 | * Move a descriptor, including any children, to the free list. | ||
259 | * `desc' must not be on any lists. | ||
260 | */ | ||
261 | static void txx9dmac_desc_put(struct txx9dmac_chan *dc, | ||
262 | struct txx9dmac_desc *desc) | ||
263 | { | ||
264 | if (desc) { | ||
265 | struct txx9dmac_desc *child; | ||
266 | |||
267 | txx9dmac_sync_desc_for_cpu(dc, desc); | ||
268 | |||
269 | spin_lock_bh(&dc->lock); | ||
270 | list_for_each_entry(child, &desc->txd.tx_list, desc_node) | ||
271 | dev_vdbg(chan2dev(&dc->chan), | ||
272 | "moving child desc %p to freelist\n", | ||
273 | child); | ||
274 | list_splice_init(&desc->txd.tx_list, &dc->free_list); | ||
275 | dev_vdbg(chan2dev(&dc->chan), "moving desc %p to freelist\n", | ||
276 | desc); | ||
277 | list_add(&desc->desc_node, &dc->free_list); | ||
278 | spin_unlock_bh(&dc->lock); | ||
279 | } | ||
280 | } | ||
281 | |||
282 | /* Called with dc->lock held and bh disabled */ | ||
283 | static dma_cookie_t | ||
284 | txx9dmac_assign_cookie(struct txx9dmac_chan *dc, struct txx9dmac_desc *desc) | ||
285 | { | ||
286 | dma_cookie_t cookie = dc->chan.cookie; | ||
287 | |||
288 | if (++cookie < 0) | ||
289 | cookie = 1; | ||
290 | |||
291 | dc->chan.cookie = cookie; | ||
292 | desc->txd.cookie = cookie; | ||
293 | |||
294 | return cookie; | ||
295 | } | ||
296 | |||
297 | /*----------------------------------------------------------------------*/ | ||
298 | |||
299 | static void txx9dmac_dump_regs(struct txx9dmac_chan *dc) | ||
300 | { | ||
301 | if (is_dmac64(dc)) | ||
302 | dev_err(chan2dev(&dc->chan), | ||
303 | " CHAR: %#llx SAR: %#llx DAR: %#llx CNTR: %#x" | ||
304 | " SAIR: %#x DAIR: %#x CCR: %#x CSR: %#x\n", | ||
305 | (u64)channel64_read_CHAR(dc), | ||
306 | channel64_readq(dc, SAR), | ||
307 | channel64_readq(dc, DAR), | ||
308 | channel64_readl(dc, CNTR), | ||
309 | channel64_readl(dc, SAIR), | ||
310 | channel64_readl(dc, DAIR), | ||
311 | channel64_readl(dc, CCR), | ||
312 | channel64_readl(dc, CSR)); | ||
313 | else | ||
314 | dev_err(chan2dev(&dc->chan), | ||
315 | " CHAR: %#x SAR: %#x DAR: %#x CNTR: %#x" | ||
316 | " SAIR: %#x DAIR: %#x CCR: %#x CSR: %#x\n", | ||
317 | channel32_readl(dc, CHAR), | ||
318 | channel32_readl(dc, SAR), | ||
319 | channel32_readl(dc, DAR), | ||
320 | channel32_readl(dc, CNTR), | ||
321 | channel32_readl(dc, SAIR), | ||
322 | channel32_readl(dc, DAIR), | ||
323 | channel32_readl(dc, CCR), | ||
324 | channel32_readl(dc, CSR)); | ||
325 | } | ||
326 | |||
327 | static void txx9dmac_reset_chan(struct txx9dmac_chan *dc) | ||
328 | { | ||
329 | channel_writel(dc, CCR, TXX9_DMA_CCR_CHRST); | ||
330 | if (is_dmac64(dc)) { | ||
331 | channel64_clear_CHAR(dc); | ||
332 | channel_writeq(dc, SAR, 0); | ||
333 | channel_writeq(dc, DAR, 0); | ||
334 | } else { | ||
335 | channel_writel(dc, CHAR, 0); | ||
336 | channel_writel(dc, SAR, 0); | ||
337 | channel_writel(dc, DAR, 0); | ||
338 | } | ||
339 | channel_writel(dc, CNTR, 0); | ||
340 | channel_writel(dc, SAIR, 0); | ||
341 | channel_writel(dc, DAIR, 0); | ||
342 | channel_writel(dc, CCR, 0); | ||
343 | mmiowb(); | ||
344 | } | ||
345 | |||
346 | /* Called with dc->lock held and bh disabled */ | ||
347 | static void txx9dmac_dostart(struct txx9dmac_chan *dc, | ||
348 | struct txx9dmac_desc *first) | ||
349 | { | ||
350 | struct txx9dmac_slave *ds = dc->chan.private; | ||
351 | u32 sai, dai; | ||
352 | |||
353 | dev_vdbg(chan2dev(&dc->chan), "dostart %u %p\n", | ||
354 | first->txd.cookie, first); | ||
355 | /* ASSERT: channel is idle */ | ||
356 | if (channel_readl(dc, CSR) & TXX9_DMA_CSR_XFACT) { | ||
357 | dev_err(chan2dev(&dc->chan), | ||
358 | "BUG: Attempted to start non-idle channel\n"); | ||
359 | txx9dmac_dump_regs(dc); | ||
360 | /* The tasklet will hopefully advance the queue... */ | ||
361 | return; | ||
362 | } | ||
363 | |||
364 | if (is_dmac64(dc)) { | ||
365 | channel64_writel(dc, CNTR, 0); | ||
366 | channel64_writel(dc, CSR, 0xffffffff); | ||
367 | if (ds) { | ||
368 | if (ds->tx_reg) { | ||
369 | sai = ds->reg_width; | ||
370 | dai = 0; | ||
371 | } else { | ||
372 | sai = 0; | ||
373 | dai = ds->reg_width; | ||
374 | } | ||
375 | } else { | ||
376 | sai = 8; | ||
377 | dai = 8; | ||
378 | } | ||
379 | channel64_writel(dc, SAIR, sai); | ||
380 | channel64_writel(dc, DAIR, dai); | ||
381 | /* All 64-bit DMAC supports SMPCHN */ | ||
382 | channel64_writel(dc, CCR, dc->ccr); | ||
383 | /* Writing a non zero value to CHAR will assert XFACT */ | ||
384 | channel64_write_CHAR(dc, first->txd.phys); | ||
385 | } else { | ||
386 | channel32_writel(dc, CNTR, 0); | ||
387 | channel32_writel(dc, CSR, 0xffffffff); | ||
388 | if (ds) { | ||
389 | if (ds->tx_reg) { | ||
390 | sai = ds->reg_width; | ||
391 | dai = 0; | ||
392 | } else { | ||
393 | sai = 0; | ||
394 | dai = ds->reg_width; | ||
395 | } | ||
396 | } else { | ||
397 | sai = 4; | ||
398 | dai = 4; | ||
399 | } | ||
400 | channel32_writel(dc, SAIR, sai); | ||
401 | channel32_writel(dc, DAIR, dai); | ||
402 | if (txx9_dma_have_SMPCHN()) { | ||
403 | channel32_writel(dc, CCR, dc->ccr); | ||
404 | /* Writing a non zero value to CHAR will assert XFACT */ | ||
405 | channel32_writel(dc, CHAR, first->txd.phys); | ||
406 | } else { | ||
407 | channel32_writel(dc, CHAR, first->txd.phys); | ||
408 | channel32_writel(dc, CCR, dc->ccr); | ||
409 | } | ||
410 | } | ||
411 | } | ||
412 | |||
413 | /*----------------------------------------------------------------------*/ | ||
414 | |||
415 | static void | ||
416 | txx9dmac_descriptor_complete(struct txx9dmac_chan *dc, | ||
417 | struct txx9dmac_desc *desc) | ||
418 | { | ||
419 | dma_async_tx_callback callback; | ||
420 | void *param; | ||
421 | struct dma_async_tx_descriptor *txd = &desc->txd; | ||
422 | struct txx9dmac_slave *ds = dc->chan.private; | ||
423 | |||
424 | dev_vdbg(chan2dev(&dc->chan), "descriptor %u %p complete\n", | ||
425 | txd->cookie, desc); | ||
426 | |||
427 | dc->completed = txd->cookie; | ||
428 | callback = txd->callback; | ||
429 | param = txd->callback_param; | ||
430 | |||
431 | txx9dmac_sync_desc_for_cpu(dc, desc); | ||
432 | list_splice_init(&txd->tx_list, &dc->free_list); | ||
433 | list_move(&desc->desc_node, &dc->free_list); | ||
434 | |||
435 | if (!ds) { | ||
436 | dma_addr_t dmaaddr; | ||
437 | if (!(txd->flags & DMA_COMPL_SKIP_DEST_UNMAP)) { | ||
438 | dmaaddr = is_dmac64(dc) ? | ||
439 | desc->hwdesc.DAR : desc->hwdesc32.DAR; | ||
440 | if (txd->flags & DMA_COMPL_DEST_UNMAP_SINGLE) | ||
441 | dma_unmap_single(chan2parent(&dc->chan), | ||
442 | dmaaddr, desc->len, DMA_FROM_DEVICE); | ||
443 | else | ||
444 | dma_unmap_page(chan2parent(&dc->chan), | ||
445 | dmaaddr, desc->len, DMA_FROM_DEVICE); | ||
446 | } | ||
447 | if (!(txd->flags & DMA_COMPL_SKIP_SRC_UNMAP)) { | ||
448 | dmaaddr = is_dmac64(dc) ? | ||
449 | desc->hwdesc.SAR : desc->hwdesc32.SAR; | ||
450 | if (txd->flags & DMA_COMPL_SRC_UNMAP_SINGLE) | ||
451 | dma_unmap_single(chan2parent(&dc->chan), | ||
452 | dmaaddr, desc->len, DMA_TO_DEVICE); | ||
453 | else | ||
454 | dma_unmap_page(chan2parent(&dc->chan), | ||
455 | dmaaddr, desc->len, DMA_TO_DEVICE); | ||
456 | } | ||
457 | } | ||
458 | |||
459 | /* | ||
460 | * The API requires that no submissions are done from a | ||
461 | * callback, so we don't need to drop the lock here | ||
462 | */ | ||
463 | if (callback) | ||
464 | callback(param); | ||
465 | dma_run_dependencies(txd); | ||
466 | } | ||
467 | |||
468 | static void txx9dmac_dequeue(struct txx9dmac_chan *dc, struct list_head *list) | ||
469 | { | ||
470 | struct txx9dmac_dev *ddev = dc->ddev; | ||
471 | struct txx9dmac_desc *desc; | ||
472 | struct txx9dmac_desc *prev = NULL; | ||
473 | |||
474 | BUG_ON(!list_empty(list)); | ||
475 | do { | ||
476 | desc = txx9dmac_first_queued(dc); | ||
477 | if (prev) { | ||
478 | desc_write_CHAR(dc, prev, desc->txd.phys); | ||
479 | dma_sync_single_for_device(chan2parent(&dc->chan), | ||
480 | prev->txd.phys, ddev->descsize, | ||
481 | DMA_TO_DEVICE); | ||
482 | } | ||
483 | prev = txx9dmac_last_child(desc); | ||
484 | list_move_tail(&desc->desc_node, list); | ||
485 | /* Make chain-completion interrupt happen */ | ||
486 | if ((desc->txd.flags & DMA_PREP_INTERRUPT) && | ||
487 | !txx9dmac_chan_INTENT(dc)) | ||
488 | break; | ||
489 | } while (!list_empty(&dc->queue)); | ||
490 | } | ||
491 | |||
492 | static void txx9dmac_complete_all(struct txx9dmac_chan *dc) | ||
493 | { | ||
494 | struct txx9dmac_desc *desc, *_desc; | ||
495 | LIST_HEAD(list); | ||
496 | |||
497 | /* | ||
498 | * Submit queued descriptors ASAP, i.e. before we go through | ||
499 | * the completed ones. | ||
500 | */ | ||
501 | list_splice_init(&dc->active_list, &list); | ||
502 | if (!list_empty(&dc->queue)) { | ||
503 | txx9dmac_dequeue(dc, &dc->active_list); | ||
504 | txx9dmac_dostart(dc, txx9dmac_first_active(dc)); | ||
505 | } | ||
506 | |||
507 | list_for_each_entry_safe(desc, _desc, &list, desc_node) | ||
508 | txx9dmac_descriptor_complete(dc, desc); | ||
509 | } | ||
510 | |||
511 | static void txx9dmac_dump_desc(struct txx9dmac_chan *dc, | ||
512 | struct txx9dmac_hwdesc *desc) | ||
513 | { | ||
514 | if (is_dmac64(dc)) { | ||
515 | #ifdef TXX9_DMA_USE_SIMPLE_CHAIN | ||
516 | dev_crit(chan2dev(&dc->chan), | ||
517 | " desc: ch%#llx s%#llx d%#llx c%#x\n", | ||
518 | (u64)desc->CHAR, desc->SAR, desc->DAR, desc->CNTR); | ||
519 | #else | ||
520 | dev_crit(chan2dev(&dc->chan), | ||
521 | " desc: ch%#llx s%#llx d%#llx c%#x" | ||
522 | " si%#x di%#x cc%#x cs%#x\n", | ||
523 | (u64)desc->CHAR, desc->SAR, desc->DAR, desc->CNTR, | ||
524 | desc->SAIR, desc->DAIR, desc->CCR, desc->CSR); | ||
525 | #endif | ||
526 | } else { | ||
527 | struct txx9dmac_hwdesc32 *d = (struct txx9dmac_hwdesc32 *)desc; | ||
528 | #ifdef TXX9_DMA_USE_SIMPLE_CHAIN | ||
529 | dev_crit(chan2dev(&dc->chan), | ||
530 | " desc: ch%#x s%#x d%#x c%#x\n", | ||
531 | d->CHAR, d->SAR, d->DAR, d->CNTR); | ||
532 | #else | ||
533 | dev_crit(chan2dev(&dc->chan), | ||
534 | " desc: ch%#x s%#x d%#x c%#x" | ||
535 | " si%#x di%#x cc%#x cs%#x\n", | ||
536 | d->CHAR, d->SAR, d->DAR, d->CNTR, | ||
537 | d->SAIR, d->DAIR, d->CCR, d->CSR); | ||
538 | #endif | ||
539 | } | ||
540 | } | ||
541 | |||
542 | static void txx9dmac_handle_error(struct txx9dmac_chan *dc, u32 csr) | ||
543 | { | ||
544 | struct txx9dmac_desc *bad_desc; | ||
545 | struct txx9dmac_desc *child; | ||
546 | u32 errors; | ||
547 | |||
548 | /* | ||
549 | * The descriptor currently at the head of the active list is | ||
550 | * borked. Since we don't have any way to report errors, we'll | ||
551 | * just have to scream loudly and try to carry on. | ||
552 | */ | ||
553 | dev_crit(chan2dev(&dc->chan), "Abnormal Chain Completion\n"); | ||
554 | txx9dmac_dump_regs(dc); | ||
555 | |||
556 | bad_desc = txx9dmac_first_active(dc); | ||
557 | list_del_init(&bad_desc->desc_node); | ||
558 | |||
559 | /* Clear all error flags and try to restart the controller */ | ||
560 | errors = csr & (TXX9_DMA_CSR_ABCHC | | ||
561 | TXX9_DMA_CSR_CFERR | TXX9_DMA_CSR_CHERR | | ||
562 | TXX9_DMA_CSR_DESERR | TXX9_DMA_CSR_SORERR); | ||
563 | channel_writel(dc, CSR, errors); | ||
564 | |||
565 | if (list_empty(&dc->active_list) && !list_empty(&dc->queue)) | ||
566 | txx9dmac_dequeue(dc, &dc->active_list); | ||
567 | if (!list_empty(&dc->active_list)) | ||
568 | txx9dmac_dostart(dc, txx9dmac_first_active(dc)); | ||
569 | |||
570 | dev_crit(chan2dev(&dc->chan), | ||
571 | "Bad descriptor submitted for DMA! (cookie: %d)\n", | ||
572 | bad_desc->txd.cookie); | ||
573 | txx9dmac_dump_desc(dc, &bad_desc->hwdesc); | ||
574 | list_for_each_entry(child, &bad_desc->txd.tx_list, desc_node) | ||
575 | txx9dmac_dump_desc(dc, &child->hwdesc); | ||
576 | /* Pretend the descriptor completed successfully */ | ||
577 | txx9dmac_descriptor_complete(dc, bad_desc); | ||
578 | } | ||
579 | |||
580 | static void txx9dmac_scan_descriptors(struct txx9dmac_chan *dc) | ||
581 | { | ||
582 | dma_addr_t chain; | ||
583 | struct txx9dmac_desc *desc, *_desc; | ||
584 | struct txx9dmac_desc *child; | ||
585 | u32 csr; | ||
586 | |||
587 | if (is_dmac64(dc)) { | ||
588 | chain = channel64_read_CHAR(dc); | ||
589 | csr = channel64_readl(dc, CSR); | ||
590 | channel64_writel(dc, CSR, csr); | ||
591 | } else { | ||
592 | chain = channel32_readl(dc, CHAR); | ||
593 | csr = channel32_readl(dc, CSR); | ||
594 | channel32_writel(dc, CSR, csr); | ||
595 | } | ||
596 | /* For dynamic chain, we should look at XFACT instead of NCHNC */ | ||
597 | if (!(csr & (TXX9_DMA_CSR_XFACT | TXX9_DMA_CSR_ABCHC))) { | ||
598 | /* Everything we've submitted is done */ | ||
599 | txx9dmac_complete_all(dc); | ||
600 | return; | ||
601 | } | ||
602 | if (!(csr & TXX9_DMA_CSR_CHNEN)) | ||
603 | chain = 0; /* last descriptor of this chain */ | ||
604 | |||
605 | dev_vdbg(chan2dev(&dc->chan), "scan_descriptors: char=%#llx\n", | ||
606 | (u64)chain); | ||
607 | |||
608 | list_for_each_entry_safe(desc, _desc, &dc->active_list, desc_node) { | ||
609 | if (desc_read_CHAR(dc, desc) == chain) { | ||
610 | /* This one is currently in progress */ | ||
611 | if (csr & TXX9_DMA_CSR_ABCHC) | ||
612 | goto scan_done; | ||
613 | return; | ||
614 | } | ||
615 | |||
616 | list_for_each_entry(child, &desc->txd.tx_list, desc_node) | ||
617 | if (desc_read_CHAR(dc, child) == chain) { | ||
618 | /* Currently in progress */ | ||
619 | if (csr & TXX9_DMA_CSR_ABCHC) | ||
620 | goto scan_done; | ||
621 | return; | ||
622 | } | ||
623 | |||
624 | /* | ||
625 | * No descriptors so far seem to be in progress, i.e. | ||
626 | * this one must be done. | ||
627 | */ | ||
628 | txx9dmac_descriptor_complete(dc, desc); | ||
629 | } | ||
630 | scan_done: | ||
631 | if (csr & TXX9_DMA_CSR_ABCHC) { | ||
632 | txx9dmac_handle_error(dc, csr); | ||
633 | return; | ||
634 | } | ||
635 | |||
636 | dev_err(chan2dev(&dc->chan), | ||
637 | "BUG: All descriptors done, but channel not idle!\n"); | ||
638 | |||
639 | /* Try to continue after resetting the channel... */ | ||
640 | txx9dmac_reset_chan(dc); | ||
641 | |||
642 | if (!list_empty(&dc->queue)) { | ||
643 | txx9dmac_dequeue(dc, &dc->active_list); | ||
644 | txx9dmac_dostart(dc, txx9dmac_first_active(dc)); | ||
645 | } | ||
646 | } | ||
647 | |||
648 | static void txx9dmac_chan_tasklet(unsigned long data) | ||
649 | { | ||
650 | int irq; | ||
651 | u32 csr; | ||
652 | struct txx9dmac_chan *dc; | ||
653 | |||
654 | dc = (struct txx9dmac_chan *)data; | ||
655 | csr = channel_readl(dc, CSR); | ||
656 | dev_vdbg(chan2dev(&dc->chan), "tasklet: status=%x\n", csr); | ||
657 | |||
658 | spin_lock(&dc->lock); | ||
659 | if (csr & (TXX9_DMA_CSR_ABCHC | TXX9_DMA_CSR_NCHNC | | ||
660 | TXX9_DMA_CSR_NTRNFC)) | ||
661 | txx9dmac_scan_descriptors(dc); | ||
662 | spin_unlock(&dc->lock); | ||
663 | irq = dc->irq; | ||
664 | |||
665 | enable_irq(irq); | ||
666 | } | ||
667 | |||
668 | static irqreturn_t txx9dmac_chan_interrupt(int irq, void *dev_id) | ||
669 | { | ||
670 | struct txx9dmac_chan *dc = dev_id; | ||
671 | |||
672 | dev_vdbg(chan2dev(&dc->chan), "interrupt: status=%#x\n", | ||
673 | channel_readl(dc, CSR)); | ||
674 | |||
675 | tasklet_schedule(&dc->tasklet); | ||
676 | /* | ||
677 | * Just disable the interrupts. We'll turn them back on in the | ||
678 | * softirq handler. | ||
679 | */ | ||
680 | disable_irq_nosync(irq); | ||
681 | |||
682 | return IRQ_HANDLED; | ||
683 | } | ||
684 | |||
685 | static void txx9dmac_tasklet(unsigned long data) | ||
686 | { | ||
687 | int irq; | ||
688 | u32 csr; | ||
689 | struct txx9dmac_chan *dc; | ||
690 | |||
691 | struct txx9dmac_dev *ddev = (struct txx9dmac_dev *)data; | ||
692 | u32 mcr; | ||
693 | int i; | ||
694 | |||
695 | mcr = dma_readl(ddev, MCR); | ||
696 | dev_vdbg(ddev->chan[0]->dma.dev, "tasklet: mcr=%x\n", mcr); | ||
697 | for (i = 0; i < TXX9_DMA_MAX_NR_CHANNELS; i++) { | ||
698 | if ((mcr >> (24 + i)) & 0x11) { | ||
699 | dc = ddev->chan[i]; | ||
700 | csr = channel_readl(dc, CSR); | ||
701 | dev_vdbg(chan2dev(&dc->chan), "tasklet: status=%x\n", | ||
702 | csr); | ||
703 | spin_lock(&dc->lock); | ||
704 | if (csr & (TXX9_DMA_CSR_ABCHC | TXX9_DMA_CSR_NCHNC | | ||
705 | TXX9_DMA_CSR_NTRNFC)) | ||
706 | txx9dmac_scan_descriptors(dc); | ||
707 | spin_unlock(&dc->lock); | ||
708 | } | ||
709 | } | ||
710 | irq = ddev->irq; | ||
711 | |||
712 | enable_irq(irq); | ||
713 | } | ||
714 | |||
715 | static irqreturn_t txx9dmac_interrupt(int irq, void *dev_id) | ||
716 | { | ||
717 | struct txx9dmac_dev *ddev = dev_id; | ||
718 | |||
719 | dev_vdbg(ddev->chan[0]->dma.dev, "interrupt: status=%#x\n", | ||
720 | dma_readl(ddev, MCR)); | ||
721 | |||
722 | tasklet_schedule(&ddev->tasklet); | ||
723 | /* | ||
724 | * Just disable the interrupts. We'll turn them back on in the | ||
725 | * softirq handler. | ||
726 | */ | ||
727 | disable_irq_nosync(irq); | ||
728 | |||
729 | return IRQ_HANDLED; | ||
730 | } | ||
731 | |||
732 | /*----------------------------------------------------------------------*/ | ||
733 | |||
734 | static dma_cookie_t txx9dmac_tx_submit(struct dma_async_tx_descriptor *tx) | ||
735 | { | ||
736 | struct txx9dmac_desc *desc = txd_to_txx9dmac_desc(tx); | ||
737 | struct txx9dmac_chan *dc = to_txx9dmac_chan(tx->chan); | ||
738 | dma_cookie_t cookie; | ||
739 | |||
740 | spin_lock_bh(&dc->lock); | ||
741 | cookie = txx9dmac_assign_cookie(dc, desc); | ||
742 | |||
743 | dev_vdbg(chan2dev(tx->chan), "tx_submit: queued %u %p\n", | ||
744 | desc->txd.cookie, desc); | ||
745 | |||
746 | list_add_tail(&desc->desc_node, &dc->queue); | ||
747 | spin_unlock_bh(&dc->lock); | ||
748 | |||
749 | return cookie; | ||
750 | } | ||
751 | |||
752 | static struct dma_async_tx_descriptor * | ||
753 | txx9dmac_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src, | ||
754 | size_t len, unsigned long flags) | ||
755 | { | ||
756 | struct txx9dmac_chan *dc = to_txx9dmac_chan(chan); | ||
757 | struct txx9dmac_dev *ddev = dc->ddev; | ||
758 | struct txx9dmac_desc *desc; | ||
759 | struct txx9dmac_desc *first; | ||
760 | struct txx9dmac_desc *prev; | ||
761 | size_t xfer_count; | ||
762 | size_t offset; | ||
763 | |||
764 | dev_vdbg(chan2dev(chan), "prep_dma_memcpy d%#llx s%#llx l%#zx f%#lx\n", | ||
765 | (u64)dest, (u64)src, len, flags); | ||
766 | |||
767 | if (unlikely(!len)) { | ||
768 | dev_dbg(chan2dev(chan), "prep_dma_memcpy: length is zero!\n"); | ||
769 | return NULL; | ||
770 | } | ||
771 | |||
772 | prev = first = NULL; | ||
773 | |||
774 | for (offset = 0; offset < len; offset += xfer_count) { | ||
775 | xfer_count = min_t(size_t, len - offset, TXX9_DMA_MAX_COUNT); | ||
776 | /* | ||
777 | * Workaround for ERT-TX49H2-033, ERT-TX49H3-020, | ||
778 | * ERT-TX49H4-016 (slightly conservative) | ||
779 | */ | ||
780 | if (__is_dmac64(ddev)) { | ||
781 | if (xfer_count > 0x100 && | ||
782 | (xfer_count & 0xff) >= 0xfa && | ||
783 | (xfer_count & 0xff) <= 0xff) | ||
784 | xfer_count -= 0x20; | ||
785 | } else { | ||
786 | if (xfer_count > 0x80 && | ||
787 | (xfer_count & 0x7f) >= 0x7e && | ||
788 | (xfer_count & 0x7f) <= 0x7f) | ||
789 | xfer_count -= 0x20; | ||
790 | } | ||
791 | |||
792 | desc = txx9dmac_desc_get(dc); | ||
793 | if (!desc) { | ||
794 | txx9dmac_desc_put(dc, first); | ||
795 | return NULL; | ||
796 | } | ||
797 | |||
798 | if (__is_dmac64(ddev)) { | ||
799 | desc->hwdesc.SAR = src + offset; | ||
800 | desc->hwdesc.DAR = dest + offset; | ||
801 | desc->hwdesc.CNTR = xfer_count; | ||
802 | txx9dmac_desc_set_nosimple(ddev, desc, 8, 8, | ||
803 | dc->ccr | TXX9_DMA_CCR_XFACT); | ||
804 | } else { | ||
805 | desc->hwdesc32.SAR = src + offset; | ||
806 | desc->hwdesc32.DAR = dest + offset; | ||
807 | desc->hwdesc32.CNTR = xfer_count; | ||
808 | txx9dmac_desc_set_nosimple(ddev, desc, 4, 4, | ||
809 | dc->ccr | TXX9_DMA_CCR_XFACT); | ||
810 | } | ||
811 | |||
812 | /* | ||
813 | * The descriptors on tx_list are not reachable from | ||
814 | * the dc->queue list or dc->active_list after a | ||
815 | * submit. If we put all descriptors on active_list, | ||
816 | * calling of callback on the completion will be more | ||
817 | * complex. | ||
818 | */ | ||
819 | if (!first) { | ||
820 | first = desc; | ||
821 | } else { | ||
822 | desc_write_CHAR(dc, prev, desc->txd.phys); | ||
823 | dma_sync_single_for_device(chan2parent(&dc->chan), | ||
824 | prev->txd.phys, ddev->descsize, | ||
825 | DMA_TO_DEVICE); | ||
826 | list_add_tail(&desc->desc_node, | ||
827 | &first->txd.tx_list); | ||
828 | } | ||
829 | prev = desc; | ||
830 | } | ||
831 | |||
832 | /* Trigger interrupt after last block */ | ||
833 | if (flags & DMA_PREP_INTERRUPT) | ||
834 | txx9dmac_desc_set_INTENT(ddev, prev); | ||
835 | |||
836 | desc_write_CHAR(dc, prev, 0); | ||
837 | dma_sync_single_for_device(chan2parent(&dc->chan), | ||
838 | prev->txd.phys, ddev->descsize, | ||
839 | DMA_TO_DEVICE); | ||
840 | |||
841 | first->txd.flags = flags; | ||
842 | first->len = len; | ||
843 | |||
844 | return &first->txd; | ||
845 | } | ||
846 | |||
847 | static struct dma_async_tx_descriptor * | ||
848 | txx9dmac_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl, | ||
849 | unsigned int sg_len, enum dma_data_direction direction, | ||
850 | unsigned long flags) | ||
851 | { | ||
852 | struct txx9dmac_chan *dc = to_txx9dmac_chan(chan); | ||
853 | struct txx9dmac_dev *ddev = dc->ddev; | ||
854 | struct txx9dmac_slave *ds = chan->private; | ||
855 | struct txx9dmac_desc *prev; | ||
856 | struct txx9dmac_desc *first; | ||
857 | unsigned int i; | ||
858 | struct scatterlist *sg; | ||
859 | |||
860 | dev_vdbg(chan2dev(chan), "prep_dma_slave\n"); | ||
861 | |||
862 | BUG_ON(!ds || !ds->reg_width); | ||
863 | if (ds->tx_reg) | ||
864 | BUG_ON(direction != DMA_TO_DEVICE); | ||
865 | else | ||
866 | BUG_ON(direction != DMA_FROM_DEVICE); | ||
867 | if (unlikely(!sg_len)) | ||
868 | return NULL; | ||
869 | |||
870 | prev = first = NULL; | ||
871 | |||
872 | for_each_sg(sgl, sg, sg_len, i) { | ||
873 | struct txx9dmac_desc *desc; | ||
874 | dma_addr_t mem; | ||
875 | u32 sai, dai; | ||
876 | |||
877 | desc = txx9dmac_desc_get(dc); | ||
878 | if (!desc) { | ||
879 | txx9dmac_desc_put(dc, first); | ||
880 | return NULL; | ||
881 | } | ||
882 | |||
883 | mem = sg_dma_address(sg); | ||
884 | |||
885 | if (__is_dmac64(ddev)) { | ||
886 | if (direction == DMA_TO_DEVICE) { | ||
887 | desc->hwdesc.SAR = mem; | ||
888 | desc->hwdesc.DAR = ds->tx_reg; | ||
889 | } else { | ||
890 | desc->hwdesc.SAR = ds->rx_reg; | ||
891 | desc->hwdesc.DAR = mem; | ||
892 | } | ||
893 | desc->hwdesc.CNTR = sg_dma_len(sg); | ||
894 | } else { | ||
895 | if (direction == DMA_TO_DEVICE) { | ||
896 | desc->hwdesc32.SAR = mem; | ||
897 | desc->hwdesc32.DAR = ds->tx_reg; | ||
898 | } else { | ||
899 | desc->hwdesc32.SAR = ds->rx_reg; | ||
900 | desc->hwdesc32.DAR = mem; | ||
901 | } | ||
902 | desc->hwdesc32.CNTR = sg_dma_len(sg); | ||
903 | } | ||
904 | if (direction == DMA_TO_DEVICE) { | ||
905 | sai = ds->reg_width; | ||
906 | dai = 0; | ||
907 | } else { | ||
908 | sai = 0; | ||
909 | dai = ds->reg_width; | ||
910 | } | ||
911 | txx9dmac_desc_set_nosimple(ddev, desc, sai, dai, | ||
912 | dc->ccr | TXX9_DMA_CCR_XFACT); | ||
913 | |||
914 | if (!first) { | ||
915 | first = desc; | ||
916 | } else { | ||
917 | desc_write_CHAR(dc, prev, desc->txd.phys); | ||
918 | dma_sync_single_for_device(chan2parent(&dc->chan), | ||
919 | prev->txd.phys, | ||
920 | ddev->descsize, | ||
921 | DMA_TO_DEVICE); | ||
922 | list_add_tail(&desc->desc_node, | ||
923 | &first->txd.tx_list); | ||
924 | } | ||
925 | prev = desc; | ||
926 | } | ||
927 | |||
928 | /* Trigger interrupt after last block */ | ||
929 | if (flags & DMA_PREP_INTERRUPT) | ||
930 | txx9dmac_desc_set_INTENT(ddev, prev); | ||
931 | |||
932 | desc_write_CHAR(dc, prev, 0); | ||
933 | dma_sync_single_for_device(chan2parent(&dc->chan), | ||
934 | prev->txd.phys, ddev->descsize, | ||
935 | DMA_TO_DEVICE); | ||
936 | |||
937 | first->txd.flags = flags; | ||
938 | first->len = 0; | ||
939 | |||
940 | return &first->txd; | ||
941 | } | ||
942 | |||
943 | static void txx9dmac_terminate_all(struct dma_chan *chan) | ||
944 | { | ||
945 | struct txx9dmac_chan *dc = to_txx9dmac_chan(chan); | ||
946 | struct txx9dmac_desc *desc, *_desc; | ||
947 | LIST_HEAD(list); | ||
948 | |||
949 | dev_vdbg(chan2dev(chan), "terminate_all\n"); | ||
950 | spin_lock_bh(&dc->lock); | ||
951 | |||
952 | txx9dmac_reset_chan(dc); | ||
953 | |||
954 | /* active_list entries will end up before queued entries */ | ||
955 | list_splice_init(&dc->queue, &list); | ||
956 | list_splice_init(&dc->active_list, &list); | ||
957 | |||
958 | spin_unlock_bh(&dc->lock); | ||
959 | |||
960 | /* Flush all pending and queued descriptors */ | ||
961 | list_for_each_entry_safe(desc, _desc, &list, desc_node) | ||
962 | txx9dmac_descriptor_complete(dc, desc); | ||
963 | } | ||
964 | |||
965 | static enum dma_status | ||
966 | txx9dmac_is_tx_complete(struct dma_chan *chan, | ||
967 | dma_cookie_t cookie, | ||
968 | dma_cookie_t *done, dma_cookie_t *used) | ||
969 | { | ||
970 | struct txx9dmac_chan *dc = to_txx9dmac_chan(chan); | ||
971 | dma_cookie_t last_used; | ||
972 | dma_cookie_t last_complete; | ||
973 | int ret; | ||
974 | |||
975 | last_complete = dc->completed; | ||
976 | last_used = chan->cookie; | ||
977 | |||
978 | ret = dma_async_is_complete(cookie, last_complete, last_used); | ||
979 | if (ret != DMA_SUCCESS) { | ||
980 | spin_lock_bh(&dc->lock); | ||
981 | txx9dmac_scan_descriptors(dc); | ||
982 | spin_unlock_bh(&dc->lock); | ||
983 | |||
984 | last_complete = dc->completed; | ||
985 | last_used = chan->cookie; | ||
986 | |||
987 | ret = dma_async_is_complete(cookie, last_complete, last_used); | ||
988 | } | ||
989 | |||
990 | if (done) | ||
991 | *done = last_complete; | ||
992 | if (used) | ||
993 | *used = last_used; | ||
994 | |||
995 | return ret; | ||
996 | } | ||
997 | |||
998 | static void txx9dmac_chain_dynamic(struct txx9dmac_chan *dc, | ||
999 | struct txx9dmac_desc *prev) | ||
1000 | { | ||
1001 | struct txx9dmac_dev *ddev = dc->ddev; | ||
1002 | struct txx9dmac_desc *desc; | ||
1003 | LIST_HEAD(list); | ||
1004 | |||
1005 | prev = txx9dmac_last_child(prev); | ||
1006 | txx9dmac_dequeue(dc, &list); | ||
1007 | desc = list_entry(list.next, struct txx9dmac_desc, desc_node); | ||
1008 | desc_write_CHAR(dc, prev, desc->txd.phys); | ||
1009 | dma_sync_single_for_device(chan2parent(&dc->chan), | ||
1010 | prev->txd.phys, ddev->descsize, | ||
1011 | DMA_TO_DEVICE); | ||
1012 | mmiowb(); | ||
1013 | if (!(channel_readl(dc, CSR) & TXX9_DMA_CSR_CHNEN) && | ||
1014 | channel_read_CHAR(dc) == prev->txd.phys) | ||
1015 | /* Restart chain DMA */ | ||
1016 | channel_write_CHAR(dc, desc->txd.phys); | ||
1017 | list_splice_tail(&list, &dc->active_list); | ||
1018 | } | ||
1019 | |||
1020 | static void txx9dmac_issue_pending(struct dma_chan *chan) | ||
1021 | { | ||
1022 | struct txx9dmac_chan *dc = to_txx9dmac_chan(chan); | ||
1023 | |||
1024 | spin_lock_bh(&dc->lock); | ||
1025 | |||
1026 | if (!list_empty(&dc->active_list)) | ||
1027 | txx9dmac_scan_descriptors(dc); | ||
1028 | if (!list_empty(&dc->queue)) { | ||
1029 | if (list_empty(&dc->active_list)) { | ||
1030 | txx9dmac_dequeue(dc, &dc->active_list); | ||
1031 | txx9dmac_dostart(dc, txx9dmac_first_active(dc)); | ||
1032 | } else if (txx9_dma_have_SMPCHN()) { | ||
1033 | struct txx9dmac_desc *prev = txx9dmac_last_active(dc); | ||
1034 | |||
1035 | if (!(prev->txd.flags & DMA_PREP_INTERRUPT) || | ||
1036 | txx9dmac_chan_INTENT(dc)) | ||
1037 | txx9dmac_chain_dynamic(dc, prev); | ||
1038 | } | ||
1039 | } | ||
1040 | |||
1041 | spin_unlock_bh(&dc->lock); | ||
1042 | } | ||
1043 | |||
1044 | static int txx9dmac_alloc_chan_resources(struct dma_chan *chan) | ||
1045 | { | ||
1046 | struct txx9dmac_chan *dc = to_txx9dmac_chan(chan); | ||
1047 | struct txx9dmac_slave *ds = chan->private; | ||
1048 | struct txx9dmac_desc *desc; | ||
1049 | int i; | ||
1050 | |||
1051 | dev_vdbg(chan2dev(chan), "alloc_chan_resources\n"); | ||
1052 | |||
1053 | /* ASSERT: channel is idle */ | ||
1054 | if (channel_readl(dc, CSR) & TXX9_DMA_CSR_XFACT) { | ||
1055 | dev_dbg(chan2dev(chan), "DMA channel not idle?\n"); | ||
1056 | return -EIO; | ||
1057 | } | ||
1058 | |||
1059 | dc->completed = chan->cookie = 1; | ||
1060 | |||
1061 | dc->ccr = TXX9_DMA_CCR_IMMCHN | TXX9_DMA_CCR_INTENE | CCR_LE; | ||
1062 | txx9dmac_chan_set_SMPCHN(dc); | ||
1063 | if (!txx9_dma_have_SMPCHN() || (dc->ccr & TXX9_DMA_CCR_SMPCHN)) | ||
1064 | dc->ccr |= TXX9_DMA_CCR_INTENC; | ||
1065 | if (chan->device->device_prep_dma_memcpy) { | ||
1066 | if (ds) | ||
1067 | return -EINVAL; | ||
1068 | dc->ccr |= TXX9_DMA_CCR_XFSZ_X8; | ||
1069 | } else { | ||
1070 | if (!ds || | ||
1071 | (ds->tx_reg && ds->rx_reg) || (!ds->tx_reg && !ds->rx_reg)) | ||
1072 | return -EINVAL; | ||
1073 | dc->ccr |= TXX9_DMA_CCR_EXTRQ | | ||
1074 | TXX9_DMA_CCR_XFSZ(__ffs(ds->reg_width)); | ||
1075 | txx9dmac_chan_set_INTENT(dc); | ||
1076 | } | ||
1077 | |||
1078 | spin_lock_bh(&dc->lock); | ||
1079 | i = dc->descs_allocated; | ||
1080 | while (dc->descs_allocated < TXX9_DMA_INITIAL_DESC_COUNT) { | ||
1081 | spin_unlock_bh(&dc->lock); | ||
1082 | |||
1083 | desc = txx9dmac_desc_alloc(dc, GFP_KERNEL); | ||
1084 | if (!desc) { | ||
1085 | dev_info(chan2dev(chan), | ||
1086 | "only allocated %d descriptors\n", i); | ||
1087 | spin_lock_bh(&dc->lock); | ||
1088 | break; | ||
1089 | } | ||
1090 | txx9dmac_desc_put(dc, desc); | ||
1091 | |||
1092 | spin_lock_bh(&dc->lock); | ||
1093 | i = ++dc->descs_allocated; | ||
1094 | } | ||
1095 | spin_unlock_bh(&dc->lock); | ||
1096 | |||
1097 | dev_dbg(chan2dev(chan), | ||
1098 | "alloc_chan_resources allocated %d descriptors\n", i); | ||
1099 | |||
1100 | return i; | ||
1101 | } | ||
1102 | |||
1103 | static void txx9dmac_free_chan_resources(struct dma_chan *chan) | ||
1104 | { | ||
1105 | struct txx9dmac_chan *dc = to_txx9dmac_chan(chan); | ||
1106 | struct txx9dmac_dev *ddev = dc->ddev; | ||
1107 | struct txx9dmac_desc *desc, *_desc; | ||
1108 | LIST_HEAD(list); | ||
1109 | |||
1110 | dev_dbg(chan2dev(chan), "free_chan_resources (descs allocated=%u)\n", | ||
1111 | dc->descs_allocated); | ||
1112 | |||
1113 | /* ASSERT: channel is idle */ | ||
1114 | BUG_ON(!list_empty(&dc->active_list)); | ||
1115 | BUG_ON(!list_empty(&dc->queue)); | ||
1116 | BUG_ON(channel_readl(dc, CSR) & TXX9_DMA_CSR_XFACT); | ||
1117 | |||
1118 | spin_lock_bh(&dc->lock); | ||
1119 | list_splice_init(&dc->free_list, &list); | ||
1120 | dc->descs_allocated = 0; | ||
1121 | spin_unlock_bh(&dc->lock); | ||
1122 | |||
1123 | list_for_each_entry_safe(desc, _desc, &list, desc_node) { | ||
1124 | dev_vdbg(chan2dev(chan), " freeing descriptor %p\n", desc); | ||
1125 | dma_unmap_single(chan2parent(chan), desc->txd.phys, | ||
1126 | ddev->descsize, DMA_TO_DEVICE); | ||
1127 | kfree(desc); | ||
1128 | } | ||
1129 | |||
1130 | dev_vdbg(chan2dev(chan), "free_chan_resources done\n"); | ||
1131 | } | ||
1132 | |||
1133 | /*----------------------------------------------------------------------*/ | ||
1134 | |||
1135 | static void txx9dmac_off(struct txx9dmac_dev *ddev) | ||
1136 | { | ||
1137 | dma_writel(ddev, MCR, 0); | ||
1138 | mmiowb(); | ||
1139 | } | ||
1140 | |||
1141 | static int __init txx9dmac_chan_probe(struct platform_device *pdev) | ||
1142 | { | ||
1143 | struct txx9dmac_chan_platform_data *cpdata = pdev->dev.platform_data; | ||
1144 | struct platform_device *dmac_dev = cpdata->dmac_dev; | ||
1145 | struct txx9dmac_platform_data *pdata = dmac_dev->dev.platform_data; | ||
1146 | struct txx9dmac_chan *dc; | ||
1147 | int err; | ||
1148 | int ch = pdev->id % TXX9_DMA_MAX_NR_CHANNELS; | ||
1149 | int irq; | ||
1150 | |||
1151 | dc = devm_kzalloc(&pdev->dev, sizeof(*dc), GFP_KERNEL); | ||
1152 | if (!dc) | ||
1153 | return -ENOMEM; | ||
1154 | |||
1155 | dc->dma.dev = &pdev->dev; | ||
1156 | dc->dma.device_alloc_chan_resources = txx9dmac_alloc_chan_resources; | ||
1157 | dc->dma.device_free_chan_resources = txx9dmac_free_chan_resources; | ||
1158 | dc->dma.device_terminate_all = txx9dmac_terminate_all; | ||
1159 | dc->dma.device_is_tx_complete = txx9dmac_is_tx_complete; | ||
1160 | dc->dma.device_issue_pending = txx9dmac_issue_pending; | ||
1161 | if (pdata && pdata->memcpy_chan == ch) { | ||
1162 | dc->dma.device_prep_dma_memcpy = txx9dmac_prep_dma_memcpy; | ||
1163 | dma_cap_set(DMA_MEMCPY, dc->dma.cap_mask); | ||
1164 | } else { | ||
1165 | dc->dma.device_prep_slave_sg = txx9dmac_prep_slave_sg; | ||
1166 | dma_cap_set(DMA_SLAVE, dc->dma.cap_mask); | ||
1167 | dma_cap_set(DMA_PRIVATE, dc->dma.cap_mask); | ||
1168 | } | ||
1169 | |||
1170 | INIT_LIST_HEAD(&dc->dma.channels); | ||
1171 | dc->ddev = platform_get_drvdata(dmac_dev); | ||
1172 | if (dc->ddev->irq < 0) { | ||
1173 | irq = platform_get_irq(pdev, 0); | ||
1174 | if (irq < 0) | ||
1175 | return irq; | ||
1176 | tasklet_init(&dc->tasklet, txx9dmac_chan_tasklet, | ||
1177 | (unsigned long)dc); | ||
1178 | dc->irq = irq; | ||
1179 | err = devm_request_irq(&pdev->dev, dc->irq, | ||
1180 | txx9dmac_chan_interrupt, 0, dev_name(&pdev->dev), dc); | ||
1181 | if (err) | ||
1182 | return err; | ||
1183 | } else | ||
1184 | dc->irq = -1; | ||
1185 | dc->ddev->chan[ch] = dc; | ||
1186 | dc->chan.device = &dc->dma; | ||
1187 | list_add_tail(&dc->chan.device_node, &dc->chan.device->channels); | ||
1188 | dc->chan.cookie = dc->completed = 1; | ||
1189 | |||
1190 | if (is_dmac64(dc)) | ||
1191 | dc->ch_regs = &__txx9dmac_regs(dc->ddev)->CHAN[ch]; | ||
1192 | else | ||
1193 | dc->ch_regs = &__txx9dmac_regs32(dc->ddev)->CHAN[ch]; | ||
1194 | spin_lock_init(&dc->lock); | ||
1195 | |||
1196 | INIT_LIST_HEAD(&dc->active_list); | ||
1197 | INIT_LIST_HEAD(&dc->queue); | ||
1198 | INIT_LIST_HEAD(&dc->free_list); | ||
1199 | |||
1200 | txx9dmac_reset_chan(dc); | ||
1201 | |||
1202 | platform_set_drvdata(pdev, dc); | ||
1203 | |||
1204 | err = dma_async_device_register(&dc->dma); | ||
1205 | if (err) | ||
1206 | return err; | ||
1207 | dev_dbg(&pdev->dev, "TXx9 DMA Channel (dma%d%s%s)\n", | ||
1208 | dc->dma.dev_id, | ||
1209 | dma_has_cap(DMA_MEMCPY, dc->dma.cap_mask) ? " memcpy" : "", | ||
1210 | dma_has_cap(DMA_SLAVE, dc->dma.cap_mask) ? " slave" : ""); | ||
1211 | |||
1212 | return 0; | ||
1213 | } | ||
1214 | |||
1215 | static int __exit txx9dmac_chan_remove(struct platform_device *pdev) | ||
1216 | { | ||
1217 | struct txx9dmac_chan *dc = platform_get_drvdata(pdev); | ||
1218 | |||
1219 | dma_async_device_unregister(&dc->dma); | ||
1220 | if (dc->irq >= 0) | ||
1221 | tasklet_kill(&dc->tasklet); | ||
1222 | dc->ddev->chan[pdev->id % TXX9_DMA_MAX_NR_CHANNELS] = NULL; | ||
1223 | return 0; | ||
1224 | } | ||
1225 | |||
1226 | static int __init txx9dmac_probe(struct platform_device *pdev) | ||
1227 | { | ||
1228 | struct txx9dmac_platform_data *pdata = pdev->dev.platform_data; | ||
1229 | struct resource *io; | ||
1230 | struct txx9dmac_dev *ddev; | ||
1231 | u32 mcr; | ||
1232 | int err; | ||
1233 | |||
1234 | io = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
1235 | if (!io) | ||
1236 | return -EINVAL; | ||
1237 | |||
1238 | ddev = devm_kzalloc(&pdev->dev, sizeof(*ddev), GFP_KERNEL); | ||
1239 | if (!ddev) | ||
1240 | return -ENOMEM; | ||
1241 | |||
1242 | if (!devm_request_mem_region(&pdev->dev, io->start, resource_size(io), | ||
1243 | dev_name(&pdev->dev))) | ||
1244 | return -EBUSY; | ||
1245 | |||
1246 | ddev->regs = devm_ioremap(&pdev->dev, io->start, resource_size(io)); | ||
1247 | if (!ddev->regs) | ||
1248 | return -ENOMEM; | ||
1249 | ddev->have_64bit_regs = pdata->have_64bit_regs; | ||
1250 | if (__is_dmac64(ddev)) | ||
1251 | ddev->descsize = sizeof(struct txx9dmac_hwdesc); | ||
1252 | else | ||
1253 | ddev->descsize = sizeof(struct txx9dmac_hwdesc32); | ||
1254 | |||
1255 | /* force dma off, just in case */ | ||
1256 | txx9dmac_off(ddev); | ||
1257 | |||
1258 | ddev->irq = platform_get_irq(pdev, 0); | ||
1259 | if (ddev->irq >= 0) { | ||
1260 | tasklet_init(&ddev->tasklet, txx9dmac_tasklet, | ||
1261 | (unsigned long)ddev); | ||
1262 | err = devm_request_irq(&pdev->dev, ddev->irq, | ||
1263 | txx9dmac_interrupt, 0, dev_name(&pdev->dev), ddev); | ||
1264 | if (err) | ||
1265 | return err; | ||
1266 | } | ||
1267 | |||
1268 | mcr = TXX9_DMA_MCR_MSTEN | MCR_LE; | ||
1269 | if (pdata && pdata->memcpy_chan >= 0) | ||
1270 | mcr |= TXX9_DMA_MCR_FIFUM(pdata->memcpy_chan); | ||
1271 | dma_writel(ddev, MCR, mcr); | ||
1272 | |||
1273 | platform_set_drvdata(pdev, ddev); | ||
1274 | return 0; | ||
1275 | } | ||
1276 | |||
1277 | static int __exit txx9dmac_remove(struct platform_device *pdev) | ||
1278 | { | ||
1279 | struct txx9dmac_dev *ddev = platform_get_drvdata(pdev); | ||
1280 | |||
1281 | txx9dmac_off(ddev); | ||
1282 | if (ddev->irq >= 0) | ||
1283 | tasklet_kill(&ddev->tasklet); | ||
1284 | return 0; | ||
1285 | } | ||
1286 | |||
1287 | static void txx9dmac_shutdown(struct platform_device *pdev) | ||
1288 | { | ||
1289 | struct txx9dmac_dev *ddev = platform_get_drvdata(pdev); | ||
1290 | |||
1291 | txx9dmac_off(ddev); | ||
1292 | } | ||
1293 | |||
1294 | static int txx9dmac_suspend_late(struct platform_device *pdev, | ||
1295 | pm_message_t mesg) | ||
1296 | { | ||
1297 | struct txx9dmac_dev *ddev = platform_get_drvdata(pdev); | ||
1298 | |||
1299 | txx9dmac_off(ddev); | ||
1300 | return 0; | ||
1301 | } | ||
1302 | |||
1303 | static int txx9dmac_resume_early(struct platform_device *pdev) | ||
1304 | { | ||
1305 | struct txx9dmac_dev *ddev = platform_get_drvdata(pdev); | ||
1306 | struct txx9dmac_platform_data *pdata = pdev->dev.platform_data; | ||
1307 | u32 mcr; | ||
1308 | |||
1309 | mcr = TXX9_DMA_MCR_MSTEN | MCR_LE; | ||
1310 | if (pdata && pdata->memcpy_chan >= 0) | ||
1311 | mcr |= TXX9_DMA_MCR_FIFUM(pdata->memcpy_chan); | ||
1312 | dma_writel(ddev, MCR, mcr); | ||
1313 | return 0; | ||
1314 | |||
1315 | } | ||
1316 | |||
1317 | static struct platform_driver txx9dmac_chan_driver = { | ||
1318 | .remove = __exit_p(txx9dmac_chan_remove), | ||
1319 | .driver = { | ||
1320 | .name = "txx9dmac-chan", | ||
1321 | }, | ||
1322 | }; | ||
1323 | |||
1324 | static struct platform_driver txx9dmac_driver = { | ||
1325 | .remove = __exit_p(txx9dmac_remove), | ||
1326 | .shutdown = txx9dmac_shutdown, | ||
1327 | .suspend_late = txx9dmac_suspend_late, | ||
1328 | .resume_early = txx9dmac_resume_early, | ||
1329 | .driver = { | ||
1330 | .name = "txx9dmac", | ||
1331 | }, | ||
1332 | }; | ||
1333 | |||
1334 | static int __init txx9dmac_init(void) | ||
1335 | { | ||
1336 | int rc; | ||
1337 | |||
1338 | rc = platform_driver_probe(&txx9dmac_driver, txx9dmac_probe); | ||
1339 | if (!rc) { | ||
1340 | rc = platform_driver_probe(&txx9dmac_chan_driver, | ||
1341 | txx9dmac_chan_probe); | ||
1342 | if (rc) | ||
1343 | platform_driver_unregister(&txx9dmac_driver); | ||
1344 | } | ||
1345 | return rc; | ||
1346 | } | ||
1347 | module_init(txx9dmac_init); | ||
1348 | |||
1349 | static void __exit txx9dmac_exit(void) | ||
1350 | { | ||
1351 | platform_driver_unregister(&txx9dmac_chan_driver); | ||
1352 | platform_driver_unregister(&txx9dmac_driver); | ||
1353 | } | ||
1354 | module_exit(txx9dmac_exit); | ||
1355 | |||
1356 | MODULE_LICENSE("GPL"); | ||
1357 | MODULE_DESCRIPTION("TXx9 DMA Controller driver"); | ||
1358 | MODULE_AUTHOR("Atsushi Nemoto <anemo@mba.ocn.ne.jp>"); | ||
diff --git a/drivers/dma/txx9dmac.h b/drivers/dma/txx9dmac.h new file mode 100644 index 000000000000..c907ff01d276 --- /dev/null +++ b/drivers/dma/txx9dmac.h | |||
@@ -0,0 +1,307 @@ | |||
1 | /* | ||
2 | * Driver for the TXx9 SoC DMA Controller | ||
3 | * | ||
4 | * Copyright (C) 2009 Atsushi Nemoto | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #ifndef TXX9DMAC_H | ||
11 | #define TXX9DMAC_H | ||
12 | |||
13 | #include <linux/dmaengine.h> | ||
14 | #include <asm/txx9/dmac.h> | ||
15 | |||
16 | /* | ||
17 | * Design Notes: | ||
18 | * | ||
19 | * This DMAC have four channels and one FIFO buffer. Each channel can | ||
20 | * be configured for memory-memory or device-memory transfer, but only | ||
21 | * one channel can do alignment-free memory-memory transfer at a time | ||
22 | * while the channel should occupy the FIFO buffer for effective | ||
23 | * transfers. | ||
24 | * | ||
25 | * Instead of dynamically assign the FIFO buffer to channels, I chose | ||
26 | * make one dedicated channel for memory-memory transfer. The | ||
27 | * dedicated channel is public. Other channels are private and used | ||
28 | * for slave transfer. Some devices in the SoC are wired to certain | ||
29 | * DMA channel. | ||
30 | */ | ||
31 | |||
32 | #ifdef CONFIG_MACH_TX49XX | ||
33 | static inline bool txx9_dma_have_SMPCHN(void) | ||
34 | { | ||
35 | return true; | ||
36 | } | ||
37 | #define TXX9_DMA_USE_SIMPLE_CHAIN | ||
38 | #else | ||
39 | static inline bool txx9_dma_have_SMPCHN(void) | ||
40 | { | ||
41 | return false; | ||
42 | } | ||
43 | #endif | ||
44 | |||
45 | #ifdef __LITTLE_ENDIAN | ||
46 | #ifdef CONFIG_MACH_TX49XX | ||
47 | #define CCR_LE TXX9_DMA_CCR_LE | ||
48 | #define MCR_LE 0 | ||
49 | #else | ||
50 | #define CCR_LE 0 | ||
51 | #define MCR_LE TXX9_DMA_MCR_LE | ||
52 | #endif | ||
53 | #else | ||
54 | #define CCR_LE 0 | ||
55 | #define MCR_LE 0 | ||
56 | #endif | ||
57 | |||
58 | /* | ||
59 | * Redefine this macro to handle differences between 32- and 64-bit | ||
60 | * addressing, big vs. little endian, etc. | ||
61 | */ | ||
62 | #ifdef __BIG_ENDIAN | ||
63 | #define TXX9_DMA_REG32(name) u32 __pad_##name; u32 name | ||
64 | #else | ||
65 | #define TXX9_DMA_REG32(name) u32 name; u32 __pad_##name | ||
66 | #endif | ||
67 | |||
68 | /* Hardware register definitions. */ | ||
69 | struct txx9dmac_cregs { | ||
70 | #if defined(CONFIG_32BIT) && !defined(CONFIG_64BIT_PHYS_ADDR) | ||
71 | TXX9_DMA_REG32(CHAR); /* Chain Address Register */ | ||
72 | #else | ||
73 | u64 CHAR; /* Chain Address Register */ | ||
74 | #endif | ||
75 | u64 SAR; /* Source Address Register */ | ||
76 | u64 DAR; /* Destination Address Register */ | ||
77 | TXX9_DMA_REG32(CNTR); /* Count Register */ | ||
78 | TXX9_DMA_REG32(SAIR); /* Source Address Increment Register */ | ||
79 | TXX9_DMA_REG32(DAIR); /* Destination Address Increment Register */ | ||
80 | TXX9_DMA_REG32(CCR); /* Channel Control Register */ | ||
81 | TXX9_DMA_REG32(CSR); /* Channel Status Register */ | ||
82 | }; | ||
83 | struct txx9dmac_cregs32 { | ||
84 | u32 CHAR; | ||
85 | u32 SAR; | ||
86 | u32 DAR; | ||
87 | u32 CNTR; | ||
88 | u32 SAIR; | ||
89 | u32 DAIR; | ||
90 | u32 CCR; | ||
91 | u32 CSR; | ||
92 | }; | ||
93 | |||
94 | struct txx9dmac_regs { | ||
95 | /* per-channel registers */ | ||
96 | struct txx9dmac_cregs CHAN[TXX9_DMA_MAX_NR_CHANNELS]; | ||
97 | u64 __pad[9]; | ||
98 | u64 MFDR; /* Memory Fill Data Register */ | ||
99 | TXX9_DMA_REG32(MCR); /* Master Control Register */ | ||
100 | }; | ||
101 | struct txx9dmac_regs32 { | ||
102 | struct txx9dmac_cregs32 CHAN[TXX9_DMA_MAX_NR_CHANNELS]; | ||
103 | u32 __pad[9]; | ||
104 | u32 MFDR; | ||
105 | u32 MCR; | ||
106 | }; | ||
107 | |||
108 | /* bits for MCR */ | ||
109 | #define TXX9_DMA_MCR_EIS(ch) (0x10000000<<(ch)) | ||
110 | #define TXX9_DMA_MCR_DIS(ch) (0x01000000<<(ch)) | ||
111 | #define TXX9_DMA_MCR_RSFIF 0x00000080 | ||
112 | #define TXX9_DMA_MCR_FIFUM(ch) (0x00000008<<(ch)) | ||
113 | #define TXX9_DMA_MCR_LE 0x00000004 | ||
114 | #define TXX9_DMA_MCR_RPRT 0x00000002 | ||
115 | #define TXX9_DMA_MCR_MSTEN 0x00000001 | ||
116 | |||
117 | /* bits for CCRn */ | ||
118 | #define TXX9_DMA_CCR_IMMCHN 0x20000000 | ||
119 | #define TXX9_DMA_CCR_USEXFSZ 0x10000000 | ||
120 | #define TXX9_DMA_CCR_LE 0x08000000 | ||
121 | #define TXX9_DMA_CCR_DBINH 0x04000000 | ||
122 | #define TXX9_DMA_CCR_SBINH 0x02000000 | ||
123 | #define TXX9_DMA_CCR_CHRST 0x01000000 | ||
124 | #define TXX9_DMA_CCR_RVBYTE 0x00800000 | ||
125 | #define TXX9_DMA_CCR_ACKPOL 0x00400000 | ||
126 | #define TXX9_DMA_CCR_REQPL 0x00200000 | ||
127 | #define TXX9_DMA_CCR_EGREQ 0x00100000 | ||
128 | #define TXX9_DMA_CCR_CHDN 0x00080000 | ||
129 | #define TXX9_DMA_CCR_DNCTL 0x00060000 | ||
130 | #define TXX9_DMA_CCR_EXTRQ 0x00010000 | ||
131 | #define TXX9_DMA_CCR_INTRQD 0x0000e000 | ||
132 | #define TXX9_DMA_CCR_INTENE 0x00001000 | ||
133 | #define TXX9_DMA_CCR_INTENC 0x00000800 | ||
134 | #define TXX9_DMA_CCR_INTENT 0x00000400 | ||
135 | #define TXX9_DMA_CCR_CHNEN 0x00000200 | ||
136 | #define TXX9_DMA_CCR_XFACT 0x00000100 | ||
137 | #define TXX9_DMA_CCR_SMPCHN 0x00000020 | ||
138 | #define TXX9_DMA_CCR_XFSZ(order) (((order) << 2) & 0x0000001c) | ||
139 | #define TXX9_DMA_CCR_XFSZ_1 TXX9_DMA_CCR_XFSZ(0) | ||
140 | #define TXX9_DMA_CCR_XFSZ_2 TXX9_DMA_CCR_XFSZ(1) | ||
141 | #define TXX9_DMA_CCR_XFSZ_4 TXX9_DMA_CCR_XFSZ(2) | ||
142 | #define TXX9_DMA_CCR_XFSZ_8 TXX9_DMA_CCR_XFSZ(3) | ||
143 | #define TXX9_DMA_CCR_XFSZ_X4 TXX9_DMA_CCR_XFSZ(4) | ||
144 | #define TXX9_DMA_CCR_XFSZ_X8 TXX9_DMA_CCR_XFSZ(5) | ||
145 | #define TXX9_DMA_CCR_XFSZ_X16 TXX9_DMA_CCR_XFSZ(6) | ||
146 | #define TXX9_DMA_CCR_XFSZ_X32 TXX9_DMA_CCR_XFSZ(7) | ||
147 | #define TXX9_DMA_CCR_MEMIO 0x00000002 | ||
148 | #define TXX9_DMA_CCR_SNGAD 0x00000001 | ||
149 | |||
150 | /* bits for CSRn */ | ||
151 | #define TXX9_DMA_CSR_CHNEN 0x00000400 | ||
152 | #define TXX9_DMA_CSR_STLXFER 0x00000200 | ||
153 | #define TXX9_DMA_CSR_XFACT 0x00000100 | ||
154 | #define TXX9_DMA_CSR_ABCHC 0x00000080 | ||
155 | #define TXX9_DMA_CSR_NCHNC 0x00000040 | ||
156 | #define TXX9_DMA_CSR_NTRNFC 0x00000020 | ||
157 | #define TXX9_DMA_CSR_EXTDN 0x00000010 | ||
158 | #define TXX9_DMA_CSR_CFERR 0x00000008 | ||
159 | #define TXX9_DMA_CSR_CHERR 0x00000004 | ||
160 | #define TXX9_DMA_CSR_DESERR 0x00000002 | ||
161 | #define TXX9_DMA_CSR_SORERR 0x00000001 | ||
162 | |||
163 | struct txx9dmac_chan { | ||
164 | struct dma_chan chan; | ||
165 | struct dma_device dma; | ||
166 | struct txx9dmac_dev *ddev; | ||
167 | void __iomem *ch_regs; | ||
168 | struct tasklet_struct tasklet; | ||
169 | int irq; | ||
170 | u32 ccr; | ||
171 | |||
172 | spinlock_t lock; | ||
173 | |||
174 | /* these other elements are all protected by lock */ | ||
175 | dma_cookie_t completed; | ||
176 | struct list_head active_list; | ||
177 | struct list_head queue; | ||
178 | struct list_head free_list; | ||
179 | |||
180 | unsigned int descs_allocated; | ||
181 | }; | ||
182 | |||
183 | struct txx9dmac_dev { | ||
184 | void __iomem *regs; | ||
185 | struct tasklet_struct tasklet; | ||
186 | int irq; | ||
187 | struct txx9dmac_chan *chan[TXX9_DMA_MAX_NR_CHANNELS]; | ||
188 | bool have_64bit_regs; | ||
189 | unsigned int descsize; | ||
190 | }; | ||
191 | |||
192 | static inline bool __is_dmac64(const struct txx9dmac_dev *ddev) | ||
193 | { | ||
194 | return ddev->have_64bit_regs; | ||
195 | } | ||
196 | |||
197 | static inline bool is_dmac64(const struct txx9dmac_chan *dc) | ||
198 | { | ||
199 | return __is_dmac64(dc->ddev); | ||
200 | } | ||
201 | |||
202 | #ifdef TXX9_DMA_USE_SIMPLE_CHAIN | ||
203 | /* Hardware descriptor definition. (for simple-chain) */ | ||
204 | struct txx9dmac_hwdesc { | ||
205 | #if defined(CONFIG_32BIT) && !defined(CONFIG_64BIT_PHYS_ADDR) | ||
206 | TXX9_DMA_REG32(CHAR); | ||
207 | #else | ||
208 | u64 CHAR; | ||
209 | #endif | ||
210 | u64 SAR; | ||
211 | u64 DAR; | ||
212 | TXX9_DMA_REG32(CNTR); | ||
213 | }; | ||
214 | struct txx9dmac_hwdesc32 { | ||
215 | u32 CHAR; | ||
216 | u32 SAR; | ||
217 | u32 DAR; | ||
218 | u32 CNTR; | ||
219 | }; | ||
220 | #else | ||
221 | #define txx9dmac_hwdesc txx9dmac_cregs | ||
222 | #define txx9dmac_hwdesc32 txx9dmac_cregs32 | ||
223 | #endif | ||
224 | |||
225 | struct txx9dmac_desc { | ||
226 | /* FIRST values the hardware uses */ | ||
227 | union { | ||
228 | struct txx9dmac_hwdesc hwdesc; | ||
229 | struct txx9dmac_hwdesc32 hwdesc32; | ||
230 | }; | ||
231 | |||
232 | /* THEN values for driver housekeeping */ | ||
233 | struct list_head desc_node ____cacheline_aligned; | ||
234 | struct dma_async_tx_descriptor txd; | ||
235 | size_t len; | ||
236 | }; | ||
237 | |||
238 | #ifdef TXX9_DMA_USE_SIMPLE_CHAIN | ||
239 | |||
240 | static inline bool txx9dmac_chan_INTENT(struct txx9dmac_chan *dc) | ||
241 | { | ||
242 | return (dc->ccr & TXX9_DMA_CCR_INTENT) != 0; | ||
243 | } | ||
244 | |||
245 | static inline void txx9dmac_chan_set_INTENT(struct txx9dmac_chan *dc) | ||
246 | { | ||
247 | dc->ccr |= TXX9_DMA_CCR_INTENT; | ||
248 | } | ||
249 | |||
250 | static inline void txx9dmac_desc_set_INTENT(struct txx9dmac_dev *ddev, | ||
251 | struct txx9dmac_desc *desc) | ||
252 | { | ||
253 | } | ||
254 | |||
255 | static inline void txx9dmac_chan_set_SMPCHN(struct txx9dmac_chan *dc) | ||
256 | { | ||
257 | dc->ccr |= TXX9_DMA_CCR_SMPCHN; | ||
258 | } | ||
259 | |||
260 | static inline void txx9dmac_desc_set_nosimple(struct txx9dmac_dev *ddev, | ||
261 | struct txx9dmac_desc *desc, | ||
262 | u32 sair, u32 dair, u32 ccr) | ||
263 | { | ||
264 | } | ||
265 | |||
266 | #else /* TXX9_DMA_USE_SIMPLE_CHAIN */ | ||
267 | |||
268 | static inline bool txx9dmac_chan_INTENT(struct txx9dmac_chan *dc) | ||
269 | { | ||
270 | return true; | ||
271 | } | ||
272 | |||
273 | static void txx9dmac_chan_set_INTENT(struct txx9dmac_chan *dc) | ||
274 | { | ||
275 | } | ||
276 | |||
277 | static inline void txx9dmac_desc_set_INTENT(struct txx9dmac_dev *ddev, | ||
278 | struct txx9dmac_desc *desc) | ||
279 | { | ||
280 | if (__is_dmac64(ddev)) | ||
281 | desc->hwdesc.CCR |= TXX9_DMA_CCR_INTENT; | ||
282 | else | ||
283 | desc->hwdesc32.CCR |= TXX9_DMA_CCR_INTENT; | ||
284 | } | ||
285 | |||
286 | static inline void txx9dmac_chan_set_SMPCHN(struct txx9dmac_chan *dc) | ||
287 | { | ||
288 | } | ||
289 | |||
290 | static inline void txx9dmac_desc_set_nosimple(struct txx9dmac_dev *ddev, | ||
291 | struct txx9dmac_desc *desc, | ||
292 | u32 sai, u32 dai, u32 ccr) | ||
293 | { | ||
294 | if (__is_dmac64(ddev)) { | ||
295 | desc->hwdesc.SAIR = sai; | ||
296 | desc->hwdesc.DAIR = dai; | ||
297 | desc->hwdesc.CCR = ccr; | ||
298 | } else { | ||
299 | desc->hwdesc32.SAIR = sai; | ||
300 | desc->hwdesc32.DAIR = dai; | ||
301 | desc->hwdesc32.CCR = ccr; | ||
302 | } | ||
303 | } | ||
304 | |||
305 | #endif /* TXX9_DMA_USE_SIMPLE_CHAIN */ | ||
306 | |||
307 | #endif /* TXX9DMAC_H */ | ||