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