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