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