Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Intel I/OAT DMA Linux driver |
| 3 | * Copyright(c) 2004 - 2009 Intel Corporation. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms and conditions of the GNU General Public License, |
| 7 | * version 2, as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along with |
| 15 | * this program; if not, write to the Free Software Foundation, Inc., |
| 16 | * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 17 | * |
| 18 | * The full GNU General Public License is included in this distribution in |
| 19 | * the file called "COPYING". |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | /* |
| 24 | * This driver supports an Intel I/OAT DMA engine (versions >= 2), which |
| 25 | * does asynchronous data movement and checksumming operations. |
| 26 | */ |
| 27 | |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 31 | #include <linux/pci.h> |
| 32 | #include <linux/interrupt.h> |
| 33 | #include <linux/dmaengine.h> |
| 34 | #include <linux/delay.h> |
| 35 | #include <linux/dma-mapping.h> |
| 36 | #include <linux/workqueue.h> |
Paul Gortmaker | 70c7160 | 2011-05-22 16:47:17 -0400 | [diff] [blame^] | 37 | #include <linux/prefetch.h> |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 38 | #include <linux/i7300_idle.h> |
| 39 | #include "dma.h" |
| 40 | #include "dma_v2.h" |
| 41 | #include "registers.h" |
| 42 | #include "hw.h" |
| 43 | |
Dan Williams | bf40a68 | 2009-09-08 17:42:55 -0700 | [diff] [blame] | 44 | int ioat_ring_alloc_order = 8; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 45 | module_param(ioat_ring_alloc_order, int, 0644); |
| 46 | MODULE_PARM_DESC(ioat_ring_alloc_order, |
Dan Williams | 376ec37 | 2009-09-16 15:16:50 -0700 | [diff] [blame] | 47 | "ioat2+: allocate 2^n descriptors per channel" |
| 48 | " (default: 8 max: 16)"); |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 49 | static int ioat_ring_max_alloc_order = IOAT_MAX_ORDER; |
| 50 | module_param(ioat_ring_max_alloc_order, int, 0644); |
| 51 | MODULE_PARM_DESC(ioat_ring_max_alloc_order, |
Dan Williams | 376ec37 | 2009-09-16 15:16:50 -0700 | [diff] [blame] | 52 | "ioat2+: upper limit for ring size (default: 16)"); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 53 | |
Dan Williams | b094ad3 | 2009-09-08 17:42:57 -0700 | [diff] [blame] | 54 | void __ioat2_issue_pending(struct ioat2_dma_chan *ioat) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 55 | { |
Dan Williams | 281befa | 2010-03-03 11:47:43 -0700 | [diff] [blame] | 56 | struct ioat_chan_common *chan = &ioat->base; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 57 | |
Dan Williams | 376ec37 | 2009-09-16 15:16:50 -0700 | [diff] [blame] | 58 | ioat->dmacount += ioat2_ring_pending(ioat); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 59 | ioat->issued = ioat->head; |
Dan Williams | 281befa | 2010-03-03 11:47:43 -0700 | [diff] [blame] | 60 | writew(ioat->dmacount, chan->reg_base + IOAT_CHAN_DMACOUNT_OFFSET); |
| 61 | dev_dbg(to_dev(chan), |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 62 | "%s: head: %#x tail: %#x issued: %#x count: %#x\n", |
| 63 | __func__, ioat->head, ioat->tail, ioat->issued, ioat->dmacount); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 64 | } |
| 65 | |
Dan Williams | 281befa | 2010-03-03 11:47:43 -0700 | [diff] [blame] | 66 | void ioat2_issue_pending(struct dma_chan *c) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 67 | { |
Dan Williams | 281befa | 2010-03-03 11:47:43 -0700 | [diff] [blame] | 68 | struct ioat2_dma_chan *ioat = to_ioat2_chan(c); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 69 | |
Dan Williams | 281befa | 2010-03-03 11:47:43 -0700 | [diff] [blame] | 70 | if (ioat2_ring_pending(ioat)) { |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 71 | spin_lock_bh(&ioat->prep_lock); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 72 | __ioat2_issue_pending(ioat); |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 73 | spin_unlock_bh(&ioat->prep_lock); |
Dan Williams | 281befa | 2010-03-03 11:47:43 -0700 | [diff] [blame] | 74 | } |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | /** |
| 78 | * ioat2_update_pending - log pending descriptors |
| 79 | * @ioat: ioat2+ channel |
| 80 | * |
Dan Williams | 281befa | 2010-03-03 11:47:43 -0700 | [diff] [blame] | 81 | * Check if the number of unsubmitted descriptors has exceeded the |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 82 | * watermark. Called with prep_lock held |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 83 | */ |
| 84 | static void ioat2_update_pending(struct ioat2_dma_chan *ioat) |
| 85 | { |
Dan Williams | 281befa | 2010-03-03 11:47:43 -0700 | [diff] [blame] | 86 | if (ioat2_ring_pending(ioat) > ioat_pending_level) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 87 | __ioat2_issue_pending(ioat); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | static void __ioat2_start_null_desc(struct ioat2_dma_chan *ioat) |
| 91 | { |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 92 | struct ioat_ring_ent *desc; |
| 93 | struct ioat_dma_descriptor *hw; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 94 | |
| 95 | if (ioat2_ring_space(ioat) < 1) { |
| 96 | dev_err(to_dev(&ioat->base), |
| 97 | "Unable to start null desc - ring full\n"); |
| 98 | return; |
| 99 | } |
| 100 | |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 101 | dev_dbg(to_dev(&ioat->base), "%s: head: %#x tail: %#x issued: %#x\n", |
| 102 | __func__, ioat->head, ioat->tail, ioat->issued); |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 103 | desc = ioat2_get_ring_ent(ioat, ioat->head); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 104 | |
| 105 | hw = desc->hw; |
| 106 | hw->ctl = 0; |
| 107 | hw->ctl_f.null = 1; |
| 108 | hw->ctl_f.int_en = 1; |
| 109 | hw->ctl_f.compl_write = 1; |
| 110 | /* set size to non-zero value (channel returns error when size is 0) */ |
| 111 | hw->size = NULL_DESC_BUFFER_SIZE; |
| 112 | hw->src_addr = 0; |
| 113 | hw->dst_addr = 0; |
| 114 | async_tx_ack(&desc->txd); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 115 | ioat2_set_chainaddr(ioat, desc->txd.phys); |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 116 | dump_desc_dbg(ioat, desc); |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 117 | wmb(); |
| 118 | ioat->head += 1; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 119 | __ioat2_issue_pending(ioat); |
| 120 | } |
| 121 | |
| 122 | static void ioat2_start_null_desc(struct ioat2_dma_chan *ioat) |
| 123 | { |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 124 | spin_lock_bh(&ioat->prep_lock); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 125 | __ioat2_start_null_desc(ioat); |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 126 | spin_unlock_bh(&ioat->prep_lock); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 127 | } |
| 128 | |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 129 | static void __cleanup(struct ioat2_dma_chan *ioat, unsigned long phys_complete) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 130 | { |
| 131 | struct ioat_chan_common *chan = &ioat->base; |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 132 | struct dma_async_tx_descriptor *tx; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 133 | struct ioat_ring_ent *desc; |
| 134 | bool seen_current = false; |
| 135 | u16 active; |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 136 | int idx = ioat->tail, i; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 137 | |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 138 | dev_dbg(to_dev(chan), "%s: head: %#x tail: %#x issued: %#x\n", |
| 139 | __func__, ioat->head, ioat->tail, ioat->issued); |
| 140 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 141 | active = ioat2_ring_active(ioat); |
| 142 | for (i = 0; i < active && !seen_current; i++) { |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 143 | smp_read_barrier_depends(); |
| 144 | prefetch(ioat2_get_ring_ent(ioat, idx + i + 1)); |
| 145 | desc = ioat2_get_ring_ent(ioat, idx + i); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 146 | tx = &desc->txd; |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 147 | dump_desc_dbg(ioat, desc); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 148 | if (tx->cookie) { |
| 149 | ioat_dma_unmap(chan, tx->flags, desc->len, desc->hw); |
| 150 | chan->completed_cookie = tx->cookie; |
| 151 | tx->cookie = 0; |
| 152 | if (tx->callback) { |
| 153 | tx->callback(tx->callback_param); |
| 154 | tx->callback = NULL; |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | if (tx->phys == phys_complete) |
| 159 | seen_current = true; |
| 160 | } |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 161 | smp_mb(); /* finish all descriptor reads before incrementing tail */ |
| 162 | ioat->tail = idx + i; |
Dan Williams | aa75db0 | 2010-03-03 21:21:10 -0700 | [diff] [blame] | 163 | BUG_ON(active && !seen_current); /* no active descs have written a completion? */ |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 164 | |
| 165 | chan->last_completion = phys_complete; |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 166 | if (active - i == 0) { |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 167 | dev_dbg(to_dev(chan), "%s: cancel completion timeout\n", |
| 168 | __func__); |
| 169 | clear_bit(IOAT_COMPLETION_PENDING, &chan->state); |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 170 | mod_timer(&chan->timer, jiffies + IDLE_TIMEOUT); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 171 | } |
| 172 | } |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 173 | |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 174 | /** |
| 175 | * ioat2_cleanup - clean finished descriptors (advance tail pointer) |
| 176 | * @chan: ioat channel to be cleaned up |
| 177 | */ |
| 178 | static void ioat2_cleanup(struct ioat2_dma_chan *ioat) |
| 179 | { |
| 180 | struct ioat_chan_common *chan = &ioat->base; |
| 181 | unsigned long phys_complete; |
| 182 | |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 183 | spin_lock_bh(&chan->cleanup_lock); |
| 184 | if (ioat_cleanup_preamble(chan, &phys_complete)) |
| 185 | __cleanup(ioat, phys_complete); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 186 | spin_unlock_bh(&chan->cleanup_lock); |
| 187 | } |
| 188 | |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 189 | void ioat2_cleanup_event(unsigned long data) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 190 | { |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 191 | struct ioat2_dma_chan *ioat = to_ioat2_chan((void *) data); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 192 | |
| 193 | ioat2_cleanup(ioat); |
Dan Williams | f6ab95b | 2009-09-08 12:01:21 -0700 | [diff] [blame] | 194 | writew(IOAT_CHANCTRL_RUN, ioat->base.reg_base + IOAT_CHANCTRL_OFFSET); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Dan Williams | bf40a68 | 2009-09-08 17:42:55 -0700 | [diff] [blame] | 197 | void __ioat2_restart_chan(struct ioat2_dma_chan *ioat) |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 198 | { |
| 199 | struct ioat_chan_common *chan = &ioat->base; |
| 200 | |
| 201 | /* set the tail to be re-issued */ |
| 202 | ioat->issued = ioat->tail; |
| 203 | ioat->dmacount = 0; |
| 204 | set_bit(IOAT_COMPLETION_PENDING, &chan->state); |
| 205 | mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT); |
| 206 | |
| 207 | dev_dbg(to_dev(chan), |
| 208 | "%s: head: %#x tail: %#x issued: %#x count: %#x\n", |
| 209 | __func__, ioat->head, ioat->tail, ioat->issued, ioat->dmacount); |
| 210 | |
| 211 | if (ioat2_ring_pending(ioat)) { |
| 212 | struct ioat_ring_ent *desc; |
| 213 | |
| 214 | desc = ioat2_get_ring_ent(ioat, ioat->tail); |
| 215 | ioat2_set_chainaddr(ioat, desc->txd.phys); |
| 216 | __ioat2_issue_pending(ioat); |
| 217 | } else |
| 218 | __ioat2_start_null_desc(ioat); |
| 219 | } |
| 220 | |
Dan Williams | a6d52d7 | 2009-12-19 15:36:02 -0700 | [diff] [blame] | 221 | int ioat2_quiesce(struct ioat_chan_common *chan, unsigned long tmo) |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 222 | { |
Dan Williams | a6d52d7 | 2009-12-19 15:36:02 -0700 | [diff] [blame] | 223 | unsigned long end = jiffies + tmo; |
| 224 | int err = 0; |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 225 | u32 status; |
| 226 | |
| 227 | status = ioat_chansts(chan); |
| 228 | if (is_ioat_active(status) || is_ioat_idle(status)) |
| 229 | ioat_suspend(chan); |
| 230 | while (is_ioat_active(status) || is_ioat_idle(status)) { |
Dan Williams | 7e55a70c | 2010-01-13 13:33:12 -0700 | [diff] [blame] | 231 | if (tmo && time_after(jiffies, end)) { |
Dan Williams | a6d52d7 | 2009-12-19 15:36:02 -0700 | [diff] [blame] | 232 | err = -ETIMEDOUT; |
| 233 | break; |
| 234 | } |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 235 | status = ioat_chansts(chan); |
| 236 | cpu_relax(); |
| 237 | } |
| 238 | |
Dan Williams | a6d52d7 | 2009-12-19 15:36:02 -0700 | [diff] [blame] | 239 | return err; |
| 240 | } |
| 241 | |
| 242 | int ioat2_reset_sync(struct ioat_chan_common *chan, unsigned long tmo) |
| 243 | { |
| 244 | unsigned long end = jiffies + tmo; |
| 245 | int err = 0; |
| 246 | |
| 247 | ioat_reset(chan); |
| 248 | while (ioat_reset_pending(chan)) { |
| 249 | if (end && time_after(jiffies, end)) { |
| 250 | err = -ETIMEDOUT; |
| 251 | break; |
| 252 | } |
| 253 | cpu_relax(); |
| 254 | } |
| 255 | |
| 256 | return err; |
| 257 | } |
| 258 | |
| 259 | static void ioat2_restart_channel(struct ioat2_dma_chan *ioat) |
| 260 | { |
| 261 | struct ioat_chan_common *chan = &ioat->base; |
| 262 | unsigned long phys_complete; |
| 263 | |
| 264 | ioat2_quiesce(chan, 0); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 265 | if (ioat_cleanup_preamble(chan, &phys_complete)) |
| 266 | __cleanup(ioat, phys_complete); |
| 267 | |
Dan Williams | bf40a68 | 2009-09-08 17:42:55 -0700 | [diff] [blame] | 268 | __ioat2_restart_chan(ioat); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 269 | } |
| 270 | |
Dan Williams | e323271 | 2009-09-08 17:43:02 -0700 | [diff] [blame] | 271 | void ioat2_timer_event(unsigned long data) |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 272 | { |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 273 | struct ioat2_dma_chan *ioat = to_ioat2_chan((void *) data); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 274 | struct ioat_chan_common *chan = &ioat->base; |
| 275 | |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 276 | if (test_bit(IOAT_COMPLETION_PENDING, &chan->state)) { |
| 277 | unsigned long phys_complete; |
| 278 | u64 status; |
| 279 | |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 280 | status = ioat_chansts(chan); |
| 281 | |
| 282 | /* when halted due to errors check for channel |
| 283 | * programming errors before advancing the completion state |
| 284 | */ |
| 285 | if (is_ioat_halted(status)) { |
| 286 | u32 chanerr; |
| 287 | |
| 288 | chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET); |
Dan Williams | b57014d | 2009-11-19 17:10:07 -0700 | [diff] [blame] | 289 | dev_err(to_dev(chan), "%s: Channel halted (%x)\n", |
| 290 | __func__, chanerr); |
Dan Williams | 556ab45 | 2010-07-23 15:47:56 -0700 | [diff] [blame] | 291 | if (test_bit(IOAT_RUN, &chan->state)) |
| 292 | BUG_ON(is_ioat_bug(chanerr)); |
| 293 | else /* we never got off the ground */ |
| 294 | return; |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | /* if we haven't made progress and we have already |
| 298 | * acknowledged a pending completion once, then be more |
| 299 | * forceful with a restart |
| 300 | */ |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 301 | spin_lock_bh(&chan->cleanup_lock); |
| 302 | if (ioat_cleanup_preamble(chan, &phys_complete)) { |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 303 | __cleanup(ioat, phys_complete); |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 304 | } else if (test_bit(IOAT_COMPLETION_ACK, &chan->state)) { |
| 305 | spin_lock_bh(&ioat->prep_lock); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 306 | ioat2_restart_channel(ioat); |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 307 | spin_unlock_bh(&ioat->prep_lock); |
| 308 | } else { |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 309 | set_bit(IOAT_COMPLETION_ACK, &chan->state); |
| 310 | mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT); |
| 311 | } |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 312 | spin_unlock_bh(&chan->cleanup_lock); |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 313 | } else { |
| 314 | u16 active; |
| 315 | |
| 316 | /* if the ring is idle, empty, and oversized try to step |
| 317 | * down the size |
| 318 | */ |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 319 | spin_lock_bh(&chan->cleanup_lock); |
| 320 | spin_lock_bh(&ioat->prep_lock); |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 321 | active = ioat2_ring_active(ioat); |
| 322 | if (active == 0 && ioat->alloc_order > ioat_get_alloc_order()) |
| 323 | reshape_ring(ioat, ioat->alloc_order-1); |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 324 | spin_unlock_bh(&ioat->prep_lock); |
| 325 | spin_unlock_bh(&chan->cleanup_lock); |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 326 | |
| 327 | /* keep shrinking until we get back to our minimum |
| 328 | * default size |
| 329 | */ |
| 330 | if (ioat->alloc_order > ioat_get_alloc_order()) |
| 331 | mod_timer(&chan->timer, jiffies + IDLE_TIMEOUT); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 332 | } |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 333 | } |
| 334 | |
Dan Williams | a6d52d7 | 2009-12-19 15:36:02 -0700 | [diff] [blame] | 335 | static int ioat2_reset_hw(struct ioat_chan_common *chan) |
| 336 | { |
| 337 | /* throw away whatever the channel was doing and get it initialized */ |
| 338 | u32 chanerr; |
| 339 | |
| 340 | ioat2_quiesce(chan, msecs_to_jiffies(100)); |
| 341 | |
| 342 | chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET); |
| 343 | writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET); |
| 344 | |
| 345 | return ioat2_reset_sync(chan, msecs_to_jiffies(200)); |
| 346 | } |
| 347 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 348 | /** |
| 349 | * ioat2_enumerate_channels - find and initialize the device's channels |
| 350 | * @device: the device to be enumerated |
| 351 | */ |
Dan Williams | bf40a68 | 2009-09-08 17:42:55 -0700 | [diff] [blame] | 352 | int ioat2_enumerate_channels(struct ioatdma_device *device) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 353 | { |
| 354 | struct ioat2_dma_chan *ioat; |
| 355 | struct device *dev = &device->pdev->dev; |
| 356 | struct dma_device *dma = &device->common; |
| 357 | u8 xfercap_log; |
| 358 | int i; |
| 359 | |
| 360 | INIT_LIST_HEAD(&dma->channels); |
| 361 | dma->chancnt = readb(device->reg_base + IOAT_CHANCNT_OFFSET); |
Dan Williams | bb32078 | 2009-09-08 12:01:14 -0700 | [diff] [blame] | 362 | dma->chancnt &= 0x1f; /* bits [4:0] valid */ |
| 363 | if (dma->chancnt > ARRAY_SIZE(device->idx)) { |
| 364 | dev_warn(dev, "(%d) exceeds max supported channels (%zu)\n", |
| 365 | dma->chancnt, ARRAY_SIZE(device->idx)); |
| 366 | dma->chancnt = ARRAY_SIZE(device->idx); |
| 367 | } |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 368 | xfercap_log = readb(device->reg_base + IOAT_XFERCAP_OFFSET); |
Dan Williams | bb32078 | 2009-09-08 12:01:14 -0700 | [diff] [blame] | 369 | xfercap_log &= 0x1f; /* bits [4:0] valid */ |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 370 | if (xfercap_log == 0) |
| 371 | return 0; |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 372 | dev_dbg(dev, "%s: xfercap = %d\n", __func__, 1 << xfercap_log); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 373 | |
| 374 | /* FIXME which i/oat version is i7300? */ |
| 375 | #ifdef CONFIG_I7300_IDLE_IOAT_CHANNEL |
| 376 | if (i7300_idle_platform_probe(NULL, NULL, 1) == 0) |
| 377 | dma->chancnt--; |
| 378 | #endif |
| 379 | for (i = 0; i < dma->chancnt; i++) { |
| 380 | ioat = devm_kzalloc(dev, sizeof(*ioat), GFP_KERNEL); |
| 381 | if (!ioat) |
| 382 | break; |
| 383 | |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 384 | ioat_init_channel(device, &ioat->base, i); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 385 | ioat->xfercap_log = xfercap_log; |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 386 | spin_lock_init(&ioat->prep_lock); |
Dan Williams | a6d52d7 | 2009-12-19 15:36:02 -0700 | [diff] [blame] | 387 | if (device->reset_hw(&ioat->base)) { |
| 388 | i = 0; |
| 389 | break; |
| 390 | } |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 391 | } |
| 392 | dma->chancnt = i; |
| 393 | return i; |
| 394 | } |
| 395 | |
| 396 | static dma_cookie_t ioat2_tx_submit_unlock(struct dma_async_tx_descriptor *tx) |
| 397 | { |
| 398 | struct dma_chan *c = tx->chan; |
| 399 | struct ioat2_dma_chan *ioat = to_ioat2_chan(c); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 400 | struct ioat_chan_common *chan = &ioat->base; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 401 | dma_cookie_t cookie = c->cookie; |
| 402 | |
| 403 | cookie++; |
| 404 | if (cookie < 0) |
| 405 | cookie = 1; |
| 406 | tx->cookie = cookie; |
| 407 | c->cookie = cookie; |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 408 | dev_dbg(to_dev(&ioat->base), "%s: cookie: %d\n", __func__, cookie); |
| 409 | |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 410 | if (!test_and_set_bit(IOAT_COMPLETION_PENDING, &chan->state)) |
| 411 | mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT); |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 412 | |
| 413 | /* make descriptor updates visible before advancing ioat->head, |
| 414 | * this is purposefully not smp_wmb() since we are also |
| 415 | * publishing the descriptor updates to a dma device |
| 416 | */ |
| 417 | wmb(); |
| 418 | |
| 419 | ioat->head += ioat->produce; |
| 420 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 421 | ioat2_update_pending(ioat); |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 422 | spin_unlock_bh(&ioat->prep_lock); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 423 | |
| 424 | return cookie; |
| 425 | } |
| 426 | |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 427 | static struct ioat_ring_ent *ioat2_alloc_ring_ent(struct dma_chan *chan, gfp_t flags) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 428 | { |
| 429 | struct ioat_dma_descriptor *hw; |
| 430 | struct ioat_ring_ent *desc; |
| 431 | struct ioatdma_device *dma; |
| 432 | dma_addr_t phys; |
| 433 | |
| 434 | dma = to_ioatdma_device(chan->device); |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 435 | hw = pci_pool_alloc(dma->dma_pool, flags, &phys); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 436 | if (!hw) |
| 437 | return NULL; |
| 438 | memset(hw, 0, sizeof(*hw)); |
| 439 | |
Dan Williams | 162b96e | 2009-09-08 17:53:04 -0700 | [diff] [blame] | 440 | desc = kmem_cache_alloc(ioat2_cache, flags); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 441 | if (!desc) { |
| 442 | pci_pool_free(dma->dma_pool, hw, phys); |
| 443 | return NULL; |
| 444 | } |
Dan Williams | 162b96e | 2009-09-08 17:53:04 -0700 | [diff] [blame] | 445 | memset(desc, 0, sizeof(*desc)); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 446 | |
| 447 | dma_async_tx_descriptor_init(&desc->txd, chan); |
| 448 | desc->txd.tx_submit = ioat2_tx_submit_unlock; |
| 449 | desc->hw = hw; |
| 450 | desc->txd.phys = phys; |
| 451 | return desc; |
| 452 | } |
| 453 | |
| 454 | static void ioat2_free_ring_ent(struct ioat_ring_ent *desc, struct dma_chan *chan) |
| 455 | { |
| 456 | struct ioatdma_device *dma; |
| 457 | |
| 458 | dma = to_ioatdma_device(chan->device); |
| 459 | pci_pool_free(dma->dma_pool, desc->hw, desc->txd.phys); |
Dan Williams | 162b96e | 2009-09-08 17:53:04 -0700 | [diff] [blame] | 460 | kmem_cache_free(ioat2_cache, desc); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 461 | } |
| 462 | |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 463 | static struct ioat_ring_ent **ioat2_alloc_ring(struct dma_chan *c, int order, gfp_t flags) |
| 464 | { |
| 465 | struct ioat_ring_ent **ring; |
| 466 | int descs = 1 << order; |
| 467 | int i; |
| 468 | |
| 469 | if (order > ioat_get_max_alloc_order()) |
| 470 | return NULL; |
| 471 | |
| 472 | /* allocate the array to hold the software ring */ |
| 473 | ring = kcalloc(descs, sizeof(*ring), flags); |
| 474 | if (!ring) |
| 475 | return NULL; |
| 476 | for (i = 0; i < descs; i++) { |
| 477 | ring[i] = ioat2_alloc_ring_ent(c, flags); |
| 478 | if (!ring[i]) { |
| 479 | while (i--) |
| 480 | ioat2_free_ring_ent(ring[i], c); |
| 481 | kfree(ring); |
| 482 | return NULL; |
| 483 | } |
| 484 | set_desc_id(ring[i], i); |
| 485 | } |
| 486 | |
| 487 | /* link descs */ |
| 488 | for (i = 0; i < descs-1; i++) { |
| 489 | struct ioat_ring_ent *next = ring[i+1]; |
| 490 | struct ioat_dma_descriptor *hw = ring[i]->hw; |
| 491 | |
| 492 | hw->next = next->txd.phys; |
| 493 | } |
| 494 | ring[i]->hw->next = ring[0]->txd.phys; |
| 495 | |
| 496 | return ring; |
| 497 | } |
| 498 | |
Dan Williams | 556ab45 | 2010-07-23 15:47:56 -0700 | [diff] [blame] | 499 | void ioat2_free_chan_resources(struct dma_chan *c); |
| 500 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 501 | /* ioat2_alloc_chan_resources - allocate/initialize ioat2 descriptor ring |
| 502 | * @chan: channel to be initialized |
| 503 | */ |
Dan Williams | bf40a68 | 2009-09-08 17:42:55 -0700 | [diff] [blame] | 504 | int ioat2_alloc_chan_resources(struct dma_chan *c) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 505 | { |
| 506 | struct ioat2_dma_chan *ioat = to_ioat2_chan(c); |
| 507 | struct ioat_chan_common *chan = &ioat->base; |
| 508 | struct ioat_ring_ent **ring; |
Dan Williams | 556ab45 | 2010-07-23 15:47:56 -0700 | [diff] [blame] | 509 | u64 status; |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 510 | int order; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 511 | |
| 512 | /* have we already been set up? */ |
| 513 | if (ioat->ring) |
| 514 | return 1 << ioat->alloc_order; |
| 515 | |
| 516 | /* Setup register to interrupt and write completion status on error */ |
Dan Williams | f6ab95b | 2009-09-08 12:01:21 -0700 | [diff] [blame] | 517 | writew(IOAT_CHANCTRL_RUN, chan->reg_base + IOAT_CHANCTRL_OFFSET); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 518 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 519 | /* allocate a completion writeback area */ |
| 520 | /* doing 2 32bit writes to mmio since 1 64b write doesn't work */ |
Dan Williams | 4fb9b9e | 2009-09-08 12:01:04 -0700 | [diff] [blame] | 521 | chan->completion = pci_pool_alloc(chan->device->completion_pool, |
| 522 | GFP_KERNEL, &chan->completion_dma); |
| 523 | if (!chan->completion) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 524 | return -ENOMEM; |
| 525 | |
Dan Williams | 4fb9b9e | 2009-09-08 12:01:04 -0700 | [diff] [blame] | 526 | memset(chan->completion, 0, sizeof(*chan->completion)); |
| 527 | writel(((u64) chan->completion_dma) & 0x00000000FFFFFFFF, |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 528 | chan->reg_base + IOAT_CHANCMP_OFFSET_LOW); |
Dan Williams | 4fb9b9e | 2009-09-08 12:01:04 -0700 | [diff] [blame] | 529 | writel(((u64) chan->completion_dma) >> 32, |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 530 | chan->reg_base + IOAT_CHANCMP_OFFSET_HIGH); |
| 531 | |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 532 | order = ioat_get_alloc_order(); |
| 533 | ring = ioat2_alloc_ring(c, order, GFP_KERNEL); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 534 | if (!ring) |
| 535 | return -ENOMEM; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 536 | |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 537 | spin_lock_bh(&chan->cleanup_lock); |
| 538 | spin_lock_bh(&ioat->prep_lock); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 539 | ioat->ring = ring; |
| 540 | ioat->head = 0; |
| 541 | ioat->issued = 0; |
| 542 | ioat->tail = 0; |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 543 | ioat->alloc_order = order; |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 544 | spin_unlock_bh(&ioat->prep_lock); |
| 545 | spin_unlock_bh(&chan->cleanup_lock); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 546 | |
| 547 | tasklet_enable(&chan->cleanup_task); |
| 548 | ioat2_start_null_desc(ioat); |
| 549 | |
Dan Williams | 556ab45 | 2010-07-23 15:47:56 -0700 | [diff] [blame] | 550 | /* check that we got off the ground */ |
| 551 | udelay(5); |
| 552 | status = ioat_chansts(chan); |
| 553 | if (is_ioat_active(status) || is_ioat_idle(status)) { |
| 554 | set_bit(IOAT_RUN, &chan->state); |
| 555 | return 1 << ioat->alloc_order; |
| 556 | } else { |
| 557 | u32 chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET); |
| 558 | |
| 559 | dev_WARN(to_dev(chan), |
| 560 | "failed to start channel chanerr: %#x\n", chanerr); |
| 561 | ioat2_free_chan_resources(c); |
| 562 | return -EFAULT; |
| 563 | } |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 564 | } |
| 565 | |
Dan Williams | bf40a68 | 2009-09-08 17:42:55 -0700 | [diff] [blame] | 566 | bool reshape_ring(struct ioat2_dma_chan *ioat, int order) |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 567 | { |
| 568 | /* reshape differs from normal ring allocation in that we want |
| 569 | * to allocate a new software ring while only |
| 570 | * extending/truncating the hardware ring |
| 571 | */ |
| 572 | struct ioat_chan_common *chan = &ioat->base; |
| 573 | struct dma_chan *c = &chan->common; |
Dan Williams | abb12df | 2010-05-01 15:22:54 -0700 | [diff] [blame] | 574 | const u16 curr_size = ioat2_ring_size(ioat); |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 575 | const u16 active = ioat2_ring_active(ioat); |
| 576 | const u16 new_size = 1 << order; |
| 577 | struct ioat_ring_ent **ring; |
| 578 | u16 i; |
| 579 | |
| 580 | if (order > ioat_get_max_alloc_order()) |
| 581 | return false; |
| 582 | |
| 583 | /* double check that we have at least 1 free descriptor */ |
| 584 | if (active == curr_size) |
| 585 | return false; |
| 586 | |
| 587 | /* when shrinking, verify that we can hold the current active |
| 588 | * set in the new ring |
| 589 | */ |
| 590 | if (active >= new_size) |
| 591 | return false; |
| 592 | |
| 593 | /* allocate the array to hold the software ring */ |
| 594 | ring = kcalloc(new_size, sizeof(*ring), GFP_NOWAIT); |
| 595 | if (!ring) |
| 596 | return false; |
| 597 | |
| 598 | /* allocate/trim descriptors as needed */ |
| 599 | if (new_size > curr_size) { |
| 600 | /* copy current descriptors to the new ring */ |
| 601 | for (i = 0; i < curr_size; i++) { |
| 602 | u16 curr_idx = (ioat->tail+i) & (curr_size-1); |
| 603 | u16 new_idx = (ioat->tail+i) & (new_size-1); |
| 604 | |
| 605 | ring[new_idx] = ioat->ring[curr_idx]; |
| 606 | set_desc_id(ring[new_idx], new_idx); |
| 607 | } |
| 608 | |
| 609 | /* add new descriptors to the ring */ |
| 610 | for (i = curr_size; i < new_size; i++) { |
| 611 | u16 new_idx = (ioat->tail+i) & (new_size-1); |
| 612 | |
| 613 | ring[new_idx] = ioat2_alloc_ring_ent(c, GFP_NOWAIT); |
| 614 | if (!ring[new_idx]) { |
| 615 | while (i--) { |
| 616 | u16 new_idx = (ioat->tail+i) & (new_size-1); |
| 617 | |
| 618 | ioat2_free_ring_ent(ring[new_idx], c); |
| 619 | } |
| 620 | kfree(ring); |
| 621 | return false; |
| 622 | } |
| 623 | set_desc_id(ring[new_idx], new_idx); |
| 624 | } |
| 625 | |
| 626 | /* hw link new descriptors */ |
| 627 | for (i = curr_size-1; i < new_size; i++) { |
| 628 | u16 new_idx = (ioat->tail+i) & (new_size-1); |
| 629 | struct ioat_ring_ent *next = ring[(new_idx+1) & (new_size-1)]; |
| 630 | struct ioat_dma_descriptor *hw = ring[new_idx]->hw; |
| 631 | |
| 632 | hw->next = next->txd.phys; |
| 633 | } |
| 634 | } else { |
| 635 | struct ioat_dma_descriptor *hw; |
| 636 | struct ioat_ring_ent *next; |
| 637 | |
| 638 | /* copy current descriptors to the new ring, dropping the |
| 639 | * removed descriptors |
| 640 | */ |
| 641 | for (i = 0; i < new_size; i++) { |
| 642 | u16 curr_idx = (ioat->tail+i) & (curr_size-1); |
| 643 | u16 new_idx = (ioat->tail+i) & (new_size-1); |
| 644 | |
| 645 | ring[new_idx] = ioat->ring[curr_idx]; |
| 646 | set_desc_id(ring[new_idx], new_idx); |
| 647 | } |
| 648 | |
| 649 | /* free deleted descriptors */ |
| 650 | for (i = new_size; i < curr_size; i++) { |
| 651 | struct ioat_ring_ent *ent; |
| 652 | |
| 653 | ent = ioat2_get_ring_ent(ioat, ioat->tail+i); |
| 654 | ioat2_free_ring_ent(ent, c); |
| 655 | } |
| 656 | |
| 657 | /* fix up hardware ring */ |
| 658 | hw = ring[(ioat->tail+new_size-1) & (new_size-1)]->hw; |
| 659 | next = ring[(ioat->tail+new_size) & (new_size-1)]; |
| 660 | hw->next = next->txd.phys; |
| 661 | } |
| 662 | |
| 663 | dev_dbg(to_dev(chan), "%s: allocated %d descriptors\n", |
| 664 | __func__, new_size); |
| 665 | |
| 666 | kfree(ioat->ring); |
| 667 | ioat->ring = ring; |
| 668 | ioat->alloc_order = order; |
| 669 | |
| 670 | return true; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 671 | } |
| 672 | |
| 673 | /** |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 674 | * ioat2_check_space_lock - verify space and grab ring producer lock |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 675 | * @ioat: ioat2,3 channel (ring) to operate on |
| 676 | * @num_descs: allocation length |
| 677 | */ |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 678 | int ioat2_check_space_lock(struct ioat2_dma_chan *ioat, int num_descs) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 679 | { |
| 680 | struct ioat_chan_common *chan = &ioat->base; |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 681 | bool retry; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 682 | |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 683 | retry: |
| 684 | spin_lock_bh(&ioat->prep_lock); |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 685 | /* never allow the last descriptor to be consumed, we need at |
| 686 | * least one free at all times to allow for on-the-fly ring |
| 687 | * resizing. |
| 688 | */ |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 689 | if (likely(ioat2_ring_space(ioat) > num_descs)) { |
| 690 | dev_dbg(to_dev(chan), "%s: num_descs: %d (%x:%x:%x)\n", |
| 691 | __func__, num_descs, ioat->head, ioat->tail, ioat->issued); |
| 692 | ioat->produce = num_descs; |
| 693 | return 0; /* with ioat->prep_lock held */ |
| 694 | } |
| 695 | retry = test_and_set_bit(IOAT_RESHAPE_PENDING, &chan->state); |
| 696 | spin_unlock_bh(&ioat->prep_lock); |
Dan Williams | a309218 | 2009-09-08 12:02:01 -0700 | [diff] [blame] | 697 | |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 698 | /* is another cpu already trying to expand the ring? */ |
| 699 | if (retry) |
| 700 | goto retry; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 701 | |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 702 | spin_lock_bh(&chan->cleanup_lock); |
| 703 | spin_lock_bh(&ioat->prep_lock); |
| 704 | retry = reshape_ring(ioat, ioat->alloc_order + 1); |
| 705 | clear_bit(IOAT_RESHAPE_PENDING, &chan->state); |
| 706 | spin_unlock_bh(&ioat->prep_lock); |
| 707 | spin_unlock_bh(&chan->cleanup_lock); |
Dan Williams | bf40a68 | 2009-09-08 17:42:55 -0700 | [diff] [blame] | 708 | |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 709 | /* if we were able to expand the ring retry the allocation */ |
| 710 | if (retry) |
| 711 | goto retry; |
| 712 | |
| 713 | if (printk_ratelimit()) |
| 714 | dev_dbg(to_dev(chan), "%s: ring full! num_descs: %d (%x:%x:%x)\n", |
| 715 | __func__, num_descs, ioat->head, ioat->tail, ioat->issued); |
| 716 | |
| 717 | /* progress reclaim in the allocation failure case we may be |
| 718 | * called under bh_disabled so we need to trigger the timer |
| 719 | * event directly |
| 720 | */ |
| 721 | if (jiffies > chan->timer.expires && timer_pending(&chan->timer)) { |
| 722 | struct ioatdma_device *device = chan->device; |
| 723 | |
| 724 | mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT); |
| 725 | device->timer_fn((unsigned long) &chan->common); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 726 | } |
| 727 | |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 728 | return -ENOMEM; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 729 | } |
| 730 | |
Dan Williams | bf40a68 | 2009-09-08 17:42:55 -0700 | [diff] [blame] | 731 | struct dma_async_tx_descriptor * |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 732 | ioat2_dma_prep_memcpy_lock(struct dma_chan *c, dma_addr_t dma_dest, |
| 733 | dma_addr_t dma_src, size_t len, unsigned long flags) |
| 734 | { |
| 735 | struct ioat2_dma_chan *ioat = to_ioat2_chan(c); |
| 736 | struct ioat_dma_descriptor *hw; |
| 737 | struct ioat_ring_ent *desc; |
| 738 | dma_addr_t dst = dma_dest; |
| 739 | dma_addr_t src = dma_src; |
| 740 | size_t total_len = len; |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 741 | int num_descs, idx, i; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 742 | |
| 743 | num_descs = ioat2_xferlen_to_descs(ioat, len); |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 744 | if (likely(num_descs) && ioat2_check_space_lock(ioat, num_descs) == 0) |
| 745 | idx = ioat->head; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 746 | else |
| 747 | return NULL; |
Andrew Morton | f477f5b | 2009-09-21 09:17:58 -0700 | [diff] [blame] | 748 | i = 0; |
| 749 | do { |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 750 | size_t copy = min_t(size_t, len, 1 << ioat->xfercap_log); |
| 751 | |
| 752 | desc = ioat2_get_ring_ent(ioat, idx + i); |
| 753 | hw = desc->hw; |
| 754 | |
| 755 | hw->size = copy; |
| 756 | hw->ctl = 0; |
| 757 | hw->src_addr = src; |
| 758 | hw->dst_addr = dst; |
| 759 | |
| 760 | len -= copy; |
| 761 | dst += copy; |
| 762 | src += copy; |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 763 | dump_desc_dbg(ioat, desc); |
Andrew Morton | f477f5b | 2009-09-21 09:17:58 -0700 | [diff] [blame] | 764 | } while (++i < num_descs); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 765 | |
| 766 | desc->txd.flags = flags; |
| 767 | desc->len = total_len; |
| 768 | hw->ctl_f.int_en = !!(flags & DMA_PREP_INTERRUPT); |
Dan Williams | 128f2d5 | 2009-09-08 17:42:53 -0700 | [diff] [blame] | 769 | hw->ctl_f.fence = !!(flags & DMA_PREP_FENCE); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 770 | hw->ctl_f.compl_write = 1; |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 771 | dump_desc_dbg(ioat, desc); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 772 | /* we leave the channel locked to ensure in order submission */ |
| 773 | |
| 774 | return &desc->txd; |
| 775 | } |
| 776 | |
| 777 | /** |
| 778 | * ioat2_free_chan_resources - release all the descriptors |
| 779 | * @chan: the channel to be cleaned |
| 780 | */ |
Dan Williams | bf40a68 | 2009-09-08 17:42:55 -0700 | [diff] [blame] | 781 | void ioat2_free_chan_resources(struct dma_chan *c) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 782 | { |
| 783 | struct ioat2_dma_chan *ioat = to_ioat2_chan(c); |
| 784 | struct ioat_chan_common *chan = &ioat->base; |
Dan Williams | bf40a68 | 2009-09-08 17:42:55 -0700 | [diff] [blame] | 785 | struct ioatdma_device *device = chan->device; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 786 | struct ioat_ring_ent *desc; |
| 787 | const u16 total_descs = 1 << ioat->alloc_order; |
| 788 | int descs; |
| 789 | int i; |
| 790 | |
| 791 | /* Before freeing channel resources first check |
| 792 | * if they have been previously allocated for this channel. |
| 793 | */ |
| 794 | if (!ioat->ring) |
| 795 | return; |
| 796 | |
| 797 | tasklet_disable(&chan->cleanup_task); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 798 | del_timer_sync(&chan->timer); |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 799 | device->cleanup_fn((unsigned long) c); |
Dan Williams | a6d52d7 | 2009-12-19 15:36:02 -0700 | [diff] [blame] | 800 | device->reset_hw(chan); |
Dan Williams | 556ab45 | 2010-07-23 15:47:56 -0700 | [diff] [blame] | 801 | clear_bit(IOAT_RUN, &chan->state); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 802 | |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 803 | spin_lock_bh(&chan->cleanup_lock); |
| 804 | spin_lock_bh(&ioat->prep_lock); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 805 | descs = ioat2_ring_space(ioat); |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 806 | dev_dbg(to_dev(chan), "freeing %d idle descriptors\n", descs); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 807 | for (i = 0; i < descs; i++) { |
| 808 | desc = ioat2_get_ring_ent(ioat, ioat->head + i); |
| 809 | ioat2_free_ring_ent(desc, c); |
| 810 | } |
| 811 | |
| 812 | if (descs < total_descs) |
| 813 | dev_err(to_dev(chan), "Freeing %d in use descriptors!\n", |
| 814 | total_descs - descs); |
| 815 | |
| 816 | for (i = 0; i < total_descs - descs; i++) { |
| 817 | desc = ioat2_get_ring_ent(ioat, ioat->tail + i); |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 818 | dump_desc_dbg(ioat, desc); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 819 | ioat2_free_ring_ent(desc, c); |
| 820 | } |
| 821 | |
| 822 | kfree(ioat->ring); |
| 823 | ioat->ring = NULL; |
| 824 | ioat->alloc_order = 0; |
Dan Williams | bf40a68 | 2009-09-08 17:42:55 -0700 | [diff] [blame] | 825 | pci_pool_free(device->completion_pool, chan->completion, |
Dan Williams | 4fb9b9e | 2009-09-08 12:01:04 -0700 | [diff] [blame] | 826 | chan->completion_dma); |
Dan Williams | 074cc47 | 2010-05-01 15:22:55 -0700 | [diff] [blame] | 827 | spin_unlock_bh(&ioat->prep_lock); |
| 828 | spin_unlock_bh(&chan->cleanup_lock); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 829 | |
| 830 | chan->last_completion = 0; |
Dan Williams | 4fb9b9e | 2009-09-08 12:01:04 -0700 | [diff] [blame] | 831 | chan->completion_dma = 0; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 832 | ioat->dmacount = 0; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 833 | } |
| 834 | |
Dan Williams | 5669e31 | 2009-09-08 17:42:56 -0700 | [diff] [blame] | 835 | static ssize_t ring_size_show(struct dma_chan *c, char *page) |
| 836 | { |
| 837 | struct ioat2_dma_chan *ioat = to_ioat2_chan(c); |
| 838 | |
| 839 | return sprintf(page, "%d\n", (1 << ioat->alloc_order) & ~1); |
| 840 | } |
| 841 | static struct ioat_sysfs_entry ring_size_attr = __ATTR_RO(ring_size); |
| 842 | |
| 843 | static ssize_t ring_active_show(struct dma_chan *c, char *page) |
| 844 | { |
| 845 | struct ioat2_dma_chan *ioat = to_ioat2_chan(c); |
| 846 | |
| 847 | /* ...taken outside the lock, no need to be precise */ |
| 848 | return sprintf(page, "%d\n", ioat2_ring_active(ioat)); |
| 849 | } |
| 850 | static struct ioat_sysfs_entry ring_active_attr = __ATTR_RO(ring_active); |
| 851 | |
| 852 | static struct attribute *ioat2_attrs[] = { |
| 853 | &ring_size_attr.attr, |
| 854 | &ring_active_attr.attr, |
| 855 | &ioat_cap_attr.attr, |
| 856 | &ioat_version_attr.attr, |
| 857 | NULL, |
| 858 | }; |
| 859 | |
| 860 | struct kobj_type ioat2_ktype = { |
| 861 | .sysfs_ops = &ioat_sysfs_ops, |
| 862 | .default_attrs = ioat2_attrs, |
| 863 | }; |
| 864 | |
Dan Williams | 345d852 | 2009-09-08 12:01:30 -0700 | [diff] [blame] | 865 | int __devinit ioat2_dma_probe(struct ioatdma_device *device, int dca) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 866 | { |
| 867 | struct pci_dev *pdev = device->pdev; |
| 868 | struct dma_device *dma; |
| 869 | struct dma_chan *c; |
| 870 | struct ioat_chan_common *chan; |
| 871 | int err; |
| 872 | |
| 873 | device->enumerate_channels = ioat2_enumerate_channels; |
Dan Williams | a6d52d7 | 2009-12-19 15:36:02 -0700 | [diff] [blame] | 874 | device->reset_hw = ioat2_reset_hw; |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 875 | device->cleanup_fn = ioat2_cleanup_event; |
Dan Williams | bf40a68 | 2009-09-08 17:42:55 -0700 | [diff] [blame] | 876 | device->timer_fn = ioat2_timer_event; |
Dan Williams | 9de6fc7 | 2009-09-08 17:42:58 -0700 | [diff] [blame] | 877 | device->self_test = ioat_dma_self_test; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 878 | dma = &device->common; |
| 879 | dma->device_prep_dma_memcpy = ioat2_dma_prep_memcpy_lock; |
| 880 | dma->device_issue_pending = ioat2_issue_pending; |
| 881 | dma->device_alloc_chan_resources = ioat2_alloc_chan_resources; |
| 882 | dma->device_free_chan_resources = ioat2_free_chan_resources; |
Dan Williams | c50a898 | 2010-10-13 15:43:10 -0700 | [diff] [blame] | 883 | dma->device_tx_status = ioat_dma_tx_status; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 884 | |
| 885 | err = ioat_probe(device); |
| 886 | if (err) |
| 887 | return err; |
| 888 | ioat_set_tcp_copy_break(2048); |
| 889 | |
| 890 | list_for_each_entry(c, &dma->channels, device_node) { |
| 891 | chan = to_chan_common(c); |
| 892 | writel(IOAT_DCACTRL_CMPL_WRITE_ENABLE | IOAT_DMA_DCA_ANY_CPU, |
| 893 | chan->reg_base + IOAT_DCACTRL_OFFSET); |
| 894 | } |
| 895 | |
| 896 | err = ioat_register(device); |
| 897 | if (err) |
| 898 | return err; |
Dan Williams | 5669e31 | 2009-09-08 17:42:56 -0700 | [diff] [blame] | 899 | |
| 900 | ioat_kobject_add(device, &ioat2_ktype); |
| 901 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 902 | if (dca) |
| 903 | device->dca = ioat2_dca_init(pdev, device->reg_base); |
| 904 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 905 | return err; |
| 906 | } |