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. |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/slab.h> |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 17 | #include <linux/delay.h> |
| 18 | #include <linux/dma-mapping.h> |
| 19 | #include <linux/spinlock.h> |
| 20 | #include <linux/interrupt.h> |
Lior Amsalem | 6f16631 | 2015-05-26 15:07:34 +0200 | [diff] [blame] | 21 | #include <linux/of_device.h> |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 22 | #include <linux/platform_device.h> |
| 23 | #include <linux/memory.h> |
Andrew Lunn | c510182 | 2012-02-19 13:30:26 +0100 | [diff] [blame] | 24 | #include <linux/clk.h> |
Thomas Petazzoni | f7d12ef | 2012-11-15 16:47:58 +0100 | [diff] [blame] | 25 | #include <linux/of.h> |
| 26 | #include <linux/of_irq.h> |
| 27 | #include <linux/irqdomain.h> |
Thomas Petazzoni | 7775729 | 2015-07-08 16:28:19 +0200 | [diff] [blame] | 28 | #include <linux/cpumask.h> |
Arnd Bergmann | c02cecb | 2012-08-24 15:21:54 +0200 | [diff] [blame] | 29 | #include <linux/platform_data/dma-mv_xor.h> |
Russell King - ARM Linux | d2ebfb3 | 2012-03-06 22:34:26 +0000 | [diff] [blame] | 30 | |
| 31 | #include "dmaengine.h" |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 32 | #include "mv_xor.h" |
| 33 | |
Gregory CLEMENT | dd130c6 | 2016-04-29 09:49:06 +0200 | [diff] [blame] | 34 | enum mv_xor_type { |
| 35 | XOR_ORION, |
| 36 | XOR_ARMADA_38X, |
Marcin Wojtas | ac5f0f3 | 2016-04-29 09:49:07 +0200 | [diff] [blame] | 37 | XOR_ARMADA_37XX, |
Gregory CLEMENT | dd130c6 | 2016-04-29 09:49:06 +0200 | [diff] [blame] | 38 | }; |
| 39 | |
Lior Amsalem | 6f16631 | 2015-05-26 15:07:34 +0200 | [diff] [blame] | 40 | enum mv_xor_mode { |
| 41 | XOR_MODE_IN_REG, |
| 42 | XOR_MODE_IN_DESC, |
| 43 | }; |
| 44 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 45 | static void mv_xor_issue_pending(struct dma_chan *chan); |
| 46 | |
| 47 | #define to_mv_xor_chan(chan) \ |
Thomas Petazzoni | 98817b9 | 2012-11-15 14:57:44 +0100 | [diff] [blame] | 48 | container_of(chan, struct mv_xor_chan, dmachan) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 49 | |
| 50 | #define to_mv_xor_slot(tx) \ |
| 51 | container_of(tx, struct mv_xor_desc_slot, async_tx) |
| 52 | |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 53 | #define mv_chan_to_devp(chan) \ |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 54 | ((chan)->dmadev.dev) |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 55 | |
Lior Amsalem | dfc9766 | 2014-08-27 10:52:51 -0300 | [diff] [blame] | 56 | static void mv_desc_init(struct mv_xor_desc_slot *desc, |
Lior Amsalem | ba87d13 | 2014-08-27 10:52:53 -0300 | [diff] [blame] | 57 | dma_addr_t addr, u32 byte_count, |
| 58 | enum dma_ctrl_flags flags) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 59 | { |
| 60 | struct mv_xor_desc *hw_desc = desc->hw_desc; |
| 61 | |
Ezequiel Garcia | 0e7488e | 2014-08-27 10:52:52 -0300 | [diff] [blame] | 62 | hw_desc->status = XOR_DESC_DMA_OWNED; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 63 | hw_desc->phy_next_desc = 0; |
Lior Amsalem | ba87d13 | 2014-08-27 10:52:53 -0300 | [diff] [blame] | 64 | /* Enable end-of-descriptor interrupts only for DMA_PREP_INTERRUPT */ |
| 65 | hw_desc->desc_command = (flags & DMA_PREP_INTERRUPT) ? |
| 66 | XOR_DESC_EOD_INT_EN : 0; |
Lior Amsalem | dfc9766 | 2014-08-27 10:52:51 -0300 | [diff] [blame] | 67 | hw_desc->phy_dest_addr = addr; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 68 | hw_desc->byte_count = byte_count; |
| 69 | } |
| 70 | |
Lior Amsalem | 6f16631 | 2015-05-26 15:07:34 +0200 | [diff] [blame] | 71 | static void mv_desc_set_mode(struct mv_xor_desc_slot *desc) |
| 72 | { |
| 73 | struct mv_xor_desc *hw_desc = desc->hw_desc; |
| 74 | |
| 75 | switch (desc->type) { |
| 76 | case DMA_XOR: |
| 77 | case DMA_INTERRUPT: |
| 78 | hw_desc->desc_command |= XOR_DESC_OPERATION_XOR; |
| 79 | break; |
| 80 | case DMA_MEMCPY: |
| 81 | hw_desc->desc_command |= XOR_DESC_OPERATION_MEMCPY; |
| 82 | break; |
| 83 | default: |
| 84 | BUG(); |
| 85 | return; |
| 86 | } |
| 87 | } |
| 88 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 89 | static void mv_desc_set_next_desc(struct mv_xor_desc_slot *desc, |
| 90 | u32 next_desc_addr) |
| 91 | { |
| 92 | struct mv_xor_desc *hw_desc = desc->hw_desc; |
| 93 | BUG_ON(hw_desc->phy_next_desc); |
| 94 | hw_desc->phy_next_desc = next_desc_addr; |
| 95 | } |
| 96 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 97 | static void mv_desc_set_src_addr(struct mv_xor_desc_slot *desc, |
| 98 | int index, dma_addr_t addr) |
| 99 | { |
| 100 | struct mv_xor_desc *hw_desc = desc->hw_desc; |
Thomas Petazzoni | e03bc65 | 2013-07-29 17:42:14 +0200 | [diff] [blame] | 101 | hw_desc->phy_src_addr[mv_phy_src_idx(index)] = addr; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 102 | if (desc->type == DMA_XOR) |
| 103 | hw_desc->desc_command |= (1 << index); |
| 104 | } |
| 105 | |
| 106 | static u32 mv_chan_get_current_desc(struct mv_xor_chan *chan) |
| 107 | { |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 108 | return readl_relaxed(XOR_CURR_DESC(chan)); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | static void mv_chan_set_next_descriptor(struct mv_xor_chan *chan, |
| 112 | u32 next_desc_addr) |
| 113 | { |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 114 | writel_relaxed(next_desc_addr, XOR_NEXT_DESC(chan)); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 117 | static void mv_chan_unmask_interrupts(struct mv_xor_chan *chan) |
| 118 | { |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 119 | u32 val = readl_relaxed(XOR_INTR_MASK(chan)); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 120 | val |= XOR_INTR_MASK_VALUE << (chan->idx * 16); |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 121 | writel_relaxed(val, XOR_INTR_MASK(chan)); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | static u32 mv_chan_get_intr_cause(struct mv_xor_chan *chan) |
| 125 | { |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 126 | u32 intr_cause = readl_relaxed(XOR_INTR_CAUSE(chan)); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 127 | intr_cause = (intr_cause >> (chan->idx * 16)) & 0xFFFF; |
| 128 | return intr_cause; |
| 129 | } |
| 130 | |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 131 | static void mv_chan_clear_eoc_cause(struct mv_xor_chan *chan) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 132 | { |
Lior Amsalem | ba87d13 | 2014-08-27 10:52:53 -0300 | [diff] [blame] | 133 | u32 val; |
| 134 | |
| 135 | val = XOR_INT_END_OF_DESC | XOR_INT_END_OF_CHAIN | XOR_INT_STOPPED; |
| 136 | val = ~(val << (chan->idx * 16)); |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 137 | 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] | 138 | writel_relaxed(val, XOR_INTR_CAUSE(chan)); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 141 | static void mv_chan_clear_err_status(struct mv_xor_chan *chan) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 142 | { |
| 143 | u32 val = 0xFFFF0000 >> (chan->idx * 16); |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 144 | writel_relaxed(val, XOR_INTR_CAUSE(chan)); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 147 | static void mv_chan_set_mode(struct mv_xor_chan *chan, |
Thomas Petazzoni | 81aafb3 | 2015-12-22 11:43:28 +0100 | [diff] [blame] | 148 | u32 op_mode) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 149 | { |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 150 | u32 config = readl_relaxed(XOR_CONFIG(chan)); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 151 | |
Lior Amsalem | 6f16631 | 2015-05-26 15:07:34 +0200 | [diff] [blame] | 152 | config &= ~0x7; |
| 153 | config |= op_mode; |
| 154 | |
Thomas Petazzoni | e03bc65 | 2013-07-29 17:42:14 +0200 | [diff] [blame] | 155 | #if defined(__BIG_ENDIAN) |
| 156 | config |= XOR_DESCRIPTOR_SWAP; |
| 157 | #else |
| 158 | config &= ~XOR_DESCRIPTOR_SWAP; |
| 159 | #endif |
| 160 | |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 161 | writel_relaxed(config, XOR_CONFIG(chan)); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | static void mv_chan_activate(struct mv_xor_chan *chan) |
| 165 | { |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 166 | dev_dbg(mv_chan_to_devp(chan), " activate chan.\n"); |
Ezequiel Garcia | 5a9a55b | 2014-05-21 14:02:35 -0700 | [diff] [blame] | 167 | |
| 168 | /* writel ensures all descriptors are flushed before activation */ |
| 169 | writel(BIT(0), XOR_ACTIVATION(chan)); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | static char mv_chan_is_busy(struct mv_xor_chan *chan) |
| 173 | { |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 174 | u32 state = readl_relaxed(XOR_ACTIVATION(chan)); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 175 | |
| 176 | state = (state >> 4) & 0x3; |
| 177 | |
| 178 | return (state == 1) ? 1 : 0; |
| 179 | } |
| 180 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 181 | /* |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 182 | * mv_chan_start_new_chain - program the engine to operate on new |
| 183 | * chain headed by sw_desc |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 184 | * Caller must hold &mv_chan->lock while calling this function |
| 185 | */ |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 186 | static void mv_chan_start_new_chain(struct mv_xor_chan *mv_chan, |
| 187 | struct mv_xor_desc_slot *sw_desc) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 188 | { |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 189 | 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] | 190 | __func__, __LINE__, sw_desc); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 191 | |
Bartlomiej Zolnierkiewicz | 48a9db4 | 2013-07-03 15:05:06 -0700 | [diff] [blame] | 192 | /* set the hardware chain */ |
| 193 | mv_chan_set_next_descriptor(mv_chan, sw_desc->async_tx.phys); |
| 194 | |
Lior Amsalem | dfc9766 | 2014-08-27 10:52:51 -0300 | [diff] [blame] | 195 | mv_chan->pending++; |
Thomas Petazzoni | 98817b9 | 2012-11-15 14:57:44 +0100 | [diff] [blame] | 196 | mv_xor_issue_pending(&mv_chan->dmachan); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | static dma_cookie_t |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 200 | mv_desc_run_tx_complete_actions(struct mv_xor_desc_slot *desc, |
| 201 | struct mv_xor_chan *mv_chan, |
| 202 | dma_cookie_t cookie) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 203 | { |
| 204 | BUG_ON(desc->async_tx.cookie < 0); |
| 205 | |
| 206 | if (desc->async_tx.cookie > 0) { |
| 207 | cookie = desc->async_tx.cookie; |
| 208 | |
Dave Jiang | 8058e25 | 2016-07-25 10:34:08 -0700 | [diff] [blame] | 209 | dma_descriptor_unmap(&desc->async_tx); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 210 | /* call the callback (must not sleep or submit new |
| 211 | * operations to this channel) |
| 212 | */ |
Dave Jiang | ee7681a | 2016-07-20 13:12:13 -0700 | [diff] [blame] | 213 | dmaengine_desc_get_callback_invoke(&desc->async_tx, NULL); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | /* run dependent operations */ |
Dan Williams | 07f2211 | 2009-01-05 17:14:31 -0700 | [diff] [blame] | 217 | dma_run_dependencies(&desc->async_tx); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 218 | |
| 219 | return cookie; |
| 220 | } |
| 221 | |
| 222 | static int |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 223 | mv_chan_clean_completed_slots(struct mv_xor_chan *mv_chan) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 224 | { |
| 225 | struct mv_xor_desc_slot *iter, *_iter; |
| 226 | |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 227 | 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] | 228 | list_for_each_entry_safe(iter, _iter, &mv_chan->completed_slots, |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 229 | node) { |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 230 | |
Stefan Roese | c5db858 | 2016-10-26 10:10:25 +0200 | [diff] [blame] | 231 | if (async_tx_test_ack(&iter->async_tx)) { |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 232 | list_move_tail(&iter->node, &mv_chan->free_slots); |
Stefan Roese | c5db858 | 2016-10-26 10:10:25 +0200 | [diff] [blame] | 233 | if (!list_empty(&iter->sg_tx_list)) { |
| 234 | list_splice_tail_init(&iter->sg_tx_list, |
| 235 | &mv_chan->free_slots); |
| 236 | } |
| 237 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 238 | } |
| 239 | return 0; |
| 240 | } |
| 241 | |
| 242 | static int |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 243 | mv_desc_clean_slot(struct mv_xor_desc_slot *desc, |
| 244 | struct mv_xor_chan *mv_chan) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 245 | { |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 246 | 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] | 247 | __func__, __LINE__, desc, desc->async_tx.flags); |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 248 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 249 | /* the client is allowed to attach dependent operations |
| 250 | * until 'ack' is set |
| 251 | */ |
Stefan Roese | c5db858 | 2016-10-26 10:10:25 +0200 | [diff] [blame] | 252 | if (!async_tx_test_ack(&desc->async_tx)) { |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 253 | /* move this slot to the completed_slots */ |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 254 | list_move_tail(&desc->node, &mv_chan->completed_slots); |
Stefan Roese | c5db858 | 2016-10-26 10:10:25 +0200 | [diff] [blame] | 255 | if (!list_empty(&desc->sg_tx_list)) { |
| 256 | list_splice_tail_init(&desc->sg_tx_list, |
| 257 | &mv_chan->completed_slots); |
| 258 | } |
| 259 | } else { |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 260 | list_move_tail(&desc->node, &mv_chan->free_slots); |
Stefan Roese | c5db858 | 2016-10-26 10:10:25 +0200 | [diff] [blame] | 261 | if (!list_empty(&desc->sg_tx_list)) { |
| 262 | list_splice_tail_init(&desc->sg_tx_list, |
| 263 | &mv_chan->free_slots); |
| 264 | } |
| 265 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 266 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 267 | return 0; |
| 268 | } |
| 269 | |
Ezequiel Garcia | fbeec99 | 2014-03-07 16:46:47 -0300 | [diff] [blame] | 270 | /* This function must be called with the mv_xor_chan spinlock held */ |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 271 | static void mv_chan_slot_cleanup(struct mv_xor_chan *mv_chan) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 272 | { |
| 273 | struct mv_xor_desc_slot *iter, *_iter; |
| 274 | dma_cookie_t cookie = 0; |
| 275 | int busy = mv_chan_is_busy(mv_chan); |
| 276 | u32 current_desc = mv_chan_get_current_desc(mv_chan); |
Lior Amsalem | 9136291 | 2015-05-26 15:07:32 +0200 | [diff] [blame] | 277 | int current_cleaned = 0; |
| 278 | struct mv_xor_desc *hw_desc; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 279 | |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 280 | dev_dbg(mv_chan_to_devp(mv_chan), "%s %d\n", __func__, __LINE__); |
| 281 | dev_dbg(mv_chan_to_devp(mv_chan), "current_desc %x\n", current_desc); |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 282 | mv_chan_clean_completed_slots(mv_chan); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 283 | |
| 284 | /* free completed slots from the chain starting with |
| 285 | * the oldest descriptor |
| 286 | */ |
| 287 | |
| 288 | list_for_each_entry_safe(iter, _iter, &mv_chan->chain, |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 289 | node) { |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 290 | |
Lior Amsalem | 9136291 | 2015-05-26 15:07:32 +0200 | [diff] [blame] | 291 | /* clean finished descriptors */ |
| 292 | hw_desc = iter->hw_desc; |
| 293 | if (hw_desc->status & XOR_DESC_SUCCESS) { |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 294 | cookie = mv_desc_run_tx_complete_actions(iter, mv_chan, |
| 295 | cookie); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 296 | |
Lior Amsalem | 9136291 | 2015-05-26 15:07:32 +0200 | [diff] [blame] | 297 | /* done processing desc, clean slot */ |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 298 | mv_desc_clean_slot(iter, mv_chan); |
Lior Amsalem | 9136291 | 2015-05-26 15:07:32 +0200 | [diff] [blame] | 299 | |
| 300 | /* break if we did cleaned the current */ |
| 301 | if (iter->async_tx.phys == current_desc) { |
| 302 | current_cleaned = 1; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 303 | break; |
Lior Amsalem | 9136291 | 2015-05-26 15:07:32 +0200 | [diff] [blame] | 304 | } |
| 305 | } else { |
| 306 | if (iter->async_tx.phys == current_desc) { |
| 307 | current_cleaned = 0; |
| 308 | break; |
| 309 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 310 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | if ((busy == 0) && !list_empty(&mv_chan->chain)) { |
Lior Amsalem | 9136291 | 2015-05-26 15:07:32 +0200 | [diff] [blame] | 314 | if (current_cleaned) { |
| 315 | /* |
| 316 | * current descriptor cleaned and removed, run |
| 317 | * from list head |
| 318 | */ |
| 319 | iter = list_entry(mv_chan->chain.next, |
| 320 | struct mv_xor_desc_slot, |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 321 | node); |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 322 | mv_chan_start_new_chain(mv_chan, iter); |
Lior Amsalem | 9136291 | 2015-05-26 15:07:32 +0200 | [diff] [blame] | 323 | } else { |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 324 | if (!list_is_last(&iter->node, &mv_chan->chain)) { |
Lior Amsalem | 9136291 | 2015-05-26 15:07:32 +0200 | [diff] [blame] | 325 | /* |
| 326 | * descriptors are still waiting after |
| 327 | * current, trigger them |
| 328 | */ |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 329 | iter = list_entry(iter->node.next, |
Lior Amsalem | 9136291 | 2015-05-26 15:07:32 +0200 | [diff] [blame] | 330 | struct mv_xor_desc_slot, |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 331 | node); |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 332 | mv_chan_start_new_chain(mv_chan, iter); |
Lior Amsalem | 9136291 | 2015-05-26 15:07:32 +0200 | [diff] [blame] | 333 | } else { |
| 334 | /* |
| 335 | * some descriptors are still waiting |
| 336 | * to be cleaned |
| 337 | */ |
| 338 | tasklet_schedule(&mv_chan->irq_tasklet); |
| 339 | } |
| 340 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | if (cookie > 0) |
Thomas Petazzoni | 98817b9 | 2012-11-15 14:57:44 +0100 | [diff] [blame] | 344 | mv_chan->dmachan.completed_cookie = cookie; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 345 | } |
| 346 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 347 | static void mv_xor_tasklet(unsigned long data) |
| 348 | { |
| 349 | struct mv_xor_chan *chan = (struct mv_xor_chan *) data; |
Ezequiel Garcia | e43147a | 2014-03-07 16:46:46 -0300 | [diff] [blame] | 350 | |
| 351 | spin_lock_bh(&chan->lock); |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 352 | mv_chan_slot_cleanup(chan); |
Ezequiel Garcia | e43147a | 2014-03-07 16:46:46 -0300 | [diff] [blame] | 353 | spin_unlock_bh(&chan->lock); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | static struct mv_xor_desc_slot * |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 357 | mv_chan_alloc_slot(struct mv_xor_chan *mv_chan) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 358 | { |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 359 | struct mv_xor_desc_slot *iter; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 360 | |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 361 | spin_lock_bh(&mv_chan->lock); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 362 | |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 363 | if (!list_empty(&mv_chan->free_slots)) { |
| 364 | iter = list_first_entry(&mv_chan->free_slots, |
| 365 | struct mv_xor_desc_slot, |
| 366 | node); |
Lior Amsalem | dfc9766 | 2014-08-27 10:52:51 -0300 | [diff] [blame] | 367 | |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 368 | list_move_tail(&iter->node, &mv_chan->allocated_slots); |
| 369 | |
| 370 | spin_unlock_bh(&mv_chan->lock); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 371 | |
Lior Amsalem | dfc9766 | 2014-08-27 10:52:51 -0300 | [diff] [blame] | 372 | /* pre-ack descriptor */ |
| 373 | async_tx_ack(&iter->async_tx); |
Lior Amsalem | dfc9766 | 2014-08-27 10:52:51 -0300 | [diff] [blame] | 374 | iter->async_tx.cookie = -EBUSY; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 375 | |
Lior Amsalem | dfc9766 | 2014-08-27 10:52:51 -0300 | [diff] [blame] | 376 | return iter; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 377 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 378 | } |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 379 | |
| 380 | spin_unlock_bh(&mv_chan->lock); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 381 | |
| 382 | /* try to free some slots if the allocation fails */ |
| 383 | tasklet_schedule(&mv_chan->irq_tasklet); |
| 384 | |
| 385 | return NULL; |
| 386 | } |
| 387 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 388 | /************************ DMA engine API functions ****************************/ |
| 389 | static dma_cookie_t |
| 390 | mv_xor_tx_submit(struct dma_async_tx_descriptor *tx) |
| 391 | { |
| 392 | struct mv_xor_desc_slot *sw_desc = to_mv_xor_slot(tx); |
| 393 | struct mv_xor_chan *mv_chan = to_mv_xor_chan(tx->chan); |
Lior Amsalem | dfc9766 | 2014-08-27 10:52:51 -0300 | [diff] [blame] | 394 | struct mv_xor_desc_slot *old_chain_tail; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 395 | dma_cookie_t cookie; |
| 396 | int new_hw_chain = 1; |
| 397 | |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 398 | dev_dbg(mv_chan_to_devp(mv_chan), |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 399 | "%s sw_desc %p: async_tx %p\n", |
| 400 | __func__, sw_desc, &sw_desc->async_tx); |
| 401 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 402 | spin_lock_bh(&mv_chan->lock); |
Russell King - ARM Linux | 884485e | 2012-03-06 22:34:46 +0000 | [diff] [blame] | 403 | cookie = dma_cookie_assign(tx); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 404 | |
| 405 | if (list_empty(&mv_chan->chain)) |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 406 | list_move_tail(&sw_desc->node, &mv_chan->chain); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 407 | else { |
| 408 | new_hw_chain = 0; |
| 409 | |
| 410 | old_chain_tail = list_entry(mv_chan->chain.prev, |
| 411 | struct mv_xor_desc_slot, |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 412 | node); |
| 413 | list_move_tail(&sw_desc->node, &mv_chan->chain); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 414 | |
Olof Johansson | 31fd8f5 | 2014-02-03 17:13:23 -0800 | [diff] [blame] | 415 | dev_dbg(mv_chan_to_devp(mv_chan), "Append to last desc %pa\n", |
| 416 | &old_chain_tail->async_tx.phys); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 417 | |
| 418 | /* fix up the hardware chain */ |
Lior Amsalem | dfc9766 | 2014-08-27 10:52:51 -0300 | [diff] [blame] | 419 | 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] | 420 | |
| 421 | /* if the channel is not busy */ |
| 422 | if (!mv_chan_is_busy(mv_chan)) { |
| 423 | u32 current_desc = mv_chan_get_current_desc(mv_chan); |
| 424 | /* |
| 425 | * and the curren desc is the end of the chain before |
| 426 | * the append, then we need to start the channel |
| 427 | */ |
| 428 | if (current_desc == old_chain_tail->async_tx.phys) |
| 429 | new_hw_chain = 1; |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | if (new_hw_chain) |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 434 | mv_chan_start_new_chain(mv_chan, sw_desc); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 435 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 436 | spin_unlock_bh(&mv_chan->lock); |
| 437 | |
| 438 | return cookie; |
| 439 | } |
| 440 | |
| 441 | /* returns the number of allocated descriptors */ |
Dan Williams | aa1e6f1 | 2009-01-06 11:38:17 -0700 | [diff] [blame] | 442 | static int mv_xor_alloc_chan_resources(struct dma_chan *chan) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 443 | { |
Olof Johansson | 31fd8f5 | 2014-02-03 17:13:23 -0800 | [diff] [blame] | 444 | void *virt_desc; |
| 445 | dma_addr_t dma_desc; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 446 | int idx; |
| 447 | struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan); |
| 448 | struct mv_xor_desc_slot *slot = NULL; |
Thomas Petazzoni | b503fa0 | 2012-11-15 15:55:30 +0100 | [diff] [blame] | 449 | 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] | 450 | |
| 451 | /* Allocate descriptor slots */ |
| 452 | idx = mv_chan->slots_allocated; |
| 453 | while (idx < num_descs_in_pool) { |
| 454 | slot = kzalloc(sizeof(*slot), GFP_KERNEL); |
| 455 | if (!slot) { |
Ezequiel Garcia | b8291dd | 2014-08-27 10:52:49 -0300 | [diff] [blame] | 456 | dev_info(mv_chan_to_devp(mv_chan), |
| 457 | "channel only initialized %d descriptor slots", |
| 458 | idx); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 459 | break; |
| 460 | } |
Olof Johansson | 31fd8f5 | 2014-02-03 17:13:23 -0800 | [diff] [blame] | 461 | virt_desc = mv_chan->dma_desc_pool_virt; |
| 462 | slot->hw_desc = virt_desc + idx * MV_XOR_SLOT_SIZE; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 463 | |
| 464 | dma_async_tx_descriptor_init(&slot->async_tx, chan); |
| 465 | slot->async_tx.tx_submit = mv_xor_tx_submit; |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 466 | INIT_LIST_HEAD(&slot->node); |
Stefan Roese | c5db858 | 2016-10-26 10:10:25 +0200 | [diff] [blame] | 467 | INIT_LIST_HEAD(&slot->sg_tx_list); |
Olof Johansson | 31fd8f5 | 2014-02-03 17:13:23 -0800 | [diff] [blame] | 468 | dma_desc = mv_chan->dma_desc_pool; |
| 469 | slot->async_tx.phys = dma_desc + idx * MV_XOR_SLOT_SIZE; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 470 | slot->idx = idx++; |
| 471 | |
| 472 | spin_lock_bh(&mv_chan->lock); |
| 473 | mv_chan->slots_allocated = idx; |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 474 | list_add_tail(&slot->node, &mv_chan->free_slots); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 475 | spin_unlock_bh(&mv_chan->lock); |
| 476 | } |
| 477 | |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 478 | dev_dbg(mv_chan_to_devp(mv_chan), |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 479 | "allocated %d descriptor slots\n", |
| 480 | mv_chan->slots_allocated); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 481 | |
| 482 | return mv_chan->slots_allocated ? : -ENOMEM; |
| 483 | } |
| 484 | |
Stefan Roese | 77ff7a7 | 2016-09-15 07:37:31 +0200 | [diff] [blame] | 485 | /* |
| 486 | * Check if source or destination is an PCIe/IO address (non-SDRAM) and add |
| 487 | * a new MBus window if necessary. Use a cache for these check so that |
| 488 | * the MMIO mapped registers don't have to be accessed for this check |
| 489 | * to speed up this process. |
| 490 | */ |
| 491 | static int mv_xor_add_io_win(struct mv_xor_chan *mv_chan, u32 addr) |
| 492 | { |
| 493 | struct mv_xor_device *xordev = mv_chan->xordev; |
| 494 | void __iomem *base = mv_chan->mmr_high_base; |
| 495 | u32 win_enable; |
| 496 | u32 size; |
| 497 | u8 target, attr; |
| 498 | int ret; |
| 499 | int i; |
| 500 | |
| 501 | /* Nothing needs to get done for the Armada 3700 */ |
| 502 | if (xordev->xor_type == XOR_ARMADA_37XX) |
| 503 | return 0; |
| 504 | |
| 505 | /* |
| 506 | * Loop over the cached windows to check, if the requested area |
| 507 | * is already mapped. If this the case, nothing needs to be done |
| 508 | * and we can return. |
| 509 | */ |
| 510 | for (i = 0; i < WINDOW_COUNT; i++) { |
| 511 | if (addr >= xordev->win_start[i] && |
| 512 | addr <= xordev->win_end[i]) { |
| 513 | /* Window is already mapped */ |
| 514 | return 0; |
| 515 | } |
| 516 | } |
| 517 | |
| 518 | /* |
| 519 | * The window is not mapped, so we need to create the new mapping |
| 520 | */ |
| 521 | |
| 522 | /* If no IO window is found that addr has to be located in SDRAM */ |
| 523 | ret = mvebu_mbus_get_io_win_info(addr, &size, &target, &attr); |
| 524 | if (ret < 0) |
| 525 | return 0; |
| 526 | |
| 527 | /* |
| 528 | * Mask the base addr 'addr' according to 'size' read back from the |
| 529 | * MBus window. Otherwise we might end up with an address located |
| 530 | * somewhere in the middle of this area here. |
| 531 | */ |
| 532 | size -= 1; |
| 533 | addr &= ~size; |
| 534 | |
| 535 | /* |
| 536 | * Reading one of both enabled register is enough, as they are always |
| 537 | * programmed to the identical values |
| 538 | */ |
| 539 | win_enable = readl(base + WINDOW_BAR_ENABLE(0)); |
| 540 | |
| 541 | /* Set 'i' to the first free window to write the new values to */ |
| 542 | i = ffs(~win_enable) - 1; |
| 543 | if (i >= WINDOW_COUNT) |
| 544 | return -ENOMEM; |
| 545 | |
| 546 | writel((addr & 0xffff0000) | (attr << 8) | target, |
| 547 | base + WINDOW_BASE(i)); |
| 548 | writel(size & 0xffff0000, base + WINDOW_SIZE(i)); |
| 549 | |
| 550 | /* Fill the caching variables for later use */ |
| 551 | xordev->win_start[i] = addr; |
| 552 | xordev->win_end[i] = addr + size; |
| 553 | |
| 554 | win_enable |= (1 << i); |
| 555 | win_enable |= 3 << (16 + (2 * i)); |
| 556 | writel(win_enable, base + WINDOW_BAR_ENABLE(0)); |
| 557 | writel(win_enable, base + WINDOW_BAR_ENABLE(1)); |
| 558 | |
| 559 | return 0; |
| 560 | } |
| 561 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 562 | static struct dma_async_tx_descriptor * |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 563 | mv_xor_prep_dma_xor(struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src, |
| 564 | unsigned int src_cnt, size_t len, unsigned long flags) |
| 565 | { |
| 566 | struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan); |
Lior Amsalem | dfc9766 | 2014-08-27 10:52:51 -0300 | [diff] [blame] | 567 | struct mv_xor_desc_slot *sw_desc; |
Stefan Roese | 77ff7a7 | 2016-09-15 07:37:31 +0200 | [diff] [blame] | 568 | int ret; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 569 | |
| 570 | if (unlikely(len < MV_XOR_MIN_BYTE_COUNT)) |
| 571 | return NULL; |
| 572 | |
Coly Li | 7912d30 | 2011-03-27 01:26:53 +0800 | [diff] [blame] | 573 | BUG_ON(len > MV_XOR_MAX_BYTE_COUNT); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 574 | |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 575 | dev_dbg(mv_chan_to_devp(mv_chan), |
Gregory CLEMENT | bc822e1 | 2016-04-29 09:49:05 +0200 | [diff] [blame] | 576 | "%s src_cnt: %d len: %zu dest %pad flags: %ld\n", |
Olof Johansson | 31fd8f5 | 2014-02-03 17:13:23 -0800 | [diff] [blame] | 577 | __func__, src_cnt, len, &dest, flags); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 578 | |
Stefan Roese | 77ff7a7 | 2016-09-15 07:37:31 +0200 | [diff] [blame] | 579 | /* Check if a new window needs to get added for 'dest' */ |
| 580 | ret = mv_xor_add_io_win(mv_chan, dest); |
| 581 | if (ret) |
| 582 | return NULL; |
| 583 | |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 584 | sw_desc = mv_chan_alloc_slot(mv_chan); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 585 | if (sw_desc) { |
| 586 | sw_desc->type = DMA_XOR; |
| 587 | sw_desc->async_tx.flags = flags; |
Lior Amsalem | ba87d13 | 2014-08-27 10:52:53 -0300 | [diff] [blame] | 588 | mv_desc_init(sw_desc, dest, len, flags); |
Lior Amsalem | 6f16631 | 2015-05-26 15:07:34 +0200 | [diff] [blame] | 589 | if (mv_chan->op_in_desc == XOR_MODE_IN_DESC) |
| 590 | mv_desc_set_mode(sw_desc); |
Stefan Roese | 77ff7a7 | 2016-09-15 07:37:31 +0200 | [diff] [blame] | 591 | while (src_cnt--) { |
| 592 | /* Check if a new window needs to get added for 'src' */ |
| 593 | ret = mv_xor_add_io_win(mv_chan, src[src_cnt]); |
| 594 | if (ret) |
| 595 | return NULL; |
Lior Amsalem | dfc9766 | 2014-08-27 10:52:51 -0300 | [diff] [blame] | 596 | mv_desc_set_src_addr(sw_desc, src_cnt, src[src_cnt]); |
Stefan Roese | 77ff7a7 | 2016-09-15 07:37:31 +0200 | [diff] [blame] | 597 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 598 | } |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 599 | |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 600 | dev_dbg(mv_chan_to_devp(mv_chan), |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 601 | "%s sw_desc %p async_tx %p \n", |
| 602 | __func__, sw_desc, &sw_desc->async_tx); |
| 603 | return sw_desc ? &sw_desc->async_tx : NULL; |
| 604 | } |
| 605 | |
Lior Amsalem | 3e4f52e | 2014-08-27 10:52:50 -0300 | [diff] [blame] | 606 | static struct dma_async_tx_descriptor * |
| 607 | mv_xor_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src, |
| 608 | size_t len, unsigned long flags) |
| 609 | { |
| 610 | /* |
| 611 | * A MEMCPY operation is identical to an XOR operation with only |
| 612 | * a single source address. |
| 613 | */ |
| 614 | return mv_xor_prep_dma_xor(chan, dest, &src, 1, len, flags); |
| 615 | } |
| 616 | |
Lior Amsalem | 2284354 | 2014-08-27 10:52:55 -0300 | [diff] [blame] | 617 | static struct dma_async_tx_descriptor * |
| 618 | mv_xor_prep_dma_interrupt(struct dma_chan *chan, unsigned long flags) |
| 619 | { |
| 620 | struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan); |
| 621 | dma_addr_t src, dest; |
| 622 | size_t len; |
| 623 | |
| 624 | src = mv_chan->dummy_src_addr; |
| 625 | dest = mv_chan->dummy_dst_addr; |
| 626 | len = MV_XOR_MIN_BYTE_COUNT; |
| 627 | |
| 628 | /* |
| 629 | * We implement the DMA_INTERRUPT operation as a minimum sized |
| 630 | * XOR operation with a single dummy source address. |
| 631 | */ |
| 632 | return mv_xor_prep_dma_xor(chan, dest, &src, 1, len, flags); |
| 633 | } |
| 634 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 635 | static void mv_xor_free_chan_resources(struct dma_chan *chan) |
| 636 | { |
| 637 | struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan); |
| 638 | struct mv_xor_desc_slot *iter, *_iter; |
| 639 | int in_use_descs = 0; |
| 640 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 641 | spin_lock_bh(&mv_chan->lock); |
Ezequiel Garcia | e43147a | 2014-03-07 16:46:46 -0300 | [diff] [blame] | 642 | |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 643 | mv_chan_slot_cleanup(mv_chan); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 644 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 645 | list_for_each_entry_safe(iter, _iter, &mv_chan->chain, |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 646 | node) { |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 647 | in_use_descs++; |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 648 | list_move_tail(&iter->node, &mv_chan->free_slots); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 649 | } |
| 650 | list_for_each_entry_safe(iter, _iter, &mv_chan->completed_slots, |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 651 | node) { |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 652 | in_use_descs++; |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 653 | list_move_tail(&iter->node, &mv_chan->free_slots); |
| 654 | } |
| 655 | list_for_each_entry_safe(iter, _iter, &mv_chan->allocated_slots, |
| 656 | node) { |
| 657 | in_use_descs++; |
| 658 | list_move_tail(&iter->node, &mv_chan->free_slots); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 659 | } |
| 660 | list_for_each_entry_safe_reverse( |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 661 | iter, _iter, &mv_chan->free_slots, node) { |
| 662 | list_del(&iter->node); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 663 | kfree(iter); |
| 664 | mv_chan->slots_allocated--; |
| 665 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 666 | |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 667 | 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] | 668 | __func__, mv_chan->slots_allocated); |
| 669 | spin_unlock_bh(&mv_chan->lock); |
| 670 | |
| 671 | if (in_use_descs) |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 672 | dev_err(mv_chan_to_devp(mv_chan), |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 673 | "freeing %d in use descriptors!\n", in_use_descs); |
| 674 | } |
| 675 | |
| 676 | /** |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 677 | * mv_xor_status - poll the status of an XOR transaction |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 678 | * @chan: XOR channel handle |
| 679 | * @cookie: XOR transaction identifier |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 680 | * @txstate: XOR transactions state holder (or NULL) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 681 | */ |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 682 | static enum dma_status mv_xor_status(struct dma_chan *chan, |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 683 | dma_cookie_t cookie, |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 684 | struct dma_tx_state *txstate) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 685 | { |
| 686 | struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 687 | enum dma_status ret; |
| 688 | |
Russell King - ARM Linux | 96a2af4 | 2012-03-06 22:35:27 +0000 | [diff] [blame] | 689 | ret = dma_cookie_status(chan, cookie, txstate); |
Ezequiel Garcia | 890766d | 2014-03-07 16:46:45 -0300 | [diff] [blame] | 690 | if (ret == DMA_COMPLETE) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 691 | return ret; |
Ezequiel Garcia | e43147a | 2014-03-07 16:46:46 -0300 | [diff] [blame] | 692 | |
| 693 | spin_lock_bh(&mv_chan->lock); |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 694 | mv_chan_slot_cleanup(mv_chan); |
Ezequiel Garcia | e43147a | 2014-03-07 16:46:46 -0300 | [diff] [blame] | 695 | spin_unlock_bh(&mv_chan->lock); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 696 | |
Russell King - ARM Linux | 96a2af4 | 2012-03-06 22:35:27 +0000 | [diff] [blame] | 697 | return dma_cookie_status(chan, cookie, txstate); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 698 | } |
| 699 | |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 700 | static void mv_chan_dump_regs(struct mv_xor_chan *chan) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 701 | { |
| 702 | u32 val; |
| 703 | |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 704 | val = readl_relaxed(XOR_CONFIG(chan)); |
Joe Perches | 1ba151c | 2012-10-28 01:05:44 -0700 | [diff] [blame] | 705 | dev_err(mv_chan_to_devp(chan), "config 0x%08x\n", val); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 706 | |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 707 | val = readl_relaxed(XOR_ACTIVATION(chan)); |
Joe Perches | 1ba151c | 2012-10-28 01:05:44 -0700 | [diff] [blame] | 708 | dev_err(mv_chan_to_devp(chan), "activation 0x%08x\n", val); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 709 | |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 710 | val = readl_relaxed(XOR_INTR_CAUSE(chan)); |
Joe Perches | 1ba151c | 2012-10-28 01:05:44 -0700 | [diff] [blame] | 711 | 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] | 712 | |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 713 | val = readl_relaxed(XOR_INTR_MASK(chan)); |
Joe Perches | 1ba151c | 2012-10-28 01:05:44 -0700 | [diff] [blame] | 714 | 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] | 715 | |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 716 | val = readl_relaxed(XOR_ERROR_CAUSE(chan)); |
Joe Perches | 1ba151c | 2012-10-28 01:05:44 -0700 | [diff] [blame] | 717 | 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] | 718 | |
Thomas Petazzoni | 5733c38 | 2013-07-29 17:42:13 +0200 | [diff] [blame] | 719 | val = readl_relaxed(XOR_ERROR_ADDR(chan)); |
Joe Perches | 1ba151c | 2012-10-28 01:05:44 -0700 | [diff] [blame] | 720 | 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] | 721 | } |
| 722 | |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 723 | static void mv_chan_err_interrupt_handler(struct mv_xor_chan *chan, |
| 724 | u32 intr_cause) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 725 | { |
Ezequiel Garcia | 0e7488e | 2014-08-27 10:52:52 -0300 | [diff] [blame] | 726 | if (intr_cause & XOR_INT_ERR_DECODE) { |
| 727 | dev_dbg(mv_chan_to_devp(chan), "ignoring address decode error\n"); |
| 728 | return; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 729 | } |
| 730 | |
Ezequiel Garcia | 0e7488e | 2014-08-27 10:52:52 -0300 | [diff] [blame] | 731 | dev_err(mv_chan_to_devp(chan), "error on chan %d. intr cause 0x%08x\n", |
Thomas Petazzoni | a3fc74b | 2012-11-15 12:50:27 +0100 | [diff] [blame] | 732 | chan->idx, intr_cause); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 733 | |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 734 | mv_chan_dump_regs(chan); |
Ezequiel Garcia | 0e7488e | 2014-08-27 10:52:52 -0300 | [diff] [blame] | 735 | WARN_ON(1); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 736 | } |
| 737 | |
| 738 | static irqreturn_t mv_xor_interrupt_handler(int irq, void *data) |
| 739 | { |
| 740 | struct mv_xor_chan *chan = data; |
| 741 | u32 intr_cause = mv_chan_get_intr_cause(chan); |
| 742 | |
Thomas Petazzoni | c98c178 | 2012-11-15 14:17:18 +0100 | [diff] [blame] | 743 | 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] | 744 | |
Ezequiel Garcia | 0e7488e | 2014-08-27 10:52:52 -0300 | [diff] [blame] | 745 | if (intr_cause & XOR_INTR_ERRORS) |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 746 | mv_chan_err_interrupt_handler(chan, intr_cause); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 747 | |
| 748 | tasklet_schedule(&chan->irq_tasklet); |
| 749 | |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 750 | mv_chan_clear_eoc_cause(chan); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 751 | |
| 752 | return IRQ_HANDLED; |
| 753 | } |
| 754 | |
| 755 | static void mv_xor_issue_pending(struct dma_chan *chan) |
| 756 | { |
| 757 | struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan); |
| 758 | |
| 759 | if (mv_chan->pending >= MV_XOR_THRESHOLD) { |
| 760 | mv_chan->pending = 0; |
| 761 | mv_chan_activate(mv_chan); |
| 762 | } |
| 763 | } |
| 764 | |
| 765 | /* |
| 766 | * Perform a transaction to verify the HW works. |
| 767 | */ |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 768 | |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 769 | static int mv_chan_memcpy_self_test(struct mv_xor_chan *mv_chan) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 770 | { |
Ezequiel Garcia | b8c01d2 | 2013-12-10 09:32:37 -0300 | [diff] [blame] | 771 | int i, ret; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 772 | void *src, *dest; |
| 773 | dma_addr_t src_dma, dest_dma; |
| 774 | struct dma_chan *dma_chan; |
| 775 | dma_cookie_t cookie; |
| 776 | struct dma_async_tx_descriptor *tx; |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 777 | struct dmaengine_unmap_data *unmap; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 778 | int err = 0; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 779 | |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 780 | src = kmalloc(sizeof(u8) * PAGE_SIZE, GFP_KERNEL); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 781 | if (!src) |
| 782 | return -ENOMEM; |
| 783 | |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 784 | dest = kzalloc(sizeof(u8) * PAGE_SIZE, GFP_KERNEL); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 785 | if (!dest) { |
| 786 | kfree(src); |
| 787 | return -ENOMEM; |
| 788 | } |
| 789 | |
| 790 | /* Fill in src buffer */ |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 791 | for (i = 0; i < PAGE_SIZE; i++) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 792 | ((u8 *) src)[i] = (u8)i; |
| 793 | |
Thomas Petazzoni | 275cc0c | 2012-11-15 15:09:42 +0100 | [diff] [blame] | 794 | dma_chan = &mv_chan->dmachan; |
Dan Williams | aa1e6f1 | 2009-01-06 11:38:17 -0700 | [diff] [blame] | 795 | if (mv_xor_alloc_chan_resources(dma_chan) < 1) { |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 796 | err = -ENODEV; |
| 797 | goto out; |
| 798 | } |
| 799 | |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 800 | unmap = dmaengine_get_unmap_data(dma_chan->device->dev, 2, GFP_KERNEL); |
| 801 | if (!unmap) { |
| 802 | err = -ENOMEM; |
| 803 | goto free_resources; |
| 804 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 805 | |
Stefan Roese | 5156463 | 2016-06-01 12:43:32 +0200 | [diff] [blame] | 806 | src_dma = dma_map_page(dma_chan->device->dev, virt_to_page(src), |
Geliang Tang | b70e52c | 2017-04-22 09:18:04 +0800 | [diff] [blame] | 807 | offset_in_page(src), PAGE_SIZE, |
Stefan Roese | 5156463 | 2016-06-01 12:43:32 +0200 | [diff] [blame] | 808 | DMA_TO_DEVICE); |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 809 | unmap->addr[0] = src_dma; |
| 810 | |
Ezequiel Garcia | b8c01d2 | 2013-12-10 09:32:37 -0300 | [diff] [blame] | 811 | ret = dma_mapping_error(dma_chan->device->dev, src_dma); |
| 812 | if (ret) { |
| 813 | err = -ENOMEM; |
| 814 | goto free_resources; |
| 815 | } |
| 816 | unmap->to_cnt = 1; |
| 817 | |
Stefan Roese | 5156463 | 2016-06-01 12:43:32 +0200 | [diff] [blame] | 818 | dest_dma = dma_map_page(dma_chan->device->dev, virt_to_page(dest), |
Geliang Tang | b70e52c | 2017-04-22 09:18:04 +0800 | [diff] [blame] | 819 | offset_in_page(dest), PAGE_SIZE, |
Stefan Roese | 5156463 | 2016-06-01 12:43:32 +0200 | [diff] [blame] | 820 | DMA_FROM_DEVICE); |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 821 | unmap->addr[1] = dest_dma; |
| 822 | |
Ezequiel Garcia | b8c01d2 | 2013-12-10 09:32:37 -0300 | [diff] [blame] | 823 | ret = dma_mapping_error(dma_chan->device->dev, dest_dma); |
| 824 | if (ret) { |
| 825 | err = -ENOMEM; |
| 826 | goto free_resources; |
| 827 | } |
| 828 | unmap->from_cnt = 1; |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 829 | unmap->len = PAGE_SIZE; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 830 | |
| 831 | tx = mv_xor_prep_dma_memcpy(dma_chan, dest_dma, src_dma, |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 832 | PAGE_SIZE, 0); |
Ezequiel Garcia | b8c01d2 | 2013-12-10 09:32:37 -0300 | [diff] [blame] | 833 | if (!tx) { |
| 834 | dev_err(dma_chan->device->dev, |
| 835 | "Self-test cannot prepare operation, disabling\n"); |
| 836 | err = -ENODEV; |
| 837 | goto free_resources; |
| 838 | } |
| 839 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 840 | cookie = mv_xor_tx_submit(tx); |
Ezequiel Garcia | b8c01d2 | 2013-12-10 09:32:37 -0300 | [diff] [blame] | 841 | if (dma_submit_error(cookie)) { |
| 842 | dev_err(dma_chan->device->dev, |
| 843 | "Self-test submit error, disabling\n"); |
| 844 | err = -ENODEV; |
| 845 | goto free_resources; |
| 846 | } |
| 847 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 848 | mv_xor_issue_pending(dma_chan); |
| 849 | async_tx_ack(tx); |
| 850 | msleep(1); |
| 851 | |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 852 | if (mv_xor_status(dma_chan, cookie, NULL) != |
Vinod Koul | b3efb8f | 2013-10-16 20:51:04 +0530 | [diff] [blame] | 853 | DMA_COMPLETE) { |
Thomas Petazzoni | a3fc74b | 2012-11-15 12:50:27 +0100 | [diff] [blame] | 854 | dev_err(dma_chan->device->dev, |
| 855 | "Self-test copy timed out, disabling\n"); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 856 | err = -ENODEV; |
| 857 | goto free_resources; |
| 858 | } |
| 859 | |
Thomas Petazzoni | c35064c | 2012-11-15 13:01:59 +0100 | [diff] [blame] | 860 | dma_sync_single_for_cpu(dma_chan->device->dev, dest_dma, |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 861 | PAGE_SIZE, DMA_FROM_DEVICE); |
| 862 | if (memcmp(src, dest, PAGE_SIZE)) { |
Thomas Petazzoni | a3fc74b | 2012-11-15 12:50:27 +0100 | [diff] [blame] | 863 | dev_err(dma_chan->device->dev, |
| 864 | "Self-test copy failed compare, disabling\n"); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 865 | err = -ENODEV; |
| 866 | goto free_resources; |
| 867 | } |
| 868 | |
| 869 | free_resources: |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 870 | dmaengine_unmap_put(unmap); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 871 | mv_xor_free_chan_resources(dma_chan); |
| 872 | out: |
| 873 | kfree(src); |
| 874 | kfree(dest); |
| 875 | return err; |
| 876 | } |
| 877 | |
| 878 | #define MV_XOR_NUM_SRC_TEST 4 /* must be <= 15 */ |
Bill Pemberton | 463a1f8 | 2012-11-19 13:22:55 -0500 | [diff] [blame] | 879 | static int |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 880 | mv_chan_xor_self_test(struct mv_xor_chan *mv_chan) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 881 | { |
Ezequiel Garcia | b8c01d2 | 2013-12-10 09:32:37 -0300 | [diff] [blame] | 882 | int i, src_idx, ret; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 883 | struct page *dest; |
| 884 | struct page *xor_srcs[MV_XOR_NUM_SRC_TEST]; |
| 885 | dma_addr_t dma_srcs[MV_XOR_NUM_SRC_TEST]; |
| 886 | dma_addr_t dest_dma; |
| 887 | struct dma_async_tx_descriptor *tx; |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 888 | struct dmaengine_unmap_data *unmap; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 889 | struct dma_chan *dma_chan; |
| 890 | dma_cookie_t cookie; |
| 891 | u8 cmp_byte = 0; |
| 892 | u32 cmp_word; |
| 893 | int err = 0; |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 894 | int src_count = MV_XOR_NUM_SRC_TEST; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 895 | |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 896 | for (src_idx = 0; src_idx < src_count; src_idx++) { |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 897 | xor_srcs[src_idx] = alloc_page(GFP_KERNEL); |
Roel Kluin | a09b09a | 2009-02-25 13:56:21 +0100 | [diff] [blame] | 898 | if (!xor_srcs[src_idx]) { |
| 899 | while (src_idx--) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 900 | __free_page(xor_srcs[src_idx]); |
Roel Kluin | a09b09a | 2009-02-25 13:56:21 +0100 | [diff] [blame] | 901 | return -ENOMEM; |
| 902 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 903 | } |
| 904 | |
| 905 | dest = alloc_page(GFP_KERNEL); |
Roel Kluin | a09b09a | 2009-02-25 13:56:21 +0100 | [diff] [blame] | 906 | if (!dest) { |
| 907 | while (src_idx--) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 908 | __free_page(xor_srcs[src_idx]); |
Roel Kluin | a09b09a | 2009-02-25 13:56:21 +0100 | [diff] [blame] | 909 | return -ENOMEM; |
| 910 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 911 | |
| 912 | /* Fill in src buffers */ |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 913 | for (src_idx = 0; src_idx < src_count; src_idx++) { |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 914 | u8 *ptr = page_address(xor_srcs[src_idx]); |
| 915 | for (i = 0; i < PAGE_SIZE; i++) |
| 916 | ptr[i] = (1 << src_idx); |
| 917 | } |
| 918 | |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 919 | for (src_idx = 0; src_idx < src_count; src_idx++) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 920 | cmp_byte ^= (u8) (1 << src_idx); |
| 921 | |
| 922 | cmp_word = (cmp_byte << 24) | (cmp_byte << 16) | |
| 923 | (cmp_byte << 8) | cmp_byte; |
| 924 | |
| 925 | memset(page_address(dest), 0, PAGE_SIZE); |
| 926 | |
Thomas Petazzoni | 275cc0c | 2012-11-15 15:09:42 +0100 | [diff] [blame] | 927 | dma_chan = &mv_chan->dmachan; |
Dan Williams | aa1e6f1 | 2009-01-06 11:38:17 -0700 | [diff] [blame] | 928 | if (mv_xor_alloc_chan_resources(dma_chan) < 1) { |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 929 | err = -ENODEV; |
| 930 | goto out; |
| 931 | } |
| 932 | |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 933 | unmap = dmaengine_get_unmap_data(dma_chan->device->dev, src_count + 1, |
| 934 | GFP_KERNEL); |
| 935 | if (!unmap) { |
| 936 | err = -ENOMEM; |
| 937 | goto free_resources; |
| 938 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 939 | |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 940 | /* test xor */ |
| 941 | for (i = 0; i < src_count; i++) { |
| 942 | unmap->addr[i] = dma_map_page(dma_chan->device->dev, xor_srcs[i], |
| 943 | 0, PAGE_SIZE, DMA_TO_DEVICE); |
| 944 | dma_srcs[i] = unmap->addr[i]; |
Ezequiel Garcia | b8c01d2 | 2013-12-10 09:32:37 -0300 | [diff] [blame] | 945 | ret = dma_mapping_error(dma_chan->device->dev, unmap->addr[i]); |
| 946 | if (ret) { |
| 947 | err = -ENOMEM; |
| 948 | goto free_resources; |
| 949 | } |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 950 | unmap->to_cnt++; |
| 951 | } |
| 952 | |
| 953 | unmap->addr[src_count] = dma_map_page(dma_chan->device->dev, dest, 0, PAGE_SIZE, |
| 954 | DMA_FROM_DEVICE); |
| 955 | dest_dma = unmap->addr[src_count]; |
Ezequiel Garcia | b8c01d2 | 2013-12-10 09:32:37 -0300 | [diff] [blame] | 956 | ret = dma_mapping_error(dma_chan->device->dev, unmap->addr[src_count]); |
| 957 | if (ret) { |
| 958 | err = -ENOMEM; |
| 959 | goto free_resources; |
| 960 | } |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 961 | unmap->from_cnt = 1; |
| 962 | unmap->len = PAGE_SIZE; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 963 | |
| 964 | tx = mv_xor_prep_dma_xor(dma_chan, dest_dma, dma_srcs, |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 965 | src_count, PAGE_SIZE, 0); |
Ezequiel Garcia | b8c01d2 | 2013-12-10 09:32:37 -0300 | [diff] [blame] | 966 | if (!tx) { |
| 967 | dev_err(dma_chan->device->dev, |
| 968 | "Self-test cannot prepare operation, disabling\n"); |
| 969 | err = -ENODEV; |
| 970 | goto free_resources; |
| 971 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 972 | |
| 973 | cookie = mv_xor_tx_submit(tx); |
Ezequiel Garcia | b8c01d2 | 2013-12-10 09:32:37 -0300 | [diff] [blame] | 974 | if (dma_submit_error(cookie)) { |
| 975 | dev_err(dma_chan->device->dev, |
| 976 | "Self-test submit error, disabling\n"); |
| 977 | err = -ENODEV; |
| 978 | goto free_resources; |
| 979 | } |
| 980 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 981 | mv_xor_issue_pending(dma_chan); |
| 982 | async_tx_ack(tx); |
| 983 | msleep(8); |
| 984 | |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 985 | if (mv_xor_status(dma_chan, cookie, NULL) != |
Vinod Koul | b3efb8f | 2013-10-16 20:51:04 +0530 | [diff] [blame] | 986 | DMA_COMPLETE) { |
Thomas Petazzoni | a3fc74b | 2012-11-15 12:50:27 +0100 | [diff] [blame] | 987 | dev_err(dma_chan->device->dev, |
| 988 | "Self-test xor timed out, disabling\n"); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 989 | err = -ENODEV; |
| 990 | goto free_resources; |
| 991 | } |
| 992 | |
Thomas Petazzoni | c35064c | 2012-11-15 13:01:59 +0100 | [diff] [blame] | 993 | dma_sync_single_for_cpu(dma_chan->device->dev, dest_dma, |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 994 | PAGE_SIZE, DMA_FROM_DEVICE); |
| 995 | for (i = 0; i < (PAGE_SIZE / sizeof(u32)); i++) { |
| 996 | u32 *ptr = page_address(dest); |
| 997 | if (ptr[i] != cmp_word) { |
Thomas Petazzoni | a3fc74b | 2012-11-15 12:50:27 +0100 | [diff] [blame] | 998 | dev_err(dma_chan->device->dev, |
Joe Perches | 1ba151c | 2012-10-28 01:05:44 -0700 | [diff] [blame] | 999 | "Self-test xor failed compare, disabling. index %d, data %x, expected %x\n", |
| 1000 | i, ptr[i], cmp_word); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1001 | err = -ENODEV; |
| 1002 | goto free_resources; |
| 1003 | } |
| 1004 | } |
| 1005 | |
| 1006 | free_resources: |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 1007 | dmaengine_unmap_put(unmap); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1008 | mv_xor_free_chan_resources(dma_chan); |
| 1009 | out: |
Ezequiel Garcia | d16695a | 2013-12-10 09:32:36 -0300 | [diff] [blame] | 1010 | src_idx = src_count; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1011 | while (src_idx--) |
| 1012 | __free_page(xor_srcs[src_idx]); |
| 1013 | __free_page(dest); |
| 1014 | return err; |
| 1015 | } |
| 1016 | |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 1017 | static int mv_xor_channel_remove(struct mv_xor_chan *mv_chan) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1018 | { |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1019 | struct dma_chan *chan, *_chan; |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 1020 | struct device *dev = mv_chan->dmadev.dev; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1021 | |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 1022 | dma_async_device_unregister(&mv_chan->dmadev); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1023 | |
Thomas Petazzoni | b503fa0 | 2012-11-15 15:55:30 +0100 | [diff] [blame] | 1024 | dma_free_coherent(dev, MV_XOR_POOL_SIZE, |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 1025 | mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool); |
Lior Amsalem | 2284354 | 2014-08-27 10:52:55 -0300 | [diff] [blame] | 1026 | dma_unmap_single(dev, mv_chan->dummy_src_addr, |
| 1027 | MV_XOR_MIN_BYTE_COUNT, DMA_FROM_DEVICE); |
| 1028 | dma_unmap_single(dev, mv_chan->dummy_dst_addr, |
| 1029 | MV_XOR_MIN_BYTE_COUNT, DMA_TO_DEVICE); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1030 | |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 1031 | list_for_each_entry_safe(chan, _chan, &mv_chan->dmadev.channels, |
Thomas Petazzoni | a6b4a9d | 2012-10-29 16:45:46 +0100 | [diff] [blame] | 1032 | device_node) { |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1033 | list_del(&chan->device_node); |
| 1034 | } |
| 1035 | |
Thomas Petazzoni | 88eb92c | 2012-11-15 16:11:18 +0100 | [diff] [blame] | 1036 | free_irq(mv_chan->irq, mv_chan); |
| 1037 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1038 | return 0; |
| 1039 | } |
| 1040 | |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 1041 | static struct mv_xor_chan * |
Thomas Petazzoni | 297eedb | 2012-11-15 15:29:53 +0100 | [diff] [blame] | 1042 | mv_xor_channel_add(struct mv_xor_device *xordev, |
Thomas Petazzoni | a6b4a9d | 2012-10-29 16:45:46 +0100 | [diff] [blame] | 1043 | struct platform_device *pdev, |
Gregory CLEMENT | dd130c6 | 2016-04-29 09:49:06 +0200 | [diff] [blame] | 1044 | int idx, dma_cap_mask_t cap_mask, int irq) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1045 | { |
| 1046 | int ret = 0; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1047 | struct mv_xor_chan *mv_chan; |
| 1048 | struct dma_device *dma_dev; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1049 | |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 1050 | mv_chan = devm_kzalloc(&pdev->dev, sizeof(*mv_chan), GFP_KERNEL); |
Sachin Kamat | a577659 | 2013-09-02 13:54:20 +0530 | [diff] [blame] | 1051 | if (!mv_chan) |
| 1052 | return ERR_PTR(-ENOMEM); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1053 | |
Thomas Petazzoni | 9aedbdb | 2012-11-15 15:36:37 +0100 | [diff] [blame] | 1054 | mv_chan->idx = idx; |
Thomas Petazzoni | 88eb92c | 2012-11-15 16:11:18 +0100 | [diff] [blame] | 1055 | mv_chan->irq = irq; |
Gregory CLEMENT | dd130c6 | 2016-04-29 09:49:06 +0200 | [diff] [blame] | 1056 | if (xordev->xor_type == XOR_ORION) |
| 1057 | mv_chan->op_in_desc = XOR_MODE_IN_REG; |
| 1058 | else |
| 1059 | mv_chan->op_in_desc = XOR_MODE_IN_DESC; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1060 | |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 1061 | dma_dev = &mv_chan->dmadev; |
Stefan Roese | 77ff7a7 | 2016-09-15 07:37:31 +0200 | [diff] [blame] | 1062 | mv_chan->xordev = xordev; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1063 | |
Lior Amsalem | 2284354 | 2014-08-27 10:52:55 -0300 | [diff] [blame] | 1064 | /* |
| 1065 | * These source and destination dummy buffers are used to implement |
| 1066 | * a DMA_INTERRUPT operation as a minimum-sized XOR operation. |
| 1067 | * Hence, we only need to map the buffers at initialization-time. |
| 1068 | */ |
| 1069 | mv_chan->dummy_src_addr = dma_map_single(dma_dev->dev, |
| 1070 | mv_chan->dummy_src, MV_XOR_MIN_BYTE_COUNT, DMA_FROM_DEVICE); |
| 1071 | mv_chan->dummy_dst_addr = dma_map_single(dma_dev->dev, |
| 1072 | mv_chan->dummy_dst, MV_XOR_MIN_BYTE_COUNT, DMA_TO_DEVICE); |
| 1073 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1074 | /* allocate coherent memory for hardware descriptors |
| 1075 | * note: writecombine gives slightly better performance, but |
| 1076 | * requires that we explicitly flush the writes |
| 1077 | */ |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 1078 | mv_chan->dma_desc_pool_virt = |
Luis R. Rodriguez | f6e4566 | 2016-01-22 18:34:22 -0800 | [diff] [blame] | 1079 | dma_alloc_wc(&pdev->dev, MV_XOR_POOL_SIZE, &mv_chan->dma_desc_pool, |
| 1080 | GFP_KERNEL); |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 1081 | if (!mv_chan->dma_desc_pool_virt) |
Thomas Petazzoni | a6b4a9d | 2012-10-29 16:45:46 +0100 | [diff] [blame] | 1082 | return ERR_PTR(-ENOMEM); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1083 | |
| 1084 | /* discover transaction capabilites from the platform data */ |
Thomas Petazzoni | a6b4a9d | 2012-10-29 16:45:46 +0100 | [diff] [blame] | 1085 | dma_dev->cap_mask = cap_mask; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1086 | |
| 1087 | INIT_LIST_HEAD(&dma_dev->channels); |
| 1088 | |
| 1089 | /* set base routines */ |
| 1090 | dma_dev->device_alloc_chan_resources = mv_xor_alloc_chan_resources; |
| 1091 | dma_dev->device_free_chan_resources = mv_xor_free_chan_resources; |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 1092 | dma_dev->device_tx_status = mv_xor_status; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1093 | dma_dev->device_issue_pending = mv_xor_issue_pending; |
| 1094 | dma_dev->dev = &pdev->dev; |
| 1095 | |
| 1096 | /* set prep routines based on capability */ |
Lior Amsalem | 2284354 | 2014-08-27 10:52:55 -0300 | [diff] [blame] | 1097 | if (dma_has_cap(DMA_INTERRUPT, dma_dev->cap_mask)) |
| 1098 | dma_dev->device_prep_dma_interrupt = mv_xor_prep_dma_interrupt; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1099 | if (dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask)) |
| 1100 | dma_dev->device_prep_dma_memcpy = mv_xor_prep_dma_memcpy; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1101 | if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) { |
Joe Perches | c019894 | 2009-06-28 09:26:21 -0700 | [diff] [blame] | 1102 | dma_dev->max_xor = 8; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1103 | dma_dev->device_prep_dma_xor = mv_xor_prep_dma_xor; |
| 1104 | } |
| 1105 | |
Thomas Petazzoni | 297eedb | 2012-11-15 15:29:53 +0100 | [diff] [blame] | 1106 | mv_chan->mmr_base = xordev->xor_base; |
Ezequiel Garcia | 82a1402 | 2013-10-30 12:01:43 -0300 | [diff] [blame] | 1107 | mv_chan->mmr_high_base = xordev->xor_high_base; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1108 | tasklet_init(&mv_chan->irq_tasklet, mv_xor_tasklet, (unsigned long) |
| 1109 | mv_chan); |
| 1110 | |
| 1111 | /* clear errors before enabling interrupts */ |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 1112 | mv_chan_clear_err_status(mv_chan); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1113 | |
Thomas Petazzoni | 2d0a074 | 2012-11-22 18:19:09 +0100 | [diff] [blame] | 1114 | ret = request_irq(mv_chan->irq, mv_xor_interrupt_handler, |
| 1115 | 0, dev_name(&pdev->dev), mv_chan); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1116 | if (ret) |
| 1117 | goto err_free_dma; |
| 1118 | |
| 1119 | mv_chan_unmask_interrupts(mv_chan); |
| 1120 | |
Lior Amsalem | 6f16631 | 2015-05-26 15:07:34 +0200 | [diff] [blame] | 1121 | if (mv_chan->op_in_desc == XOR_MODE_IN_DESC) |
Thomas Petazzoni | 81aafb3 | 2015-12-22 11:43:28 +0100 | [diff] [blame] | 1122 | mv_chan_set_mode(mv_chan, XOR_OPERATION_MODE_IN_DESC); |
Lior Amsalem | 6f16631 | 2015-05-26 15:07:34 +0200 | [diff] [blame] | 1123 | else |
Thomas Petazzoni | 81aafb3 | 2015-12-22 11:43:28 +0100 | [diff] [blame] | 1124 | mv_chan_set_mode(mv_chan, XOR_OPERATION_MODE_XOR); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1125 | |
| 1126 | spin_lock_init(&mv_chan->lock); |
| 1127 | INIT_LIST_HEAD(&mv_chan->chain); |
| 1128 | INIT_LIST_HEAD(&mv_chan->completed_slots); |
Lior Amsalem | fbea28a | 2015-05-26 15:07:36 +0200 | [diff] [blame] | 1129 | INIT_LIST_HEAD(&mv_chan->free_slots); |
| 1130 | INIT_LIST_HEAD(&mv_chan->allocated_slots); |
Thomas Petazzoni | 98817b9 | 2012-11-15 14:57:44 +0100 | [diff] [blame] | 1131 | mv_chan->dmachan.device = dma_dev; |
| 1132 | dma_cookie_init(&mv_chan->dmachan); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1133 | |
Thomas Petazzoni | 98817b9 | 2012-11-15 14:57:44 +0100 | [diff] [blame] | 1134 | list_add_tail(&mv_chan->dmachan.device_node, &dma_dev->channels); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1135 | |
| 1136 | if (dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask)) { |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 1137 | ret = mv_chan_memcpy_self_test(mv_chan); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1138 | dev_dbg(&pdev->dev, "memcpy self test returned %d\n", ret); |
| 1139 | if (ret) |
Thomas Petazzoni | 2d0a074 | 2012-11-22 18:19:09 +0100 | [diff] [blame] | 1140 | goto err_free_irq; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1141 | } |
| 1142 | |
| 1143 | if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) { |
Maxime Ripard | 0951e72 | 2015-05-26 15:07:33 +0200 | [diff] [blame] | 1144 | ret = mv_chan_xor_self_test(mv_chan); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1145 | dev_dbg(&pdev->dev, "xor self test returned %d\n", ret); |
| 1146 | if (ret) |
Thomas Petazzoni | 2d0a074 | 2012-11-22 18:19:09 +0100 | [diff] [blame] | 1147 | goto err_free_irq; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1148 | } |
| 1149 | |
Dave Jiang | c678fa6 | 2017-08-21 10:23:13 -0700 | [diff] [blame] | 1150 | dev_info(&pdev->dev, "Marvell XOR (%s): ( %s%s%s)\n", |
Lior Amsalem | 6f16631 | 2015-05-26 15:07:34 +0200 | [diff] [blame] | 1151 | mv_chan->op_in_desc ? "Descriptor Mode" : "Registers Mode", |
Joe Perches | 1ba151c | 2012-10-28 01:05:44 -0700 | [diff] [blame] | 1152 | dma_has_cap(DMA_XOR, dma_dev->cap_mask) ? "xor " : "", |
Joe Perches | 1ba151c | 2012-10-28 01:05:44 -0700 | [diff] [blame] | 1153 | dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask) ? "cpy " : "", |
| 1154 | dma_has_cap(DMA_INTERRUPT, dma_dev->cap_mask) ? "intr " : ""); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1155 | |
| 1156 | dma_async_device_register(dma_dev); |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 1157 | return mv_chan; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1158 | |
Thomas Petazzoni | 2d0a074 | 2012-11-22 18:19:09 +0100 | [diff] [blame] | 1159 | err_free_irq: |
| 1160 | free_irq(mv_chan->irq, mv_chan); |
Stefan Roese | a4a1e53d | 2016-06-01 12:43:31 +0200 | [diff] [blame] | 1161 | err_free_dma: |
Thomas Petazzoni | b503fa0 | 2012-11-15 15:55:30 +0100 | [diff] [blame] | 1162 | dma_free_coherent(&pdev->dev, MV_XOR_POOL_SIZE, |
Thomas Petazzoni | 1ef48a2 | 2012-11-15 15:17:05 +0100 | [diff] [blame] | 1163 | mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool); |
Thomas Petazzoni | a6b4a9d | 2012-10-29 16:45:46 +0100 | [diff] [blame] | 1164 | return ERR_PTR(ret); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1165 | } |
| 1166 | |
| 1167 | static void |
Thomas Petazzoni | 297eedb | 2012-11-15 15:29:53 +0100 | [diff] [blame] | 1168 | mv_xor_conf_mbus_windows(struct mv_xor_device *xordev, |
Andrew Lunn | 63a9332 | 2011-12-07 21:48:07 +0100 | [diff] [blame] | 1169 | const struct mbus_dram_target_info *dram) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1170 | { |
Ezequiel Garcia | 82a1402 | 2013-10-30 12:01:43 -0300 | [diff] [blame] | 1171 | void __iomem *base = xordev->xor_high_base; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1172 | u32 win_enable = 0; |
| 1173 | int i; |
| 1174 | |
| 1175 | for (i = 0; i < 8; i++) { |
| 1176 | writel(0, base + WINDOW_BASE(i)); |
| 1177 | writel(0, base + WINDOW_SIZE(i)); |
| 1178 | if (i < 4) |
| 1179 | writel(0, base + WINDOW_REMAP_HIGH(i)); |
| 1180 | } |
| 1181 | |
| 1182 | for (i = 0; i < dram->num_cs; i++) { |
Andrew Lunn | 63a9332 | 2011-12-07 21:48:07 +0100 | [diff] [blame] | 1183 | const struct mbus_dram_window *cs = dram->cs + i; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1184 | |
| 1185 | writel((cs->base & 0xffff0000) | |
| 1186 | (cs->mbus_attr << 8) | |
| 1187 | dram->mbus_dram_target_id, base + WINDOW_BASE(i)); |
| 1188 | writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i)); |
| 1189 | |
Stefan Roese | 77ff7a7 | 2016-09-15 07:37:31 +0200 | [diff] [blame] | 1190 | /* Fill the caching variables for later use */ |
| 1191 | xordev->win_start[i] = cs->base; |
| 1192 | xordev->win_end[i] = cs->base + cs->size - 1; |
| 1193 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1194 | win_enable |= (1 << i); |
| 1195 | win_enable |= 3 << (16 + (2 * i)); |
| 1196 | } |
| 1197 | |
| 1198 | writel(win_enable, base + WINDOW_BAR_ENABLE(0)); |
| 1199 | writel(win_enable, base + WINDOW_BAR_ENABLE(1)); |
Thomas Petazzoni | c4b4b73 | 2012-11-22 18:16:37 +0100 | [diff] [blame] | 1200 | writel(0, base + WINDOW_OVERRIDE_CTRL(0)); |
| 1201 | writel(0, base + WINDOW_OVERRIDE_CTRL(1)); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1202 | } |
| 1203 | |
Marcin Wojtas | ac5f0f3 | 2016-04-29 09:49:07 +0200 | [diff] [blame] | 1204 | static void |
| 1205 | mv_xor_conf_mbus_windows_a3700(struct mv_xor_device *xordev) |
| 1206 | { |
| 1207 | void __iomem *base = xordev->xor_high_base; |
| 1208 | u32 win_enable = 0; |
| 1209 | int i; |
| 1210 | |
| 1211 | for (i = 0; i < 8; i++) { |
| 1212 | writel(0, base + WINDOW_BASE(i)); |
| 1213 | writel(0, base + WINDOW_SIZE(i)); |
| 1214 | if (i < 4) |
| 1215 | writel(0, base + WINDOW_REMAP_HIGH(i)); |
| 1216 | } |
| 1217 | /* |
| 1218 | * For Armada3700 open default 4GB Mbus window. The dram |
| 1219 | * related configuration are done at AXIS level. |
| 1220 | */ |
| 1221 | writel(0xffff0000, base + WINDOW_SIZE(0)); |
| 1222 | win_enable |= 1; |
| 1223 | win_enable |= 3 << 16; |
| 1224 | |
| 1225 | writel(win_enable, base + WINDOW_BAR_ENABLE(0)); |
| 1226 | writel(win_enable, base + WINDOW_BAR_ENABLE(1)); |
| 1227 | writel(0, base + WINDOW_OVERRIDE_CTRL(0)); |
| 1228 | writel(0, base + WINDOW_OVERRIDE_CTRL(1)); |
| 1229 | } |
| 1230 | |
Thomas Petazzoni | 8b64843 | 2015-12-22 11:43:29 +0100 | [diff] [blame] | 1231 | /* |
| 1232 | * Since this XOR driver is basically used only for RAID5, we don't |
| 1233 | * need to care about synchronizing ->suspend with DMA activity, |
| 1234 | * because the DMA engine will naturally be quiet due to the block |
| 1235 | * devices being suspended. |
| 1236 | */ |
| 1237 | static int mv_xor_suspend(struct platform_device *pdev, pm_message_t state) |
| 1238 | { |
| 1239 | struct mv_xor_device *xordev = platform_get_drvdata(pdev); |
| 1240 | int i; |
| 1241 | |
| 1242 | for (i = 0; i < MV_XOR_MAX_CHANNELS; i++) { |
| 1243 | struct mv_xor_chan *mv_chan = xordev->channels[i]; |
| 1244 | |
| 1245 | if (!mv_chan) |
| 1246 | continue; |
| 1247 | |
| 1248 | mv_chan->saved_config_reg = |
| 1249 | readl_relaxed(XOR_CONFIG(mv_chan)); |
| 1250 | mv_chan->saved_int_mask_reg = |
| 1251 | readl_relaxed(XOR_INTR_MASK(mv_chan)); |
| 1252 | } |
| 1253 | |
| 1254 | return 0; |
| 1255 | } |
| 1256 | |
| 1257 | static int mv_xor_resume(struct platform_device *dev) |
| 1258 | { |
| 1259 | struct mv_xor_device *xordev = platform_get_drvdata(dev); |
| 1260 | const struct mbus_dram_target_info *dram; |
| 1261 | int i; |
| 1262 | |
| 1263 | for (i = 0; i < MV_XOR_MAX_CHANNELS; i++) { |
| 1264 | struct mv_xor_chan *mv_chan = xordev->channels[i]; |
| 1265 | |
| 1266 | if (!mv_chan) |
| 1267 | continue; |
| 1268 | |
| 1269 | writel_relaxed(mv_chan->saved_config_reg, |
| 1270 | XOR_CONFIG(mv_chan)); |
| 1271 | writel_relaxed(mv_chan->saved_int_mask_reg, |
| 1272 | XOR_INTR_MASK(mv_chan)); |
| 1273 | } |
| 1274 | |
Marcin Wojtas | ac5f0f3 | 2016-04-29 09:49:07 +0200 | [diff] [blame] | 1275 | if (xordev->xor_type == XOR_ARMADA_37XX) { |
| 1276 | mv_xor_conf_mbus_windows_a3700(xordev); |
| 1277 | return 0; |
| 1278 | } |
| 1279 | |
Thomas Petazzoni | 8b64843 | 2015-12-22 11:43:29 +0100 | [diff] [blame] | 1280 | dram = mv_mbus_dram_info(); |
| 1281 | if (dram) |
| 1282 | mv_xor_conf_mbus_windows(xordev, dram); |
| 1283 | |
| 1284 | return 0; |
| 1285 | } |
| 1286 | |
Lior Amsalem | 6f16631 | 2015-05-26 15:07:34 +0200 | [diff] [blame] | 1287 | static const struct of_device_id mv_xor_dt_ids[] = { |
Gregory CLEMENT | dd130c6 | 2016-04-29 09:49:06 +0200 | [diff] [blame] | 1288 | { .compatible = "marvell,orion-xor", .data = (void *)XOR_ORION }, |
| 1289 | { .compatible = "marvell,armada-380-xor", .data = (void *)XOR_ARMADA_38X }, |
Marcin Wojtas | ac5f0f3 | 2016-04-29 09:49:07 +0200 | [diff] [blame] | 1290 | { .compatible = "marvell,armada-3700-xor", .data = (void *)XOR_ARMADA_37XX }, |
Lior Amsalem | 6f16631 | 2015-05-26 15:07:34 +0200 | [diff] [blame] | 1291 | {}, |
| 1292 | }; |
Lior Amsalem | 6f16631 | 2015-05-26 15:07:34 +0200 | [diff] [blame] | 1293 | |
Thomas Petazzoni | 7775729 | 2015-07-08 16:28:19 +0200 | [diff] [blame] | 1294 | static unsigned int mv_xor_engine_count; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1295 | |
Linus Torvalds | c271433 | 2012-12-14 14:54:26 -0800 | [diff] [blame] | 1296 | static int mv_xor_probe(struct platform_device *pdev) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1297 | { |
Andrew Lunn | 63a9332 | 2011-12-07 21:48:07 +0100 | [diff] [blame] | 1298 | const struct mbus_dram_target_info *dram; |
Thomas Petazzoni | 297eedb | 2012-11-15 15:29:53 +0100 | [diff] [blame] | 1299 | struct mv_xor_device *xordev; |
Jingoo Han | d4adcc0 | 2013-07-30 17:09:11 +0900 | [diff] [blame] | 1300 | struct mv_xor_platform_data *pdata = dev_get_platdata(&pdev->dev); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1301 | struct resource *res; |
Thomas Petazzoni | 7775729 | 2015-07-08 16:28:19 +0200 | [diff] [blame] | 1302 | unsigned int max_engines, max_channels; |
Thomas Petazzoni | 60d151f | 2012-10-29 16:54:49 +0100 | [diff] [blame] | 1303 | int i, ret; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1304 | |
Joe Perches | 1ba151c | 2012-10-28 01:05:44 -0700 | [diff] [blame] | 1305 | dev_notice(&pdev->dev, "Marvell shared XOR driver\n"); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1306 | |
Thomas Petazzoni | 297eedb | 2012-11-15 15:29:53 +0100 | [diff] [blame] | 1307 | xordev = devm_kzalloc(&pdev->dev, sizeof(*xordev), GFP_KERNEL); |
| 1308 | if (!xordev) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1309 | return -ENOMEM; |
| 1310 | |
| 1311 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1312 | if (!res) |
| 1313 | return -ENODEV; |
| 1314 | |
Thomas Petazzoni | 297eedb | 2012-11-15 15:29:53 +0100 | [diff] [blame] | 1315 | xordev->xor_base = devm_ioremap(&pdev->dev, res->start, |
| 1316 | resource_size(res)); |
| 1317 | if (!xordev->xor_base) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1318 | return -EBUSY; |
| 1319 | |
| 1320 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
| 1321 | if (!res) |
| 1322 | return -ENODEV; |
| 1323 | |
Thomas Petazzoni | 297eedb | 2012-11-15 15:29:53 +0100 | [diff] [blame] | 1324 | xordev->xor_high_base = devm_ioremap(&pdev->dev, res->start, |
| 1325 | resource_size(res)); |
| 1326 | if (!xordev->xor_high_base) |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1327 | return -EBUSY; |
| 1328 | |
Thomas Petazzoni | 297eedb | 2012-11-15 15:29:53 +0100 | [diff] [blame] | 1329 | platform_set_drvdata(pdev, xordev); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1330 | |
Gregory CLEMENT | dd130c6 | 2016-04-29 09:49:06 +0200 | [diff] [blame] | 1331 | |
| 1332 | /* |
| 1333 | * We need to know which type of XOR device we use before |
| 1334 | * setting up. In non-dt case it can only be the legacy one. |
| 1335 | */ |
| 1336 | xordev->xor_type = XOR_ORION; |
| 1337 | if (pdev->dev.of_node) { |
| 1338 | const struct of_device_id *of_id = |
| 1339 | of_match_device(mv_xor_dt_ids, |
| 1340 | &pdev->dev); |
| 1341 | |
| 1342 | xordev->xor_type = (uintptr_t)of_id->data; |
| 1343 | } |
| 1344 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1345 | /* |
| 1346 | * (Re-)program MBUS remapping windows if we are asked to. |
| 1347 | */ |
Marcin Wojtas | ac5f0f3 | 2016-04-29 09:49:07 +0200 | [diff] [blame] | 1348 | if (xordev->xor_type == XOR_ARMADA_37XX) { |
| 1349 | mv_xor_conf_mbus_windows_a3700(xordev); |
| 1350 | } else { |
| 1351 | dram = mv_mbus_dram_info(); |
| 1352 | if (dram) |
| 1353 | mv_xor_conf_mbus_windows(xordev, dram); |
| 1354 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1355 | |
Andrew Lunn | c510182 | 2012-02-19 13:30:26 +0100 | [diff] [blame] | 1356 | /* Not all platforms can gate the clock, so it is not |
| 1357 | * an error if the clock does not exists. |
| 1358 | */ |
Thomas Petazzoni | 297eedb | 2012-11-15 15:29:53 +0100 | [diff] [blame] | 1359 | xordev->clk = clk_get(&pdev->dev, NULL); |
| 1360 | if (!IS_ERR(xordev->clk)) |
| 1361 | clk_prepare_enable(xordev->clk); |
Andrew Lunn | c510182 | 2012-02-19 13:30:26 +0100 | [diff] [blame] | 1362 | |
Thomas Petazzoni | 7775729 | 2015-07-08 16:28:19 +0200 | [diff] [blame] | 1363 | /* |
| 1364 | * We don't want to have more than one channel per CPU in |
| 1365 | * order for async_tx to perform well. So we limit the number |
| 1366 | * of engines and channels so that we take into account this |
| 1367 | * constraint. Note that we also want to use channels from |
Marcin Wojtas | ac5f0f3 | 2016-04-29 09:49:07 +0200 | [diff] [blame] | 1368 | * separate engines when possible. For dual-CPU Armada 3700 |
| 1369 | * SoC with single XOR engine allow using its both channels. |
Thomas Petazzoni | 7775729 | 2015-07-08 16:28:19 +0200 | [diff] [blame] | 1370 | */ |
| 1371 | max_engines = num_present_cpus(); |
Marcin Wojtas | ac5f0f3 | 2016-04-29 09:49:07 +0200 | [diff] [blame] | 1372 | if (xordev->xor_type == XOR_ARMADA_37XX) |
| 1373 | max_channels = num_present_cpus(); |
| 1374 | else |
| 1375 | max_channels = min_t(unsigned int, |
| 1376 | MV_XOR_MAX_CHANNELS, |
| 1377 | DIV_ROUND_UP(num_present_cpus(), 2)); |
Thomas Petazzoni | 7775729 | 2015-07-08 16:28:19 +0200 | [diff] [blame] | 1378 | |
| 1379 | if (mv_xor_engine_count >= max_engines) |
| 1380 | return 0; |
| 1381 | |
Thomas Petazzoni | f7d12ef | 2012-11-15 16:47:58 +0100 | [diff] [blame] | 1382 | if (pdev->dev.of_node) { |
| 1383 | struct device_node *np; |
| 1384 | int i = 0; |
| 1385 | |
| 1386 | for_each_child_of_node(pdev->dev.of_node, np) { |
Russell King | 0be8253 | 2013-12-12 23:59:08 +0000 | [diff] [blame] | 1387 | struct mv_xor_chan *chan; |
Thomas Petazzoni | f7d12ef | 2012-11-15 16:47:58 +0100 | [diff] [blame] | 1388 | dma_cap_mask_t cap_mask; |
| 1389 | int irq; |
| 1390 | |
Thomas Petazzoni | 7775729 | 2015-07-08 16:28:19 +0200 | [diff] [blame] | 1391 | if (i >= max_channels) |
| 1392 | continue; |
| 1393 | |
Thomas Petazzoni | f7d12ef | 2012-11-15 16:47:58 +0100 | [diff] [blame] | 1394 | dma_cap_zero(cap_mask); |
Thomas Petazzoni | 6d8f7ab | 2015-07-08 16:28:16 +0200 | [diff] [blame] | 1395 | dma_cap_set(DMA_MEMCPY, cap_mask); |
| 1396 | dma_cap_set(DMA_XOR, cap_mask); |
| 1397 | dma_cap_set(DMA_INTERRUPT, cap_mask); |
Thomas Petazzoni | f7d12ef | 2012-11-15 16:47:58 +0100 | [diff] [blame] | 1398 | |
| 1399 | irq = irq_of_parse_and_map(np, 0); |
Thomas Petazzoni | f8eb9e7 | 2012-11-22 18:22:12 +0100 | [diff] [blame] | 1400 | if (!irq) { |
| 1401 | ret = -ENODEV; |
Thomas Petazzoni | f7d12ef | 2012-11-15 16:47:58 +0100 | [diff] [blame] | 1402 | goto err_channel_add; |
| 1403 | } |
| 1404 | |
Russell King | 0be8253 | 2013-12-12 23:59:08 +0000 | [diff] [blame] | 1405 | chan = mv_xor_channel_add(xordev, pdev, i, |
Gregory CLEMENT | dd130c6 | 2016-04-29 09:49:06 +0200 | [diff] [blame] | 1406 | cap_mask, irq); |
Russell King | 0be8253 | 2013-12-12 23:59:08 +0000 | [diff] [blame] | 1407 | if (IS_ERR(chan)) { |
| 1408 | ret = PTR_ERR(chan); |
Thomas Petazzoni | f7d12ef | 2012-11-15 16:47:58 +0100 | [diff] [blame] | 1409 | irq_dispose_mapping(irq); |
| 1410 | goto err_channel_add; |
| 1411 | } |
| 1412 | |
Russell King | 0be8253 | 2013-12-12 23:59:08 +0000 | [diff] [blame] | 1413 | xordev->channels[i] = chan; |
Thomas Petazzoni | f7d12ef | 2012-11-15 16:47:58 +0100 | [diff] [blame] | 1414 | i++; |
| 1415 | } |
| 1416 | } else if (pdata && pdata->channels) { |
Thomas Petazzoni | 7775729 | 2015-07-08 16:28:19 +0200 | [diff] [blame] | 1417 | for (i = 0; i < max_channels; i++) { |
Thomas Petazzoni | e39f6ec | 2012-10-30 11:56:26 +0100 | [diff] [blame] | 1418 | struct mv_xor_channel_data *cd; |
Russell King | 0be8253 | 2013-12-12 23:59:08 +0000 | [diff] [blame] | 1419 | struct mv_xor_chan *chan; |
Thomas Petazzoni | 60d151f | 2012-10-29 16:54:49 +0100 | [diff] [blame] | 1420 | int irq; |
| 1421 | |
| 1422 | cd = &pdata->channels[i]; |
Thomas Petazzoni | 60d151f | 2012-10-29 16:54:49 +0100 | [diff] [blame] | 1423 | irq = platform_get_irq(pdev, i); |
| 1424 | if (irq < 0) { |
| 1425 | ret = irq; |
| 1426 | goto err_channel_add; |
| 1427 | } |
| 1428 | |
Russell King | 0be8253 | 2013-12-12 23:59:08 +0000 | [diff] [blame] | 1429 | chan = mv_xor_channel_add(xordev, pdev, i, |
Gregory CLEMENT | dd130c6 | 2016-04-29 09:49:06 +0200 | [diff] [blame] | 1430 | cd->cap_mask, irq); |
Russell King | 0be8253 | 2013-12-12 23:59:08 +0000 | [diff] [blame] | 1431 | if (IS_ERR(chan)) { |
| 1432 | ret = PTR_ERR(chan); |
Thomas Petazzoni | 60d151f | 2012-10-29 16:54:49 +0100 | [diff] [blame] | 1433 | goto err_channel_add; |
| 1434 | } |
Russell King | 0be8253 | 2013-12-12 23:59:08 +0000 | [diff] [blame] | 1435 | |
| 1436 | xordev->channels[i] = chan; |
Thomas Petazzoni | 60d151f | 2012-10-29 16:54:49 +0100 | [diff] [blame] | 1437 | } |
| 1438 | } |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1439 | |
| 1440 | return 0; |
Thomas Petazzoni | 60d151f | 2012-10-29 16:54:49 +0100 | [diff] [blame] | 1441 | |
| 1442 | err_channel_add: |
| 1443 | for (i = 0; i < MV_XOR_MAX_CHANNELS; i++) |
Thomas Petazzoni | f7d12ef | 2012-11-15 16:47:58 +0100 | [diff] [blame] | 1444 | if (xordev->channels[i]) { |
Thomas Petazzoni | ab6e439 | 2013-01-06 11:10:43 +0100 | [diff] [blame] | 1445 | mv_xor_channel_remove(xordev->channels[i]); |
Thomas Petazzoni | f7d12ef | 2012-11-15 16:47:58 +0100 | [diff] [blame] | 1446 | if (pdev->dev.of_node) |
| 1447 | irq_dispose_mapping(xordev->channels[i]->irq); |
Thomas Petazzoni | f7d12ef | 2012-11-15 16:47:58 +0100 | [diff] [blame] | 1448 | } |
Thomas Petazzoni | 60d151f | 2012-10-29 16:54:49 +0100 | [diff] [blame] | 1449 | |
Thomas Petazzoni | dab9206 | 2013-01-06 11:10:44 +0100 | [diff] [blame] | 1450 | if (!IS_ERR(xordev->clk)) { |
| 1451 | clk_disable_unprepare(xordev->clk); |
| 1452 | clk_put(xordev->clk); |
| 1453 | } |
| 1454 | |
Thomas Petazzoni | 60d151f | 2012-10-29 16:54:49 +0100 | [diff] [blame] | 1455 | return ret; |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1456 | } |
| 1457 | |
Thomas Petazzoni | 6197165 | 2012-10-30 12:05:40 +0100 | [diff] [blame] | 1458 | static struct platform_driver mv_xor_driver = { |
| 1459 | .probe = mv_xor_probe, |
Thomas Petazzoni | 8b64843 | 2015-12-22 11:43:29 +0100 | [diff] [blame] | 1460 | .suspend = mv_xor_suspend, |
| 1461 | .resume = mv_xor_resume, |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1462 | .driver = { |
Thomas Petazzoni | f7d12ef | 2012-11-15 16:47:58 +0100 | [diff] [blame] | 1463 | .name = MV_XOR_NAME, |
| 1464 | .of_match_table = of_match_ptr(mv_xor_dt_ids), |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1465 | }, |
| 1466 | }; |
| 1467 | |
Geliang Tang | 812608d | 2016-11-18 22:12:26 +0800 | [diff] [blame] | 1468 | builtin_platform_driver(mv_xor_driver); |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1469 | |
Paul Gortmaker | 25cf68d | 2015-08-21 16:27:49 -0400 | [diff] [blame] | 1470 | /* |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 1471 | MODULE_AUTHOR("Saeed Bishara <saeed@marvell.com>"); |
| 1472 | MODULE_DESCRIPTION("DMA engine driver for Marvell's XOR engine"); |
| 1473 | MODULE_LICENSE("GPL"); |
Paul Gortmaker | 25cf68d | 2015-08-21 16:27:49 -0400 | [diff] [blame] | 1474 | */ |