2 * offload engine driver for the Marvell XOR engine
3 * Copyright (C) 2007, 2008, Marvell International Ltd.
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.
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
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/slab.h>
18 #include <linux/delay.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/spinlock.h>
21 #include <linux/interrupt.h>
22 #include <linux/platform_device.h>
23 #include <linux/memory.h>
24 #include <linux/clk.h>
26 #include <linux/of_irq.h>
27 #include <linux/irqdomain.h>
28 #include <linux/platform_data/dma-mv_xor.h>
30 #include "dmaengine.h"
33 static void mv_xor_issue_pending(struct dma_chan
*chan
);
35 #define to_mv_xor_chan(chan) \
36 container_of(chan, struct mv_xor_chan, dmachan)
38 #define to_mv_xor_slot(tx) \
39 container_of(tx, struct mv_xor_desc_slot, async_tx)
41 #define mv_chan_to_devp(chan) \
44 static void mv_desc_init(struct mv_xor_desc_slot
*desc
,
45 dma_addr_t addr
, u32 byte_count
,
46 enum dma_ctrl_flags flags
)
48 struct mv_xor_desc
*hw_desc
= desc
->hw_desc
;
50 hw_desc
->status
= XOR_DESC_DMA_OWNED
;
51 hw_desc
->phy_next_desc
= 0;
52 /* Enable end-of-descriptor interrupts only for DMA_PREP_INTERRUPT */
53 hw_desc
->desc_command
= (flags
& DMA_PREP_INTERRUPT
) ?
54 XOR_DESC_EOD_INT_EN
: 0;
55 hw_desc
->phy_dest_addr
= addr
;
56 hw_desc
->byte_count
= byte_count
;
59 static void mv_desc_set_next_desc(struct mv_xor_desc_slot
*desc
,
62 struct mv_xor_desc
*hw_desc
= desc
->hw_desc
;
63 BUG_ON(hw_desc
->phy_next_desc
);
64 hw_desc
->phy_next_desc
= next_desc_addr
;
67 static void mv_desc_clear_next_desc(struct mv_xor_desc_slot
*desc
)
69 struct mv_xor_desc
*hw_desc
= desc
->hw_desc
;
70 hw_desc
->phy_next_desc
= 0;
73 static void mv_desc_set_src_addr(struct mv_xor_desc_slot
*desc
,
74 int index
, dma_addr_t addr
)
76 struct mv_xor_desc
*hw_desc
= desc
->hw_desc
;
77 hw_desc
->phy_src_addr
[mv_phy_src_idx(index
)] = addr
;
78 if (desc
->type
== DMA_XOR
)
79 hw_desc
->desc_command
|= (1 << index
);
82 static u32
mv_chan_get_current_desc(struct mv_xor_chan
*chan
)
84 return readl_relaxed(XOR_CURR_DESC(chan
));
87 static void mv_chan_set_next_descriptor(struct mv_xor_chan
*chan
,
90 writel_relaxed(next_desc_addr
, XOR_NEXT_DESC(chan
));
93 static void mv_chan_unmask_interrupts(struct mv_xor_chan
*chan
)
95 u32 val
= readl_relaxed(XOR_INTR_MASK(chan
));
96 val
|= XOR_INTR_MASK_VALUE
<< (chan
->idx
* 16);
97 writel_relaxed(val
, XOR_INTR_MASK(chan
));
100 static u32
mv_chan_get_intr_cause(struct mv_xor_chan
*chan
)
102 u32 intr_cause
= readl_relaxed(XOR_INTR_CAUSE(chan
));
103 intr_cause
= (intr_cause
>> (chan
->idx
* 16)) & 0xFFFF;
107 static void mv_xor_device_clear_eoc_cause(struct mv_xor_chan
*chan
)
111 val
= XOR_INT_END_OF_DESC
| XOR_INT_END_OF_CHAIN
| XOR_INT_STOPPED
;
112 val
= ~(val
<< (chan
->idx
* 16));
113 dev_dbg(mv_chan_to_devp(chan
), "%s, val 0x%08x\n", __func__
, val
);
114 writel_relaxed(val
, XOR_INTR_CAUSE(chan
));
117 static void mv_xor_device_clear_err_status(struct mv_xor_chan
*chan
)
119 u32 val
= 0xFFFF0000 >> (chan
->idx
* 16);
120 writel_relaxed(val
, XOR_INTR_CAUSE(chan
));
123 static void mv_set_mode(struct mv_xor_chan
*chan
,
124 enum dma_transaction_type type
)
127 u32 config
= readl_relaxed(XOR_CONFIG(chan
));
131 op_mode
= XOR_OPERATION_MODE_XOR
;
134 op_mode
= XOR_OPERATION_MODE_MEMCPY
;
137 dev_err(mv_chan_to_devp(chan
),
138 "error: unsupported operation %d\n",
147 #if defined(__BIG_ENDIAN)
148 config
|= XOR_DESCRIPTOR_SWAP
;
150 config
&= ~XOR_DESCRIPTOR_SWAP
;
153 writel_relaxed(config
, XOR_CONFIG(chan
));
154 chan
->current_type
= type
;
157 static void mv_chan_activate(struct mv_xor_chan
*chan
)
159 dev_dbg(mv_chan_to_devp(chan
), " activate chan.\n");
161 /* writel ensures all descriptors are flushed before activation */
162 writel(BIT(0), XOR_ACTIVATION(chan
));
165 static char mv_chan_is_busy(struct mv_xor_chan
*chan
)
167 u32 state
= readl_relaxed(XOR_ACTIVATION(chan
));
169 state
= (state
>> 4) & 0x3;
171 return (state
== 1) ? 1 : 0;
175 * mv_xor_free_slots - flags descriptor slots for reuse
176 * @slot: Slot to free
177 * Caller must hold &mv_chan->lock while calling this function
179 static void mv_xor_free_slots(struct mv_xor_chan
*mv_chan
,
180 struct mv_xor_desc_slot
*slot
)
182 dev_dbg(mv_chan_to_devp(mv_chan
), "%s %d slot %p\n",
183 __func__
, __LINE__
, slot
);
190 * mv_xor_start_new_chain - program the engine to operate on new chain headed by
192 * Caller must hold &mv_chan->lock while calling this function
194 static void mv_xor_start_new_chain(struct mv_xor_chan
*mv_chan
,
195 struct mv_xor_desc_slot
*sw_desc
)
197 dev_dbg(mv_chan_to_devp(mv_chan
), "%s %d: sw_desc %p\n",
198 __func__
, __LINE__
, sw_desc
);
200 /* set the hardware chain */
201 mv_chan_set_next_descriptor(mv_chan
, sw_desc
->async_tx
.phys
);
204 mv_xor_issue_pending(&mv_chan
->dmachan
);
208 mv_xor_run_tx_complete_actions(struct mv_xor_desc_slot
*desc
,
209 struct mv_xor_chan
*mv_chan
, dma_cookie_t cookie
)
211 BUG_ON(desc
->async_tx
.cookie
< 0);
213 if (desc
->async_tx
.cookie
> 0) {
214 cookie
= desc
->async_tx
.cookie
;
216 /* call the callback (must not sleep or submit new
217 * operations to this channel)
219 if (desc
->async_tx
.callback
)
220 desc
->async_tx
.callback(
221 desc
->async_tx
.callback_param
);
223 dma_descriptor_unmap(&desc
->async_tx
);
226 /* run dependent operations */
227 dma_run_dependencies(&desc
->async_tx
);
233 mv_xor_clean_completed_slots(struct mv_xor_chan
*mv_chan
)
235 struct mv_xor_desc_slot
*iter
, *_iter
;
237 dev_dbg(mv_chan_to_devp(mv_chan
), "%s %d\n", __func__
, __LINE__
);
238 list_for_each_entry_safe(iter
, _iter
, &mv_chan
->completed_slots
,
241 if (async_tx_test_ack(&iter
->async_tx
)) {
242 list_del(&iter
->completed_node
);
243 mv_xor_free_slots(mv_chan
, iter
);
250 mv_xor_clean_slot(struct mv_xor_desc_slot
*desc
,
251 struct mv_xor_chan
*mv_chan
)
253 dev_dbg(mv_chan_to_devp(mv_chan
), "%s %d: desc %p flags %d\n",
254 __func__
, __LINE__
, desc
, desc
->async_tx
.flags
);
255 list_del(&desc
->chain_node
);
256 /* the client is allowed to attach dependent operations
259 if (!async_tx_test_ack(&desc
->async_tx
)) {
260 /* move this slot to the completed_slots */
261 list_add_tail(&desc
->completed_node
, &mv_chan
->completed_slots
);
265 mv_xor_free_slots(mv_chan
, desc
);
269 /* This function must be called with the mv_xor_chan spinlock held */
270 static void mv_xor_slot_cleanup(struct mv_xor_chan
*mv_chan
)
272 struct mv_xor_desc_slot
*iter
, *_iter
;
273 dma_cookie_t cookie
= 0;
274 int busy
= mv_chan_is_busy(mv_chan
);
275 u32 current_desc
= mv_chan_get_current_desc(mv_chan
);
276 int current_cleaned
= 0;
277 struct mv_xor_desc
*hw_desc
;
279 dev_dbg(mv_chan_to_devp(mv_chan
), "%s %d\n", __func__
, __LINE__
);
280 dev_dbg(mv_chan_to_devp(mv_chan
), "current_desc %x\n", current_desc
);
281 mv_xor_clean_completed_slots(mv_chan
);
283 /* free completed slots from the chain starting with
284 * the oldest descriptor
287 list_for_each_entry_safe(iter
, _iter
, &mv_chan
->chain
,
290 /* clean finished descriptors */
291 hw_desc
= iter
->hw_desc
;
292 if (hw_desc
->status
& XOR_DESC_SUCCESS
) {
293 cookie
= mv_xor_run_tx_complete_actions(iter
, mv_chan
,
296 /* done processing desc, clean slot */
297 mv_xor_clean_slot(iter
, mv_chan
);
299 /* break if we did cleaned the current */
300 if (iter
->async_tx
.phys
== current_desc
) {
305 if (iter
->async_tx
.phys
== current_desc
) {
312 if ((busy
== 0) && !list_empty(&mv_chan
->chain
)) {
313 if (current_cleaned
) {
315 * current descriptor cleaned and removed, run
318 iter
= list_entry(mv_chan
->chain
.next
,
319 struct mv_xor_desc_slot
,
321 mv_xor_start_new_chain(mv_chan
, iter
);
323 if (!list_is_last(&iter
->chain_node
, &mv_chan
->chain
)) {
325 * descriptors are still waiting after
326 * current, trigger them
328 iter
= list_entry(iter
->chain_node
.next
,
329 struct mv_xor_desc_slot
,
331 mv_xor_start_new_chain(mv_chan
, iter
);
334 * some descriptors are still waiting
337 tasklet_schedule(&mv_chan
->irq_tasklet
);
343 mv_chan
->dmachan
.completed_cookie
= cookie
;
346 static void mv_xor_tasklet(unsigned long data
)
348 struct mv_xor_chan
*chan
= (struct mv_xor_chan
*) data
;
350 spin_lock_bh(&chan
->lock
);
351 mv_xor_slot_cleanup(chan
);
352 spin_unlock_bh(&chan
->lock
);
355 static struct mv_xor_desc_slot
*
356 mv_xor_alloc_slot(struct mv_xor_chan
*mv_chan
)
358 struct mv_xor_desc_slot
*iter
, *_iter
;
361 /* start search from the last allocated descrtiptor
362 * if a contiguous allocation can not be found start searching
363 * from the beginning of the list
367 iter
= mv_chan
->last_used
;
369 iter
= list_entry(&mv_chan
->all_slots
,
370 struct mv_xor_desc_slot
,
373 list_for_each_entry_safe_continue(
374 iter
, _iter
, &mv_chan
->all_slots
, slot_node
) {
377 prefetch(&_iter
->async_tx
);
378 if (iter
->slot_used
) {
379 /* give up after finding the first busy slot
380 * on the second pass through the list
387 /* pre-ack descriptor */
388 async_tx_ack(&iter
->async_tx
);
391 INIT_LIST_HEAD(&iter
->chain_node
);
392 iter
->async_tx
.cookie
= -EBUSY
;
393 mv_chan
->last_used
= iter
;
394 mv_desc_clear_next_desc(iter
);
402 /* try to free some slots if the allocation fails */
403 tasklet_schedule(&mv_chan
->irq_tasklet
);
408 /************************ DMA engine API functions ****************************/
410 mv_xor_tx_submit(struct dma_async_tx_descriptor
*tx
)
412 struct mv_xor_desc_slot
*sw_desc
= to_mv_xor_slot(tx
);
413 struct mv_xor_chan
*mv_chan
= to_mv_xor_chan(tx
->chan
);
414 struct mv_xor_desc_slot
*old_chain_tail
;
416 int new_hw_chain
= 1;
418 dev_dbg(mv_chan_to_devp(mv_chan
),
419 "%s sw_desc %p: async_tx %p\n",
420 __func__
, sw_desc
, &sw_desc
->async_tx
);
422 spin_lock_bh(&mv_chan
->lock
);
423 cookie
= dma_cookie_assign(tx
);
425 if (list_empty(&mv_chan
->chain
))
426 list_add_tail(&sw_desc
->chain_node
, &mv_chan
->chain
);
430 old_chain_tail
= list_entry(mv_chan
->chain
.prev
,
431 struct mv_xor_desc_slot
,
433 list_add_tail(&sw_desc
->chain_node
, &mv_chan
->chain
);
435 dev_dbg(mv_chan_to_devp(mv_chan
), "Append to last desc %pa\n",
436 &old_chain_tail
->async_tx
.phys
);
438 /* fix up the hardware chain */
439 mv_desc_set_next_desc(old_chain_tail
, sw_desc
->async_tx
.phys
);
441 /* if the channel is not busy */
442 if (!mv_chan_is_busy(mv_chan
)) {
443 u32 current_desc
= mv_chan_get_current_desc(mv_chan
);
445 * and the curren desc is the end of the chain before
446 * the append, then we need to start the channel
448 if (current_desc
== old_chain_tail
->async_tx
.phys
)
454 mv_xor_start_new_chain(mv_chan
, sw_desc
);
456 spin_unlock_bh(&mv_chan
->lock
);
461 /* returns the number of allocated descriptors */
462 static int mv_xor_alloc_chan_resources(struct dma_chan
*chan
)
467 struct mv_xor_chan
*mv_chan
= to_mv_xor_chan(chan
);
468 struct mv_xor_desc_slot
*slot
= NULL
;
469 int num_descs_in_pool
= MV_XOR_POOL_SIZE
/MV_XOR_SLOT_SIZE
;
471 /* Allocate descriptor slots */
472 idx
= mv_chan
->slots_allocated
;
473 while (idx
< num_descs_in_pool
) {
474 slot
= kzalloc(sizeof(*slot
), GFP_KERNEL
);
476 dev_info(mv_chan_to_devp(mv_chan
),
477 "channel only initialized %d descriptor slots",
481 virt_desc
= mv_chan
->dma_desc_pool_virt
;
482 slot
->hw_desc
= virt_desc
+ idx
* MV_XOR_SLOT_SIZE
;
484 dma_async_tx_descriptor_init(&slot
->async_tx
, chan
);
485 slot
->async_tx
.tx_submit
= mv_xor_tx_submit
;
486 INIT_LIST_HEAD(&slot
->chain_node
);
487 INIT_LIST_HEAD(&slot
->slot_node
);
488 dma_desc
= mv_chan
->dma_desc_pool
;
489 slot
->async_tx
.phys
= dma_desc
+ idx
* MV_XOR_SLOT_SIZE
;
492 spin_lock_bh(&mv_chan
->lock
);
493 mv_chan
->slots_allocated
= idx
;
494 list_add_tail(&slot
->slot_node
, &mv_chan
->all_slots
);
495 spin_unlock_bh(&mv_chan
->lock
);
498 if (mv_chan
->slots_allocated
&& !mv_chan
->last_used
)
499 mv_chan
->last_used
= list_entry(mv_chan
->all_slots
.next
,
500 struct mv_xor_desc_slot
,
503 dev_dbg(mv_chan_to_devp(mv_chan
),
504 "allocated %d descriptor slots last_used: %p\n",
505 mv_chan
->slots_allocated
, mv_chan
->last_used
);
507 return mv_chan
->slots_allocated
? : -ENOMEM
;
510 static struct dma_async_tx_descriptor
*
511 mv_xor_prep_dma_xor(struct dma_chan
*chan
, dma_addr_t dest
, dma_addr_t
*src
,
512 unsigned int src_cnt
, size_t len
, unsigned long flags
)
514 struct mv_xor_chan
*mv_chan
= to_mv_xor_chan(chan
);
515 struct mv_xor_desc_slot
*sw_desc
;
517 if (unlikely(len
< MV_XOR_MIN_BYTE_COUNT
))
520 BUG_ON(len
> MV_XOR_MAX_BYTE_COUNT
);
522 dev_dbg(mv_chan_to_devp(mv_chan
),
523 "%s src_cnt: %d len: %u dest %pad flags: %ld\n",
524 __func__
, src_cnt
, len
, &dest
, flags
);
526 spin_lock_bh(&mv_chan
->lock
);
527 sw_desc
= mv_xor_alloc_slot(mv_chan
);
529 sw_desc
->type
= DMA_XOR
;
530 sw_desc
->async_tx
.flags
= flags
;
531 mv_desc_init(sw_desc
, dest
, len
, flags
);
533 mv_desc_set_src_addr(sw_desc
, src_cnt
, src
[src_cnt
]);
535 spin_unlock_bh(&mv_chan
->lock
);
536 dev_dbg(mv_chan_to_devp(mv_chan
),
537 "%s sw_desc %p async_tx %p \n",
538 __func__
, sw_desc
, &sw_desc
->async_tx
);
539 return sw_desc
? &sw_desc
->async_tx
: NULL
;
542 static struct dma_async_tx_descriptor
*
543 mv_xor_prep_dma_memcpy(struct dma_chan
*chan
, dma_addr_t dest
, dma_addr_t src
,
544 size_t len
, unsigned long flags
)
547 * A MEMCPY operation is identical to an XOR operation with only
548 * a single source address.
550 return mv_xor_prep_dma_xor(chan
, dest
, &src
, 1, len
, flags
);
553 static struct dma_async_tx_descriptor
*
554 mv_xor_prep_dma_interrupt(struct dma_chan
*chan
, unsigned long flags
)
556 struct mv_xor_chan
*mv_chan
= to_mv_xor_chan(chan
);
557 dma_addr_t src
, dest
;
560 src
= mv_chan
->dummy_src_addr
;
561 dest
= mv_chan
->dummy_dst_addr
;
562 len
= MV_XOR_MIN_BYTE_COUNT
;
565 * We implement the DMA_INTERRUPT operation as a minimum sized
566 * XOR operation with a single dummy source address.
568 return mv_xor_prep_dma_xor(chan
, dest
, &src
, 1, len
, flags
);
571 static void mv_xor_free_chan_resources(struct dma_chan
*chan
)
573 struct mv_xor_chan
*mv_chan
= to_mv_xor_chan(chan
);
574 struct mv_xor_desc_slot
*iter
, *_iter
;
575 int in_use_descs
= 0;
577 spin_lock_bh(&mv_chan
->lock
);
579 mv_xor_slot_cleanup(mv_chan
);
581 list_for_each_entry_safe(iter
, _iter
, &mv_chan
->chain
,
584 list_del(&iter
->chain_node
);
586 list_for_each_entry_safe(iter
, _iter
, &mv_chan
->completed_slots
,
589 list_del(&iter
->completed_node
);
591 list_for_each_entry_safe_reverse(
592 iter
, _iter
, &mv_chan
->all_slots
, slot_node
) {
593 list_del(&iter
->slot_node
);
595 mv_chan
->slots_allocated
--;
597 mv_chan
->last_used
= NULL
;
599 dev_dbg(mv_chan_to_devp(mv_chan
), "%s slots_allocated %d\n",
600 __func__
, mv_chan
->slots_allocated
);
601 spin_unlock_bh(&mv_chan
->lock
);
604 dev_err(mv_chan_to_devp(mv_chan
),
605 "freeing %d in use descriptors!\n", in_use_descs
);
609 * mv_xor_status - poll the status of an XOR transaction
610 * @chan: XOR channel handle
611 * @cookie: XOR transaction identifier
612 * @txstate: XOR transactions state holder (or NULL)
614 static enum dma_status
mv_xor_status(struct dma_chan
*chan
,
616 struct dma_tx_state
*txstate
)
618 struct mv_xor_chan
*mv_chan
= to_mv_xor_chan(chan
);
621 ret
= dma_cookie_status(chan
, cookie
, txstate
);
622 if (ret
== DMA_COMPLETE
)
625 spin_lock_bh(&mv_chan
->lock
);
626 mv_xor_slot_cleanup(mv_chan
);
627 spin_unlock_bh(&mv_chan
->lock
);
629 return dma_cookie_status(chan
, cookie
, txstate
);
632 static void mv_dump_xor_regs(struct mv_xor_chan
*chan
)
636 val
= readl_relaxed(XOR_CONFIG(chan
));
637 dev_err(mv_chan_to_devp(chan
), "config 0x%08x\n", val
);
639 val
= readl_relaxed(XOR_ACTIVATION(chan
));
640 dev_err(mv_chan_to_devp(chan
), "activation 0x%08x\n", val
);
642 val
= readl_relaxed(XOR_INTR_CAUSE(chan
));
643 dev_err(mv_chan_to_devp(chan
), "intr cause 0x%08x\n", val
);
645 val
= readl_relaxed(XOR_INTR_MASK(chan
));
646 dev_err(mv_chan_to_devp(chan
), "intr mask 0x%08x\n", val
);
648 val
= readl_relaxed(XOR_ERROR_CAUSE(chan
));
649 dev_err(mv_chan_to_devp(chan
), "error cause 0x%08x\n", val
);
651 val
= readl_relaxed(XOR_ERROR_ADDR(chan
));
652 dev_err(mv_chan_to_devp(chan
), "error addr 0x%08x\n", val
);
655 static void mv_xor_err_interrupt_handler(struct mv_xor_chan
*chan
,
658 if (intr_cause
& XOR_INT_ERR_DECODE
) {
659 dev_dbg(mv_chan_to_devp(chan
), "ignoring address decode error\n");
663 dev_err(mv_chan_to_devp(chan
), "error on chan %d. intr cause 0x%08x\n",
664 chan
->idx
, intr_cause
);
666 mv_dump_xor_regs(chan
);
670 static irqreturn_t
mv_xor_interrupt_handler(int irq
, void *data
)
672 struct mv_xor_chan
*chan
= data
;
673 u32 intr_cause
= mv_chan_get_intr_cause(chan
);
675 dev_dbg(mv_chan_to_devp(chan
), "intr cause %x\n", intr_cause
);
677 if (intr_cause
& XOR_INTR_ERRORS
)
678 mv_xor_err_interrupt_handler(chan
, intr_cause
);
680 tasklet_schedule(&chan
->irq_tasklet
);
682 mv_xor_device_clear_eoc_cause(chan
);
687 static void mv_xor_issue_pending(struct dma_chan
*chan
)
689 struct mv_xor_chan
*mv_chan
= to_mv_xor_chan(chan
);
691 if (mv_chan
->pending
>= MV_XOR_THRESHOLD
) {
692 mv_chan
->pending
= 0;
693 mv_chan_activate(mv_chan
);
698 * Perform a transaction to verify the HW works.
701 static int mv_xor_memcpy_self_test(struct mv_xor_chan
*mv_chan
)
705 dma_addr_t src_dma
, dest_dma
;
706 struct dma_chan
*dma_chan
;
708 struct dma_async_tx_descriptor
*tx
;
709 struct dmaengine_unmap_data
*unmap
;
712 src
= kmalloc(sizeof(u8
) * PAGE_SIZE
, GFP_KERNEL
);
716 dest
= kzalloc(sizeof(u8
) * PAGE_SIZE
, GFP_KERNEL
);
722 /* Fill in src buffer */
723 for (i
= 0; i
< PAGE_SIZE
; i
++)
724 ((u8
*) src
)[i
] = (u8
)i
;
726 dma_chan
= &mv_chan
->dmachan
;
727 if (mv_xor_alloc_chan_resources(dma_chan
) < 1) {
732 unmap
= dmaengine_get_unmap_data(dma_chan
->device
->dev
, 2, GFP_KERNEL
);
738 src_dma
= dma_map_page(dma_chan
->device
->dev
, virt_to_page(src
), 0,
739 PAGE_SIZE
, DMA_TO_DEVICE
);
740 unmap
->addr
[0] = src_dma
;
742 ret
= dma_mapping_error(dma_chan
->device
->dev
, src_dma
);
749 dest_dma
= dma_map_page(dma_chan
->device
->dev
, virt_to_page(dest
), 0,
750 PAGE_SIZE
, DMA_FROM_DEVICE
);
751 unmap
->addr
[1] = dest_dma
;
753 ret
= dma_mapping_error(dma_chan
->device
->dev
, dest_dma
);
759 unmap
->len
= PAGE_SIZE
;
761 tx
= mv_xor_prep_dma_memcpy(dma_chan
, dest_dma
, src_dma
,
764 dev_err(dma_chan
->device
->dev
,
765 "Self-test cannot prepare operation, disabling\n");
770 cookie
= mv_xor_tx_submit(tx
);
771 if (dma_submit_error(cookie
)) {
772 dev_err(dma_chan
->device
->dev
,
773 "Self-test submit error, disabling\n");
778 mv_xor_issue_pending(dma_chan
);
782 if (mv_xor_status(dma_chan
, cookie
, NULL
) !=
784 dev_err(dma_chan
->device
->dev
,
785 "Self-test copy timed out, disabling\n");
790 dma_sync_single_for_cpu(dma_chan
->device
->dev
, dest_dma
,
791 PAGE_SIZE
, DMA_FROM_DEVICE
);
792 if (memcmp(src
, dest
, PAGE_SIZE
)) {
793 dev_err(dma_chan
->device
->dev
,
794 "Self-test copy failed compare, disabling\n");
800 dmaengine_unmap_put(unmap
);
801 mv_xor_free_chan_resources(dma_chan
);
808 #define MV_XOR_NUM_SRC_TEST 4 /* must be <= 15 */
810 mv_xor_xor_self_test(struct mv_xor_chan
*mv_chan
)
814 struct page
*xor_srcs
[MV_XOR_NUM_SRC_TEST
];
815 dma_addr_t dma_srcs
[MV_XOR_NUM_SRC_TEST
];
817 struct dma_async_tx_descriptor
*tx
;
818 struct dmaengine_unmap_data
*unmap
;
819 struct dma_chan
*dma_chan
;
824 int src_count
= MV_XOR_NUM_SRC_TEST
;
826 for (src_idx
= 0; src_idx
< src_count
; src_idx
++) {
827 xor_srcs
[src_idx
] = alloc_page(GFP_KERNEL
);
828 if (!xor_srcs
[src_idx
]) {
830 __free_page(xor_srcs
[src_idx
]);
835 dest
= alloc_page(GFP_KERNEL
);
838 __free_page(xor_srcs
[src_idx
]);
842 /* Fill in src buffers */
843 for (src_idx
= 0; src_idx
< src_count
; src_idx
++) {
844 u8
*ptr
= page_address(xor_srcs
[src_idx
]);
845 for (i
= 0; i
< PAGE_SIZE
; i
++)
846 ptr
[i
] = (1 << src_idx
);
849 for (src_idx
= 0; src_idx
< src_count
; src_idx
++)
850 cmp_byte
^= (u8
) (1 << src_idx
);
852 cmp_word
= (cmp_byte
<< 24) | (cmp_byte
<< 16) |
853 (cmp_byte
<< 8) | cmp_byte
;
855 memset(page_address(dest
), 0, PAGE_SIZE
);
857 dma_chan
= &mv_chan
->dmachan
;
858 if (mv_xor_alloc_chan_resources(dma_chan
) < 1) {
863 unmap
= dmaengine_get_unmap_data(dma_chan
->device
->dev
, src_count
+ 1,
871 for (i
= 0; i
< src_count
; i
++) {
872 unmap
->addr
[i
] = dma_map_page(dma_chan
->device
->dev
, xor_srcs
[i
],
873 0, PAGE_SIZE
, DMA_TO_DEVICE
);
874 dma_srcs
[i
] = unmap
->addr
[i
];
875 ret
= dma_mapping_error(dma_chan
->device
->dev
, unmap
->addr
[i
]);
883 unmap
->addr
[src_count
] = dma_map_page(dma_chan
->device
->dev
, dest
, 0, PAGE_SIZE
,
885 dest_dma
= unmap
->addr
[src_count
];
886 ret
= dma_mapping_error(dma_chan
->device
->dev
, unmap
->addr
[src_count
]);
892 unmap
->len
= PAGE_SIZE
;
894 tx
= mv_xor_prep_dma_xor(dma_chan
, dest_dma
, dma_srcs
,
895 src_count
, PAGE_SIZE
, 0);
897 dev_err(dma_chan
->device
->dev
,
898 "Self-test cannot prepare operation, disabling\n");
903 cookie
= mv_xor_tx_submit(tx
);
904 if (dma_submit_error(cookie
)) {
905 dev_err(dma_chan
->device
->dev
,
906 "Self-test submit error, disabling\n");
911 mv_xor_issue_pending(dma_chan
);
915 if (mv_xor_status(dma_chan
, cookie
, NULL
) !=
917 dev_err(dma_chan
->device
->dev
,
918 "Self-test xor timed out, disabling\n");
923 dma_sync_single_for_cpu(dma_chan
->device
->dev
, dest_dma
,
924 PAGE_SIZE
, DMA_FROM_DEVICE
);
925 for (i
= 0; i
< (PAGE_SIZE
/ sizeof(u32
)); i
++) {
926 u32
*ptr
= page_address(dest
);
927 if (ptr
[i
] != cmp_word
) {
928 dev_err(dma_chan
->device
->dev
,
929 "Self-test xor failed compare, disabling. index %d, data %x, expected %x\n",
930 i
, ptr
[i
], cmp_word
);
937 dmaengine_unmap_put(unmap
);
938 mv_xor_free_chan_resources(dma_chan
);
942 __free_page(xor_srcs
[src_idx
]);
947 static int mv_xor_channel_remove(struct mv_xor_chan
*mv_chan
)
949 struct dma_chan
*chan
, *_chan
;
950 struct device
*dev
= mv_chan
->dmadev
.dev
;
952 dma_async_device_unregister(&mv_chan
->dmadev
);
954 dma_free_coherent(dev
, MV_XOR_POOL_SIZE
,
955 mv_chan
->dma_desc_pool_virt
, mv_chan
->dma_desc_pool
);
956 dma_unmap_single(dev
, mv_chan
->dummy_src_addr
,
957 MV_XOR_MIN_BYTE_COUNT
, DMA_FROM_DEVICE
);
958 dma_unmap_single(dev
, mv_chan
->dummy_dst_addr
,
959 MV_XOR_MIN_BYTE_COUNT
, DMA_TO_DEVICE
);
961 list_for_each_entry_safe(chan
, _chan
, &mv_chan
->dmadev
.channels
,
963 list_del(&chan
->device_node
);
966 free_irq(mv_chan
->irq
, mv_chan
);
971 static struct mv_xor_chan
*
972 mv_xor_channel_add(struct mv_xor_device
*xordev
,
973 struct platform_device
*pdev
,
974 int idx
, dma_cap_mask_t cap_mask
, int irq
)
977 struct mv_xor_chan
*mv_chan
;
978 struct dma_device
*dma_dev
;
980 mv_chan
= devm_kzalloc(&pdev
->dev
, sizeof(*mv_chan
), GFP_KERNEL
);
982 return ERR_PTR(-ENOMEM
);
987 dma_dev
= &mv_chan
->dmadev
;
990 * These source and destination dummy buffers are used to implement
991 * a DMA_INTERRUPT operation as a minimum-sized XOR operation.
992 * Hence, we only need to map the buffers at initialization-time.
994 mv_chan
->dummy_src_addr
= dma_map_single(dma_dev
->dev
,
995 mv_chan
->dummy_src
, MV_XOR_MIN_BYTE_COUNT
, DMA_FROM_DEVICE
);
996 mv_chan
->dummy_dst_addr
= dma_map_single(dma_dev
->dev
,
997 mv_chan
->dummy_dst
, MV_XOR_MIN_BYTE_COUNT
, DMA_TO_DEVICE
);
999 /* allocate coherent memory for hardware descriptors
1000 * note: writecombine gives slightly better performance, but
1001 * requires that we explicitly flush the writes
1003 mv_chan
->dma_desc_pool_virt
=
1004 dma_alloc_writecombine(&pdev
->dev
, MV_XOR_POOL_SIZE
,
1005 &mv_chan
->dma_desc_pool
, GFP_KERNEL
);
1006 if (!mv_chan
->dma_desc_pool_virt
)
1007 return ERR_PTR(-ENOMEM
);
1009 /* discover transaction capabilites from the platform data */
1010 dma_dev
->cap_mask
= cap_mask
;
1012 INIT_LIST_HEAD(&dma_dev
->channels
);
1014 /* set base routines */
1015 dma_dev
->device_alloc_chan_resources
= mv_xor_alloc_chan_resources
;
1016 dma_dev
->device_free_chan_resources
= mv_xor_free_chan_resources
;
1017 dma_dev
->device_tx_status
= mv_xor_status
;
1018 dma_dev
->device_issue_pending
= mv_xor_issue_pending
;
1019 dma_dev
->dev
= &pdev
->dev
;
1021 /* set prep routines based on capability */
1022 if (dma_has_cap(DMA_INTERRUPT
, dma_dev
->cap_mask
))
1023 dma_dev
->device_prep_dma_interrupt
= mv_xor_prep_dma_interrupt
;
1024 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
))
1025 dma_dev
->device_prep_dma_memcpy
= mv_xor_prep_dma_memcpy
;
1026 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
)) {
1027 dma_dev
->max_xor
= 8;
1028 dma_dev
->device_prep_dma_xor
= mv_xor_prep_dma_xor
;
1031 mv_chan
->mmr_base
= xordev
->xor_base
;
1032 mv_chan
->mmr_high_base
= xordev
->xor_high_base
;
1033 tasklet_init(&mv_chan
->irq_tasklet
, mv_xor_tasklet
, (unsigned long)
1036 /* clear errors before enabling interrupts */
1037 mv_xor_device_clear_err_status(mv_chan
);
1039 ret
= request_irq(mv_chan
->irq
, mv_xor_interrupt_handler
,
1040 0, dev_name(&pdev
->dev
), mv_chan
);
1044 mv_chan_unmask_interrupts(mv_chan
);
1046 mv_set_mode(mv_chan
, DMA_XOR
);
1048 spin_lock_init(&mv_chan
->lock
);
1049 INIT_LIST_HEAD(&mv_chan
->chain
);
1050 INIT_LIST_HEAD(&mv_chan
->completed_slots
);
1051 INIT_LIST_HEAD(&mv_chan
->all_slots
);
1052 mv_chan
->dmachan
.device
= dma_dev
;
1053 dma_cookie_init(&mv_chan
->dmachan
);
1055 list_add_tail(&mv_chan
->dmachan
.device_node
, &dma_dev
->channels
);
1057 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
)) {
1058 ret
= mv_xor_memcpy_self_test(mv_chan
);
1059 dev_dbg(&pdev
->dev
, "memcpy self test returned %d\n", ret
);
1064 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
)) {
1065 ret
= mv_xor_xor_self_test(mv_chan
);
1066 dev_dbg(&pdev
->dev
, "xor self test returned %d\n", ret
);
1071 dev_info(&pdev
->dev
, "Marvell XOR: ( %s%s%s)\n",
1072 dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
) ? "xor " : "",
1073 dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
) ? "cpy " : "",
1074 dma_has_cap(DMA_INTERRUPT
, dma_dev
->cap_mask
) ? "intr " : "");
1076 dma_async_device_register(dma_dev
);
1080 free_irq(mv_chan
->irq
, mv_chan
);
1082 dma_free_coherent(&pdev
->dev
, MV_XOR_POOL_SIZE
,
1083 mv_chan
->dma_desc_pool_virt
, mv_chan
->dma_desc_pool
);
1084 return ERR_PTR(ret
);
1088 mv_xor_conf_mbus_windows(struct mv_xor_device
*xordev
,
1089 const struct mbus_dram_target_info
*dram
)
1091 void __iomem
*base
= xordev
->xor_high_base
;
1095 for (i
= 0; i
< 8; i
++) {
1096 writel(0, base
+ WINDOW_BASE(i
));
1097 writel(0, base
+ WINDOW_SIZE(i
));
1099 writel(0, base
+ WINDOW_REMAP_HIGH(i
));
1102 for (i
= 0; i
< dram
->num_cs
; i
++) {
1103 const struct mbus_dram_window
*cs
= dram
->cs
+ i
;
1105 writel((cs
->base
& 0xffff0000) |
1106 (cs
->mbus_attr
<< 8) |
1107 dram
->mbus_dram_target_id
, base
+ WINDOW_BASE(i
));
1108 writel((cs
->size
- 1) & 0xffff0000, base
+ WINDOW_SIZE(i
));
1110 win_enable
|= (1 << i
);
1111 win_enable
|= 3 << (16 + (2 * i
));
1114 writel(win_enable
, base
+ WINDOW_BAR_ENABLE(0));
1115 writel(win_enable
, base
+ WINDOW_BAR_ENABLE(1));
1116 writel(0, base
+ WINDOW_OVERRIDE_CTRL(0));
1117 writel(0, base
+ WINDOW_OVERRIDE_CTRL(1));
1120 static int mv_xor_probe(struct platform_device
*pdev
)
1122 const struct mbus_dram_target_info
*dram
;
1123 struct mv_xor_device
*xordev
;
1124 struct mv_xor_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
1125 struct resource
*res
;
1128 dev_notice(&pdev
->dev
, "Marvell shared XOR driver\n");
1130 xordev
= devm_kzalloc(&pdev
->dev
, sizeof(*xordev
), GFP_KERNEL
);
1134 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1138 xordev
->xor_base
= devm_ioremap(&pdev
->dev
, res
->start
,
1139 resource_size(res
));
1140 if (!xordev
->xor_base
)
1143 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
1147 xordev
->xor_high_base
= devm_ioremap(&pdev
->dev
, res
->start
,
1148 resource_size(res
));
1149 if (!xordev
->xor_high_base
)
1152 platform_set_drvdata(pdev
, xordev
);
1155 * (Re-)program MBUS remapping windows if we are asked to.
1157 dram
= mv_mbus_dram_info();
1159 mv_xor_conf_mbus_windows(xordev
, dram
);
1161 /* Not all platforms can gate the clock, so it is not
1162 * an error if the clock does not exists.
1164 xordev
->clk
= clk_get(&pdev
->dev
, NULL
);
1165 if (!IS_ERR(xordev
->clk
))
1166 clk_prepare_enable(xordev
->clk
);
1168 if (pdev
->dev
.of_node
) {
1169 struct device_node
*np
;
1172 for_each_child_of_node(pdev
->dev
.of_node
, np
) {
1173 struct mv_xor_chan
*chan
;
1174 dma_cap_mask_t cap_mask
;
1177 dma_cap_zero(cap_mask
);
1178 if (of_property_read_bool(np
, "dmacap,memcpy"))
1179 dma_cap_set(DMA_MEMCPY
, cap_mask
);
1180 if (of_property_read_bool(np
, "dmacap,xor"))
1181 dma_cap_set(DMA_XOR
, cap_mask
);
1182 if (of_property_read_bool(np
, "dmacap,interrupt"))
1183 dma_cap_set(DMA_INTERRUPT
, cap_mask
);
1185 irq
= irq_of_parse_and_map(np
, 0);
1188 goto err_channel_add
;
1191 chan
= mv_xor_channel_add(xordev
, pdev
, i
,
1194 ret
= PTR_ERR(chan
);
1195 irq_dispose_mapping(irq
);
1196 goto err_channel_add
;
1199 xordev
->channels
[i
] = chan
;
1202 } else if (pdata
&& pdata
->channels
) {
1203 for (i
= 0; i
< MV_XOR_MAX_CHANNELS
; i
++) {
1204 struct mv_xor_channel_data
*cd
;
1205 struct mv_xor_chan
*chan
;
1208 cd
= &pdata
->channels
[i
];
1211 goto err_channel_add
;
1214 irq
= platform_get_irq(pdev
, i
);
1217 goto err_channel_add
;
1220 chan
= mv_xor_channel_add(xordev
, pdev
, i
,
1223 ret
= PTR_ERR(chan
);
1224 goto err_channel_add
;
1227 xordev
->channels
[i
] = chan
;
1234 for (i
= 0; i
< MV_XOR_MAX_CHANNELS
; i
++)
1235 if (xordev
->channels
[i
]) {
1236 mv_xor_channel_remove(xordev
->channels
[i
]);
1237 if (pdev
->dev
.of_node
)
1238 irq_dispose_mapping(xordev
->channels
[i
]->irq
);
1241 if (!IS_ERR(xordev
->clk
)) {
1242 clk_disable_unprepare(xordev
->clk
);
1243 clk_put(xordev
->clk
);
1249 static int mv_xor_remove(struct platform_device
*pdev
)
1251 struct mv_xor_device
*xordev
= platform_get_drvdata(pdev
);
1254 for (i
= 0; i
< MV_XOR_MAX_CHANNELS
; i
++) {
1255 if (xordev
->channels
[i
])
1256 mv_xor_channel_remove(xordev
->channels
[i
]);
1259 if (!IS_ERR(xordev
->clk
)) {
1260 clk_disable_unprepare(xordev
->clk
);
1261 clk_put(xordev
->clk
);
1268 static const struct of_device_id mv_xor_dt_ids
[] = {
1269 { .compatible
= "marvell,orion-xor", },
1272 MODULE_DEVICE_TABLE(of
, mv_xor_dt_ids
);
1275 static struct platform_driver mv_xor_driver
= {
1276 .probe
= mv_xor_probe
,
1277 .remove
= mv_xor_remove
,
1279 .name
= MV_XOR_NAME
,
1280 .of_match_table
= of_match_ptr(mv_xor_dt_ids
),
1285 static int __init
mv_xor_init(void)
1287 return platform_driver_register(&mv_xor_driver
);
1289 module_init(mv_xor_init
);
1291 /* it's currently unsafe to unload this module */
1293 static void __exit
mv_xor_exit(void)
1295 platform_driver_unregister(&mv_xor_driver
);
1299 module_exit(mv_xor_exit
);
1302 MODULE_AUTHOR("Saeed Bishara <saeed@marvell.com>");
1303 MODULE_DESCRIPTION("DMA engine driver for Marvell's XOR engine");
1304 MODULE_LICENSE("GPL");