Merge tag 'regmap-fix-v4.3-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / drivers / dma / mv_xor.c
CommitLineData
ff7b0479
SB
1/*
2 * offload engine driver for the Marvell XOR engine
3 * Copyright (C) 2007, 2008, Marvell International Ltd.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
ff7b0479
SB
13 */
14
15#include <linux/init.h>
5a0e3ad6 16#include <linux/slab.h>
ff7b0479
SB
17#include <linux/delay.h>
18#include <linux/dma-mapping.h>
19#include <linux/spinlock.h>
20#include <linux/interrupt.h>
6f166312 21#include <linux/of_device.h>
ff7b0479
SB
22#include <linux/platform_device.h>
23#include <linux/memory.h>
c510182b 24#include <linux/clk.h>
f7d12ef5
TP
25#include <linux/of.h>
26#include <linux/of_irq.h>
27#include <linux/irqdomain.h>
77757291 28#include <linux/cpumask.h>
c02cecb9 29#include <linux/platform_data/dma-mv_xor.h>
d2ebfb33
RKAL
30
31#include "dmaengine.h"
ff7b0479
SB
32#include "mv_xor.h"
33
6f166312
LA
34enum mv_xor_mode {
35 XOR_MODE_IN_REG,
36 XOR_MODE_IN_DESC,
37};
38
ff7b0479
SB
39static void mv_xor_issue_pending(struct dma_chan *chan);
40
41#define to_mv_xor_chan(chan) \
98817b99 42 container_of(chan, struct mv_xor_chan, dmachan)
ff7b0479
SB
43
44#define to_mv_xor_slot(tx) \
45 container_of(tx, struct mv_xor_desc_slot, async_tx)
46
c98c1781 47#define mv_chan_to_devp(chan) \
1ef48a26 48 ((chan)->dmadev.dev)
c98c1781 49
dfc97661 50static void mv_desc_init(struct mv_xor_desc_slot *desc,
ba87d137
LA
51 dma_addr_t addr, u32 byte_count,
52 enum dma_ctrl_flags flags)
ff7b0479
SB
53{
54 struct mv_xor_desc *hw_desc = desc->hw_desc;
55
0e7488ed 56 hw_desc->status = XOR_DESC_DMA_OWNED;
ff7b0479 57 hw_desc->phy_next_desc = 0;
ba87d137
LA
58 /* Enable end-of-descriptor interrupts only for DMA_PREP_INTERRUPT */
59 hw_desc->desc_command = (flags & DMA_PREP_INTERRUPT) ?
60 XOR_DESC_EOD_INT_EN : 0;
dfc97661 61 hw_desc->phy_dest_addr = addr;
ff7b0479
SB
62 hw_desc->byte_count = byte_count;
63}
64
6f166312
LA
65static void mv_desc_set_mode(struct mv_xor_desc_slot *desc)
66{
67 struct mv_xor_desc *hw_desc = desc->hw_desc;
68
69 switch (desc->type) {
70 case DMA_XOR:
71 case DMA_INTERRUPT:
72 hw_desc->desc_command |= XOR_DESC_OPERATION_XOR;
73 break;
74 case DMA_MEMCPY:
75 hw_desc->desc_command |= XOR_DESC_OPERATION_MEMCPY;
76 break;
77 default:
78 BUG();
79 return;
80 }
81}
82
ff7b0479
SB
83static void mv_desc_set_next_desc(struct mv_xor_desc_slot *desc,
84 u32 next_desc_addr)
85{
86 struct mv_xor_desc *hw_desc = desc->hw_desc;
87 BUG_ON(hw_desc->phy_next_desc);
88 hw_desc->phy_next_desc = next_desc_addr;
89}
90
ff7b0479
SB
91static void mv_desc_set_src_addr(struct mv_xor_desc_slot *desc,
92 int index, dma_addr_t addr)
93{
94 struct mv_xor_desc *hw_desc = desc->hw_desc;
e03bc654 95 hw_desc->phy_src_addr[mv_phy_src_idx(index)] = addr;
ff7b0479
SB
96 if (desc->type == DMA_XOR)
97 hw_desc->desc_command |= (1 << index);
98}
99
100static u32 mv_chan_get_current_desc(struct mv_xor_chan *chan)
101{
5733c38a 102 return readl_relaxed(XOR_CURR_DESC(chan));
ff7b0479
SB
103}
104
105static void mv_chan_set_next_descriptor(struct mv_xor_chan *chan,
106 u32 next_desc_addr)
107{
5733c38a 108 writel_relaxed(next_desc_addr, XOR_NEXT_DESC(chan));
ff7b0479
SB
109}
110
ff7b0479
SB
111static void mv_chan_unmask_interrupts(struct mv_xor_chan *chan)
112{
5733c38a 113 u32 val = readl_relaxed(XOR_INTR_MASK(chan));
ff7b0479 114 val |= XOR_INTR_MASK_VALUE << (chan->idx * 16);
5733c38a 115 writel_relaxed(val, XOR_INTR_MASK(chan));
ff7b0479
SB
116}
117
118static u32 mv_chan_get_intr_cause(struct mv_xor_chan *chan)
119{
5733c38a 120 u32 intr_cause = readl_relaxed(XOR_INTR_CAUSE(chan));
ff7b0479
SB
121 intr_cause = (intr_cause >> (chan->idx * 16)) & 0xFFFF;
122 return intr_cause;
123}
124
0951e728 125static void mv_chan_clear_eoc_cause(struct mv_xor_chan *chan)
ff7b0479 126{
ba87d137
LA
127 u32 val;
128
129 val = XOR_INT_END_OF_DESC | XOR_INT_END_OF_CHAIN | XOR_INT_STOPPED;
130 val = ~(val << (chan->idx * 16));
c98c1781 131 dev_dbg(mv_chan_to_devp(chan), "%s, val 0x%08x\n", __func__, val);
5733c38a 132 writel_relaxed(val, XOR_INTR_CAUSE(chan));
ff7b0479
SB
133}
134
0951e728 135static void mv_chan_clear_err_status(struct mv_xor_chan *chan)
ff7b0479
SB
136{
137 u32 val = 0xFFFF0000 >> (chan->idx * 16);
5733c38a 138 writel_relaxed(val, XOR_INTR_CAUSE(chan));
ff7b0479
SB
139}
140
0951e728
MR
141static void mv_chan_set_mode(struct mv_xor_chan *chan,
142 enum dma_transaction_type type)
ff7b0479
SB
143{
144 u32 op_mode;
5733c38a 145 u32 config = readl_relaxed(XOR_CONFIG(chan));
ff7b0479
SB
146
147 switch (type) {
148 case DMA_XOR:
149 op_mode = XOR_OPERATION_MODE_XOR;
150 break;
151 case DMA_MEMCPY:
152 op_mode = XOR_OPERATION_MODE_MEMCPY;
153 break;
ff7b0479 154 default:
c98c1781 155 dev_err(mv_chan_to_devp(chan),
1ba151cd 156 "error: unsupported operation %d\n",
a3fc74bc 157 type);
ff7b0479
SB
158 BUG();
159 return;
160 }
161
162 config &= ~0x7;
163 config |= op_mode;
e03bc654 164
0ec9ebc7
TP
165#if defined(__BIG_ENDIAN)
166 config |= XOR_DESCRIPTOR_SWAP;
167#else
168 config &= ~XOR_DESCRIPTOR_SWAP;
169#endif
6f166312
LA
170
171 writel_relaxed(config, XOR_CONFIG(chan));
172 chan->current_type = type;
173}
174
175static void mv_chan_set_mode_to_desc(struct mv_xor_chan *chan)
176{
177 u32 op_mode;
178 u32 config = readl_relaxed(XOR_CONFIG(chan));
179
180 op_mode = XOR_OPERATION_MODE_IN_DESC;
181
182 config &= ~0x7;
183 config |= op_mode;
184
e03bc654
TP
185#if defined(__BIG_ENDIAN)
186 config |= XOR_DESCRIPTOR_SWAP;
187#else
188 config &= ~XOR_DESCRIPTOR_SWAP;
189#endif
190
5733c38a 191 writel_relaxed(config, XOR_CONFIG(chan));
ff7b0479
SB
192}
193
194static void mv_chan_activate(struct mv_xor_chan *chan)
195{
c98c1781 196 dev_dbg(mv_chan_to_devp(chan), " activate chan.\n");
5a9a55bf
EG
197
198 /* writel ensures all descriptors are flushed before activation */
199 writel(BIT(0), XOR_ACTIVATION(chan));
ff7b0479
SB
200}
201
202static char mv_chan_is_busy(struct mv_xor_chan *chan)
203{
5733c38a 204 u32 state = readl_relaxed(XOR_ACTIVATION(chan));
ff7b0479
SB
205
206 state = (state >> 4) & 0x3;
207
208 return (state == 1) ? 1 : 0;
209}
210
ff7b0479 211/*
0951e728
MR
212 * mv_chan_start_new_chain - program the engine to operate on new
213 * chain headed by sw_desc
ff7b0479
SB
214 * Caller must hold &mv_chan->lock while calling this function
215 */
0951e728
MR
216static void mv_chan_start_new_chain(struct mv_xor_chan *mv_chan,
217 struct mv_xor_desc_slot *sw_desc)
ff7b0479 218{
c98c1781 219 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d: sw_desc %p\n",
ff7b0479 220 __func__, __LINE__, sw_desc);
ff7b0479 221
48a9db46
BZ
222 /* set the hardware chain */
223 mv_chan_set_next_descriptor(mv_chan, sw_desc->async_tx.phys);
224
dfc97661 225 mv_chan->pending++;
98817b99 226 mv_xor_issue_pending(&mv_chan->dmachan);
ff7b0479
SB
227}
228
229static dma_cookie_t
0951e728
MR
230mv_desc_run_tx_complete_actions(struct mv_xor_desc_slot *desc,
231 struct mv_xor_chan *mv_chan,
232 dma_cookie_t cookie)
ff7b0479
SB
233{
234 BUG_ON(desc->async_tx.cookie < 0);
235
236 if (desc->async_tx.cookie > 0) {
237 cookie = desc->async_tx.cookie;
238
239 /* call the callback (must not sleep or submit new
240 * operations to this channel)
241 */
242 if (desc->async_tx.callback)
243 desc->async_tx.callback(
244 desc->async_tx.callback_param);
245
d38a8c62 246 dma_descriptor_unmap(&desc->async_tx);
ff7b0479
SB
247 }
248
249 /* run dependent operations */
07f2211e 250 dma_run_dependencies(&desc->async_tx);
ff7b0479
SB
251
252 return cookie;
253}
254
255static int
0951e728 256mv_chan_clean_completed_slots(struct mv_xor_chan *mv_chan)
ff7b0479
SB
257{
258 struct mv_xor_desc_slot *iter, *_iter;
259
c98c1781 260 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d\n", __func__, __LINE__);
ff7b0479 261 list_for_each_entry_safe(iter, _iter, &mv_chan->completed_slots,
fbea28a2 262 node) {
ff7b0479 263
fbea28a2
LA
264 if (async_tx_test_ack(&iter->async_tx))
265 list_move_tail(&iter->node, &mv_chan->free_slots);
ff7b0479
SB
266 }
267 return 0;
268}
269
270static int
0951e728
MR
271mv_desc_clean_slot(struct mv_xor_desc_slot *desc,
272 struct mv_xor_chan *mv_chan)
ff7b0479 273{
c98c1781 274 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d: desc %p flags %d\n",
ff7b0479 275 __func__, __LINE__, desc, desc->async_tx.flags);
fbea28a2 276
ff7b0479
SB
277 /* the client is allowed to attach dependent operations
278 * until 'ack' is set
279 */
fbea28a2 280 if (!async_tx_test_ack(&desc->async_tx))
ff7b0479 281 /* move this slot to the completed_slots */
fbea28a2
LA
282 list_move_tail(&desc->node, &mv_chan->completed_slots);
283 else
284 list_move_tail(&desc->node, &mv_chan->free_slots);
ff7b0479 285
ff7b0479
SB
286 return 0;
287}
288
fbeec99a 289/* This function must be called with the mv_xor_chan spinlock held */
0951e728 290static void mv_chan_slot_cleanup(struct mv_xor_chan *mv_chan)
ff7b0479
SB
291{
292 struct mv_xor_desc_slot *iter, *_iter;
293 dma_cookie_t cookie = 0;
294 int busy = mv_chan_is_busy(mv_chan);
295 u32 current_desc = mv_chan_get_current_desc(mv_chan);
9136291f
LA
296 int current_cleaned = 0;
297 struct mv_xor_desc *hw_desc;
ff7b0479 298
c98c1781
TP
299 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d\n", __func__, __LINE__);
300 dev_dbg(mv_chan_to_devp(mv_chan), "current_desc %x\n", current_desc);
0951e728 301 mv_chan_clean_completed_slots(mv_chan);
ff7b0479
SB
302
303 /* free completed slots from the chain starting with
304 * the oldest descriptor
305 */
306
307 list_for_each_entry_safe(iter, _iter, &mv_chan->chain,
fbea28a2 308 node) {
ff7b0479 309
9136291f
LA
310 /* clean finished descriptors */
311 hw_desc = iter->hw_desc;
312 if (hw_desc->status & XOR_DESC_SUCCESS) {
0951e728
MR
313 cookie = mv_desc_run_tx_complete_actions(iter, mv_chan,
314 cookie);
ff7b0479 315
9136291f 316 /* done processing desc, clean slot */
0951e728 317 mv_desc_clean_slot(iter, mv_chan);
9136291f
LA
318
319 /* break if we did cleaned the current */
320 if (iter->async_tx.phys == current_desc) {
321 current_cleaned = 1;
322 break;
323 }
324 } else {
325 if (iter->async_tx.phys == current_desc) {
326 current_cleaned = 0;
ff7b0479 327 break;
9136291f 328 }
ff7b0479 329 }
ff7b0479
SB
330 }
331
332 if ((busy == 0) && !list_empty(&mv_chan->chain)) {
9136291f
LA
333 if (current_cleaned) {
334 /*
335 * current descriptor cleaned and removed, run
336 * from list head
337 */
338 iter = list_entry(mv_chan->chain.next,
339 struct mv_xor_desc_slot,
fbea28a2 340 node);
0951e728 341 mv_chan_start_new_chain(mv_chan, iter);
9136291f 342 } else {
fbea28a2 343 if (!list_is_last(&iter->node, &mv_chan->chain)) {
9136291f
LA
344 /*
345 * descriptors are still waiting after
346 * current, trigger them
347 */
fbea28a2 348 iter = list_entry(iter->node.next,
9136291f 349 struct mv_xor_desc_slot,
fbea28a2 350 node);
0951e728 351 mv_chan_start_new_chain(mv_chan, iter);
9136291f
LA
352 } else {
353 /*
354 * some descriptors are still waiting
355 * to be cleaned
356 */
357 tasklet_schedule(&mv_chan->irq_tasklet);
358 }
359 }
ff7b0479
SB
360 }
361
362 if (cookie > 0)
98817b99 363 mv_chan->dmachan.completed_cookie = cookie;
ff7b0479
SB
364}
365
ff7b0479
SB
366static void mv_xor_tasklet(unsigned long data)
367{
368 struct mv_xor_chan *chan = (struct mv_xor_chan *) data;
e43147ac
EG
369
370 spin_lock_bh(&chan->lock);
0951e728 371 mv_chan_slot_cleanup(chan);
e43147ac 372 spin_unlock_bh(&chan->lock);
ff7b0479
SB
373}
374
375static struct mv_xor_desc_slot *
0951e728 376mv_chan_alloc_slot(struct mv_xor_chan *mv_chan)
ff7b0479 377{
fbea28a2 378 struct mv_xor_desc_slot *iter;
ff7b0479 379
fbea28a2
LA
380 spin_lock_bh(&mv_chan->lock);
381
382 if (!list_empty(&mv_chan->free_slots)) {
383 iter = list_first_entry(&mv_chan->free_slots,
384 struct mv_xor_desc_slot,
385 node);
386
387 list_move_tail(&iter->node, &mv_chan->allocated_slots);
388
389 spin_unlock_bh(&mv_chan->lock);
ff7b0479 390
dfc97661
LA
391 /* pre-ack descriptor */
392 async_tx_ack(&iter->async_tx);
dfc97661 393 iter->async_tx.cookie = -EBUSY;
dfc97661
LA
394
395 return iter;
396
ff7b0479 397 }
fbea28a2
LA
398
399 spin_unlock_bh(&mv_chan->lock);
ff7b0479
SB
400
401 /* try to free some slots if the allocation fails */
402 tasklet_schedule(&mv_chan->irq_tasklet);
403
404 return NULL;
405}
406
ff7b0479
SB
407/************************ DMA engine API functions ****************************/
408static dma_cookie_t
409mv_xor_tx_submit(struct dma_async_tx_descriptor *tx)
410{
411 struct mv_xor_desc_slot *sw_desc = to_mv_xor_slot(tx);
412 struct mv_xor_chan *mv_chan = to_mv_xor_chan(tx->chan);
dfc97661 413 struct mv_xor_desc_slot *old_chain_tail;
ff7b0479
SB
414 dma_cookie_t cookie;
415 int new_hw_chain = 1;
416
c98c1781 417 dev_dbg(mv_chan_to_devp(mv_chan),
ff7b0479
SB
418 "%s sw_desc %p: async_tx %p\n",
419 __func__, sw_desc, &sw_desc->async_tx);
420
ff7b0479 421 spin_lock_bh(&mv_chan->lock);
884485e1 422 cookie = dma_cookie_assign(tx);
ff7b0479
SB
423
424 if (list_empty(&mv_chan->chain))
fbea28a2 425 list_move_tail(&sw_desc->node, &mv_chan->chain);
ff7b0479
SB
426 else {
427 new_hw_chain = 0;
428
429 old_chain_tail = list_entry(mv_chan->chain.prev,
430 struct mv_xor_desc_slot,
fbea28a2
LA
431 node);
432 list_move_tail(&sw_desc->node, &mv_chan->chain);
ff7b0479 433
31fd8f5b
OJ
434 dev_dbg(mv_chan_to_devp(mv_chan), "Append to last desc %pa\n",
435 &old_chain_tail->async_tx.phys);
ff7b0479
SB
436
437 /* fix up the hardware chain */
dfc97661 438 mv_desc_set_next_desc(old_chain_tail, sw_desc->async_tx.phys);
ff7b0479
SB
439
440 /* if the channel is not busy */
441 if (!mv_chan_is_busy(mv_chan)) {
442 u32 current_desc = mv_chan_get_current_desc(mv_chan);
443 /*
444 * and the curren desc is the end of the chain before
445 * the append, then we need to start the channel
446 */
447 if (current_desc == old_chain_tail->async_tx.phys)
448 new_hw_chain = 1;
449 }
450 }
451
452 if (new_hw_chain)
0951e728 453 mv_chan_start_new_chain(mv_chan, sw_desc);
ff7b0479 454
ff7b0479
SB
455 spin_unlock_bh(&mv_chan->lock);
456
457 return cookie;
458}
459
460/* returns the number of allocated descriptors */
aa1e6f1a 461static int mv_xor_alloc_chan_resources(struct dma_chan *chan)
ff7b0479 462{
31fd8f5b
OJ
463 void *virt_desc;
464 dma_addr_t dma_desc;
ff7b0479
SB
465 int idx;
466 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
467 struct mv_xor_desc_slot *slot = NULL;
b503fa01 468 int num_descs_in_pool = MV_XOR_POOL_SIZE/MV_XOR_SLOT_SIZE;
ff7b0479
SB
469
470 /* Allocate descriptor slots */
471 idx = mv_chan->slots_allocated;
472 while (idx < num_descs_in_pool) {
473 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
474 if (!slot) {
b8291dde
EG
475 dev_info(mv_chan_to_devp(mv_chan),
476 "channel only initialized %d descriptor slots",
477 idx);
ff7b0479
SB
478 break;
479 }
31fd8f5b
OJ
480 virt_desc = mv_chan->dma_desc_pool_virt;
481 slot->hw_desc = virt_desc + idx * MV_XOR_SLOT_SIZE;
ff7b0479
SB
482
483 dma_async_tx_descriptor_init(&slot->async_tx, chan);
484 slot->async_tx.tx_submit = mv_xor_tx_submit;
fbea28a2 485 INIT_LIST_HEAD(&slot->node);
31fd8f5b
OJ
486 dma_desc = mv_chan->dma_desc_pool;
487 slot->async_tx.phys = dma_desc + idx * MV_XOR_SLOT_SIZE;
ff7b0479
SB
488 slot->idx = idx++;
489
490 spin_lock_bh(&mv_chan->lock);
491 mv_chan->slots_allocated = idx;
fbea28a2 492 list_add_tail(&slot->node, &mv_chan->free_slots);
ff7b0479
SB
493 spin_unlock_bh(&mv_chan->lock);
494 }
495
c98c1781 496 dev_dbg(mv_chan_to_devp(mv_chan),
fbea28a2
LA
497 "allocated %d descriptor slots\n",
498 mv_chan->slots_allocated);
ff7b0479
SB
499
500 return mv_chan->slots_allocated ? : -ENOMEM;
501}
502
ff7b0479
SB
503static struct dma_async_tx_descriptor *
504mv_xor_prep_dma_xor(struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src,
505 unsigned int src_cnt, size_t len, unsigned long flags)
506{
507 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
dfc97661 508 struct mv_xor_desc_slot *sw_desc;
ff7b0479
SB
509
510 if (unlikely(len < MV_XOR_MIN_BYTE_COUNT))
511 return NULL;
512
7912d300 513 BUG_ON(len > MV_XOR_MAX_BYTE_COUNT);
ff7b0479 514
c98c1781 515 dev_dbg(mv_chan_to_devp(mv_chan),
31fd8f5b
OJ
516 "%s src_cnt: %d len: %u dest %pad flags: %ld\n",
517 __func__, src_cnt, len, &dest, flags);
ff7b0479 518
0951e728 519 sw_desc = mv_chan_alloc_slot(mv_chan);
ff7b0479
SB
520 if (sw_desc) {
521 sw_desc->type = DMA_XOR;
522 sw_desc->async_tx.flags = flags;
ba87d137 523 mv_desc_init(sw_desc, dest, len, flags);
6f166312
LA
524 if (mv_chan->op_in_desc == XOR_MODE_IN_DESC)
525 mv_desc_set_mode(sw_desc);
ff7b0479 526 while (src_cnt--)
dfc97661 527 mv_desc_set_src_addr(sw_desc, src_cnt, src[src_cnt]);
ff7b0479 528 }
fbea28a2 529
c98c1781 530 dev_dbg(mv_chan_to_devp(mv_chan),
ff7b0479
SB
531 "%s sw_desc %p async_tx %p \n",
532 __func__, sw_desc, &sw_desc->async_tx);
533 return sw_desc ? &sw_desc->async_tx : NULL;
534}
535
3e4f52e2
LA
536static struct dma_async_tx_descriptor *
537mv_xor_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
538 size_t len, unsigned long flags)
539{
540 /*
541 * A MEMCPY operation is identical to an XOR operation with only
542 * a single source address.
543 */
544 return mv_xor_prep_dma_xor(chan, dest, &src, 1, len, flags);
545}
546
22843545
LA
547static struct dma_async_tx_descriptor *
548mv_xor_prep_dma_interrupt(struct dma_chan *chan, unsigned long flags)
549{
550 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
551 dma_addr_t src, dest;
552 size_t len;
553
554 src = mv_chan->dummy_src_addr;
555 dest = mv_chan->dummy_dst_addr;
556 len = MV_XOR_MIN_BYTE_COUNT;
557
558 /*
559 * We implement the DMA_INTERRUPT operation as a minimum sized
560 * XOR operation with a single dummy source address.
561 */
562 return mv_xor_prep_dma_xor(chan, dest, &src, 1, len, flags);
563}
564
ff7b0479
SB
565static void mv_xor_free_chan_resources(struct dma_chan *chan)
566{
567 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
568 struct mv_xor_desc_slot *iter, *_iter;
569 int in_use_descs = 0;
570
ff7b0479 571 spin_lock_bh(&mv_chan->lock);
e43147ac 572
0951e728 573 mv_chan_slot_cleanup(mv_chan);
ff7b0479 574
ff7b0479 575 list_for_each_entry_safe(iter, _iter, &mv_chan->chain,
fbea28a2 576 node) {
ff7b0479 577 in_use_descs++;
fbea28a2 578 list_move_tail(&iter->node, &mv_chan->free_slots);
ff7b0479
SB
579 }
580 list_for_each_entry_safe(iter, _iter, &mv_chan->completed_slots,
fbea28a2
LA
581 node) {
582 in_use_descs++;
583 list_move_tail(&iter->node, &mv_chan->free_slots);
584 }
585 list_for_each_entry_safe(iter, _iter, &mv_chan->allocated_slots,
586 node) {
ff7b0479 587 in_use_descs++;
fbea28a2 588 list_move_tail(&iter->node, &mv_chan->free_slots);
ff7b0479
SB
589 }
590 list_for_each_entry_safe_reverse(
fbea28a2
LA
591 iter, _iter, &mv_chan->free_slots, node) {
592 list_del(&iter->node);
ff7b0479
SB
593 kfree(iter);
594 mv_chan->slots_allocated--;
595 }
ff7b0479 596
c98c1781 597 dev_dbg(mv_chan_to_devp(mv_chan), "%s slots_allocated %d\n",
ff7b0479
SB
598 __func__, mv_chan->slots_allocated);
599 spin_unlock_bh(&mv_chan->lock);
600
601 if (in_use_descs)
c98c1781 602 dev_err(mv_chan_to_devp(mv_chan),
ff7b0479
SB
603 "freeing %d in use descriptors!\n", in_use_descs);
604}
605
606/**
07934481 607 * mv_xor_status - poll the status of an XOR transaction
ff7b0479
SB
608 * @chan: XOR channel handle
609 * @cookie: XOR transaction identifier
07934481 610 * @txstate: XOR transactions state holder (or NULL)
ff7b0479 611 */
07934481 612static enum dma_status mv_xor_status(struct dma_chan *chan,
ff7b0479 613 dma_cookie_t cookie,
07934481 614 struct dma_tx_state *txstate)
ff7b0479
SB
615{
616 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
ff7b0479
SB
617 enum dma_status ret;
618
96a2af41 619 ret = dma_cookie_status(chan, cookie, txstate);
890766d2 620 if (ret == DMA_COMPLETE)
ff7b0479 621 return ret;
e43147ac
EG
622
623 spin_lock_bh(&mv_chan->lock);
0951e728 624 mv_chan_slot_cleanup(mv_chan);
e43147ac 625 spin_unlock_bh(&mv_chan->lock);
ff7b0479 626
96a2af41 627 return dma_cookie_status(chan, cookie, txstate);
ff7b0479
SB
628}
629
0951e728 630static void mv_chan_dump_regs(struct mv_xor_chan *chan)
ff7b0479
SB
631{
632 u32 val;
633
5733c38a 634 val = readl_relaxed(XOR_CONFIG(chan));
1ba151cd 635 dev_err(mv_chan_to_devp(chan), "config 0x%08x\n", val);
ff7b0479 636
5733c38a 637 val = readl_relaxed(XOR_ACTIVATION(chan));
1ba151cd 638 dev_err(mv_chan_to_devp(chan), "activation 0x%08x\n", val);
ff7b0479 639
5733c38a 640 val = readl_relaxed(XOR_INTR_CAUSE(chan));
1ba151cd 641 dev_err(mv_chan_to_devp(chan), "intr cause 0x%08x\n", val);
ff7b0479 642
5733c38a 643 val = readl_relaxed(XOR_INTR_MASK(chan));
1ba151cd 644 dev_err(mv_chan_to_devp(chan), "intr mask 0x%08x\n", val);
ff7b0479 645
5733c38a 646 val = readl_relaxed(XOR_ERROR_CAUSE(chan));
1ba151cd 647 dev_err(mv_chan_to_devp(chan), "error cause 0x%08x\n", val);
ff7b0479 648
5733c38a 649 val = readl_relaxed(XOR_ERROR_ADDR(chan));
1ba151cd 650 dev_err(mv_chan_to_devp(chan), "error addr 0x%08x\n", val);
ff7b0479
SB
651}
652
0951e728
MR
653static void mv_chan_err_interrupt_handler(struct mv_xor_chan *chan,
654 u32 intr_cause)
ff7b0479 655{
0e7488ed
EG
656 if (intr_cause & XOR_INT_ERR_DECODE) {
657 dev_dbg(mv_chan_to_devp(chan), "ignoring address decode error\n");
658 return;
ff7b0479
SB
659 }
660
0e7488ed 661 dev_err(mv_chan_to_devp(chan), "error on chan %d. intr cause 0x%08x\n",
a3fc74bc 662 chan->idx, intr_cause);
ff7b0479 663
0951e728 664 mv_chan_dump_regs(chan);
0e7488ed 665 WARN_ON(1);
ff7b0479
SB
666}
667
668static irqreturn_t mv_xor_interrupt_handler(int irq, void *data)
669{
670 struct mv_xor_chan *chan = data;
671 u32 intr_cause = mv_chan_get_intr_cause(chan);
672
c98c1781 673 dev_dbg(mv_chan_to_devp(chan), "intr cause %x\n", intr_cause);
ff7b0479 674
0e7488ed 675 if (intr_cause & XOR_INTR_ERRORS)
0951e728 676 mv_chan_err_interrupt_handler(chan, intr_cause);
ff7b0479
SB
677
678 tasklet_schedule(&chan->irq_tasklet);
679
0951e728 680 mv_chan_clear_eoc_cause(chan);
ff7b0479
SB
681
682 return IRQ_HANDLED;
683}
684
685static void mv_xor_issue_pending(struct dma_chan *chan)
686{
687 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
688
689 if (mv_chan->pending >= MV_XOR_THRESHOLD) {
690 mv_chan->pending = 0;
691 mv_chan_activate(mv_chan);
692 }
693}
694
695/*
696 * Perform a transaction to verify the HW works.
697 */
ff7b0479 698
0951e728 699static int mv_chan_memcpy_self_test(struct mv_xor_chan *mv_chan)
ff7b0479 700{
b8c01d25 701 int i, ret;
ff7b0479
SB
702 void *src, *dest;
703 dma_addr_t src_dma, dest_dma;
704 struct dma_chan *dma_chan;
705 dma_cookie_t cookie;
706 struct dma_async_tx_descriptor *tx;
d16695a7 707 struct dmaengine_unmap_data *unmap;
ff7b0479 708 int err = 0;
ff7b0479 709
d16695a7 710 src = kmalloc(sizeof(u8) * PAGE_SIZE, GFP_KERNEL);
ff7b0479
SB
711 if (!src)
712 return -ENOMEM;
713
d16695a7 714 dest = kzalloc(sizeof(u8) * PAGE_SIZE, GFP_KERNEL);
ff7b0479
SB
715 if (!dest) {
716 kfree(src);
717 return -ENOMEM;
718 }
719
720 /* Fill in src buffer */
d16695a7 721 for (i = 0; i < PAGE_SIZE; i++)
ff7b0479
SB
722 ((u8 *) src)[i] = (u8)i;
723
275cc0c8 724 dma_chan = &mv_chan->dmachan;
aa1e6f1a 725 if (mv_xor_alloc_chan_resources(dma_chan) < 1) {
ff7b0479
SB
726 err = -ENODEV;
727 goto out;
728 }
729
d16695a7
EG
730 unmap = dmaengine_get_unmap_data(dma_chan->device->dev, 2, GFP_KERNEL);
731 if (!unmap) {
732 err = -ENOMEM;
733 goto free_resources;
734 }
735
736 src_dma = dma_map_page(dma_chan->device->dev, virt_to_page(src), 0,
737 PAGE_SIZE, DMA_TO_DEVICE);
d16695a7 738 unmap->addr[0] = src_dma;
ff7b0479 739
b8c01d25
EG
740 ret = dma_mapping_error(dma_chan->device->dev, src_dma);
741 if (ret) {
742 err = -ENOMEM;
743 goto free_resources;
744 }
745 unmap->to_cnt = 1;
746
d16695a7
EG
747 dest_dma = dma_map_page(dma_chan->device->dev, virt_to_page(dest), 0,
748 PAGE_SIZE, DMA_FROM_DEVICE);
d16695a7
EG
749 unmap->addr[1] = dest_dma;
750
b8c01d25
EG
751 ret = dma_mapping_error(dma_chan->device->dev, dest_dma);
752 if (ret) {
753 err = -ENOMEM;
754 goto free_resources;
755 }
756 unmap->from_cnt = 1;
d16695a7 757 unmap->len = PAGE_SIZE;
ff7b0479
SB
758
759 tx = mv_xor_prep_dma_memcpy(dma_chan, dest_dma, src_dma,
d16695a7 760 PAGE_SIZE, 0);
b8c01d25
EG
761 if (!tx) {
762 dev_err(dma_chan->device->dev,
763 "Self-test cannot prepare operation, disabling\n");
764 err = -ENODEV;
765 goto free_resources;
766 }
767
ff7b0479 768 cookie = mv_xor_tx_submit(tx);
b8c01d25
EG
769 if (dma_submit_error(cookie)) {
770 dev_err(dma_chan->device->dev,
771 "Self-test submit error, disabling\n");
772 err = -ENODEV;
773 goto free_resources;
774 }
775
ff7b0479
SB
776 mv_xor_issue_pending(dma_chan);
777 async_tx_ack(tx);
778 msleep(1);
779
07934481 780 if (mv_xor_status(dma_chan, cookie, NULL) !=
b3efb8fc 781 DMA_COMPLETE) {
a3fc74bc
TP
782 dev_err(dma_chan->device->dev,
783 "Self-test copy timed out, disabling\n");
ff7b0479
SB
784 err = -ENODEV;
785 goto free_resources;
786 }
787
c35064c4 788 dma_sync_single_for_cpu(dma_chan->device->dev, dest_dma,
d16695a7
EG
789 PAGE_SIZE, DMA_FROM_DEVICE);
790 if (memcmp(src, dest, PAGE_SIZE)) {
a3fc74bc
TP
791 dev_err(dma_chan->device->dev,
792 "Self-test copy failed compare, disabling\n");
ff7b0479
SB
793 err = -ENODEV;
794 goto free_resources;
795 }
796
797free_resources:
d16695a7 798 dmaengine_unmap_put(unmap);
ff7b0479
SB
799 mv_xor_free_chan_resources(dma_chan);
800out:
801 kfree(src);
802 kfree(dest);
803 return err;
804}
805
806#define MV_XOR_NUM_SRC_TEST 4 /* must be <= 15 */
463a1f8b 807static int
0951e728 808mv_chan_xor_self_test(struct mv_xor_chan *mv_chan)
ff7b0479 809{
b8c01d25 810 int i, src_idx, ret;
ff7b0479
SB
811 struct page *dest;
812 struct page *xor_srcs[MV_XOR_NUM_SRC_TEST];
813 dma_addr_t dma_srcs[MV_XOR_NUM_SRC_TEST];
814 dma_addr_t dest_dma;
815 struct dma_async_tx_descriptor *tx;
d16695a7 816 struct dmaengine_unmap_data *unmap;
ff7b0479
SB
817 struct dma_chan *dma_chan;
818 dma_cookie_t cookie;
819 u8 cmp_byte = 0;
820 u32 cmp_word;
821 int err = 0;
d16695a7 822 int src_count = MV_XOR_NUM_SRC_TEST;
ff7b0479 823
d16695a7 824 for (src_idx = 0; src_idx < src_count; src_idx++) {
ff7b0479 825 xor_srcs[src_idx] = alloc_page(GFP_KERNEL);
a09b09ae
RK
826 if (!xor_srcs[src_idx]) {
827 while (src_idx--)
ff7b0479 828 __free_page(xor_srcs[src_idx]);
a09b09ae
RK
829 return -ENOMEM;
830 }
ff7b0479
SB
831 }
832
833 dest = alloc_page(GFP_KERNEL);
a09b09ae
RK
834 if (!dest) {
835 while (src_idx--)
ff7b0479 836 __free_page(xor_srcs[src_idx]);
a09b09ae
RK
837 return -ENOMEM;
838 }
ff7b0479
SB
839
840 /* Fill in src buffers */
d16695a7 841 for (src_idx = 0; src_idx < src_count; src_idx++) {
ff7b0479
SB
842 u8 *ptr = page_address(xor_srcs[src_idx]);
843 for (i = 0; i < PAGE_SIZE; i++)
844 ptr[i] = (1 << src_idx);
845 }
846
d16695a7 847 for (src_idx = 0; src_idx < src_count; src_idx++)
ff7b0479
SB
848 cmp_byte ^= (u8) (1 << src_idx);
849
850 cmp_word = (cmp_byte << 24) | (cmp_byte << 16) |
851 (cmp_byte << 8) | cmp_byte;
852
853 memset(page_address(dest), 0, PAGE_SIZE);
854
275cc0c8 855 dma_chan = &mv_chan->dmachan;
aa1e6f1a 856 if (mv_xor_alloc_chan_resources(dma_chan) < 1) {
ff7b0479
SB
857 err = -ENODEV;
858 goto out;
859 }
860
d16695a7
EG
861 unmap = dmaengine_get_unmap_data(dma_chan->device->dev, src_count + 1,
862 GFP_KERNEL);
863 if (!unmap) {
864 err = -ENOMEM;
865 goto free_resources;
866 }
867
ff7b0479 868 /* test xor */
d16695a7
EG
869 for (i = 0; i < src_count; i++) {
870 unmap->addr[i] = dma_map_page(dma_chan->device->dev, xor_srcs[i],
871 0, PAGE_SIZE, DMA_TO_DEVICE);
872 dma_srcs[i] = unmap->addr[i];
b8c01d25
EG
873 ret = dma_mapping_error(dma_chan->device->dev, unmap->addr[i]);
874 if (ret) {
875 err = -ENOMEM;
876 goto free_resources;
877 }
d16695a7
EG
878 unmap->to_cnt++;
879 }
ff7b0479 880
d16695a7
EG
881 unmap->addr[src_count] = dma_map_page(dma_chan->device->dev, dest, 0, PAGE_SIZE,
882 DMA_FROM_DEVICE);
883 dest_dma = unmap->addr[src_count];
b8c01d25
EG
884 ret = dma_mapping_error(dma_chan->device->dev, unmap->addr[src_count]);
885 if (ret) {
886 err = -ENOMEM;
887 goto free_resources;
888 }
d16695a7
EG
889 unmap->from_cnt = 1;
890 unmap->len = PAGE_SIZE;
ff7b0479
SB
891
892 tx = mv_xor_prep_dma_xor(dma_chan, dest_dma, dma_srcs,
d16695a7 893 src_count, PAGE_SIZE, 0);
b8c01d25
EG
894 if (!tx) {
895 dev_err(dma_chan->device->dev,
896 "Self-test cannot prepare operation, disabling\n");
897 err = -ENODEV;
898 goto free_resources;
899 }
ff7b0479
SB
900
901 cookie = mv_xor_tx_submit(tx);
b8c01d25
EG
902 if (dma_submit_error(cookie)) {
903 dev_err(dma_chan->device->dev,
904 "Self-test submit error, disabling\n");
905 err = -ENODEV;
906 goto free_resources;
907 }
908
ff7b0479
SB
909 mv_xor_issue_pending(dma_chan);
910 async_tx_ack(tx);
911 msleep(8);
912
07934481 913 if (mv_xor_status(dma_chan, cookie, NULL) !=
b3efb8fc 914 DMA_COMPLETE) {
a3fc74bc
TP
915 dev_err(dma_chan->device->dev,
916 "Self-test xor timed out, disabling\n");
ff7b0479
SB
917 err = -ENODEV;
918 goto free_resources;
919 }
920
c35064c4 921 dma_sync_single_for_cpu(dma_chan->device->dev, dest_dma,
ff7b0479
SB
922 PAGE_SIZE, DMA_FROM_DEVICE);
923 for (i = 0; i < (PAGE_SIZE / sizeof(u32)); i++) {
924 u32 *ptr = page_address(dest);
925 if (ptr[i] != cmp_word) {
a3fc74bc 926 dev_err(dma_chan->device->dev,
1ba151cd
JP
927 "Self-test xor failed compare, disabling. index %d, data %x, expected %x\n",
928 i, ptr[i], cmp_word);
ff7b0479
SB
929 err = -ENODEV;
930 goto free_resources;
931 }
932 }
933
934free_resources:
d16695a7 935 dmaengine_unmap_put(unmap);
ff7b0479
SB
936 mv_xor_free_chan_resources(dma_chan);
937out:
d16695a7 938 src_idx = src_count;
ff7b0479
SB
939 while (src_idx--)
940 __free_page(xor_srcs[src_idx]);
941 __free_page(dest);
942 return err;
943}
944
1ef48a26 945static int mv_xor_channel_remove(struct mv_xor_chan *mv_chan)
ff7b0479 946{
ff7b0479 947 struct dma_chan *chan, *_chan;
1ef48a26 948 struct device *dev = mv_chan->dmadev.dev;
ff7b0479 949
1ef48a26 950 dma_async_device_unregister(&mv_chan->dmadev);
ff7b0479 951
b503fa01 952 dma_free_coherent(dev, MV_XOR_POOL_SIZE,
1ef48a26 953 mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool);
22843545
LA
954 dma_unmap_single(dev, mv_chan->dummy_src_addr,
955 MV_XOR_MIN_BYTE_COUNT, DMA_FROM_DEVICE);
956 dma_unmap_single(dev, mv_chan->dummy_dst_addr,
957 MV_XOR_MIN_BYTE_COUNT, DMA_TO_DEVICE);
ff7b0479 958
1ef48a26 959 list_for_each_entry_safe(chan, _chan, &mv_chan->dmadev.channels,
a6b4a9d2 960 device_node) {
ff7b0479
SB
961 list_del(&chan->device_node);
962 }
963
88eb92cb
TP
964 free_irq(mv_chan->irq, mv_chan);
965
ff7b0479
SB
966 return 0;
967}
968
1ef48a26 969static struct mv_xor_chan *
297eedba 970mv_xor_channel_add(struct mv_xor_device *xordev,
a6b4a9d2 971 struct platform_device *pdev,
6f166312 972 int idx, dma_cap_mask_t cap_mask, int irq, int op_in_desc)
ff7b0479
SB
973{
974 int ret = 0;
ff7b0479
SB
975 struct mv_xor_chan *mv_chan;
976 struct dma_device *dma_dev;
ff7b0479 977
1ef48a26 978 mv_chan = devm_kzalloc(&pdev->dev, sizeof(*mv_chan), GFP_KERNEL);
a577659f
SK
979 if (!mv_chan)
980 return ERR_PTR(-ENOMEM);
ff7b0479 981
9aedbdba 982 mv_chan->idx = idx;
88eb92cb 983 mv_chan->irq = irq;
6f166312 984 mv_chan->op_in_desc = op_in_desc;
ff7b0479 985
1ef48a26 986 dma_dev = &mv_chan->dmadev;
ff7b0479 987
22843545
LA
988 /*
989 * These source and destination dummy buffers are used to implement
990 * a DMA_INTERRUPT operation as a minimum-sized XOR operation.
991 * Hence, we only need to map the buffers at initialization-time.
992 */
993 mv_chan->dummy_src_addr = dma_map_single(dma_dev->dev,
994 mv_chan->dummy_src, MV_XOR_MIN_BYTE_COUNT, DMA_FROM_DEVICE);
995 mv_chan->dummy_dst_addr = dma_map_single(dma_dev->dev,
996 mv_chan->dummy_dst, MV_XOR_MIN_BYTE_COUNT, DMA_TO_DEVICE);
997
ff7b0479
SB
998 /* allocate coherent memory for hardware descriptors
999 * note: writecombine gives slightly better performance, but
1000 * requires that we explicitly flush the writes
1001 */
1ef48a26 1002 mv_chan->dma_desc_pool_virt =
b503fa01 1003 dma_alloc_writecombine(&pdev->dev, MV_XOR_POOL_SIZE,
1ef48a26
TP
1004 &mv_chan->dma_desc_pool, GFP_KERNEL);
1005 if (!mv_chan->dma_desc_pool_virt)
a6b4a9d2 1006 return ERR_PTR(-ENOMEM);
ff7b0479
SB
1007
1008 /* discover transaction capabilites from the platform data */
a6b4a9d2 1009 dma_dev->cap_mask = cap_mask;
ff7b0479
SB
1010
1011 INIT_LIST_HEAD(&dma_dev->channels);
1012
1013 /* set base routines */
1014 dma_dev->device_alloc_chan_resources = mv_xor_alloc_chan_resources;
1015 dma_dev->device_free_chan_resources = mv_xor_free_chan_resources;
07934481 1016 dma_dev->device_tx_status = mv_xor_status;
ff7b0479
SB
1017 dma_dev->device_issue_pending = mv_xor_issue_pending;
1018 dma_dev->dev = &pdev->dev;
1019
1020 /* set prep routines based on capability */
22843545
LA
1021 if (dma_has_cap(DMA_INTERRUPT, dma_dev->cap_mask))
1022 dma_dev->device_prep_dma_interrupt = mv_xor_prep_dma_interrupt;
ff7b0479
SB
1023 if (dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask))
1024 dma_dev->device_prep_dma_memcpy = mv_xor_prep_dma_memcpy;
ff7b0479 1025 if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) {
c019894e 1026 dma_dev->max_xor = 8;
ff7b0479
SB
1027 dma_dev->device_prep_dma_xor = mv_xor_prep_dma_xor;
1028 }
1029
297eedba 1030 mv_chan->mmr_base = xordev->xor_base;
82a1402e 1031 mv_chan->mmr_high_base = xordev->xor_high_base;
ff7b0479
SB
1032 tasklet_init(&mv_chan->irq_tasklet, mv_xor_tasklet, (unsigned long)
1033 mv_chan);
1034
1035 /* clear errors before enabling interrupts */
0951e728 1036 mv_chan_clear_err_status(mv_chan);
ff7b0479 1037
2d0a0745
TP
1038 ret = request_irq(mv_chan->irq, mv_xor_interrupt_handler,
1039 0, dev_name(&pdev->dev), mv_chan);
ff7b0479
SB
1040 if (ret)
1041 goto err_free_dma;
1042
1043 mv_chan_unmask_interrupts(mv_chan);
1044
6f166312
LA
1045 if (mv_chan->op_in_desc == XOR_MODE_IN_DESC)
1046 mv_chan_set_mode_to_desc(mv_chan);
1047 else
1048 mv_chan_set_mode(mv_chan, DMA_XOR);
ff7b0479
SB
1049
1050 spin_lock_init(&mv_chan->lock);
1051 INIT_LIST_HEAD(&mv_chan->chain);
1052 INIT_LIST_HEAD(&mv_chan->completed_slots);
fbea28a2
LA
1053 INIT_LIST_HEAD(&mv_chan->free_slots);
1054 INIT_LIST_HEAD(&mv_chan->allocated_slots);
98817b99
TP
1055 mv_chan->dmachan.device = dma_dev;
1056 dma_cookie_init(&mv_chan->dmachan);
ff7b0479 1057
98817b99 1058 list_add_tail(&mv_chan->dmachan.device_node, &dma_dev->channels);
ff7b0479
SB
1059
1060 if (dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask)) {
0951e728 1061 ret = mv_chan_memcpy_self_test(mv_chan);
ff7b0479
SB
1062 dev_dbg(&pdev->dev, "memcpy self test returned %d\n", ret);
1063 if (ret)
2d0a0745 1064 goto err_free_irq;
ff7b0479
SB
1065 }
1066
1067 if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) {
0951e728 1068 ret = mv_chan_xor_self_test(mv_chan);
ff7b0479
SB
1069 dev_dbg(&pdev->dev, "xor self test returned %d\n", ret);
1070 if (ret)
2d0a0745 1071 goto err_free_irq;
ff7b0479
SB
1072 }
1073
6f166312
LA
1074 dev_info(&pdev->dev, "Marvell XOR (%s): ( %s%s%s)\n",
1075 mv_chan->op_in_desc ? "Descriptor Mode" : "Registers Mode",
1ba151cd 1076 dma_has_cap(DMA_XOR, dma_dev->cap_mask) ? "xor " : "",
1ba151cd
JP
1077 dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask) ? "cpy " : "",
1078 dma_has_cap(DMA_INTERRUPT, dma_dev->cap_mask) ? "intr " : "");
ff7b0479
SB
1079
1080 dma_async_device_register(dma_dev);
1ef48a26 1081 return mv_chan;
ff7b0479 1082
2d0a0745
TP
1083err_free_irq:
1084 free_irq(mv_chan->irq, mv_chan);
ff7b0479 1085 err_free_dma:
b503fa01 1086 dma_free_coherent(&pdev->dev, MV_XOR_POOL_SIZE,
1ef48a26 1087 mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool);
a6b4a9d2 1088 return ERR_PTR(ret);
ff7b0479
SB
1089}
1090
1091static void
297eedba 1092mv_xor_conf_mbus_windows(struct mv_xor_device *xordev,
63a9332b 1093 const struct mbus_dram_target_info *dram)
ff7b0479 1094{
82a1402e 1095 void __iomem *base = xordev->xor_high_base;
ff7b0479
SB
1096 u32 win_enable = 0;
1097 int i;
1098
1099 for (i = 0; i < 8; i++) {
1100 writel(0, base + WINDOW_BASE(i));
1101 writel(0, base + WINDOW_SIZE(i));
1102 if (i < 4)
1103 writel(0, base + WINDOW_REMAP_HIGH(i));
1104 }
1105
1106 for (i = 0; i < dram->num_cs; i++) {
63a9332b 1107 const struct mbus_dram_window *cs = dram->cs + i;
ff7b0479
SB
1108
1109 writel((cs->base & 0xffff0000) |
1110 (cs->mbus_attr << 8) |
1111 dram->mbus_dram_target_id, base + WINDOW_BASE(i));
1112 writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i));
1113
1114 win_enable |= (1 << i);
1115 win_enable |= 3 << (16 + (2 * i));
1116 }
1117
1118 writel(win_enable, base + WINDOW_BAR_ENABLE(0));
1119 writel(win_enable, base + WINDOW_BAR_ENABLE(1));
c4b4b732
TP
1120 writel(0, base + WINDOW_OVERRIDE_CTRL(0));
1121 writel(0, base + WINDOW_OVERRIDE_CTRL(1));
ff7b0479
SB
1122}
1123
6f166312
LA
1124static const struct of_device_id mv_xor_dt_ids[] = {
1125 { .compatible = "marvell,orion-xor", .data = (void *)XOR_MODE_IN_REG },
1126 { .compatible = "marvell,armada-380-xor", .data = (void *)XOR_MODE_IN_DESC },
1127 {},
1128};
6f166312 1129
77757291 1130static unsigned int mv_xor_engine_count;
6f166312 1131
c2714334 1132static int mv_xor_probe(struct platform_device *pdev)
ff7b0479 1133{
63a9332b 1134 const struct mbus_dram_target_info *dram;
297eedba 1135 struct mv_xor_device *xordev;
d4adcc01 1136 struct mv_xor_platform_data *pdata = dev_get_platdata(&pdev->dev);
ff7b0479 1137 struct resource *res;
77757291 1138 unsigned int max_engines, max_channels;
60d151f3 1139 int i, ret;
6f166312 1140 int op_in_desc;
ff7b0479 1141
1ba151cd 1142 dev_notice(&pdev->dev, "Marvell shared XOR driver\n");
ff7b0479 1143
297eedba
TP
1144 xordev = devm_kzalloc(&pdev->dev, sizeof(*xordev), GFP_KERNEL);
1145 if (!xordev)
ff7b0479
SB
1146 return -ENOMEM;
1147
1148 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1149 if (!res)
1150 return -ENODEV;
1151
297eedba
TP
1152 xordev->xor_base = devm_ioremap(&pdev->dev, res->start,
1153 resource_size(res));
1154 if (!xordev->xor_base)
ff7b0479
SB
1155 return -EBUSY;
1156
1157 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1158 if (!res)
1159 return -ENODEV;
1160
297eedba
TP
1161 xordev->xor_high_base = devm_ioremap(&pdev->dev, res->start,
1162 resource_size(res));
1163 if (!xordev->xor_high_base)
ff7b0479
SB
1164 return -EBUSY;
1165
297eedba 1166 platform_set_drvdata(pdev, xordev);
ff7b0479
SB
1167
1168 /*
1169 * (Re-)program MBUS remapping windows if we are asked to.
1170 */
63a9332b
AL
1171 dram = mv_mbus_dram_info();
1172 if (dram)
297eedba 1173 mv_xor_conf_mbus_windows(xordev, dram);
ff7b0479 1174
c510182b
AL
1175 /* Not all platforms can gate the clock, so it is not
1176 * an error if the clock does not exists.
1177 */
297eedba
TP
1178 xordev->clk = clk_get(&pdev->dev, NULL);
1179 if (!IS_ERR(xordev->clk))
1180 clk_prepare_enable(xordev->clk);
c510182b 1181
77757291
TP
1182 /*
1183 * We don't want to have more than one channel per CPU in
1184 * order for async_tx to perform well. So we limit the number
1185 * of engines and channels so that we take into account this
1186 * constraint. Note that we also want to use channels from
1187 * separate engines when possible.
1188 */
1189 max_engines = num_present_cpus();
1190 max_channels = min_t(unsigned int,
1191 MV_XOR_MAX_CHANNELS,
1192 DIV_ROUND_UP(num_present_cpus(), 2));
1193
1194 if (mv_xor_engine_count >= max_engines)
1195 return 0;
1196
f7d12ef5
TP
1197 if (pdev->dev.of_node) {
1198 struct device_node *np;
1199 int i = 0;
6f166312
LA
1200 const struct of_device_id *of_id =
1201 of_match_device(mv_xor_dt_ids,
1202 &pdev->dev);
f7d12ef5
TP
1203
1204 for_each_child_of_node(pdev->dev.of_node, np) {
0be8253f 1205 struct mv_xor_chan *chan;
f7d12ef5
TP
1206 dma_cap_mask_t cap_mask;
1207 int irq;
6f166312 1208 op_in_desc = (int)of_id->data;
f7d12ef5 1209
77757291
TP
1210 if (i >= max_channels)
1211 continue;
1212
f7d12ef5 1213 dma_cap_zero(cap_mask);
6d8f7abd
TP
1214 dma_cap_set(DMA_MEMCPY, cap_mask);
1215 dma_cap_set(DMA_XOR, cap_mask);
1216 dma_cap_set(DMA_INTERRUPT, cap_mask);
f7d12ef5
TP
1217
1218 irq = irq_of_parse_and_map(np, 0);
f8eb9e7d
TP
1219 if (!irq) {
1220 ret = -ENODEV;
f7d12ef5
TP
1221 goto err_channel_add;
1222 }
1223
0be8253f 1224 chan = mv_xor_channel_add(xordev, pdev, i,
6f166312 1225 cap_mask, irq, op_in_desc);
0be8253f
RK
1226 if (IS_ERR(chan)) {
1227 ret = PTR_ERR(chan);
f7d12ef5
TP
1228 irq_dispose_mapping(irq);
1229 goto err_channel_add;
1230 }
1231
0be8253f 1232 xordev->channels[i] = chan;
f7d12ef5
TP
1233 i++;
1234 }
1235 } else if (pdata && pdata->channels) {
77757291 1236 for (i = 0; i < max_channels; i++) {
e39f6ec1 1237 struct mv_xor_channel_data *cd;
0be8253f 1238 struct mv_xor_chan *chan;
60d151f3
TP
1239 int irq;
1240
1241 cd = &pdata->channels[i];
1242 if (!cd) {
1243 ret = -ENODEV;
1244 goto err_channel_add;
1245 }
1246
1247 irq = platform_get_irq(pdev, i);
1248 if (irq < 0) {
1249 ret = irq;
1250 goto err_channel_add;
1251 }
1252
0be8253f 1253 chan = mv_xor_channel_add(xordev, pdev, i,
6f166312
LA
1254 cd->cap_mask, irq,
1255 XOR_MODE_IN_REG);
0be8253f
RK
1256 if (IS_ERR(chan)) {
1257 ret = PTR_ERR(chan);
60d151f3
TP
1258 goto err_channel_add;
1259 }
0be8253f
RK
1260
1261 xordev->channels[i] = chan;
60d151f3
TP
1262 }
1263 }
c510182b 1264
ff7b0479 1265 return 0;
60d151f3
TP
1266
1267err_channel_add:
1268 for (i = 0; i < MV_XOR_MAX_CHANNELS; i++)
f7d12ef5 1269 if (xordev->channels[i]) {
ab6e439f 1270 mv_xor_channel_remove(xordev->channels[i]);
f7d12ef5
TP
1271 if (pdev->dev.of_node)
1272 irq_dispose_mapping(xordev->channels[i]->irq);
f7d12ef5 1273 }
60d151f3 1274
dab92064
TP
1275 if (!IS_ERR(xordev->clk)) {
1276 clk_disable_unprepare(xordev->clk);
1277 clk_put(xordev->clk);
1278 }
1279
60d151f3 1280 return ret;
ff7b0479
SB
1281}
1282
61971656
TP
1283static struct platform_driver mv_xor_driver = {
1284 .probe = mv_xor_probe,
ff7b0479 1285 .driver = {
f7d12ef5
TP
1286 .name = MV_XOR_NAME,
1287 .of_match_table = of_match_ptr(mv_xor_dt_ids),
ff7b0479
SB
1288 },
1289};
1290
1291
1292static int __init mv_xor_init(void)
1293{
61971656 1294 return platform_driver_register(&mv_xor_driver);
ff7b0479 1295}
25cf68da 1296device_initcall(mv_xor_init);
ff7b0479 1297
25cf68da 1298/*
ff7b0479
SB
1299MODULE_AUTHOR("Saeed Bishara <saeed@marvell.com>");
1300MODULE_DESCRIPTION("DMA engine driver for Marvell's XOR engine");
1301MODULE_LICENSE("GPL");
25cf68da 1302*/