blob: 50f1b422dee3b091a83ea4c39facb79d37a94cba [file] [log] [blame]
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001/*
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.
Saeed Bisharaff7b0472008-07-08 11:58:36 -070013 */
14
15#include <linux/init.h>
16#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Saeed Bisharaff7b0472008-07-08 11:58:36 -070018#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>
Andrew Lunnc5101822012-02-19 13:30:26 +010024#include <linux/clk.h>
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +010025#include <linux/of.h>
26#include <linux/of_irq.h>
27#include <linux/irqdomain.h>
Arnd Bergmannc02cecb2012-08-24 15:21:54 +020028#include <linux/platform_data/dma-mv_xor.h>
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +000029
30#include "dmaengine.h"
Saeed Bisharaff7b0472008-07-08 11:58:36 -070031#include "mv_xor.h"
32
33static void mv_xor_issue_pending(struct dma_chan *chan);
34
35#define to_mv_xor_chan(chan) \
Thomas Petazzoni98817b92012-11-15 14:57:44 +010036 container_of(chan, struct mv_xor_chan, dmachan)
Saeed Bisharaff7b0472008-07-08 11:58:36 -070037
38#define to_mv_xor_slot(tx) \
39 container_of(tx, struct mv_xor_desc_slot, async_tx)
40
Thomas Petazzonic98c1782012-11-15 14:17:18 +010041#define mv_chan_to_devp(chan) \
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +010042 ((chan)->dmadev.dev)
Thomas Petazzonic98c1782012-11-15 14:17:18 +010043
Lior Amsalemdfc97662014-08-27 10:52:51 -030044static void mv_desc_init(struct mv_xor_desc_slot *desc,
Lior Amsalemba87d132014-08-27 10:52:53 -030045 dma_addr_t addr, u32 byte_count,
46 enum dma_ctrl_flags flags)
Saeed Bisharaff7b0472008-07-08 11:58:36 -070047{
48 struct mv_xor_desc *hw_desc = desc->hw_desc;
49
Ezequiel Garcia0e7488e2014-08-27 10:52:52 -030050 hw_desc->status = XOR_DESC_DMA_OWNED;
Saeed Bisharaff7b0472008-07-08 11:58:36 -070051 hw_desc->phy_next_desc = 0;
Lior Amsalemba87d132014-08-27 10:52:53 -030052 /* 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;
Lior Amsalemdfc97662014-08-27 10:52:51 -030055 hw_desc->phy_dest_addr = addr;
Saeed Bisharaff7b0472008-07-08 11:58:36 -070056 hw_desc->byte_count = byte_count;
57}
58
59static void mv_desc_set_next_desc(struct mv_xor_desc_slot *desc,
60 u32 next_desc_addr)
61{
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;
65}
66
67static void mv_desc_clear_next_desc(struct mv_xor_desc_slot *desc)
68{
69 struct mv_xor_desc *hw_desc = desc->hw_desc;
70 hw_desc->phy_next_desc = 0;
71}
72
Saeed Bisharaff7b0472008-07-08 11:58:36 -070073static void mv_desc_set_src_addr(struct mv_xor_desc_slot *desc,
74 int index, dma_addr_t addr)
75{
76 struct mv_xor_desc *hw_desc = desc->hw_desc;
Thomas Petazzonie03bc652013-07-29 17:42:14 +020077 hw_desc->phy_src_addr[mv_phy_src_idx(index)] = addr;
Saeed Bisharaff7b0472008-07-08 11:58:36 -070078 if (desc->type == DMA_XOR)
79 hw_desc->desc_command |= (1 << index);
80}
81
82static u32 mv_chan_get_current_desc(struct mv_xor_chan *chan)
83{
Thomas Petazzoni5733c382013-07-29 17:42:13 +020084 return readl_relaxed(XOR_CURR_DESC(chan));
Saeed Bisharaff7b0472008-07-08 11:58:36 -070085}
86
87static void mv_chan_set_next_descriptor(struct mv_xor_chan *chan,
88 u32 next_desc_addr)
89{
Thomas Petazzoni5733c382013-07-29 17:42:13 +020090 writel_relaxed(next_desc_addr, XOR_NEXT_DESC(chan));
Saeed Bisharaff7b0472008-07-08 11:58:36 -070091}
92
Saeed Bisharaff7b0472008-07-08 11:58:36 -070093static void mv_chan_unmask_interrupts(struct mv_xor_chan *chan)
94{
Thomas Petazzoni5733c382013-07-29 17:42:13 +020095 u32 val = readl_relaxed(XOR_INTR_MASK(chan));
Saeed Bisharaff7b0472008-07-08 11:58:36 -070096 val |= XOR_INTR_MASK_VALUE << (chan->idx * 16);
Thomas Petazzoni5733c382013-07-29 17:42:13 +020097 writel_relaxed(val, XOR_INTR_MASK(chan));
Saeed Bisharaff7b0472008-07-08 11:58:36 -070098}
99
100static u32 mv_chan_get_intr_cause(struct mv_xor_chan *chan)
101{
Thomas Petazzoni5733c382013-07-29 17:42:13 +0200102 u32 intr_cause = readl_relaxed(XOR_INTR_CAUSE(chan));
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700103 intr_cause = (intr_cause >> (chan->idx * 16)) & 0xFFFF;
104 return intr_cause;
105}
106
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700107static void mv_xor_device_clear_eoc_cause(struct mv_xor_chan *chan)
108{
Lior Amsalemba87d132014-08-27 10:52:53 -0300109 u32 val;
110
111 val = XOR_INT_END_OF_DESC | XOR_INT_END_OF_CHAIN | XOR_INT_STOPPED;
112 val = ~(val << (chan->idx * 16));
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100113 dev_dbg(mv_chan_to_devp(chan), "%s, val 0x%08x\n", __func__, val);
Thomas Petazzoni5733c382013-07-29 17:42:13 +0200114 writel_relaxed(val, XOR_INTR_CAUSE(chan));
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700115}
116
117static void mv_xor_device_clear_err_status(struct mv_xor_chan *chan)
118{
119 u32 val = 0xFFFF0000 >> (chan->idx * 16);
Thomas Petazzoni5733c382013-07-29 17:42:13 +0200120 writel_relaxed(val, XOR_INTR_CAUSE(chan));
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700121}
122
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700123static void mv_set_mode(struct mv_xor_chan *chan,
124 enum dma_transaction_type type)
125{
126 u32 op_mode;
Thomas Petazzoni5733c382013-07-29 17:42:13 +0200127 u32 config = readl_relaxed(XOR_CONFIG(chan));
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700128
129 switch (type) {
130 case DMA_XOR:
131 op_mode = XOR_OPERATION_MODE_XOR;
132 break;
133 case DMA_MEMCPY:
134 op_mode = XOR_OPERATION_MODE_MEMCPY;
135 break;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700136 default:
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100137 dev_err(mv_chan_to_devp(chan),
Joe Perches1ba151c2012-10-28 01:05:44 -0700138 "error: unsupported operation %d\n",
Thomas Petazzonia3fc74b2012-11-15 12:50:27 +0100139 type);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700140 BUG();
141 return;
142 }
143
144 config &= ~0x7;
145 config |= op_mode;
Thomas Petazzonie03bc652013-07-29 17:42:14 +0200146
147#if defined(__BIG_ENDIAN)
148 config |= XOR_DESCRIPTOR_SWAP;
149#else
150 config &= ~XOR_DESCRIPTOR_SWAP;
151#endif
152
Thomas Petazzoni5733c382013-07-29 17:42:13 +0200153 writel_relaxed(config, XOR_CONFIG(chan));
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700154 chan->current_type = type;
155}
156
157static void mv_chan_activate(struct mv_xor_chan *chan)
158{
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100159 dev_dbg(mv_chan_to_devp(chan), " activate chan.\n");
Ezequiel Garcia5a9a55b2014-05-21 14:02:35 -0700160
161 /* writel ensures all descriptors are flushed before activation */
162 writel(BIT(0), XOR_ACTIVATION(chan));
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700163}
164
165static char mv_chan_is_busy(struct mv_xor_chan *chan)
166{
Thomas Petazzoni5733c382013-07-29 17:42:13 +0200167 u32 state = readl_relaxed(XOR_ACTIVATION(chan));
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700168
169 state = (state >> 4) & 0x3;
170
171 return (state == 1) ? 1 : 0;
172}
173
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700174/**
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
178 */
179static void mv_xor_free_slots(struct mv_xor_chan *mv_chan,
180 struct mv_xor_desc_slot *slot)
181{
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100182 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d slot %p\n",
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700183 __func__, __LINE__, slot);
184
Lior Amsalemdfc97662014-08-27 10:52:51 -0300185 slot->slot_used = 0;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700186
187}
188
189/*
190 * mv_xor_start_new_chain - program the engine to operate on new chain headed by
191 * sw_desc
192 * Caller must hold &mv_chan->lock while calling this function
193 */
194static void mv_xor_start_new_chain(struct mv_xor_chan *mv_chan,
195 struct mv_xor_desc_slot *sw_desc)
196{
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100197 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d: sw_desc %p\n",
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700198 __func__, __LINE__, sw_desc);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700199
Bartlomiej Zolnierkiewicz48a9db42013-07-03 15:05:06 -0700200 /* set the hardware chain */
201 mv_chan_set_next_descriptor(mv_chan, sw_desc->async_tx.phys);
202
Lior Amsalemdfc97662014-08-27 10:52:51 -0300203 mv_chan->pending++;
Thomas Petazzoni98817b92012-11-15 14:57:44 +0100204 mv_xor_issue_pending(&mv_chan->dmachan);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700205}
206
207static dma_cookie_t
208mv_xor_run_tx_complete_actions(struct mv_xor_desc_slot *desc,
209 struct mv_xor_chan *mv_chan, dma_cookie_t cookie)
210{
211 BUG_ON(desc->async_tx.cookie < 0);
212
213 if (desc->async_tx.cookie > 0) {
214 cookie = desc->async_tx.cookie;
215
216 /* call the callback (must not sleep or submit new
217 * operations to this channel)
218 */
219 if (desc->async_tx.callback)
220 desc->async_tx.callback(
221 desc->async_tx.callback_param);
222
Dan Williamsd38a8c62013-10-18 19:35:23 +0200223 dma_descriptor_unmap(&desc->async_tx);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700224 }
225
226 /* run dependent operations */
Dan Williams07f22112009-01-05 17:14:31 -0700227 dma_run_dependencies(&desc->async_tx);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700228
229 return cookie;
230}
231
232static int
233mv_xor_clean_completed_slots(struct mv_xor_chan *mv_chan)
234{
235 struct mv_xor_desc_slot *iter, *_iter;
236
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100237 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d\n", __func__, __LINE__);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700238 list_for_each_entry_safe(iter, _iter, &mv_chan->completed_slots,
239 completed_node) {
240
241 if (async_tx_test_ack(&iter->async_tx)) {
242 list_del(&iter->completed_node);
243 mv_xor_free_slots(mv_chan, iter);
244 }
245 }
246 return 0;
247}
248
249static int
250mv_xor_clean_slot(struct mv_xor_desc_slot *desc,
251 struct mv_xor_chan *mv_chan)
252{
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100253 dev_dbg(mv_chan_to_devp(mv_chan), "%s %d: desc %p flags %d\n",
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700254 __func__, __LINE__, desc, desc->async_tx.flags);
255 list_del(&desc->chain_node);
256 /* the client is allowed to attach dependent operations
257 * until 'ack' is set
258 */
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);
262 return 0;
263 }
264
265 mv_xor_free_slots(mv_chan, desc);
266 return 0;
267}
268
Ezequiel Garciafbeec992014-03-07 16:46:47 -0300269/* This function must be called with the mv_xor_chan spinlock held */
270static void mv_xor_slot_cleanup(struct mv_xor_chan *mv_chan)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700271{
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);
Lior Amsalem91362912015-05-26 15:07:32 +0200276 int current_cleaned = 0;
277 struct mv_xor_desc *hw_desc;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700278
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100279 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);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700281 mv_xor_clean_completed_slots(mv_chan);
282
283 /* free completed slots from the chain starting with
284 * the oldest descriptor
285 */
286
287 list_for_each_entry_safe(iter, _iter, &mv_chan->chain,
288 chain_node) {
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700289
Lior Amsalem91362912015-05-26 15:07:32 +0200290 /* 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,
294 cookie);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700295
Lior Amsalem91362912015-05-26 15:07:32 +0200296 /* done processing desc, clean slot */
297 mv_xor_clean_slot(iter, mv_chan);
298
299 /* break if we did cleaned the current */
300 if (iter->async_tx.phys == current_desc) {
301 current_cleaned = 1;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700302 break;
Lior Amsalem91362912015-05-26 15:07:32 +0200303 }
304 } else {
305 if (iter->async_tx.phys == current_desc) {
306 current_cleaned = 0;
307 break;
308 }
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700309 }
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700310 }
311
312 if ((busy == 0) && !list_empty(&mv_chan->chain)) {
Lior Amsalem91362912015-05-26 15:07:32 +0200313 if (current_cleaned) {
314 /*
315 * current descriptor cleaned and removed, run
316 * from list head
317 */
318 iter = list_entry(mv_chan->chain.next,
319 struct mv_xor_desc_slot,
320 chain_node);
321 mv_xor_start_new_chain(mv_chan, iter);
322 } else {
323 if (!list_is_last(&iter->chain_node, &mv_chan->chain)) {
324 /*
325 * descriptors are still waiting after
326 * current, trigger them
327 */
328 iter = list_entry(iter->chain_node.next,
329 struct mv_xor_desc_slot,
330 chain_node);
331 mv_xor_start_new_chain(mv_chan, iter);
332 } else {
333 /*
334 * some descriptors are still waiting
335 * to be cleaned
336 */
337 tasklet_schedule(&mv_chan->irq_tasklet);
338 }
339 }
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700340 }
341
342 if (cookie > 0)
Thomas Petazzoni98817b92012-11-15 14:57:44 +0100343 mv_chan->dmachan.completed_cookie = cookie;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700344}
345
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700346static void mv_xor_tasklet(unsigned long data)
347{
348 struct mv_xor_chan *chan = (struct mv_xor_chan *) data;
Ezequiel Garciae43147a2014-03-07 16:46:46 -0300349
350 spin_lock_bh(&chan->lock);
Saeed Bishara8333f652010-12-21 16:53:39 +0200351 mv_xor_slot_cleanup(chan);
Ezequiel Garciae43147a2014-03-07 16:46:46 -0300352 spin_unlock_bh(&chan->lock);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700353}
354
355static struct mv_xor_desc_slot *
Lior Amsalemdfc97662014-08-27 10:52:51 -0300356mv_xor_alloc_slot(struct mv_xor_chan *mv_chan)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700357{
Lior Amsalemdfc97662014-08-27 10:52:51 -0300358 struct mv_xor_desc_slot *iter, *_iter;
359 int retry = 0;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700360
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
364 */
365retry:
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700366 if (retry == 0)
367 iter = mv_chan->last_used;
368 else
369 iter = list_entry(&mv_chan->all_slots,
370 struct mv_xor_desc_slot,
371 slot_node);
372
373 list_for_each_entry_safe_continue(
374 iter, _iter, &mv_chan->all_slots, slot_node) {
Lior Amsalemdfc97662014-08-27 10:52:51 -0300375
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700376 prefetch(_iter);
377 prefetch(&_iter->async_tx);
Lior Amsalemdfc97662014-08-27 10:52:51 -0300378 if (iter->slot_used) {
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700379 /* give up after finding the first busy slot
380 * on the second pass through the list
381 */
382 if (retry)
383 break;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700384 continue;
385 }
386
Lior Amsalemdfc97662014-08-27 10:52:51 -0300387 /* pre-ack descriptor */
388 async_tx_ack(&iter->async_tx);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700389
Lior Amsalemdfc97662014-08-27 10:52:51 -0300390 iter->slot_used = 1;
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);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700395
Lior Amsalemdfc97662014-08-27 10:52:51 -0300396 return iter;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700397
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700398 }
399 if (!retry++)
400 goto retry;
401
402 /* try to free some slots if the allocation fails */
403 tasklet_schedule(&mv_chan->irq_tasklet);
404
405 return NULL;
406}
407
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700408/************************ DMA engine API functions ****************************/
409static dma_cookie_t
410mv_xor_tx_submit(struct dma_async_tx_descriptor *tx)
411{
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);
Lior Amsalemdfc97662014-08-27 10:52:51 -0300414 struct mv_xor_desc_slot *old_chain_tail;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700415 dma_cookie_t cookie;
416 int new_hw_chain = 1;
417
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100418 dev_dbg(mv_chan_to_devp(mv_chan),
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700419 "%s sw_desc %p: async_tx %p\n",
420 __func__, sw_desc, &sw_desc->async_tx);
421
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700422 spin_lock_bh(&mv_chan->lock);
Russell King - ARM Linux884485e2012-03-06 22:34:46 +0000423 cookie = dma_cookie_assign(tx);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700424
425 if (list_empty(&mv_chan->chain))
Lior Amsalemdfc97662014-08-27 10:52:51 -0300426 list_add_tail(&sw_desc->chain_node, &mv_chan->chain);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700427 else {
428 new_hw_chain = 0;
429
430 old_chain_tail = list_entry(mv_chan->chain.prev,
431 struct mv_xor_desc_slot,
432 chain_node);
Lior Amsalemdfc97662014-08-27 10:52:51 -0300433 list_add_tail(&sw_desc->chain_node, &mv_chan->chain);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700434
Olof Johansson31fd8f52014-02-03 17:13:23 -0800435 dev_dbg(mv_chan_to_devp(mv_chan), "Append to last desc %pa\n",
436 &old_chain_tail->async_tx.phys);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700437
438 /* fix up the hardware chain */
Lior Amsalemdfc97662014-08-27 10:52:51 -0300439 mv_desc_set_next_desc(old_chain_tail, sw_desc->async_tx.phys);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700440
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);
444 /*
445 * and the curren desc is the end of the chain before
446 * the append, then we need to start the channel
447 */
448 if (current_desc == old_chain_tail->async_tx.phys)
449 new_hw_chain = 1;
450 }
451 }
452
453 if (new_hw_chain)
Lior Amsalemdfc97662014-08-27 10:52:51 -0300454 mv_xor_start_new_chain(mv_chan, sw_desc);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700455
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700456 spin_unlock_bh(&mv_chan->lock);
457
458 return cookie;
459}
460
461/* returns the number of allocated descriptors */
Dan Williamsaa1e6f12009-01-06 11:38:17 -0700462static int mv_xor_alloc_chan_resources(struct dma_chan *chan)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700463{
Olof Johansson31fd8f52014-02-03 17:13:23 -0800464 void *virt_desc;
465 dma_addr_t dma_desc;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700466 int idx;
467 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
468 struct mv_xor_desc_slot *slot = NULL;
Thomas Petazzonib503fa02012-11-15 15:55:30 +0100469 int num_descs_in_pool = MV_XOR_POOL_SIZE/MV_XOR_SLOT_SIZE;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700470
471 /* Allocate descriptor slots */
472 idx = mv_chan->slots_allocated;
473 while (idx < num_descs_in_pool) {
474 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
475 if (!slot) {
Ezequiel Garciab8291dd2014-08-27 10:52:49 -0300476 dev_info(mv_chan_to_devp(mv_chan),
477 "channel only initialized %d descriptor slots",
478 idx);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700479 break;
480 }
Olof Johansson31fd8f52014-02-03 17:13:23 -0800481 virt_desc = mv_chan->dma_desc_pool_virt;
482 slot->hw_desc = virt_desc + idx * MV_XOR_SLOT_SIZE;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700483
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);
Olof Johansson31fd8f52014-02-03 17:13:23 -0800488 dma_desc = mv_chan->dma_desc_pool;
489 slot->async_tx.phys = dma_desc + idx * MV_XOR_SLOT_SIZE;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700490 slot->idx = idx++;
491
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);
496 }
497
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,
501 slot_node);
502
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100503 dev_dbg(mv_chan_to_devp(mv_chan),
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700504 "allocated %d descriptor slots last_used: %p\n",
505 mv_chan->slots_allocated, mv_chan->last_used);
506
507 return mv_chan->slots_allocated ? : -ENOMEM;
508}
509
510static struct dma_async_tx_descriptor *
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700511mv_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)
513{
514 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
Lior Amsalemdfc97662014-08-27 10:52:51 -0300515 struct mv_xor_desc_slot *sw_desc;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700516
517 if (unlikely(len < MV_XOR_MIN_BYTE_COUNT))
518 return NULL;
519
Coly Li7912d302011-03-27 01:26:53 +0800520 BUG_ON(len > MV_XOR_MAX_BYTE_COUNT);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700521
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100522 dev_dbg(mv_chan_to_devp(mv_chan),
Olof Johansson31fd8f52014-02-03 17:13:23 -0800523 "%s src_cnt: %d len: %u dest %pad flags: %ld\n",
524 __func__, src_cnt, len, &dest, flags);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700525
526 spin_lock_bh(&mv_chan->lock);
Lior Amsalemdfc97662014-08-27 10:52:51 -0300527 sw_desc = mv_xor_alloc_slot(mv_chan);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700528 if (sw_desc) {
529 sw_desc->type = DMA_XOR;
530 sw_desc->async_tx.flags = flags;
Lior Amsalemba87d132014-08-27 10:52:53 -0300531 mv_desc_init(sw_desc, dest, len, flags);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700532 while (src_cnt--)
Lior Amsalemdfc97662014-08-27 10:52:51 -0300533 mv_desc_set_src_addr(sw_desc, src_cnt, src[src_cnt]);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700534 }
535 spin_unlock_bh(&mv_chan->lock);
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100536 dev_dbg(mv_chan_to_devp(mv_chan),
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700537 "%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;
540}
541
Lior Amsalem3e4f52e2014-08-27 10:52:50 -0300542static struct dma_async_tx_descriptor *
543mv_xor_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
544 size_t len, unsigned long flags)
545{
546 /*
547 * A MEMCPY operation is identical to an XOR operation with only
548 * a single source address.
549 */
550 return mv_xor_prep_dma_xor(chan, dest, &src, 1, len, flags);
551}
552
Lior Amsalem22843542014-08-27 10:52:55 -0300553static struct dma_async_tx_descriptor *
554mv_xor_prep_dma_interrupt(struct dma_chan *chan, unsigned long flags)
555{
556 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
557 dma_addr_t src, dest;
558 size_t len;
559
560 src = mv_chan->dummy_src_addr;
561 dest = mv_chan->dummy_dst_addr;
562 len = MV_XOR_MIN_BYTE_COUNT;
563
564 /*
565 * We implement the DMA_INTERRUPT operation as a minimum sized
566 * XOR operation with a single dummy source address.
567 */
568 return mv_xor_prep_dma_xor(chan, dest, &src, 1, len, flags);
569}
570
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700571static void mv_xor_free_chan_resources(struct dma_chan *chan)
572{
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;
576
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700577 spin_lock_bh(&mv_chan->lock);
Ezequiel Garciae43147a2014-03-07 16:46:46 -0300578
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700579 mv_xor_slot_cleanup(mv_chan);
580
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700581 list_for_each_entry_safe(iter, _iter, &mv_chan->chain,
582 chain_node) {
583 in_use_descs++;
584 list_del(&iter->chain_node);
585 }
586 list_for_each_entry_safe(iter, _iter, &mv_chan->completed_slots,
587 completed_node) {
588 in_use_descs++;
589 list_del(&iter->completed_node);
590 }
591 list_for_each_entry_safe_reverse(
592 iter, _iter, &mv_chan->all_slots, slot_node) {
593 list_del(&iter->slot_node);
594 kfree(iter);
595 mv_chan->slots_allocated--;
596 }
597 mv_chan->last_used = NULL;
598
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100599 dev_dbg(mv_chan_to_devp(mv_chan), "%s slots_allocated %d\n",
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700600 __func__, mv_chan->slots_allocated);
601 spin_unlock_bh(&mv_chan->lock);
602
603 if (in_use_descs)
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100604 dev_err(mv_chan_to_devp(mv_chan),
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700605 "freeing %d in use descriptors!\n", in_use_descs);
606}
607
608/**
Linus Walleij07934482010-03-26 16:50:49 -0700609 * mv_xor_status - poll the status of an XOR transaction
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700610 * @chan: XOR channel handle
611 * @cookie: XOR transaction identifier
Linus Walleij07934482010-03-26 16:50:49 -0700612 * @txstate: XOR transactions state holder (or NULL)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700613 */
Linus Walleij07934482010-03-26 16:50:49 -0700614static enum dma_status mv_xor_status(struct dma_chan *chan,
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700615 dma_cookie_t cookie,
Linus Walleij07934482010-03-26 16:50:49 -0700616 struct dma_tx_state *txstate)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700617{
618 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700619 enum dma_status ret;
620
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +0000621 ret = dma_cookie_status(chan, cookie, txstate);
Ezequiel Garcia890766d2014-03-07 16:46:45 -0300622 if (ret == DMA_COMPLETE)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700623 return ret;
Ezequiel Garciae43147a2014-03-07 16:46:46 -0300624
625 spin_lock_bh(&mv_chan->lock);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700626 mv_xor_slot_cleanup(mv_chan);
Ezequiel Garciae43147a2014-03-07 16:46:46 -0300627 spin_unlock_bh(&mv_chan->lock);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700628
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +0000629 return dma_cookie_status(chan, cookie, txstate);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700630}
631
632static void mv_dump_xor_regs(struct mv_xor_chan *chan)
633{
634 u32 val;
635
Thomas Petazzoni5733c382013-07-29 17:42:13 +0200636 val = readl_relaxed(XOR_CONFIG(chan));
Joe Perches1ba151c2012-10-28 01:05:44 -0700637 dev_err(mv_chan_to_devp(chan), "config 0x%08x\n", val);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700638
Thomas Petazzoni5733c382013-07-29 17:42:13 +0200639 val = readl_relaxed(XOR_ACTIVATION(chan));
Joe Perches1ba151c2012-10-28 01:05:44 -0700640 dev_err(mv_chan_to_devp(chan), "activation 0x%08x\n", val);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700641
Thomas Petazzoni5733c382013-07-29 17:42:13 +0200642 val = readl_relaxed(XOR_INTR_CAUSE(chan));
Joe Perches1ba151c2012-10-28 01:05:44 -0700643 dev_err(mv_chan_to_devp(chan), "intr cause 0x%08x\n", val);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700644
Thomas Petazzoni5733c382013-07-29 17:42:13 +0200645 val = readl_relaxed(XOR_INTR_MASK(chan));
Joe Perches1ba151c2012-10-28 01:05:44 -0700646 dev_err(mv_chan_to_devp(chan), "intr mask 0x%08x\n", val);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700647
Thomas Petazzoni5733c382013-07-29 17:42:13 +0200648 val = readl_relaxed(XOR_ERROR_CAUSE(chan));
Joe Perches1ba151c2012-10-28 01:05:44 -0700649 dev_err(mv_chan_to_devp(chan), "error cause 0x%08x\n", val);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700650
Thomas Petazzoni5733c382013-07-29 17:42:13 +0200651 val = readl_relaxed(XOR_ERROR_ADDR(chan));
Joe Perches1ba151c2012-10-28 01:05:44 -0700652 dev_err(mv_chan_to_devp(chan), "error addr 0x%08x\n", val);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700653}
654
655static void mv_xor_err_interrupt_handler(struct mv_xor_chan *chan,
656 u32 intr_cause)
657{
Ezequiel Garcia0e7488e2014-08-27 10:52:52 -0300658 if (intr_cause & XOR_INT_ERR_DECODE) {
659 dev_dbg(mv_chan_to_devp(chan), "ignoring address decode error\n");
660 return;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700661 }
662
Ezequiel Garcia0e7488e2014-08-27 10:52:52 -0300663 dev_err(mv_chan_to_devp(chan), "error on chan %d. intr cause 0x%08x\n",
Thomas Petazzonia3fc74b2012-11-15 12:50:27 +0100664 chan->idx, intr_cause);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700665
666 mv_dump_xor_regs(chan);
Ezequiel Garcia0e7488e2014-08-27 10:52:52 -0300667 WARN_ON(1);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700668}
669
670static irqreturn_t mv_xor_interrupt_handler(int irq, void *data)
671{
672 struct mv_xor_chan *chan = data;
673 u32 intr_cause = mv_chan_get_intr_cause(chan);
674
Thomas Petazzonic98c1782012-11-15 14:17:18 +0100675 dev_dbg(mv_chan_to_devp(chan), "intr cause %x\n", intr_cause);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700676
Ezequiel Garcia0e7488e2014-08-27 10:52:52 -0300677 if (intr_cause & XOR_INTR_ERRORS)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700678 mv_xor_err_interrupt_handler(chan, intr_cause);
679
680 tasklet_schedule(&chan->irq_tasklet);
681
682 mv_xor_device_clear_eoc_cause(chan);
683
684 return IRQ_HANDLED;
685}
686
687static void mv_xor_issue_pending(struct dma_chan *chan)
688{
689 struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
690
691 if (mv_chan->pending >= MV_XOR_THRESHOLD) {
692 mv_chan->pending = 0;
693 mv_chan_activate(mv_chan);
694 }
695}
696
697/*
698 * Perform a transaction to verify the HW works.
699 */
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700700
Linus Torvaldsc2714332012-12-14 14:54:26 -0800701static int mv_xor_memcpy_self_test(struct mv_xor_chan *mv_chan)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700702{
Ezequiel Garciab8c01d22013-12-10 09:32:37 -0300703 int i, ret;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700704 void *src, *dest;
705 dma_addr_t src_dma, dest_dma;
706 struct dma_chan *dma_chan;
707 dma_cookie_t cookie;
708 struct dma_async_tx_descriptor *tx;
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300709 struct dmaengine_unmap_data *unmap;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700710 int err = 0;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700711
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300712 src = kmalloc(sizeof(u8) * PAGE_SIZE, GFP_KERNEL);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700713 if (!src)
714 return -ENOMEM;
715
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300716 dest = kzalloc(sizeof(u8) * PAGE_SIZE, GFP_KERNEL);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700717 if (!dest) {
718 kfree(src);
719 return -ENOMEM;
720 }
721
722 /* Fill in src buffer */
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300723 for (i = 0; i < PAGE_SIZE; i++)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700724 ((u8 *) src)[i] = (u8)i;
725
Thomas Petazzoni275cc0c2012-11-15 15:09:42 +0100726 dma_chan = &mv_chan->dmachan;
Dan Williamsaa1e6f12009-01-06 11:38:17 -0700727 if (mv_xor_alloc_chan_resources(dma_chan) < 1) {
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700728 err = -ENODEV;
729 goto out;
730 }
731
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300732 unmap = dmaengine_get_unmap_data(dma_chan->device->dev, 2, GFP_KERNEL);
733 if (!unmap) {
734 err = -ENOMEM;
735 goto free_resources;
736 }
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700737
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300738 src_dma = dma_map_page(dma_chan->device->dev, virt_to_page(src), 0,
739 PAGE_SIZE, DMA_TO_DEVICE);
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300740 unmap->addr[0] = src_dma;
741
Ezequiel Garciab8c01d22013-12-10 09:32:37 -0300742 ret = dma_mapping_error(dma_chan->device->dev, src_dma);
743 if (ret) {
744 err = -ENOMEM;
745 goto free_resources;
746 }
747 unmap->to_cnt = 1;
748
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300749 dest_dma = dma_map_page(dma_chan->device->dev, virt_to_page(dest), 0,
750 PAGE_SIZE, DMA_FROM_DEVICE);
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300751 unmap->addr[1] = dest_dma;
752
Ezequiel Garciab8c01d22013-12-10 09:32:37 -0300753 ret = dma_mapping_error(dma_chan->device->dev, dest_dma);
754 if (ret) {
755 err = -ENOMEM;
756 goto free_resources;
757 }
758 unmap->from_cnt = 1;
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300759 unmap->len = PAGE_SIZE;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700760
761 tx = mv_xor_prep_dma_memcpy(dma_chan, dest_dma, src_dma,
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300762 PAGE_SIZE, 0);
Ezequiel Garciab8c01d22013-12-10 09:32:37 -0300763 if (!tx) {
764 dev_err(dma_chan->device->dev,
765 "Self-test cannot prepare operation, disabling\n");
766 err = -ENODEV;
767 goto free_resources;
768 }
769
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700770 cookie = mv_xor_tx_submit(tx);
Ezequiel Garciab8c01d22013-12-10 09:32:37 -0300771 if (dma_submit_error(cookie)) {
772 dev_err(dma_chan->device->dev,
773 "Self-test submit error, disabling\n");
774 err = -ENODEV;
775 goto free_resources;
776 }
777
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700778 mv_xor_issue_pending(dma_chan);
779 async_tx_ack(tx);
780 msleep(1);
781
Linus Walleij07934482010-03-26 16:50:49 -0700782 if (mv_xor_status(dma_chan, cookie, NULL) !=
Vinod Koulb3efb8f2013-10-16 20:51:04 +0530783 DMA_COMPLETE) {
Thomas Petazzonia3fc74b2012-11-15 12:50:27 +0100784 dev_err(dma_chan->device->dev,
785 "Self-test copy timed out, disabling\n");
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700786 err = -ENODEV;
787 goto free_resources;
788 }
789
Thomas Petazzonic35064c2012-11-15 13:01:59 +0100790 dma_sync_single_for_cpu(dma_chan->device->dev, dest_dma,
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300791 PAGE_SIZE, DMA_FROM_DEVICE);
792 if (memcmp(src, dest, PAGE_SIZE)) {
Thomas Petazzonia3fc74b2012-11-15 12:50:27 +0100793 dev_err(dma_chan->device->dev,
794 "Self-test copy failed compare, disabling\n");
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700795 err = -ENODEV;
796 goto free_resources;
797 }
798
799free_resources:
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300800 dmaengine_unmap_put(unmap);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700801 mv_xor_free_chan_resources(dma_chan);
802out:
803 kfree(src);
804 kfree(dest);
805 return err;
806}
807
808#define MV_XOR_NUM_SRC_TEST 4 /* must be <= 15 */
Bill Pemberton463a1f82012-11-19 13:22:55 -0500809static int
Thomas Petazzoni275cc0c2012-11-15 15:09:42 +0100810mv_xor_xor_self_test(struct mv_xor_chan *mv_chan)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700811{
Ezequiel Garciab8c01d22013-12-10 09:32:37 -0300812 int i, src_idx, ret;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700813 struct page *dest;
814 struct page *xor_srcs[MV_XOR_NUM_SRC_TEST];
815 dma_addr_t dma_srcs[MV_XOR_NUM_SRC_TEST];
816 dma_addr_t dest_dma;
817 struct dma_async_tx_descriptor *tx;
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300818 struct dmaengine_unmap_data *unmap;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700819 struct dma_chan *dma_chan;
820 dma_cookie_t cookie;
821 u8 cmp_byte = 0;
822 u32 cmp_word;
823 int err = 0;
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300824 int src_count = MV_XOR_NUM_SRC_TEST;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700825
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300826 for (src_idx = 0; src_idx < src_count; src_idx++) {
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700827 xor_srcs[src_idx] = alloc_page(GFP_KERNEL);
Roel Kluina09b09a2009-02-25 13:56:21 +0100828 if (!xor_srcs[src_idx]) {
829 while (src_idx--)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700830 __free_page(xor_srcs[src_idx]);
Roel Kluina09b09a2009-02-25 13:56:21 +0100831 return -ENOMEM;
832 }
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700833 }
834
835 dest = alloc_page(GFP_KERNEL);
Roel Kluina09b09a2009-02-25 13:56:21 +0100836 if (!dest) {
837 while (src_idx--)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700838 __free_page(xor_srcs[src_idx]);
Roel Kluina09b09a2009-02-25 13:56:21 +0100839 return -ENOMEM;
840 }
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700841
842 /* Fill in src buffers */
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300843 for (src_idx = 0; src_idx < src_count; src_idx++) {
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700844 u8 *ptr = page_address(xor_srcs[src_idx]);
845 for (i = 0; i < PAGE_SIZE; i++)
846 ptr[i] = (1 << src_idx);
847 }
848
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300849 for (src_idx = 0; src_idx < src_count; src_idx++)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700850 cmp_byte ^= (u8) (1 << src_idx);
851
852 cmp_word = (cmp_byte << 24) | (cmp_byte << 16) |
853 (cmp_byte << 8) | cmp_byte;
854
855 memset(page_address(dest), 0, PAGE_SIZE);
856
Thomas Petazzoni275cc0c2012-11-15 15:09:42 +0100857 dma_chan = &mv_chan->dmachan;
Dan Williamsaa1e6f12009-01-06 11:38:17 -0700858 if (mv_xor_alloc_chan_resources(dma_chan) < 1) {
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700859 err = -ENODEV;
860 goto out;
861 }
862
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300863 unmap = dmaengine_get_unmap_data(dma_chan->device->dev, src_count + 1,
864 GFP_KERNEL);
865 if (!unmap) {
866 err = -ENOMEM;
867 goto free_resources;
868 }
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700869
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300870 /* test xor */
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];
Ezequiel Garciab8c01d22013-12-10 09:32:37 -0300875 ret = dma_mapping_error(dma_chan->device->dev, unmap->addr[i]);
876 if (ret) {
877 err = -ENOMEM;
878 goto free_resources;
879 }
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300880 unmap->to_cnt++;
881 }
882
883 unmap->addr[src_count] = dma_map_page(dma_chan->device->dev, dest, 0, PAGE_SIZE,
884 DMA_FROM_DEVICE);
885 dest_dma = unmap->addr[src_count];
Ezequiel Garciab8c01d22013-12-10 09:32:37 -0300886 ret = dma_mapping_error(dma_chan->device->dev, unmap->addr[src_count]);
887 if (ret) {
888 err = -ENOMEM;
889 goto free_resources;
890 }
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300891 unmap->from_cnt = 1;
892 unmap->len = PAGE_SIZE;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700893
894 tx = mv_xor_prep_dma_xor(dma_chan, dest_dma, dma_srcs,
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300895 src_count, PAGE_SIZE, 0);
Ezequiel Garciab8c01d22013-12-10 09:32:37 -0300896 if (!tx) {
897 dev_err(dma_chan->device->dev,
898 "Self-test cannot prepare operation, disabling\n");
899 err = -ENODEV;
900 goto free_resources;
901 }
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700902
903 cookie = mv_xor_tx_submit(tx);
Ezequiel Garciab8c01d22013-12-10 09:32:37 -0300904 if (dma_submit_error(cookie)) {
905 dev_err(dma_chan->device->dev,
906 "Self-test submit error, disabling\n");
907 err = -ENODEV;
908 goto free_resources;
909 }
910
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700911 mv_xor_issue_pending(dma_chan);
912 async_tx_ack(tx);
913 msleep(8);
914
Linus Walleij07934482010-03-26 16:50:49 -0700915 if (mv_xor_status(dma_chan, cookie, NULL) !=
Vinod Koulb3efb8f2013-10-16 20:51:04 +0530916 DMA_COMPLETE) {
Thomas Petazzonia3fc74b2012-11-15 12:50:27 +0100917 dev_err(dma_chan->device->dev,
918 "Self-test xor timed out, disabling\n");
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700919 err = -ENODEV;
920 goto free_resources;
921 }
922
Thomas Petazzonic35064c2012-11-15 13:01:59 +0100923 dma_sync_single_for_cpu(dma_chan->device->dev, dest_dma,
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700924 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) {
Thomas Petazzonia3fc74b2012-11-15 12:50:27 +0100928 dev_err(dma_chan->device->dev,
Joe Perches1ba151c2012-10-28 01:05:44 -0700929 "Self-test xor failed compare, disabling. index %d, data %x, expected %x\n",
930 i, ptr[i], cmp_word);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700931 err = -ENODEV;
932 goto free_resources;
933 }
934 }
935
936free_resources:
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300937 dmaengine_unmap_put(unmap);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700938 mv_xor_free_chan_resources(dma_chan);
939out:
Ezequiel Garciad16695a2013-12-10 09:32:36 -0300940 src_idx = src_count;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700941 while (src_idx--)
942 __free_page(xor_srcs[src_idx]);
943 __free_page(dest);
944 return err;
945}
946
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +0100947static int mv_xor_channel_remove(struct mv_xor_chan *mv_chan)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700948{
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700949 struct dma_chan *chan, *_chan;
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +0100950 struct device *dev = mv_chan->dmadev.dev;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700951
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +0100952 dma_async_device_unregister(&mv_chan->dmadev);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700953
Thomas Petazzonib503fa02012-11-15 15:55:30 +0100954 dma_free_coherent(dev, MV_XOR_POOL_SIZE,
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +0100955 mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool);
Lior Amsalem22843542014-08-27 10:52:55 -0300956 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);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700960
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +0100961 list_for_each_entry_safe(chan, _chan, &mv_chan->dmadev.channels,
Thomas Petazzonia6b4a9d2012-10-29 16:45:46 +0100962 device_node) {
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700963 list_del(&chan->device_node);
964 }
965
Thomas Petazzoni88eb92c2012-11-15 16:11:18 +0100966 free_irq(mv_chan->irq, mv_chan);
967
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700968 return 0;
969}
970
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +0100971static struct mv_xor_chan *
Thomas Petazzoni297eedb2012-11-15 15:29:53 +0100972mv_xor_channel_add(struct mv_xor_device *xordev,
Thomas Petazzonia6b4a9d2012-10-29 16:45:46 +0100973 struct platform_device *pdev,
Thomas Petazzonib503fa02012-11-15 15:55:30 +0100974 int idx, dma_cap_mask_t cap_mask, int irq)
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700975{
976 int ret = 0;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700977 struct mv_xor_chan *mv_chan;
978 struct dma_device *dma_dev;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700979
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +0100980 mv_chan = devm_kzalloc(&pdev->dev, sizeof(*mv_chan), GFP_KERNEL);
Sachin Kamata5776592013-09-02 13:54:20 +0530981 if (!mv_chan)
982 return ERR_PTR(-ENOMEM);
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700983
Thomas Petazzoni9aedbdb2012-11-15 15:36:37 +0100984 mv_chan->idx = idx;
Thomas Petazzoni88eb92c2012-11-15 16:11:18 +0100985 mv_chan->irq = irq;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700986
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +0100987 dma_dev = &mv_chan->dmadev;
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700988
Lior Amsalem22843542014-08-27 10:52:55 -0300989 /*
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.
993 */
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);
998
Saeed Bisharaff7b0472008-07-08 11:58:36 -0700999 /* allocate coherent memory for hardware descriptors
1000 * note: writecombine gives slightly better performance, but
1001 * requires that we explicitly flush the writes
1002 */
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +01001003 mv_chan->dma_desc_pool_virt =
Thomas Petazzonib503fa02012-11-15 15:55:30 +01001004 dma_alloc_writecombine(&pdev->dev, MV_XOR_POOL_SIZE,
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +01001005 &mv_chan->dma_desc_pool, GFP_KERNEL);
1006 if (!mv_chan->dma_desc_pool_virt)
Thomas Petazzonia6b4a9d2012-10-29 16:45:46 +01001007 return ERR_PTR(-ENOMEM);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001008
1009 /* discover transaction capabilites from the platform data */
Thomas Petazzonia6b4a9d2012-10-29 16:45:46 +01001010 dma_dev->cap_mask = cap_mask;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001011
1012 INIT_LIST_HEAD(&dma_dev->channels);
1013
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;
Linus Walleij07934482010-03-26 16:50:49 -07001017 dma_dev->device_tx_status = mv_xor_status;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001018 dma_dev->device_issue_pending = mv_xor_issue_pending;
1019 dma_dev->dev = &pdev->dev;
1020
1021 /* set prep routines based on capability */
Lior Amsalem22843542014-08-27 10:52:55 -03001022 if (dma_has_cap(DMA_INTERRUPT, dma_dev->cap_mask))
1023 dma_dev->device_prep_dma_interrupt = mv_xor_prep_dma_interrupt;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001024 if (dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask))
1025 dma_dev->device_prep_dma_memcpy = mv_xor_prep_dma_memcpy;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001026 if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) {
Joe Perchesc0198942009-06-28 09:26:21 -07001027 dma_dev->max_xor = 8;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001028 dma_dev->device_prep_dma_xor = mv_xor_prep_dma_xor;
1029 }
1030
Thomas Petazzoni297eedb2012-11-15 15:29:53 +01001031 mv_chan->mmr_base = xordev->xor_base;
Ezequiel Garcia82a14022013-10-30 12:01:43 -03001032 mv_chan->mmr_high_base = xordev->xor_high_base;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001033 tasklet_init(&mv_chan->irq_tasklet, mv_xor_tasklet, (unsigned long)
1034 mv_chan);
1035
1036 /* clear errors before enabling interrupts */
1037 mv_xor_device_clear_err_status(mv_chan);
1038
Thomas Petazzoni2d0a0742012-11-22 18:19:09 +01001039 ret = request_irq(mv_chan->irq, mv_xor_interrupt_handler,
1040 0, dev_name(&pdev->dev), mv_chan);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001041 if (ret)
1042 goto err_free_dma;
1043
1044 mv_chan_unmask_interrupts(mv_chan);
1045
Lior Amsalem3e4f52e2014-08-27 10:52:50 -03001046 mv_set_mode(mv_chan, DMA_XOR);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001047
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);
Thomas Petazzoni98817b92012-11-15 14:57:44 +01001052 mv_chan->dmachan.device = dma_dev;
1053 dma_cookie_init(&mv_chan->dmachan);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001054
Thomas Petazzoni98817b92012-11-15 14:57:44 +01001055 list_add_tail(&mv_chan->dmachan.device_node, &dma_dev->channels);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001056
1057 if (dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask)) {
Thomas Petazzoni275cc0c2012-11-15 15:09:42 +01001058 ret = mv_xor_memcpy_self_test(mv_chan);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001059 dev_dbg(&pdev->dev, "memcpy self test returned %d\n", ret);
1060 if (ret)
Thomas Petazzoni2d0a0742012-11-22 18:19:09 +01001061 goto err_free_irq;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001062 }
1063
1064 if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) {
Thomas Petazzoni275cc0c2012-11-15 15:09:42 +01001065 ret = mv_xor_xor_self_test(mv_chan);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001066 dev_dbg(&pdev->dev, "xor self test returned %d\n", ret);
1067 if (ret)
Thomas Petazzoni2d0a0742012-11-22 18:19:09 +01001068 goto err_free_irq;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001069 }
1070
Bartlomiej Zolnierkiewicz48a9db42013-07-03 15:05:06 -07001071 dev_info(&pdev->dev, "Marvell XOR: ( %s%s%s)\n",
Joe Perches1ba151c2012-10-28 01:05:44 -07001072 dma_has_cap(DMA_XOR, dma_dev->cap_mask) ? "xor " : "",
Joe Perches1ba151c2012-10-28 01:05:44 -07001073 dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask) ? "cpy " : "",
1074 dma_has_cap(DMA_INTERRUPT, dma_dev->cap_mask) ? "intr " : "");
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001075
1076 dma_async_device_register(dma_dev);
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +01001077 return mv_chan;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001078
Thomas Petazzoni2d0a0742012-11-22 18:19:09 +01001079err_free_irq:
1080 free_irq(mv_chan->irq, mv_chan);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001081 err_free_dma:
Thomas Petazzonib503fa02012-11-15 15:55:30 +01001082 dma_free_coherent(&pdev->dev, MV_XOR_POOL_SIZE,
Thomas Petazzoni1ef48a22012-11-15 15:17:05 +01001083 mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool);
Thomas Petazzonia6b4a9d2012-10-29 16:45:46 +01001084 return ERR_PTR(ret);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001085}
1086
1087static void
Thomas Petazzoni297eedb2012-11-15 15:29:53 +01001088mv_xor_conf_mbus_windows(struct mv_xor_device *xordev,
Andrew Lunn63a93322011-12-07 21:48:07 +01001089 const struct mbus_dram_target_info *dram)
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001090{
Ezequiel Garcia82a14022013-10-30 12:01:43 -03001091 void __iomem *base = xordev->xor_high_base;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001092 u32 win_enable = 0;
1093 int i;
1094
1095 for (i = 0; i < 8; i++) {
1096 writel(0, base + WINDOW_BASE(i));
1097 writel(0, base + WINDOW_SIZE(i));
1098 if (i < 4)
1099 writel(0, base + WINDOW_REMAP_HIGH(i));
1100 }
1101
1102 for (i = 0; i < dram->num_cs; i++) {
Andrew Lunn63a93322011-12-07 21:48:07 +01001103 const struct mbus_dram_window *cs = dram->cs + i;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001104
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));
1109
1110 win_enable |= (1 << i);
1111 win_enable |= 3 << (16 + (2 * i));
1112 }
1113
1114 writel(win_enable, base + WINDOW_BAR_ENABLE(0));
1115 writel(win_enable, base + WINDOW_BAR_ENABLE(1));
Thomas Petazzonic4b4b732012-11-22 18:16:37 +01001116 writel(0, base + WINDOW_OVERRIDE_CTRL(0));
1117 writel(0, base + WINDOW_OVERRIDE_CTRL(1));
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001118}
1119
Linus Torvaldsc2714332012-12-14 14:54:26 -08001120static int mv_xor_probe(struct platform_device *pdev)
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001121{
Andrew Lunn63a93322011-12-07 21:48:07 +01001122 const struct mbus_dram_target_info *dram;
Thomas Petazzoni297eedb2012-11-15 15:29:53 +01001123 struct mv_xor_device *xordev;
Jingoo Hand4adcc02013-07-30 17:09:11 +09001124 struct mv_xor_platform_data *pdata = dev_get_platdata(&pdev->dev);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001125 struct resource *res;
Thomas Petazzoni60d151f2012-10-29 16:54:49 +01001126 int i, ret;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001127
Joe Perches1ba151c2012-10-28 01:05:44 -07001128 dev_notice(&pdev->dev, "Marvell shared XOR driver\n");
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001129
Thomas Petazzoni297eedb2012-11-15 15:29:53 +01001130 xordev = devm_kzalloc(&pdev->dev, sizeof(*xordev), GFP_KERNEL);
1131 if (!xordev)
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001132 return -ENOMEM;
1133
1134 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1135 if (!res)
1136 return -ENODEV;
1137
Thomas Petazzoni297eedb2012-11-15 15:29:53 +01001138 xordev->xor_base = devm_ioremap(&pdev->dev, res->start,
1139 resource_size(res));
1140 if (!xordev->xor_base)
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001141 return -EBUSY;
1142
1143 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1144 if (!res)
1145 return -ENODEV;
1146
Thomas Petazzoni297eedb2012-11-15 15:29:53 +01001147 xordev->xor_high_base = devm_ioremap(&pdev->dev, res->start,
1148 resource_size(res));
1149 if (!xordev->xor_high_base)
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001150 return -EBUSY;
1151
Thomas Petazzoni297eedb2012-11-15 15:29:53 +01001152 platform_set_drvdata(pdev, xordev);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001153
1154 /*
1155 * (Re-)program MBUS remapping windows if we are asked to.
1156 */
Andrew Lunn63a93322011-12-07 21:48:07 +01001157 dram = mv_mbus_dram_info();
1158 if (dram)
Thomas Petazzoni297eedb2012-11-15 15:29:53 +01001159 mv_xor_conf_mbus_windows(xordev, dram);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001160
Andrew Lunnc5101822012-02-19 13:30:26 +01001161 /* Not all platforms can gate the clock, so it is not
1162 * an error if the clock does not exists.
1163 */
Thomas Petazzoni297eedb2012-11-15 15:29:53 +01001164 xordev->clk = clk_get(&pdev->dev, NULL);
1165 if (!IS_ERR(xordev->clk))
1166 clk_prepare_enable(xordev->clk);
Andrew Lunnc5101822012-02-19 13:30:26 +01001167
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +01001168 if (pdev->dev.of_node) {
1169 struct device_node *np;
1170 int i = 0;
1171
1172 for_each_child_of_node(pdev->dev.of_node, np) {
Russell King0be82532013-12-12 23:59:08 +00001173 struct mv_xor_chan *chan;
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +01001174 dma_cap_mask_t cap_mask;
1175 int irq;
1176
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);
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +01001182 if (of_property_read_bool(np, "dmacap,interrupt"))
1183 dma_cap_set(DMA_INTERRUPT, cap_mask);
1184
1185 irq = irq_of_parse_and_map(np, 0);
Thomas Petazzonif8eb9e72012-11-22 18:22:12 +01001186 if (!irq) {
1187 ret = -ENODEV;
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +01001188 goto err_channel_add;
1189 }
1190
Russell King0be82532013-12-12 23:59:08 +00001191 chan = mv_xor_channel_add(xordev, pdev, i,
1192 cap_mask, irq);
1193 if (IS_ERR(chan)) {
1194 ret = PTR_ERR(chan);
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +01001195 irq_dispose_mapping(irq);
1196 goto err_channel_add;
1197 }
1198
Russell King0be82532013-12-12 23:59:08 +00001199 xordev->channels[i] = chan;
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +01001200 i++;
1201 }
1202 } else if (pdata && pdata->channels) {
Thomas Petazzoni60d151f2012-10-29 16:54:49 +01001203 for (i = 0; i < MV_XOR_MAX_CHANNELS; i++) {
Thomas Petazzonie39f6ec2012-10-30 11:56:26 +01001204 struct mv_xor_channel_data *cd;
Russell King0be82532013-12-12 23:59:08 +00001205 struct mv_xor_chan *chan;
Thomas Petazzoni60d151f2012-10-29 16:54:49 +01001206 int irq;
1207
1208 cd = &pdata->channels[i];
1209 if (!cd) {
1210 ret = -ENODEV;
1211 goto err_channel_add;
1212 }
1213
1214 irq = platform_get_irq(pdev, i);
1215 if (irq < 0) {
1216 ret = irq;
1217 goto err_channel_add;
1218 }
1219
Russell King0be82532013-12-12 23:59:08 +00001220 chan = mv_xor_channel_add(xordev, pdev, i,
1221 cd->cap_mask, irq);
1222 if (IS_ERR(chan)) {
1223 ret = PTR_ERR(chan);
Thomas Petazzoni60d151f2012-10-29 16:54:49 +01001224 goto err_channel_add;
1225 }
Russell King0be82532013-12-12 23:59:08 +00001226
1227 xordev->channels[i] = chan;
Thomas Petazzoni60d151f2012-10-29 16:54:49 +01001228 }
1229 }
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001230
1231 return 0;
Thomas Petazzoni60d151f2012-10-29 16:54:49 +01001232
1233err_channel_add:
1234 for (i = 0; i < MV_XOR_MAX_CHANNELS; i++)
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +01001235 if (xordev->channels[i]) {
Thomas Petazzoniab6e4392013-01-06 11:10:43 +01001236 mv_xor_channel_remove(xordev->channels[i]);
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +01001237 if (pdev->dev.of_node)
1238 irq_dispose_mapping(xordev->channels[i]->irq);
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +01001239 }
Thomas Petazzoni60d151f2012-10-29 16:54:49 +01001240
Thomas Petazzonidab92062013-01-06 11:10:44 +01001241 if (!IS_ERR(xordev->clk)) {
1242 clk_disable_unprepare(xordev->clk);
1243 clk_put(xordev->clk);
1244 }
1245
Thomas Petazzoni60d151f2012-10-29 16:54:49 +01001246 return ret;
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001247}
1248
Linus Torvaldsc2714332012-12-14 14:54:26 -08001249static int mv_xor_remove(struct platform_device *pdev)
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001250{
Thomas Petazzoni297eedb2012-11-15 15:29:53 +01001251 struct mv_xor_device *xordev = platform_get_drvdata(pdev);
Thomas Petazzoni60d151f2012-10-29 16:54:49 +01001252 int i;
Andrew Lunnc5101822012-02-19 13:30:26 +01001253
Thomas Petazzoni60d151f2012-10-29 16:54:49 +01001254 for (i = 0; i < MV_XOR_MAX_CHANNELS; i++) {
Thomas Petazzoni297eedb2012-11-15 15:29:53 +01001255 if (xordev->channels[i])
1256 mv_xor_channel_remove(xordev->channels[i]);
Thomas Petazzoni60d151f2012-10-29 16:54:49 +01001257 }
Andrew Lunnc5101822012-02-19 13:30:26 +01001258
Thomas Petazzoni297eedb2012-11-15 15:29:53 +01001259 if (!IS_ERR(xordev->clk)) {
1260 clk_disable_unprepare(xordev->clk);
1261 clk_put(xordev->clk);
Andrew Lunnc5101822012-02-19 13:30:26 +01001262 }
1263
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001264 return 0;
1265}
1266
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +01001267#ifdef CONFIG_OF
Fabian Frederick57c03422015-03-16 20:17:14 +01001268static const struct of_device_id mv_xor_dt_ids[] = {
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +01001269 { .compatible = "marvell,orion-xor", },
1270 {},
1271};
1272MODULE_DEVICE_TABLE(of, mv_xor_dt_ids);
1273#endif
1274
Thomas Petazzoni61971652012-10-30 12:05:40 +01001275static struct platform_driver mv_xor_driver = {
1276 .probe = mv_xor_probe,
Linus Torvaldsc2714332012-12-14 14:54:26 -08001277 .remove = mv_xor_remove,
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001278 .driver = {
Thomas Petazzonif7d12ef2012-11-15 16:47:58 +01001279 .name = MV_XOR_NAME,
1280 .of_match_table = of_match_ptr(mv_xor_dt_ids),
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001281 },
1282};
1283
1284
1285static int __init mv_xor_init(void)
1286{
Thomas Petazzoni61971652012-10-30 12:05:40 +01001287 return platform_driver_register(&mv_xor_driver);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001288}
1289module_init(mv_xor_init);
1290
1291/* it's currently unsafe to unload this module */
1292#if 0
1293static void __exit mv_xor_exit(void)
1294{
1295 platform_driver_unregister(&mv_xor_driver);
Saeed Bisharaff7b0472008-07-08 11:58:36 -07001296 return;
1297}
1298
1299module_exit(mv_xor_exit);
1300#endif
1301
1302MODULE_AUTHOR("Saeed Bishara <saeed@marvell.com>");
1303MODULE_DESCRIPTION("DMA engine driver for Marvell's XOR engine");
1304MODULE_LICENSE("GPL");