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