net: korina: Fix NAPI versus resources freeing
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / dma / mv_xor.c
CommitLineData
ff7b0479
SB
1/*
2 * offload engine driver for the Marvell XOR engine
3 * Copyright (C) 2007, 2008, Marvell International Ltd.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19#include <linux/init.h>
20#include <linux/module.h>
5a0e3ad6 21#include <linux/slab.h>
ff7b0479
SB
22#include <linux/delay.h>
23#include <linux/dma-mapping.h>
24#include <linux/spinlock.h>
25#include <linux/interrupt.h>
26#include <linux/platform_device.h>
27#include <linux/memory.h>
c510182b 28#include <linux/clk.h>
f7d12ef5
TP
29#include <linux/of.h>
30#include <linux/of_irq.h>
31#include <linux/irqdomain.h>
c02cecb9 32#include <linux/platform_data/dma-mv_xor.h>
d2ebfb33
RKAL
33
34#include "dmaengine.h"
ff7b0479
SB
35#include "mv_xor.h"
36
37static void mv_xor_issue_pending(struct dma_chan *chan);
38
39#define to_mv_xor_chan(chan) \
98817b99 40 container_of(chan, struct mv_xor_chan, dmachan)
ff7b0479
SB
41
42#define to_mv_xor_slot(tx) \
43 container_of(tx, struct mv_xor_desc_slot, async_tx)
44
c98c1781 45#define mv_chan_to_devp(chan) \
1ef48a26 46 ((chan)->dmadev.dev)
c98c1781 47
ff7b0479
SB
48static void mv_desc_init(struct mv_xor_desc_slot *desc, unsigned long flags)
49{
50 struct mv_xor_desc *hw_desc = desc->hw_desc;
51
52 hw_desc->status = (1 << 31);
53 hw_desc->phy_next_desc = 0;
54 hw_desc->desc_command = (1 << 31);
55}
56
57static u32 mv_desc_get_dest_addr(struct mv_xor_desc_slot *desc)
58{
59 struct mv_xor_desc *hw_desc = desc->hw_desc;
60 return hw_desc->phy_dest_addr;
61}
62
63static u32 mv_desc_get_src_addr(struct mv_xor_desc_slot *desc,
64 int src_idx)
65{
66 struct mv_xor_desc *hw_desc = desc->hw_desc;
67 return hw_desc->phy_src_addr[src_idx];
68}
69
70
71static void mv_desc_set_byte_count(struct mv_xor_desc_slot *desc,
72 u32 byte_count)
73{
74 struct mv_xor_desc *hw_desc = desc->hw_desc;
75 hw_desc->byte_count = byte_count;
76}
77
78static void mv_desc_set_next_desc(struct mv_xor_desc_slot *desc,
79 u32 next_desc_addr)
80{
81 struct mv_xor_desc *hw_desc = desc->hw_desc;
82 BUG_ON(hw_desc->phy_next_desc);
83 hw_desc->phy_next_desc = next_desc_addr;
84}
85
86static void mv_desc_clear_next_desc(struct mv_xor_desc_slot *desc)
87{
88 struct mv_xor_desc *hw_desc = desc->hw_desc;
89 hw_desc->phy_next_desc = 0;
90}
91
92static void mv_desc_set_block_fill_val(struct mv_xor_desc_slot *desc, u32 val)
93{
94 desc->value = val;
95}
96
97static void mv_desc_set_dest_addr(struct mv_xor_desc_slot *desc,
98 dma_addr_t addr)
99{
100 struct mv_xor_desc *hw_desc = desc->hw_desc;
101 hw_desc->phy_dest_addr = addr;
102}
103
104static int mv_chan_memset_slot_count(size_t len)
105{
106 return 1;
107}
108
109#define mv_chan_memcpy_slot_count(c) mv_chan_memset_slot_count(c)
110
111static void mv_desc_set_src_addr(struct mv_xor_desc_slot *desc,
112 int index, dma_addr_t addr)
113{
114 struct mv_xor_desc *hw_desc = desc->hw_desc;
115 hw_desc->phy_src_addr[index] = addr;
116 if (desc->type == DMA_XOR)
117 hw_desc->desc_command |= (1 << index);
118}
119
120static u32 mv_chan_get_current_desc(struct mv_xor_chan *chan)
121{
122 return __raw_readl(XOR_CURR_DESC(chan));
123}
124
125static void mv_chan_set_next_descriptor(struct mv_xor_chan *chan,
126 u32 next_desc_addr)
127{
128 __raw_writel(next_desc_addr, XOR_NEXT_DESC(chan));
129}
130
131static void mv_chan_set_dest_pointer(struct mv_xor_chan *chan, u32 desc_addr)
132{
133 __raw_writel(desc_addr, XOR_DEST_POINTER(chan));
134}
135
136static void mv_chan_set_block_size(struct mv_xor_chan *chan, u32 block_size)
137{
138 __raw_writel(block_size, XOR_BLOCK_SIZE(chan));
139}
140
141static void mv_chan_set_value(struct mv_xor_chan *chan, u32 value)
142{
143 __raw_writel(value, XOR_INIT_VALUE_LOW(chan));
144 __raw_writel(value, XOR_INIT_VALUE_HIGH(chan));
145}
146
147static void mv_chan_unmask_interrupts(struct mv_xor_chan *chan)
148{
149 u32 val = __raw_readl(XOR_INTR_MASK(chan));
150 val |= XOR_INTR_MASK_VALUE << (chan->idx * 16);
151 __raw_writel(val, XOR_INTR_MASK(chan));
152}
153
154static u32 mv_chan_get_intr_cause(struct mv_xor_chan *chan)
155{
156 u32 intr_cause = __raw_readl(XOR_INTR_CAUSE(chan));
157 intr_cause = (intr_cause >> (chan->idx * 16)) & 0xFFFF;
158 return intr_cause;
159}
160
161static int mv_is_err_intr(u32 intr_cause)
162{
163 if (intr_cause & ((1<<4)|(1<<5)|(1<<6)|(1<<7)|(1<<8)|(1<<9)))
164 return 1;
165
166 return 0;
167}
168
169static void mv_xor_device_clear_eoc_cause(struct mv_xor_chan *chan)
170{
86363682 171 u32 val = ~(1 << (chan->idx * 16));
c98c1781 172 dev_dbg(mv_chan_to_devp(chan), "%s, val 0x%08x\n", __func__, val);
ff7b0479
SB
173 __raw_writel(val, XOR_INTR_CAUSE(chan));
174}
175
176static void mv_xor_device_clear_err_status(struct mv_xor_chan *chan)
177{
178 u32 val = 0xFFFF0000 >> (chan->idx * 16);
179 __raw_writel(val, XOR_INTR_CAUSE(chan));
180}
181
182static int mv_can_chain(struct mv_xor_desc_slot *desc)
183{
184 struct mv_xor_desc_slot *chain_old_tail = list_entry(
185 desc->chain_node.prev, struct mv_xor_desc_slot, chain_node);
186
187 if (chain_old_tail->type != desc->type)
188 return 0;
189 if (desc->type == DMA_MEMSET)
190 return 0;
191
192 return 1;
193}
194
195static void mv_set_mode(struct mv_xor_chan *chan,
196 enum dma_transaction_type type)
197{
198 u32 op_mode;
199 u32 config = __raw_readl(XOR_CONFIG(chan));
200
201 switch (type) {
202 case DMA_XOR:
203 op_mode = XOR_OPERATION_MODE_XOR;
204 break;
205 case DMA_MEMCPY:
206 op_mode = XOR_OPERATION_MODE_MEMCPY;
207 break;
208 case DMA_MEMSET:
209 op_mode = XOR_OPERATION_MODE_MEMSET;
210 break;
211 default:
c98c1781 212 dev_err(mv_chan_to_devp(chan),
1ba151cd 213 "error: unsupported operation %d\n",
a3fc74bc 214 type);
ff7b0479
SB
215 BUG();
216 return;
217 }
218
219 config &= ~0x7;
220 config |= op_mode;
221 __raw_writel(config, XOR_CONFIG(chan));
222 chan->current_type = type;
223}
224
225static void mv_chan_activate(struct mv_xor_chan *chan)
226{
227 u32 activation;
228
c98c1781 229 dev_dbg(mv_chan_to_devp(chan), " activate chan.\n");
ff7b0479
SB
230 activation = __raw_readl(XOR_ACTIVATION(chan));
231 activation |= 0x1;
232 __raw_writel(activation, XOR_ACTIVATION(chan));
233}
234
235static char mv_chan_is_busy(struct mv_xor_chan *chan)
236{
237 u32 state = __raw_readl(XOR_ACTIVATION(chan));
238
239 state = (state >> 4) & 0x3;
240
241 return (state == 1) ? 1 : 0;
242}
243
244static int mv_chan_xor_slot_count(size_t len, int src_cnt)
245{
246 return 1;
247}
248
249/**
250 * mv_xor_free_slots - flags descriptor slots for reuse
251 * @slot: Slot to free
252 * Caller must hold &mv_chan->lock while calling this function
253 */
254static void mv_xor_free_slots(struct mv_xor_chan *mv_chan,
255 struct mv_xor_desc_slot *slot)
256{
c98c1781 257 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d slot %p\n",
ff7b0479
SB
258 __func__, __LINE__, slot);
259
260 slot->slots_per_op = 0;
261
262}
263
264/*
265 * mv_xor_start_new_chain - program the engine to operate on new chain headed by
266 * sw_desc
267 * Caller must hold &mv_chan->lock while calling this function
268 */
269static void mv_xor_start_new_chain(struct mv_xor_chan *mv_chan,
270 struct mv_xor_desc_slot *sw_desc)
271{
c98c1781 272 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d: sw_desc %p\n",
ff7b0479
SB
273 __func__, __LINE__, sw_desc);
274 if (sw_desc->type != mv_chan->current_type)
275 mv_set_mode(mv_chan, sw_desc->type);
276
277 if (sw_desc->type == DMA_MEMSET) {
278 /* for memset requests we need to program the engine, no
279 * descriptors used.
280 */
281 struct mv_xor_desc *hw_desc = sw_desc->hw_desc;
282 mv_chan_set_dest_pointer(mv_chan, hw_desc->phy_dest_addr);
283 mv_chan_set_block_size(mv_chan, sw_desc->unmap_len);
284 mv_chan_set_value(mv_chan, sw_desc->value);
285 } else {
286 /* set the hardware chain */
287 mv_chan_set_next_descriptor(mv_chan, sw_desc->async_tx.phys);
288 }
289 mv_chan->pending += sw_desc->slot_cnt;
98817b99 290 mv_xor_issue_pending(&mv_chan->dmachan);
ff7b0479
SB
291}
292
293static dma_cookie_t
294mv_xor_run_tx_complete_actions(struct mv_xor_desc_slot *desc,
295 struct mv_xor_chan *mv_chan, dma_cookie_t cookie)
296{
297 BUG_ON(desc->async_tx.cookie < 0);
298
299 if (desc->async_tx.cookie > 0) {
300 cookie = desc->async_tx.cookie;
301
302 /* call the callback (must not sleep or submit new
303 * operations to this channel)
304 */
305 if (desc->async_tx.callback)
306 desc->async_tx.callback(
307 desc->async_tx.callback_param);
308
309 /* unmap dma addresses
310 * (unmap_single vs unmap_page?)
311 */
312 if (desc->group_head && desc->unmap_len) {
313 struct mv_xor_desc_slot *unmap = desc->group_head;
ecde6cd4 314 struct device *dev = mv_chan_to_devp(mv_chan);
ff7b0479 315 u32 len = unmap->unmap_len;
e1d181ef
DW
316 enum dma_ctrl_flags flags = desc->async_tx.flags;
317 u32 src_cnt;
318 dma_addr_t addr;
a06d568f 319 dma_addr_t dest;
ff7b0479 320
a06d568f
DW
321 src_cnt = unmap->unmap_src_cnt;
322 dest = mv_desc_get_dest_addr(unmap);
e1d181ef 323 if (!(flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
a06d568f
DW
324 enum dma_data_direction dir;
325
326 if (src_cnt > 1) /* is xor ? */
327 dir = DMA_BIDIRECTIONAL;
328 else
329 dir = DMA_FROM_DEVICE;
330 dma_unmap_page(dev, dest, len, dir);
e1d181ef
DW
331 }
332
333 if (!(flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
e1d181ef
DW
334 while (src_cnt--) {
335 addr = mv_desc_get_src_addr(unmap,
336 src_cnt);
a06d568f
DW
337 if (addr == dest)
338 continue;
e1d181ef
DW
339 dma_unmap_page(dev, addr, len,
340 DMA_TO_DEVICE);
341 }
ff7b0479
SB
342 }
343 desc->group_head = NULL;
344 }
345 }
346
347 /* run dependent operations */
07f2211e 348 dma_run_dependencies(&desc->async_tx);
ff7b0479
SB
349
350 return cookie;
351}
352
353static int
354mv_xor_clean_completed_slots(struct mv_xor_chan *mv_chan)
355{
356 struct mv_xor_desc_slot *iter, *_iter;
357
c98c1781 358 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d\n", __func__, __LINE__);
ff7b0479
SB
359 list_for_each_entry_safe(iter, _iter, &mv_chan->completed_slots,
360 completed_node) {
361
362 if (async_tx_test_ack(&iter->async_tx)) {
363 list_del(&iter->completed_node);
364 mv_xor_free_slots(mv_chan, iter);
365 }
366 }
367 return 0;
368}
369
370static int
371mv_xor_clean_slot(struct mv_xor_desc_slot *desc,
372 struct mv_xor_chan *mv_chan)
373{
c98c1781 374 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d: desc %p flags %d\n",
ff7b0479
SB
375 __func__, __LINE__, desc, desc->async_tx.flags);
376 list_del(&desc->chain_node);
377 /* the client is allowed to attach dependent operations
378 * until 'ack' is set
379 */
380 if (!async_tx_test_ack(&desc->async_tx)) {
381 /* move this slot to the completed_slots */
382 list_add_tail(&desc->completed_node, &mv_chan->completed_slots);
383 return 0;
384 }
385
386 mv_xor_free_slots(mv_chan, desc);
387 return 0;
388}
389
390static void __mv_xor_slot_cleanup(struct mv_xor_chan *mv_chan)
391{
392 struct mv_xor_desc_slot *iter, *_iter;
393 dma_cookie_t cookie = 0;
394 int busy = mv_chan_is_busy(mv_chan);
395 u32 current_desc = mv_chan_get_current_desc(mv_chan);
42f77f15
LA
396 int current_cleaned = 0;
397 struct mv_xor_desc *hw_desc;
ff7b0479 398
c98c1781
TP
399 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d\n", __func__, __LINE__);
400 dev_dbg(mv_chan_to_devp(mv_chan), "current_desc %x\n", current_desc);
ff7b0479
SB
401 mv_xor_clean_completed_slots(mv_chan);
402
403 /* free completed slots from the chain starting with
404 * the oldest descriptor
405 */
406
407 list_for_each_entry_safe(iter, _iter, &mv_chan->chain,
408 chain_node) {
ff7b0479 409
42f77f15
LA
410 /* clean finished descriptors */
411 hw_desc = iter->hw_desc;
412 if (hw_desc->status & XOR_DESC_SUCCESS) {
413 cookie = mv_xor_run_tx_complete_actions(iter, mv_chan,
414 cookie);
ff7b0479 415
42f77f15
LA
416 /* done processing desc, clean slot */
417 mv_xor_clean_slot(iter, mv_chan);
418
419 /* break if we did cleaned the current */
420 if (iter->async_tx.phys == current_desc) {
421 current_cleaned = 1;
ff7b0479 422 break;
42f77f15
LA
423 }
424 } else {
425 if (iter->async_tx.phys == current_desc) {
426 current_cleaned = 0;
427 break;
428 }
ff7b0479 429 }
ff7b0479
SB
430 }
431
432 if ((busy == 0) && !list_empty(&mv_chan->chain)) {
42f77f15
LA
433 if (current_cleaned) {
434 /*
435 * current descriptor cleaned and removed, run
436 * from list head
437 */
438 iter = list_entry(mv_chan->chain.next,
439 struct mv_xor_desc_slot,
440 chain_node);
441 mv_xor_start_new_chain(mv_chan, iter);
442 } else {
443 if (!list_is_last(&iter->chain_node, &mv_chan->chain)) {
444 /*
445 * descriptors are still waiting after
446 * current, trigger them
447 */
448 iter = list_entry(iter->chain_node.next,
449 struct mv_xor_desc_slot,
450 chain_node);
451 mv_xor_start_new_chain(mv_chan, iter);
452 } else {
453 /*
454 * some descriptors are still waiting
455 * to be cleaned
456 */
457 tasklet_schedule(&mv_chan->irq_tasklet);
458 }
459 }
ff7b0479
SB
460 }
461
462 if (cookie > 0)
98817b99 463 mv_chan->dmachan.completed_cookie = cookie;
ff7b0479
SB
464}
465
466static void
467mv_xor_slot_cleanup(struct mv_xor_chan *mv_chan)
468{
469 spin_lock_bh(&mv_chan->lock);
470 __mv_xor_slot_cleanup(mv_chan);
471 spin_unlock_bh(&mv_chan->lock);
472}
473
474static void mv_xor_tasklet(unsigned long data)
475{
476 struct mv_xor_chan *chan = (struct mv_xor_chan *) data;
8333f65e 477 mv_xor_slot_cleanup(chan);
ff7b0479
SB
478}
479
480static struct mv_xor_desc_slot *
481mv_xor_alloc_slots(struct mv_xor_chan *mv_chan, int num_slots,
482 int slots_per_op)
483{
484 struct mv_xor_desc_slot *iter, *_iter, *alloc_start = NULL;
485 LIST_HEAD(chain);
486 int slots_found, retry = 0;
487
488 /* start search from the last allocated descrtiptor
489 * if a contiguous allocation can not be found start searching
490 * from the beginning of the list
491 */
492retry:
493 slots_found = 0;
494 if (retry == 0)
495 iter = mv_chan->last_used;
496 else
497 iter = list_entry(&mv_chan->all_slots,
498 struct mv_xor_desc_slot,
499 slot_node);
500
501 list_for_each_entry_safe_continue(
502 iter, _iter, &mv_chan->all_slots, slot_node) {
503 prefetch(_iter);
504 prefetch(&_iter->async_tx);
505 if (iter->slots_per_op) {
506 /* give up after finding the first busy slot
507 * on the second pass through the list
508 */
509 if (retry)
510 break;
511
512 slots_found = 0;
513 continue;
514 }
515
516 /* start the allocation if the slot is correctly aligned */
517 if (!slots_found++)
518 alloc_start = iter;
519
520 if (slots_found == num_slots) {
521 struct mv_xor_desc_slot *alloc_tail = NULL;
522 struct mv_xor_desc_slot *last_used = NULL;
523 iter = alloc_start;
524 while (num_slots) {
525 int i;
526
527 /* pre-ack all but the last descriptor */
528 async_tx_ack(&iter->async_tx);
529
530 list_add_tail(&iter->chain_node, &chain);
531 alloc_tail = iter;
532 iter->async_tx.cookie = 0;
533 iter->slot_cnt = num_slots;
534 iter->xor_check_result = NULL;
535 for (i = 0; i < slots_per_op; i++) {
536 iter->slots_per_op = slots_per_op - i;
537 last_used = iter;
538 iter = list_entry(iter->slot_node.next,
539 struct mv_xor_desc_slot,
540 slot_node);
541 }
542 num_slots -= slots_per_op;
543 }
544 alloc_tail->group_head = alloc_start;
545 alloc_tail->async_tx.cookie = -EBUSY;
64203b67 546 list_splice(&chain, &alloc_tail->tx_list);
ff7b0479
SB
547 mv_chan->last_used = last_used;
548 mv_desc_clear_next_desc(alloc_start);
549 mv_desc_clear_next_desc(alloc_tail);
550 return alloc_tail;
551 }
552 }
553 if (!retry++)
554 goto retry;
555
556 /* try to free some slots if the allocation fails */
557 tasklet_schedule(&mv_chan->irq_tasklet);
558
559 return NULL;
560}
561
ff7b0479
SB
562/************************ DMA engine API functions ****************************/
563static dma_cookie_t
564mv_xor_tx_submit(struct dma_async_tx_descriptor *tx)
565{
566 struct mv_xor_desc_slot *sw_desc = to_mv_xor_slot(tx);
567 struct mv_xor_chan *mv_chan = to_mv_xor_chan(tx->chan);
568 struct mv_xor_desc_slot *grp_start, *old_chain_tail;
569 dma_cookie_t cookie;
570 int new_hw_chain = 1;
571
c98c1781 572 dev_dbg(mv_chan_to_devp(mv_chan),
ff7b0479
SB
573 "%s sw_desc %p: async_tx %p\n",
574 __func__, sw_desc, &sw_desc->async_tx);
575
576 grp_start = sw_desc->group_head;
577
578 spin_lock_bh(&mv_chan->lock);
884485e1 579 cookie = dma_cookie_assign(tx);
ff7b0479
SB
580
581 if (list_empty(&mv_chan->chain))
64203b67 582 list_splice_init(&sw_desc->tx_list, &mv_chan->chain);
ff7b0479
SB
583 else {
584 new_hw_chain = 0;
585
586 old_chain_tail = list_entry(mv_chan->chain.prev,
587 struct mv_xor_desc_slot,
588 chain_node);
64203b67 589 list_splice_init(&grp_start->tx_list,
ff7b0479
SB
590 &old_chain_tail->chain_node);
591
592 if (!mv_can_chain(grp_start))
593 goto submit_done;
594
c98c1781 595 dev_dbg(mv_chan_to_devp(mv_chan), "Append to last desc %x\n",
ff7b0479
SB
596 old_chain_tail->async_tx.phys);
597
598 /* fix up the hardware chain */
599 mv_desc_set_next_desc(old_chain_tail, grp_start->async_tx.phys);
600
601 /* if the channel is not busy */
602 if (!mv_chan_is_busy(mv_chan)) {
603 u32 current_desc = mv_chan_get_current_desc(mv_chan);
604 /*
605 * and the curren desc is the end of the chain before
606 * the append, then we need to start the channel
607 */
608 if (current_desc == old_chain_tail->async_tx.phys)
609 new_hw_chain = 1;
610 }
611 }
612
613 if (new_hw_chain)
614 mv_xor_start_new_chain(mv_chan, grp_start);
615
616submit_done:
617 spin_unlock_bh(&mv_chan->lock);
618
619 return cookie;
620}
621
622/* returns the number of allocated descriptors */
aa1e6f1a 623static int mv_xor_alloc_chan_resources(struct dma_chan *chan)
ff7b0479
SB
624{
625 char *hw_desc;
626 int idx;
627 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
628 struct mv_xor_desc_slot *slot = NULL;
b503fa01 629 int num_descs_in_pool = MV_XOR_POOL_SIZE/MV_XOR_SLOT_SIZE;
ff7b0479
SB
630
631 /* Allocate descriptor slots */
632 idx = mv_chan->slots_allocated;
633 while (idx < num_descs_in_pool) {
634 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
635 if (!slot) {
636 printk(KERN_INFO "MV XOR Channel only initialized"
637 " %d descriptor slots", idx);
638 break;
639 }
1ef48a26 640 hw_desc = (char *) mv_chan->dma_desc_pool_virt;
ff7b0479
SB
641 slot->hw_desc = (void *) &hw_desc[idx * MV_XOR_SLOT_SIZE];
642
643 dma_async_tx_descriptor_init(&slot->async_tx, chan);
644 slot->async_tx.tx_submit = mv_xor_tx_submit;
645 INIT_LIST_HEAD(&slot->chain_node);
646 INIT_LIST_HEAD(&slot->slot_node);
64203b67 647 INIT_LIST_HEAD(&slot->tx_list);
1ef48a26 648 hw_desc = (char *) mv_chan->dma_desc_pool;
ff7b0479
SB
649 slot->async_tx.phys =
650 (dma_addr_t) &hw_desc[idx * MV_XOR_SLOT_SIZE];
651 slot->idx = idx++;
652
653 spin_lock_bh(&mv_chan->lock);
654 mv_chan->slots_allocated = idx;
655 list_add_tail(&slot->slot_node, &mv_chan->all_slots);
656 spin_unlock_bh(&mv_chan->lock);
657 }
658
659 if (mv_chan->slots_allocated && !mv_chan->last_used)
660 mv_chan->last_used = list_entry(mv_chan->all_slots.next,
661 struct mv_xor_desc_slot,
662 slot_node);
663
c98c1781 664 dev_dbg(mv_chan_to_devp(mv_chan),
ff7b0479
SB
665 "allocated %d descriptor slots last_used: %p\n",
666 mv_chan->slots_allocated, mv_chan->last_used);
667
668 return mv_chan->slots_allocated ? : -ENOMEM;
669}
670
671static struct dma_async_tx_descriptor *
672mv_xor_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
673 size_t len, unsigned long flags)
674{
675 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
676 struct mv_xor_desc_slot *sw_desc, *grp_start;
677 int slot_cnt;
678
c98c1781 679 dev_dbg(mv_chan_to_devp(mv_chan),
ff7b0479
SB
680 "%s dest: %x src %x len: %u flags: %ld\n",
681 __func__, dest, src, len, flags);
682 if (unlikely(len < MV_XOR_MIN_BYTE_COUNT))
683 return NULL;
684
7912d300 685 BUG_ON(len > MV_XOR_MAX_BYTE_COUNT);
ff7b0479
SB
686
687 spin_lock_bh(&mv_chan->lock);
688 slot_cnt = mv_chan_memcpy_slot_count(len);
689 sw_desc = mv_xor_alloc_slots(mv_chan, slot_cnt, 1);
690 if (sw_desc) {
691 sw_desc->type = DMA_MEMCPY;
692 sw_desc->async_tx.flags = flags;
693 grp_start = sw_desc->group_head;
694 mv_desc_init(grp_start, flags);
695 mv_desc_set_byte_count(grp_start, len);
696 mv_desc_set_dest_addr(sw_desc->group_head, dest);
697 mv_desc_set_src_addr(grp_start, 0, src);
698 sw_desc->unmap_src_cnt = 1;
699 sw_desc->unmap_len = len;
700 }
701 spin_unlock_bh(&mv_chan->lock);
702
c98c1781 703 dev_dbg(mv_chan_to_devp(mv_chan),
ff7b0479
SB
704 "%s sw_desc %p async_tx %p\n",
705 __func__, sw_desc, sw_desc ? &sw_desc->async_tx : 0);
706
707 return sw_desc ? &sw_desc->async_tx : NULL;
708}
709
710static struct dma_async_tx_descriptor *
711mv_xor_prep_dma_memset(struct dma_chan *chan, dma_addr_t dest, int value,
712 size_t len, unsigned long flags)
713{
714 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
715 struct mv_xor_desc_slot *sw_desc, *grp_start;
716 int slot_cnt;
717
c98c1781 718 dev_dbg(mv_chan_to_devp(mv_chan),
ff7b0479
SB
719 "%s dest: %x len: %u flags: %ld\n",
720 __func__, dest, len, flags);
721 if (unlikely(len < MV_XOR_MIN_BYTE_COUNT))
722 return NULL;
723
7912d300 724 BUG_ON(len > MV_XOR_MAX_BYTE_COUNT);
ff7b0479
SB
725
726 spin_lock_bh(&mv_chan->lock);
727 slot_cnt = mv_chan_memset_slot_count(len);
728 sw_desc = mv_xor_alloc_slots(mv_chan, slot_cnt, 1);
729 if (sw_desc) {
730 sw_desc->type = DMA_MEMSET;
731 sw_desc->async_tx.flags = flags;
732 grp_start = sw_desc->group_head;
733 mv_desc_init(grp_start, flags);
734 mv_desc_set_byte_count(grp_start, len);
735 mv_desc_set_dest_addr(sw_desc->group_head, dest);
736 mv_desc_set_block_fill_val(grp_start, value);
737 sw_desc->unmap_src_cnt = 1;
738 sw_desc->unmap_len = len;
739 }
740 spin_unlock_bh(&mv_chan->lock);
c98c1781 741 dev_dbg(mv_chan_to_devp(mv_chan),
ff7b0479
SB
742 "%s sw_desc %p async_tx %p \n",
743 __func__, sw_desc, &sw_desc->async_tx);
744 return sw_desc ? &sw_desc->async_tx : NULL;
745}
746
747static struct dma_async_tx_descriptor *
748mv_xor_prep_dma_xor(struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src,
749 unsigned int src_cnt, size_t len, unsigned long flags)
750{
751 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
752 struct mv_xor_desc_slot *sw_desc, *grp_start;
753 int slot_cnt;
754
755 if (unlikely(len < MV_XOR_MIN_BYTE_COUNT))
756 return NULL;
757
7912d300 758 BUG_ON(len > MV_XOR_MAX_BYTE_COUNT);
ff7b0479 759
c98c1781 760 dev_dbg(mv_chan_to_devp(mv_chan),
ff7b0479
SB
761 "%s src_cnt: %d len: dest %x %u flags: %ld\n",
762 __func__, src_cnt, len, dest, flags);
763
764 spin_lock_bh(&mv_chan->lock);
765 slot_cnt = mv_chan_xor_slot_count(len, src_cnt);
766 sw_desc = mv_xor_alloc_slots(mv_chan, slot_cnt, 1);
767 if (sw_desc) {
768 sw_desc->type = DMA_XOR;
769 sw_desc->async_tx.flags = flags;
770 grp_start = sw_desc->group_head;
771 mv_desc_init(grp_start, flags);
772 /* the byte count field is the same as in memcpy desc*/
773 mv_desc_set_byte_count(grp_start, len);
774 mv_desc_set_dest_addr(sw_desc->group_head, dest);
775 sw_desc->unmap_src_cnt = src_cnt;
776 sw_desc->unmap_len = len;
777 while (src_cnt--)
778 mv_desc_set_src_addr(grp_start, src_cnt, src[src_cnt]);
779 }
780 spin_unlock_bh(&mv_chan->lock);
c98c1781 781 dev_dbg(mv_chan_to_devp(mv_chan),
ff7b0479
SB
782 "%s sw_desc %p async_tx %p \n",
783 __func__, sw_desc, &sw_desc->async_tx);
784 return sw_desc ? &sw_desc->async_tx : NULL;
785}
786
787static void mv_xor_free_chan_resources(struct dma_chan *chan)
788{
789 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
790 struct mv_xor_desc_slot *iter, *_iter;
791 int in_use_descs = 0;
792
793 mv_xor_slot_cleanup(mv_chan);
794
795 spin_lock_bh(&mv_chan->lock);
796 list_for_each_entry_safe(iter, _iter, &mv_chan->chain,
797 chain_node) {
798 in_use_descs++;
799 list_del(&iter->chain_node);
800 }
801 list_for_each_entry_safe(iter, _iter, &mv_chan->completed_slots,
802 completed_node) {
803 in_use_descs++;
804 list_del(&iter->completed_node);
805 }
806 list_for_each_entry_safe_reverse(
807 iter, _iter, &mv_chan->all_slots, slot_node) {
808 list_del(&iter->slot_node);
809 kfree(iter);
810 mv_chan->slots_allocated--;
811 }
812 mv_chan->last_used = NULL;
813
c98c1781 814 dev_dbg(mv_chan_to_devp(mv_chan), "%s slots_allocated %d\n",
ff7b0479
SB
815 __func__, mv_chan->slots_allocated);
816 spin_unlock_bh(&mv_chan->lock);
817
818 if (in_use_descs)
c98c1781 819 dev_err(mv_chan_to_devp(mv_chan),
ff7b0479
SB
820 "freeing %d in use descriptors!\n", in_use_descs);
821}
822
823/**
07934481 824 * mv_xor_status - poll the status of an XOR transaction
ff7b0479
SB
825 * @chan: XOR channel handle
826 * @cookie: XOR transaction identifier
07934481 827 * @txstate: XOR transactions state holder (or NULL)
ff7b0479 828 */
07934481 829static enum dma_status mv_xor_status(struct dma_chan *chan,
ff7b0479 830 dma_cookie_t cookie,
07934481 831 struct dma_tx_state *txstate)
ff7b0479
SB
832{
833 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
ff7b0479
SB
834 enum dma_status ret;
835
96a2af41 836 ret = dma_cookie_status(chan, cookie, txstate);
ff7b0479
SB
837 if (ret == DMA_SUCCESS) {
838 mv_xor_clean_completed_slots(mv_chan);
839 return ret;
840 }
841 mv_xor_slot_cleanup(mv_chan);
842
96a2af41 843 return dma_cookie_status(chan, cookie, txstate);
ff7b0479
SB
844}
845
846static void mv_dump_xor_regs(struct mv_xor_chan *chan)
847{
848 u32 val;
849
850 val = __raw_readl(XOR_CONFIG(chan));
1ba151cd 851 dev_err(mv_chan_to_devp(chan), "config 0x%08x\n", val);
ff7b0479
SB
852
853 val = __raw_readl(XOR_ACTIVATION(chan));
1ba151cd 854 dev_err(mv_chan_to_devp(chan), "activation 0x%08x\n", val);
ff7b0479
SB
855
856 val = __raw_readl(XOR_INTR_CAUSE(chan));
1ba151cd 857 dev_err(mv_chan_to_devp(chan), "intr cause 0x%08x\n", val);
ff7b0479
SB
858
859 val = __raw_readl(XOR_INTR_MASK(chan));
1ba151cd 860 dev_err(mv_chan_to_devp(chan), "intr mask 0x%08x\n", val);
ff7b0479
SB
861
862 val = __raw_readl(XOR_ERROR_CAUSE(chan));
1ba151cd 863 dev_err(mv_chan_to_devp(chan), "error cause 0x%08x\n", val);
ff7b0479
SB
864
865 val = __raw_readl(XOR_ERROR_ADDR(chan));
1ba151cd 866 dev_err(mv_chan_to_devp(chan), "error addr 0x%08x\n", val);
ff7b0479
SB
867}
868
869static void mv_xor_err_interrupt_handler(struct mv_xor_chan *chan,
870 u32 intr_cause)
871{
872 if (intr_cause & (1 << 4)) {
c98c1781 873 dev_dbg(mv_chan_to_devp(chan),
ff7b0479
SB
874 "ignore this error\n");
875 return;
876 }
877
c98c1781 878 dev_err(mv_chan_to_devp(chan),
1ba151cd 879 "error on chan %d. intr cause 0x%08x\n",
a3fc74bc 880 chan->idx, intr_cause);
ff7b0479
SB
881
882 mv_dump_xor_regs(chan);
883 BUG();
884}
885
886static irqreturn_t mv_xor_interrupt_handler(int irq, void *data)
887{
888 struct mv_xor_chan *chan = data;
889 u32 intr_cause = mv_chan_get_intr_cause(chan);
890
c98c1781 891 dev_dbg(mv_chan_to_devp(chan), "intr cause %x\n", intr_cause);
ff7b0479
SB
892
893 if (mv_is_err_intr(intr_cause))
894 mv_xor_err_interrupt_handler(chan, intr_cause);
895
896 tasklet_schedule(&chan->irq_tasklet);
897
898 mv_xor_device_clear_eoc_cause(chan);
899
900 return IRQ_HANDLED;
901}
902
903static void mv_xor_issue_pending(struct dma_chan *chan)
904{
905 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
906
907 if (mv_chan->pending >= MV_XOR_THRESHOLD) {
908 mv_chan->pending = 0;
909 mv_chan_activate(mv_chan);
910 }
911}
912
913/*
914 * Perform a transaction to verify the HW works.
915 */
916#define MV_XOR_TEST_SIZE 2000
917
c2714334 918static int mv_xor_memcpy_self_test(struct mv_xor_chan *mv_chan)
ff7b0479
SB
919{
920 int i;
921 void *src, *dest;
922 dma_addr_t src_dma, dest_dma;
923 struct dma_chan *dma_chan;
924 dma_cookie_t cookie;
925 struct dma_async_tx_descriptor *tx;
926 int err = 0;
ff7b0479
SB
927
928 src = kmalloc(sizeof(u8) * MV_XOR_TEST_SIZE, GFP_KERNEL);
929 if (!src)
930 return -ENOMEM;
931
932 dest = kzalloc(sizeof(u8) * MV_XOR_TEST_SIZE, GFP_KERNEL);
933 if (!dest) {
934 kfree(src);
935 return -ENOMEM;
936 }
937
938 /* Fill in src buffer */
939 for (i = 0; i < MV_XOR_TEST_SIZE; i++)
940 ((u8 *) src)[i] = (u8)i;
941
275cc0c8 942 dma_chan = &mv_chan->dmachan;
aa1e6f1a 943 if (mv_xor_alloc_chan_resources(dma_chan) < 1) {
ff7b0479
SB
944 err = -ENODEV;
945 goto out;
946 }
947
948 dest_dma = dma_map_single(dma_chan->device->dev, dest,
949 MV_XOR_TEST_SIZE, DMA_FROM_DEVICE);
950
951 src_dma = dma_map_single(dma_chan->device->dev, src,
952 MV_XOR_TEST_SIZE, DMA_TO_DEVICE);
953
954 tx = mv_xor_prep_dma_memcpy(dma_chan, dest_dma, src_dma,
955 MV_XOR_TEST_SIZE, 0);
956 cookie = mv_xor_tx_submit(tx);
957 mv_xor_issue_pending(dma_chan);
958 async_tx_ack(tx);
959 msleep(1);
960
07934481 961 if (mv_xor_status(dma_chan, cookie, NULL) !=
ff7b0479 962 DMA_SUCCESS) {
a3fc74bc
TP
963 dev_err(dma_chan->device->dev,
964 "Self-test copy timed out, disabling\n");
ff7b0479
SB
965 err = -ENODEV;
966 goto free_resources;
967 }
968
c35064c4 969 dma_sync_single_for_cpu(dma_chan->device->dev, dest_dma,
ff7b0479
SB
970 MV_XOR_TEST_SIZE, DMA_FROM_DEVICE);
971 if (memcmp(src, dest, MV_XOR_TEST_SIZE)) {
a3fc74bc
TP
972 dev_err(dma_chan->device->dev,
973 "Self-test copy failed compare, disabling\n");
ff7b0479
SB
974 err = -ENODEV;
975 goto free_resources;
976 }
977
978free_resources:
979 mv_xor_free_chan_resources(dma_chan);
980out:
981 kfree(src);
982 kfree(dest);
983 return err;
984}
985
986#define MV_XOR_NUM_SRC_TEST 4 /* must be <= 15 */
463a1f8b 987static int
275cc0c8 988mv_xor_xor_self_test(struct mv_xor_chan *mv_chan)
ff7b0479
SB
989{
990 int i, src_idx;
991 struct page *dest;
992 struct page *xor_srcs[MV_XOR_NUM_SRC_TEST];
993 dma_addr_t dma_srcs[MV_XOR_NUM_SRC_TEST];
994 dma_addr_t dest_dma;
995 struct dma_async_tx_descriptor *tx;
996 struct dma_chan *dma_chan;
997 dma_cookie_t cookie;
998 u8 cmp_byte = 0;
999 u32 cmp_word;
1000 int err = 0;
ff7b0479
SB
1001
1002 for (src_idx = 0; src_idx < MV_XOR_NUM_SRC_TEST; src_idx++) {
1003 xor_srcs[src_idx] = alloc_page(GFP_KERNEL);
a09b09ae
RK
1004 if (!xor_srcs[src_idx]) {
1005 while (src_idx--)
ff7b0479 1006 __free_page(xor_srcs[src_idx]);
a09b09ae
RK
1007 return -ENOMEM;
1008 }
ff7b0479
SB
1009 }
1010
1011 dest = alloc_page(GFP_KERNEL);
a09b09ae
RK
1012 if (!dest) {
1013 while (src_idx--)
ff7b0479 1014 __free_page(xor_srcs[src_idx]);
a09b09ae
RK
1015 return -ENOMEM;
1016 }
ff7b0479
SB
1017
1018 /* Fill in src buffers */
1019 for (src_idx = 0; src_idx < MV_XOR_NUM_SRC_TEST; src_idx++) {
1020 u8 *ptr = page_address(xor_srcs[src_idx]);
1021 for (i = 0; i < PAGE_SIZE; i++)
1022 ptr[i] = (1 << src_idx);
1023 }
1024
1025 for (src_idx = 0; src_idx < MV_XOR_NUM_SRC_TEST; src_idx++)
1026 cmp_byte ^= (u8) (1 << src_idx);
1027
1028 cmp_word = (cmp_byte << 24) | (cmp_byte << 16) |
1029 (cmp_byte << 8) | cmp_byte;
1030
1031 memset(page_address(dest), 0, PAGE_SIZE);
1032
275cc0c8 1033 dma_chan = &mv_chan->dmachan;
aa1e6f1a 1034 if (mv_xor_alloc_chan_resources(dma_chan) < 1) {
ff7b0479
SB
1035 err = -ENODEV;
1036 goto out;
1037 }
1038
1039 /* test xor */
1040 dest_dma = dma_map_page(dma_chan->device->dev, dest, 0, PAGE_SIZE,
1041 DMA_FROM_DEVICE);
1042
1043 for (i = 0; i < MV_XOR_NUM_SRC_TEST; i++)
1044 dma_srcs[i] = dma_map_page(dma_chan->device->dev, xor_srcs[i],
1045 0, PAGE_SIZE, DMA_TO_DEVICE);
1046
1047 tx = mv_xor_prep_dma_xor(dma_chan, dest_dma, dma_srcs,
1048 MV_XOR_NUM_SRC_TEST, PAGE_SIZE, 0);
1049
1050 cookie = mv_xor_tx_submit(tx);
1051 mv_xor_issue_pending(dma_chan);
1052 async_tx_ack(tx);
1053 msleep(8);
1054
07934481 1055 if (mv_xor_status(dma_chan, cookie, NULL) !=
ff7b0479 1056 DMA_SUCCESS) {
a3fc74bc
TP
1057 dev_err(dma_chan->device->dev,
1058 "Self-test xor timed out, disabling\n");
ff7b0479
SB
1059 err = -ENODEV;
1060 goto free_resources;
1061 }
1062
c35064c4 1063 dma_sync_single_for_cpu(dma_chan->device->dev, dest_dma,
ff7b0479
SB
1064 PAGE_SIZE, DMA_FROM_DEVICE);
1065 for (i = 0; i < (PAGE_SIZE / sizeof(u32)); i++) {
1066 u32 *ptr = page_address(dest);
1067 if (ptr[i] != cmp_word) {
a3fc74bc 1068 dev_err(dma_chan->device->dev,
1ba151cd
JP
1069 "Self-test xor failed compare, disabling. index %d, data %x, expected %x\n",
1070 i, ptr[i], cmp_word);
ff7b0479
SB
1071 err = -ENODEV;
1072 goto free_resources;
1073 }
1074 }
1075
1076free_resources:
1077 mv_xor_free_chan_resources(dma_chan);
1078out:
1079 src_idx = MV_XOR_NUM_SRC_TEST;
1080 while (src_idx--)
1081 __free_page(xor_srcs[src_idx]);
1082 __free_page(dest);
1083 return err;
1084}
1085
34c93c86
AL
1086/* This driver does not implement any of the optional DMA operations. */
1087static int
1088mv_xor_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
1089 unsigned long arg)
1090{
1091 return -ENOSYS;
1092}
1093
1ef48a26 1094static int mv_xor_channel_remove(struct mv_xor_chan *mv_chan)
ff7b0479 1095{
ff7b0479 1096 struct dma_chan *chan, *_chan;
1ef48a26 1097 struct device *dev = mv_chan->dmadev.dev;
ff7b0479 1098
1ef48a26 1099 dma_async_device_unregister(&mv_chan->dmadev);
ff7b0479 1100
b503fa01 1101 dma_free_coherent(dev, MV_XOR_POOL_SIZE,
1ef48a26 1102 mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool);
ff7b0479 1103
1ef48a26 1104 list_for_each_entry_safe(chan, _chan, &mv_chan->dmadev.channels,
a6b4a9d2 1105 device_node) {
ff7b0479
SB
1106 list_del(&chan->device_node);
1107 }
1108
88eb92cb
TP
1109 free_irq(mv_chan->irq, mv_chan);
1110
ff7b0479
SB
1111 return 0;
1112}
1113
1ef48a26 1114static struct mv_xor_chan *
297eedba 1115mv_xor_channel_add(struct mv_xor_device *xordev,
a6b4a9d2 1116 struct platform_device *pdev,
b503fa01 1117 int idx, dma_cap_mask_t cap_mask, int irq)
ff7b0479
SB
1118{
1119 int ret = 0;
ff7b0479
SB
1120 struct mv_xor_chan *mv_chan;
1121 struct dma_device *dma_dev;
ff7b0479 1122
1ef48a26
TP
1123 mv_chan = devm_kzalloc(&pdev->dev, sizeof(*mv_chan), GFP_KERNEL);
1124 if (!mv_chan) {
1125 ret = -ENOMEM;
1126 goto err_free_dma;
1127 }
ff7b0479 1128
9aedbdba 1129 mv_chan->idx = idx;
88eb92cb 1130 mv_chan->irq = irq;
ff7b0479 1131
1ef48a26 1132 dma_dev = &mv_chan->dmadev;
ff7b0479
SB
1133
1134 /* allocate coherent memory for hardware descriptors
1135 * note: writecombine gives slightly better performance, but
1136 * requires that we explicitly flush the writes
1137 */
1ef48a26 1138 mv_chan->dma_desc_pool_virt =
b503fa01 1139 dma_alloc_writecombine(&pdev->dev, MV_XOR_POOL_SIZE,
1ef48a26
TP
1140 &mv_chan->dma_desc_pool, GFP_KERNEL);
1141 if (!mv_chan->dma_desc_pool_virt)
a6b4a9d2 1142 return ERR_PTR(-ENOMEM);
ff7b0479
SB
1143
1144 /* discover transaction capabilites from the platform data */
a6b4a9d2 1145 dma_dev->cap_mask = cap_mask;
ff7b0479
SB
1146
1147 INIT_LIST_HEAD(&dma_dev->channels);
1148
1149 /* set base routines */
1150 dma_dev->device_alloc_chan_resources = mv_xor_alloc_chan_resources;
1151 dma_dev->device_free_chan_resources = mv_xor_free_chan_resources;
07934481 1152 dma_dev->device_tx_status = mv_xor_status;
ff7b0479 1153 dma_dev->device_issue_pending = mv_xor_issue_pending;
34c93c86 1154 dma_dev->device_control = mv_xor_control;
ff7b0479
SB
1155 dma_dev->dev = &pdev->dev;
1156
1157 /* set prep routines based on capability */
1158 if (dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask))
1159 dma_dev->device_prep_dma_memcpy = mv_xor_prep_dma_memcpy;
1160 if (dma_has_cap(DMA_MEMSET, dma_dev->cap_mask))
1161 dma_dev->device_prep_dma_memset = mv_xor_prep_dma_memset;
1162 if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) {
c019894e 1163 dma_dev->max_xor = 8;
ff7b0479
SB
1164 dma_dev->device_prep_dma_xor = mv_xor_prep_dma_xor;
1165 }
1166
297eedba 1167 mv_chan->mmr_base = xordev->xor_base;
ff7b0479
SB
1168 if (!mv_chan->mmr_base) {
1169 ret = -ENOMEM;
1170 goto err_free_dma;
1171 }
1172 tasklet_init(&mv_chan->irq_tasklet, mv_xor_tasklet, (unsigned long)
1173 mv_chan);
1174
1175 /* clear errors before enabling interrupts */
1176 mv_xor_device_clear_err_status(mv_chan);
1177
2d0a0745
TP
1178 ret = request_irq(mv_chan->irq, mv_xor_interrupt_handler,
1179 0, dev_name(&pdev->dev), mv_chan);
ff7b0479
SB
1180 if (ret)
1181 goto err_free_dma;
1182
1183 mv_chan_unmask_interrupts(mv_chan);
1184
1185 mv_set_mode(mv_chan, DMA_MEMCPY);
1186
1187 spin_lock_init(&mv_chan->lock);
1188 INIT_LIST_HEAD(&mv_chan->chain);
1189 INIT_LIST_HEAD(&mv_chan->completed_slots);
1190 INIT_LIST_HEAD(&mv_chan->all_slots);
98817b99
TP
1191 mv_chan->dmachan.device = dma_dev;
1192 dma_cookie_init(&mv_chan->dmachan);
ff7b0479 1193
98817b99 1194 list_add_tail(&mv_chan->dmachan.device_node, &dma_dev->channels);
ff7b0479
SB
1195
1196 if (dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask)) {
275cc0c8 1197 ret = mv_xor_memcpy_self_test(mv_chan);
ff7b0479
SB
1198 dev_dbg(&pdev->dev, "memcpy self test returned %d\n", ret);
1199 if (ret)
2d0a0745 1200 goto err_free_irq;
ff7b0479
SB
1201 }
1202
1203 if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) {
275cc0c8 1204 ret = mv_xor_xor_self_test(mv_chan);
ff7b0479
SB
1205 dev_dbg(&pdev->dev, "xor self test returned %d\n", ret);
1206 if (ret)
2d0a0745 1207 goto err_free_irq;
ff7b0479
SB
1208 }
1209
1ba151cd
JP
1210 dev_info(&pdev->dev, "Marvell XOR: ( %s%s%s%s)\n",
1211 dma_has_cap(DMA_XOR, dma_dev->cap_mask) ? "xor " : "",
1212 dma_has_cap(DMA_MEMSET, dma_dev->cap_mask) ? "fill " : "",
1213 dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask) ? "cpy " : "",
1214 dma_has_cap(DMA_INTERRUPT, dma_dev->cap_mask) ? "intr " : "");
ff7b0479
SB
1215
1216 dma_async_device_register(dma_dev);
1ef48a26 1217 return mv_chan;
ff7b0479 1218
2d0a0745
TP
1219err_free_irq:
1220 free_irq(mv_chan->irq, mv_chan);
ff7b0479 1221 err_free_dma:
b503fa01 1222 dma_free_coherent(&pdev->dev, MV_XOR_POOL_SIZE,
1ef48a26 1223 mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool);
a6b4a9d2 1224 return ERR_PTR(ret);
ff7b0479
SB
1225}
1226
1227static void
297eedba 1228mv_xor_conf_mbus_windows(struct mv_xor_device *xordev,
63a9332b 1229 const struct mbus_dram_target_info *dram)
ff7b0479 1230{
297eedba 1231 void __iomem *base = xordev->xor_base;
ff7b0479
SB
1232 u32 win_enable = 0;
1233 int i;
1234
1235 for (i = 0; i < 8; i++) {
1236 writel(0, base + WINDOW_BASE(i));
1237 writel(0, base + WINDOW_SIZE(i));
1238 if (i < 4)
1239 writel(0, base + WINDOW_REMAP_HIGH(i));
1240 }
1241
1242 for (i = 0; i < dram->num_cs; i++) {
63a9332b 1243 const struct mbus_dram_window *cs = dram->cs + i;
ff7b0479
SB
1244
1245 writel((cs->base & 0xffff0000) |
1246 (cs->mbus_attr << 8) |
1247 dram->mbus_dram_target_id, base + WINDOW_BASE(i));
1248 writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i));
1249
1250 win_enable |= (1 << i);
1251 win_enable |= 3 << (16 + (2 * i));
1252 }
1253
1254 writel(win_enable, base + WINDOW_BAR_ENABLE(0));
1255 writel(win_enable, base + WINDOW_BAR_ENABLE(1));
c4b4b732
TP
1256 writel(0, base + WINDOW_OVERRIDE_CTRL(0));
1257 writel(0, base + WINDOW_OVERRIDE_CTRL(1));
ff7b0479
SB
1258}
1259
c2714334 1260static int mv_xor_probe(struct platform_device *pdev)
ff7b0479 1261{
63a9332b 1262 const struct mbus_dram_target_info *dram;
297eedba 1263 struct mv_xor_device *xordev;
7dde453d 1264 struct mv_xor_platform_data *pdata = pdev->dev.platform_data;
ff7b0479 1265 struct resource *res;
60d151f3 1266 int i, ret;
ff7b0479 1267
1ba151cd 1268 dev_notice(&pdev->dev, "Marvell shared XOR driver\n");
ff7b0479 1269
297eedba
TP
1270 xordev = devm_kzalloc(&pdev->dev, sizeof(*xordev), GFP_KERNEL);
1271 if (!xordev)
ff7b0479
SB
1272 return -ENOMEM;
1273
1274 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1275 if (!res)
1276 return -ENODEV;
1277
297eedba
TP
1278 xordev->xor_base = devm_ioremap(&pdev->dev, res->start,
1279 resource_size(res));
1280 if (!xordev->xor_base)
ff7b0479
SB
1281 return -EBUSY;
1282
1283 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1284 if (!res)
1285 return -ENODEV;
1286
297eedba
TP
1287 xordev->xor_high_base = devm_ioremap(&pdev->dev, res->start,
1288 resource_size(res));
1289 if (!xordev->xor_high_base)
ff7b0479
SB
1290 return -EBUSY;
1291
297eedba 1292 platform_set_drvdata(pdev, xordev);
ff7b0479
SB
1293
1294 /*
1295 * (Re-)program MBUS remapping windows if we are asked to.
1296 */
63a9332b
AL
1297 dram = mv_mbus_dram_info();
1298 if (dram)
297eedba 1299 mv_xor_conf_mbus_windows(xordev, dram);
ff7b0479 1300
c510182b
AL
1301 /* Not all platforms can gate the clock, so it is not
1302 * an error if the clock does not exists.
1303 */
297eedba
TP
1304 xordev->clk = clk_get(&pdev->dev, NULL);
1305 if (!IS_ERR(xordev->clk))
1306 clk_prepare_enable(xordev->clk);
c510182b 1307
f7d12ef5
TP
1308 if (pdev->dev.of_node) {
1309 struct device_node *np;
1310 int i = 0;
1311
1312 for_each_child_of_node(pdev->dev.of_node, np) {
1313 dma_cap_mask_t cap_mask;
1314 int irq;
1315
1316 dma_cap_zero(cap_mask);
1317 if (of_property_read_bool(np, "dmacap,memcpy"))
1318 dma_cap_set(DMA_MEMCPY, cap_mask);
1319 if (of_property_read_bool(np, "dmacap,xor"))
1320 dma_cap_set(DMA_XOR, cap_mask);
1321 if (of_property_read_bool(np, "dmacap,memset"))
1322 dma_cap_set(DMA_MEMSET, cap_mask);
1323 if (of_property_read_bool(np, "dmacap,interrupt"))
1324 dma_cap_set(DMA_INTERRUPT, cap_mask);
1325
1326 irq = irq_of_parse_and_map(np, 0);
f8eb9e7d
TP
1327 if (!irq) {
1328 ret = -ENODEV;
f7d12ef5
TP
1329 goto err_channel_add;
1330 }
1331
1332 xordev->channels[i] =
1333 mv_xor_channel_add(xordev, pdev, i,
1334 cap_mask, irq);
1335 if (IS_ERR(xordev->channels[i])) {
1336 ret = PTR_ERR(xordev->channels[i]);
73d9cdca 1337 xordev->channels[i] = NULL;
f7d12ef5
TP
1338 irq_dispose_mapping(irq);
1339 goto err_channel_add;
1340 }
1341
1342 i++;
1343 }
1344 } else if (pdata && pdata->channels) {
60d151f3 1345 for (i = 0; i < MV_XOR_MAX_CHANNELS; i++) {
e39f6ec1 1346 struct mv_xor_channel_data *cd;
60d151f3
TP
1347 int irq;
1348
1349 cd = &pdata->channels[i];
1350 if (!cd) {
1351 ret = -ENODEV;
1352 goto err_channel_add;
1353 }
1354
1355 irq = platform_get_irq(pdev, i);
1356 if (irq < 0) {
1357 ret = irq;
1358 goto err_channel_add;
1359 }
1360
297eedba 1361 xordev->channels[i] =
9aedbdba 1362 mv_xor_channel_add(xordev, pdev, i,
b503fa01 1363 cd->cap_mask, irq);
297eedba
TP
1364 if (IS_ERR(xordev->channels[i])) {
1365 ret = PTR_ERR(xordev->channels[i]);
60d151f3
TP
1366 goto err_channel_add;
1367 }
1368 }
1369 }
c510182b 1370
ff7b0479 1371 return 0;
60d151f3
TP
1372
1373err_channel_add:
1374 for (i = 0; i < MV_XOR_MAX_CHANNELS; i++)
f7d12ef5 1375 if (xordev->channels[i]) {
ab6e439f 1376 mv_xor_channel_remove(xordev->channels[i]);
f7d12ef5
TP
1377 if (pdev->dev.of_node)
1378 irq_dispose_mapping(xordev->channels[i]->irq);
f7d12ef5 1379 }
60d151f3 1380
dab92064
TP
1381 if (!IS_ERR(xordev->clk)) {
1382 clk_disable_unprepare(xordev->clk);
1383 clk_put(xordev->clk);
1384 }
1385
60d151f3 1386 return ret;
ff7b0479
SB
1387}
1388
c2714334 1389static int mv_xor_remove(struct platform_device *pdev)
ff7b0479 1390{
297eedba 1391 struct mv_xor_device *xordev = platform_get_drvdata(pdev);
60d151f3
TP
1392 int i;
1393
1394 for (i = 0; i < MV_XOR_MAX_CHANNELS; i++) {
297eedba
TP
1395 if (xordev->channels[i])
1396 mv_xor_channel_remove(xordev->channels[i]);
60d151f3 1397 }
c510182b 1398
297eedba
TP
1399 if (!IS_ERR(xordev->clk)) {
1400 clk_disable_unprepare(xordev->clk);
1401 clk_put(xordev->clk);
c510182b
AL
1402 }
1403
ff7b0479
SB
1404 return 0;
1405}
1406
f7d12ef5 1407#ifdef CONFIG_OF
c2714334 1408static struct of_device_id mv_xor_dt_ids[] = {
f7d12ef5
TP
1409 { .compatible = "marvell,orion-xor", },
1410 {},
1411};
1412MODULE_DEVICE_TABLE(of, mv_xor_dt_ids);
1413#endif
1414
61971656
TP
1415static struct platform_driver mv_xor_driver = {
1416 .probe = mv_xor_probe,
c2714334 1417 .remove = mv_xor_remove,
ff7b0479 1418 .driver = {
f7d12ef5
TP
1419 .owner = THIS_MODULE,
1420 .name = MV_XOR_NAME,
1421 .of_match_table = of_match_ptr(mv_xor_dt_ids),
ff7b0479
SB
1422 },
1423};
1424
1425
1426static int __init mv_xor_init(void)
1427{
61971656 1428 return platform_driver_register(&mv_xor_driver);
ff7b0479
SB
1429}
1430module_init(mv_xor_init);
1431
1432/* it's currently unsafe to unload this module */
1433#if 0
1434static void __exit mv_xor_exit(void)
1435{
1436 platform_driver_unregister(&mv_xor_driver);
ff7b0479
SB
1437 return;
1438}
1439
1440module_exit(mv_xor_exit);
1441#endif
1442
1443MODULE_AUTHOR("Saeed Bishara <saeed@marvell.com>");
1444MODULE_DESCRIPTION("DMA engine driver for Marvell's XOR engine");
1445MODULE_LICENSE("GPL");