Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Texas Instruments CPDMA Driver |
| 3 | * |
| 4 | * Copyright (C) 2010 Texas Instruments |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation version 2. |
| 9 | * |
| 10 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any |
| 11 | * kind, whether express or implied; without even the implied warranty |
| 12 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | */ |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/spinlock.h> |
| 17 | #include <linux/device.h> |
Daniel Mack | 76fbc24 | 2012-06-28 06:12:32 +0000 | [diff] [blame] | 18 | #include <linux/module.h> |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 19 | #include <linux/slab.h> |
| 20 | #include <linux/err.h> |
| 21 | #include <linux/dma-mapping.h> |
| 22 | #include <linux/io.h> |
Sebastian Siewior | 817f6d1 | 2013-04-23 07:31:35 +0000 | [diff] [blame] | 23 | #include <linux/delay.h> |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 24 | |
| 25 | #include "davinci_cpdma.h" |
| 26 | |
| 27 | /* DMA Registers */ |
| 28 | #define CPDMA_TXIDVER 0x00 |
| 29 | #define CPDMA_TXCONTROL 0x04 |
| 30 | #define CPDMA_TXTEARDOWN 0x08 |
| 31 | #define CPDMA_RXIDVER 0x10 |
| 32 | #define CPDMA_RXCONTROL 0x14 |
| 33 | #define CPDMA_SOFTRESET 0x1c |
| 34 | #define CPDMA_RXTEARDOWN 0x18 |
| 35 | #define CPDMA_TXINTSTATRAW 0x80 |
| 36 | #define CPDMA_TXINTSTATMASKED 0x84 |
| 37 | #define CPDMA_TXINTMASKSET 0x88 |
| 38 | #define CPDMA_TXINTMASKCLEAR 0x8c |
| 39 | #define CPDMA_MACINVECTOR 0x90 |
| 40 | #define CPDMA_MACEOIVECTOR 0x94 |
| 41 | #define CPDMA_RXINTSTATRAW 0xa0 |
| 42 | #define CPDMA_RXINTSTATMASKED 0xa4 |
| 43 | #define CPDMA_RXINTMASKSET 0xa8 |
| 44 | #define CPDMA_RXINTMASKCLEAR 0xac |
| 45 | #define CPDMA_DMAINTSTATRAW 0xb0 |
| 46 | #define CPDMA_DMAINTSTATMASKED 0xb4 |
| 47 | #define CPDMA_DMAINTMASKSET 0xb8 |
| 48 | #define CPDMA_DMAINTMASKCLEAR 0xbc |
| 49 | #define CPDMA_DMAINT_HOSTERR BIT(1) |
| 50 | |
| 51 | /* the following exist only if has_ext_regs is set */ |
| 52 | #define CPDMA_DMACONTROL 0x20 |
| 53 | #define CPDMA_DMASTATUS 0x24 |
| 54 | #define CPDMA_RXBUFFOFS 0x28 |
| 55 | #define CPDMA_EM_CONTROL 0x2c |
| 56 | |
| 57 | /* Descriptor mode bits */ |
| 58 | #define CPDMA_DESC_SOP BIT(31) |
| 59 | #define CPDMA_DESC_EOP BIT(30) |
| 60 | #define CPDMA_DESC_OWNER BIT(29) |
| 61 | #define CPDMA_DESC_EOQ BIT(28) |
| 62 | #define CPDMA_DESC_TD_COMPLETE BIT(27) |
| 63 | #define CPDMA_DESC_PASS_CRC BIT(26) |
Mugunthan V N | f6e135c | 2013-02-11 09:52:18 +0000 | [diff] [blame] | 64 | #define CPDMA_DESC_TO_PORT_EN BIT(20) |
| 65 | #define CPDMA_TO_PORT_SHIFT 16 |
| 66 | #define CPDMA_DESC_PORT_MASK (BIT(18) | BIT(17) | BIT(16)) |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 67 | |
| 68 | #define CPDMA_TEARDOWN_VALUE 0xfffffffc |
| 69 | |
| 70 | struct cpdma_desc { |
| 71 | /* hardware fields */ |
| 72 | u32 hw_next; |
| 73 | u32 hw_buffer; |
| 74 | u32 hw_len; |
| 75 | u32 hw_mode; |
| 76 | /* software fields */ |
| 77 | void *sw_token; |
| 78 | u32 sw_buffer; |
| 79 | u32 sw_len; |
| 80 | }; |
| 81 | |
| 82 | struct cpdma_desc_pool { |
| 83 | u32 phys; |
Sriram | 6a1fef6 | 2011-03-22 02:31:03 +0000 | [diff] [blame] | 84 | u32 hw_addr; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 85 | void __iomem *iomap; /* ioremap map */ |
| 86 | void *cpumap; /* dma_alloc map */ |
| 87 | int desc_size, mem_size; |
| 88 | int num_desc, used_desc; |
| 89 | unsigned long *bitmap; |
| 90 | struct device *dev; |
| 91 | spinlock_t lock; |
| 92 | }; |
| 93 | |
| 94 | enum cpdma_state { |
| 95 | CPDMA_STATE_IDLE, |
| 96 | CPDMA_STATE_ACTIVE, |
| 97 | CPDMA_STATE_TEARDOWN, |
| 98 | }; |
| 99 | |
Arnd Bergmann | 32a6d90 | 2012-04-20 10:56:09 +0000 | [diff] [blame] | 100 | static const char *cpdma_state_str[] = { "idle", "active", "teardown" }; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 101 | |
| 102 | struct cpdma_ctlr { |
| 103 | enum cpdma_state state; |
| 104 | struct cpdma_params params; |
| 105 | struct device *dev; |
| 106 | struct cpdma_desc_pool *pool; |
| 107 | spinlock_t lock; |
| 108 | struct cpdma_chan *channels[2 * CPDMA_MAX_CHANNELS]; |
| 109 | }; |
| 110 | |
| 111 | struct cpdma_chan { |
Mugunthan V N | fae5082 | 2013-01-17 06:31:34 +0000 | [diff] [blame] | 112 | struct cpdma_desc __iomem *head, *tail; |
| 113 | void __iomem *hdp, *cp, *rxfree; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 114 | enum cpdma_state state; |
| 115 | struct cpdma_ctlr *ctlr; |
| 116 | int chan_num; |
| 117 | spinlock_t lock; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 118 | int count; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 119 | u32 mask; |
| 120 | cpdma_handler_fn handler; |
| 121 | enum dma_data_direction dir; |
| 122 | struct cpdma_chan_stats stats; |
| 123 | /* offsets into dmaregs */ |
| 124 | int int_set, int_clear, td; |
| 125 | }; |
| 126 | |
| 127 | /* The following make access to common cpdma_ctlr params more readable */ |
| 128 | #define dmaregs params.dmaregs |
| 129 | #define num_chan params.num_chan |
| 130 | |
| 131 | /* various accessors */ |
| 132 | #define dma_reg_read(ctlr, ofs) __raw_readl((ctlr)->dmaregs + (ofs)) |
| 133 | #define chan_read(chan, fld) __raw_readl((chan)->fld) |
| 134 | #define desc_read(desc, fld) __raw_readl(&(desc)->fld) |
| 135 | #define dma_reg_write(ctlr, ofs, v) __raw_writel(v, (ctlr)->dmaregs + (ofs)) |
| 136 | #define chan_write(chan, fld, v) __raw_writel(v, (chan)->fld) |
| 137 | #define desc_write(desc, fld, v) __raw_writel((u32)(v), &(desc)->fld) |
| 138 | |
Mugunthan V N | f6e135c | 2013-02-11 09:52:18 +0000 | [diff] [blame] | 139 | #define cpdma_desc_to_port(chan, mode, directed) \ |
| 140 | do { \ |
| 141 | if (!is_rx_chan(chan) && ((directed == 1) || \ |
| 142 | (directed == 2))) \ |
| 143 | mode |= (CPDMA_DESC_TO_PORT_EN | \ |
| 144 | (directed << CPDMA_TO_PORT_SHIFT)); \ |
| 145 | } while (0) |
| 146 | |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 147 | /* |
| 148 | * Utility constructs for a cpdma descriptor pool. Some devices (e.g. davinci |
| 149 | * emac) have dedicated on-chip memory for these descriptors. Some other |
| 150 | * devices (e.g. cpsw switches) use plain old memory. Descriptor pools |
| 151 | * abstract out these details |
| 152 | */ |
| 153 | static struct cpdma_desc_pool * |
Sriram | 6a1fef6 | 2011-03-22 02:31:03 +0000 | [diff] [blame] | 154 | cpdma_desc_pool_create(struct device *dev, u32 phys, u32 hw_addr, |
| 155 | int size, int align) |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 156 | { |
| 157 | int bitmap_size; |
| 158 | struct cpdma_desc_pool *pool; |
| 159 | |
| 160 | pool = kzalloc(sizeof(*pool), GFP_KERNEL); |
| 161 | if (!pool) |
| 162 | return NULL; |
| 163 | |
| 164 | spin_lock_init(&pool->lock); |
| 165 | |
| 166 | pool->dev = dev; |
| 167 | pool->mem_size = size; |
| 168 | pool->desc_size = ALIGN(sizeof(struct cpdma_desc), align); |
| 169 | pool->num_desc = size / pool->desc_size; |
| 170 | |
| 171 | bitmap_size = (pool->num_desc / BITS_PER_LONG) * sizeof(long); |
| 172 | pool->bitmap = kzalloc(bitmap_size, GFP_KERNEL); |
| 173 | if (!pool->bitmap) |
| 174 | goto fail; |
| 175 | |
| 176 | if (phys) { |
| 177 | pool->phys = phys; |
| 178 | pool->iomap = ioremap(phys, size); |
Sriram | 6a1fef6 | 2011-03-22 02:31:03 +0000 | [diff] [blame] | 179 | pool->hw_addr = hw_addr; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 180 | } else { |
| 181 | pool->cpumap = dma_alloc_coherent(dev, size, &pool->phys, |
| 182 | GFP_KERNEL); |
Joe Perches | 43d620c | 2011-06-16 19:08:06 +0000 | [diff] [blame] | 183 | pool->iomap = pool->cpumap; |
Sriram | 6a1fef6 | 2011-03-22 02:31:03 +0000 | [diff] [blame] | 184 | pool->hw_addr = pool->phys; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | if (pool->iomap) |
| 188 | return pool; |
| 189 | |
| 190 | fail: |
| 191 | kfree(pool->bitmap); |
| 192 | kfree(pool); |
| 193 | return NULL; |
| 194 | } |
| 195 | |
| 196 | static void cpdma_desc_pool_destroy(struct cpdma_desc_pool *pool) |
| 197 | { |
| 198 | unsigned long flags; |
| 199 | |
| 200 | if (!pool) |
| 201 | return; |
| 202 | |
| 203 | spin_lock_irqsave(&pool->lock, flags); |
| 204 | WARN_ON(pool->used_desc); |
| 205 | kfree(pool->bitmap); |
| 206 | if (pool->cpumap) { |
| 207 | dma_free_coherent(pool->dev, pool->mem_size, pool->cpumap, |
| 208 | pool->phys); |
| 209 | } else { |
| 210 | iounmap(pool->iomap); |
| 211 | } |
| 212 | spin_unlock_irqrestore(&pool->lock, flags); |
| 213 | kfree(pool); |
| 214 | } |
| 215 | |
| 216 | static inline dma_addr_t desc_phys(struct cpdma_desc_pool *pool, |
| 217 | struct cpdma_desc __iomem *desc) |
| 218 | { |
| 219 | if (!desc) |
| 220 | return 0; |
Sriram | 6a1fef6 | 2011-03-22 02:31:03 +0000 | [diff] [blame] | 221 | return pool->hw_addr + (__force dma_addr_t)desc - |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 222 | (__force dma_addr_t)pool->iomap; |
| 223 | } |
| 224 | |
| 225 | static inline struct cpdma_desc __iomem * |
| 226 | desc_from_phys(struct cpdma_desc_pool *pool, dma_addr_t dma) |
| 227 | { |
Sriram | 6a1fef6 | 2011-03-22 02:31:03 +0000 | [diff] [blame] | 228 | return dma ? pool->iomap + dma - pool->hw_addr : NULL; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | static struct cpdma_desc __iomem * |
Mugunthan V N | fae5082 | 2013-01-17 06:31:34 +0000 | [diff] [blame] | 232 | cpdma_desc_alloc(struct cpdma_desc_pool *pool, int num_desc, bool is_rx) |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 233 | { |
| 234 | unsigned long flags; |
| 235 | int index; |
Mugunthan V N | fae5082 | 2013-01-17 06:31:34 +0000 | [diff] [blame] | 236 | int desc_start; |
| 237 | int desc_end; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 238 | struct cpdma_desc __iomem *desc = NULL; |
| 239 | |
| 240 | spin_lock_irqsave(&pool->lock, flags); |
| 241 | |
Mugunthan V N | fae5082 | 2013-01-17 06:31:34 +0000 | [diff] [blame] | 242 | if (is_rx) { |
| 243 | desc_start = 0; |
| 244 | desc_end = pool->num_desc/2; |
| 245 | } else { |
| 246 | desc_start = pool->num_desc/2; |
| 247 | desc_end = pool->num_desc; |
| 248 | } |
| 249 | |
| 250 | index = bitmap_find_next_zero_area(pool->bitmap, |
| 251 | desc_end, desc_start, num_desc, 0); |
| 252 | if (index < desc_end) { |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 253 | bitmap_set(pool->bitmap, index, num_desc); |
| 254 | desc = pool->iomap + pool->desc_size * index; |
| 255 | pool->used_desc++; |
| 256 | } |
| 257 | |
| 258 | spin_unlock_irqrestore(&pool->lock, flags); |
| 259 | return desc; |
| 260 | } |
| 261 | |
| 262 | static void cpdma_desc_free(struct cpdma_desc_pool *pool, |
| 263 | struct cpdma_desc __iomem *desc, int num_desc) |
| 264 | { |
| 265 | unsigned long flags, index; |
| 266 | |
| 267 | index = ((unsigned long)desc - (unsigned long)pool->iomap) / |
| 268 | pool->desc_size; |
| 269 | spin_lock_irqsave(&pool->lock, flags); |
| 270 | bitmap_clear(pool->bitmap, index, num_desc); |
| 271 | pool->used_desc--; |
| 272 | spin_unlock_irqrestore(&pool->lock, flags); |
| 273 | } |
| 274 | |
| 275 | struct cpdma_ctlr *cpdma_ctlr_create(struct cpdma_params *params) |
| 276 | { |
| 277 | struct cpdma_ctlr *ctlr; |
| 278 | |
| 279 | ctlr = kzalloc(sizeof(*ctlr), GFP_KERNEL); |
| 280 | if (!ctlr) |
| 281 | return NULL; |
| 282 | |
| 283 | ctlr->state = CPDMA_STATE_IDLE; |
| 284 | ctlr->params = *params; |
| 285 | ctlr->dev = params->dev; |
| 286 | spin_lock_init(&ctlr->lock); |
| 287 | |
| 288 | ctlr->pool = cpdma_desc_pool_create(ctlr->dev, |
| 289 | ctlr->params.desc_mem_phys, |
Sriram | 6a1fef6 | 2011-03-22 02:31:03 +0000 | [diff] [blame] | 290 | ctlr->params.desc_hw_addr, |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 291 | ctlr->params.desc_mem_size, |
| 292 | ctlr->params.desc_align); |
| 293 | if (!ctlr->pool) { |
| 294 | kfree(ctlr); |
| 295 | return NULL; |
| 296 | } |
| 297 | |
| 298 | if (WARN_ON(ctlr->num_chan > CPDMA_MAX_CHANNELS)) |
| 299 | ctlr->num_chan = CPDMA_MAX_CHANNELS; |
| 300 | return ctlr; |
| 301 | } |
Arnd Bergmann | 32a6d90 | 2012-04-20 10:56:09 +0000 | [diff] [blame] | 302 | EXPORT_SYMBOL_GPL(cpdma_ctlr_create); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 303 | |
| 304 | int cpdma_ctlr_start(struct cpdma_ctlr *ctlr) |
| 305 | { |
| 306 | unsigned long flags; |
| 307 | int i; |
| 308 | |
| 309 | spin_lock_irqsave(&ctlr->lock, flags); |
| 310 | if (ctlr->state != CPDMA_STATE_IDLE) { |
| 311 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 312 | return -EBUSY; |
| 313 | } |
| 314 | |
| 315 | if (ctlr->params.has_soft_reset) { |
Sebastian Siewior | 817f6d1 | 2013-04-23 07:31:35 +0000 | [diff] [blame] | 316 | unsigned timeout = 10 * 100; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 317 | |
| 318 | dma_reg_write(ctlr, CPDMA_SOFTRESET, 1); |
Sebastian Siewior | 817f6d1 | 2013-04-23 07:31:35 +0000 | [diff] [blame] | 319 | while (timeout) { |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 320 | if (dma_reg_read(ctlr, CPDMA_SOFTRESET) == 0) |
| 321 | break; |
Sebastian Siewior | 817f6d1 | 2013-04-23 07:31:35 +0000 | [diff] [blame] | 322 | udelay(10); |
| 323 | timeout--; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 324 | } |
Sebastian Siewior | 817f6d1 | 2013-04-23 07:31:35 +0000 | [diff] [blame] | 325 | WARN_ON(!timeout); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | for (i = 0; i < ctlr->num_chan; i++) { |
| 329 | __raw_writel(0, ctlr->params.txhdp + 4 * i); |
| 330 | __raw_writel(0, ctlr->params.rxhdp + 4 * i); |
| 331 | __raw_writel(0, ctlr->params.txcp + 4 * i); |
| 332 | __raw_writel(0, ctlr->params.rxcp + 4 * i); |
| 333 | } |
| 334 | |
| 335 | dma_reg_write(ctlr, CPDMA_RXINTMASKCLEAR, 0xffffffff); |
| 336 | dma_reg_write(ctlr, CPDMA_TXINTMASKCLEAR, 0xffffffff); |
| 337 | |
| 338 | dma_reg_write(ctlr, CPDMA_TXCONTROL, 1); |
| 339 | dma_reg_write(ctlr, CPDMA_RXCONTROL, 1); |
| 340 | |
| 341 | ctlr->state = CPDMA_STATE_ACTIVE; |
| 342 | |
| 343 | for (i = 0; i < ARRAY_SIZE(ctlr->channels); i++) { |
| 344 | if (ctlr->channels[i]) |
| 345 | cpdma_chan_start(ctlr->channels[i]); |
| 346 | } |
| 347 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 348 | return 0; |
| 349 | } |
Arnd Bergmann | 32a6d90 | 2012-04-20 10:56:09 +0000 | [diff] [blame] | 350 | EXPORT_SYMBOL_GPL(cpdma_ctlr_start); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 351 | |
| 352 | int cpdma_ctlr_stop(struct cpdma_ctlr *ctlr) |
| 353 | { |
| 354 | unsigned long flags; |
| 355 | int i; |
| 356 | |
| 357 | spin_lock_irqsave(&ctlr->lock, flags); |
| 358 | if (ctlr->state != CPDMA_STATE_ACTIVE) { |
| 359 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 360 | return -EINVAL; |
| 361 | } |
| 362 | |
| 363 | ctlr->state = CPDMA_STATE_TEARDOWN; |
| 364 | |
| 365 | for (i = 0; i < ARRAY_SIZE(ctlr->channels); i++) { |
| 366 | if (ctlr->channels[i]) |
| 367 | cpdma_chan_stop(ctlr->channels[i]); |
| 368 | } |
| 369 | |
| 370 | dma_reg_write(ctlr, CPDMA_RXINTMASKCLEAR, 0xffffffff); |
| 371 | dma_reg_write(ctlr, CPDMA_TXINTMASKCLEAR, 0xffffffff); |
| 372 | |
| 373 | dma_reg_write(ctlr, CPDMA_TXCONTROL, 0); |
| 374 | dma_reg_write(ctlr, CPDMA_RXCONTROL, 0); |
| 375 | |
| 376 | ctlr->state = CPDMA_STATE_IDLE; |
| 377 | |
| 378 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 379 | return 0; |
| 380 | } |
Arnd Bergmann | 32a6d90 | 2012-04-20 10:56:09 +0000 | [diff] [blame] | 381 | EXPORT_SYMBOL_GPL(cpdma_ctlr_stop); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 382 | |
| 383 | int cpdma_ctlr_dump(struct cpdma_ctlr *ctlr) |
| 384 | { |
| 385 | struct device *dev = ctlr->dev; |
| 386 | unsigned long flags; |
| 387 | int i; |
| 388 | |
| 389 | spin_lock_irqsave(&ctlr->lock, flags); |
| 390 | |
| 391 | dev_info(dev, "CPDMA: state: %s", cpdma_state_str[ctlr->state]); |
| 392 | |
| 393 | dev_info(dev, "CPDMA: txidver: %x", |
| 394 | dma_reg_read(ctlr, CPDMA_TXIDVER)); |
| 395 | dev_info(dev, "CPDMA: txcontrol: %x", |
| 396 | dma_reg_read(ctlr, CPDMA_TXCONTROL)); |
| 397 | dev_info(dev, "CPDMA: txteardown: %x", |
| 398 | dma_reg_read(ctlr, CPDMA_TXTEARDOWN)); |
| 399 | dev_info(dev, "CPDMA: rxidver: %x", |
| 400 | dma_reg_read(ctlr, CPDMA_RXIDVER)); |
| 401 | dev_info(dev, "CPDMA: rxcontrol: %x", |
| 402 | dma_reg_read(ctlr, CPDMA_RXCONTROL)); |
| 403 | dev_info(dev, "CPDMA: softreset: %x", |
| 404 | dma_reg_read(ctlr, CPDMA_SOFTRESET)); |
| 405 | dev_info(dev, "CPDMA: rxteardown: %x", |
| 406 | dma_reg_read(ctlr, CPDMA_RXTEARDOWN)); |
| 407 | dev_info(dev, "CPDMA: txintstatraw: %x", |
| 408 | dma_reg_read(ctlr, CPDMA_TXINTSTATRAW)); |
| 409 | dev_info(dev, "CPDMA: txintstatmasked: %x", |
| 410 | dma_reg_read(ctlr, CPDMA_TXINTSTATMASKED)); |
| 411 | dev_info(dev, "CPDMA: txintmaskset: %x", |
| 412 | dma_reg_read(ctlr, CPDMA_TXINTMASKSET)); |
| 413 | dev_info(dev, "CPDMA: txintmaskclear: %x", |
| 414 | dma_reg_read(ctlr, CPDMA_TXINTMASKCLEAR)); |
| 415 | dev_info(dev, "CPDMA: macinvector: %x", |
| 416 | dma_reg_read(ctlr, CPDMA_MACINVECTOR)); |
| 417 | dev_info(dev, "CPDMA: maceoivector: %x", |
| 418 | dma_reg_read(ctlr, CPDMA_MACEOIVECTOR)); |
| 419 | dev_info(dev, "CPDMA: rxintstatraw: %x", |
| 420 | dma_reg_read(ctlr, CPDMA_RXINTSTATRAW)); |
| 421 | dev_info(dev, "CPDMA: rxintstatmasked: %x", |
| 422 | dma_reg_read(ctlr, CPDMA_RXINTSTATMASKED)); |
| 423 | dev_info(dev, "CPDMA: rxintmaskset: %x", |
| 424 | dma_reg_read(ctlr, CPDMA_RXINTMASKSET)); |
| 425 | dev_info(dev, "CPDMA: rxintmaskclear: %x", |
| 426 | dma_reg_read(ctlr, CPDMA_RXINTMASKCLEAR)); |
| 427 | dev_info(dev, "CPDMA: dmaintstatraw: %x", |
| 428 | dma_reg_read(ctlr, CPDMA_DMAINTSTATRAW)); |
| 429 | dev_info(dev, "CPDMA: dmaintstatmasked: %x", |
| 430 | dma_reg_read(ctlr, CPDMA_DMAINTSTATMASKED)); |
| 431 | dev_info(dev, "CPDMA: dmaintmaskset: %x", |
| 432 | dma_reg_read(ctlr, CPDMA_DMAINTMASKSET)); |
| 433 | dev_info(dev, "CPDMA: dmaintmaskclear: %x", |
| 434 | dma_reg_read(ctlr, CPDMA_DMAINTMASKCLEAR)); |
| 435 | |
| 436 | if (!ctlr->params.has_ext_regs) { |
| 437 | dev_info(dev, "CPDMA: dmacontrol: %x", |
| 438 | dma_reg_read(ctlr, CPDMA_DMACONTROL)); |
| 439 | dev_info(dev, "CPDMA: dmastatus: %x", |
| 440 | dma_reg_read(ctlr, CPDMA_DMASTATUS)); |
| 441 | dev_info(dev, "CPDMA: rxbuffofs: %x", |
| 442 | dma_reg_read(ctlr, CPDMA_RXBUFFOFS)); |
| 443 | } |
| 444 | |
| 445 | for (i = 0; i < ARRAY_SIZE(ctlr->channels); i++) |
| 446 | if (ctlr->channels[i]) |
| 447 | cpdma_chan_dump(ctlr->channels[i]); |
| 448 | |
| 449 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 450 | return 0; |
| 451 | } |
Arnd Bergmann | 32a6d90 | 2012-04-20 10:56:09 +0000 | [diff] [blame] | 452 | EXPORT_SYMBOL_GPL(cpdma_ctlr_dump); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 453 | |
| 454 | int cpdma_ctlr_destroy(struct cpdma_ctlr *ctlr) |
| 455 | { |
| 456 | unsigned long flags; |
| 457 | int ret = 0, i; |
| 458 | |
| 459 | if (!ctlr) |
| 460 | return -EINVAL; |
| 461 | |
| 462 | spin_lock_irqsave(&ctlr->lock, flags); |
| 463 | if (ctlr->state != CPDMA_STATE_IDLE) |
| 464 | cpdma_ctlr_stop(ctlr); |
| 465 | |
Cyril Roelandt | 79876e0 | 2013-02-12 12:52:30 +0000 | [diff] [blame] | 466 | for (i = 0; i < ARRAY_SIZE(ctlr->channels); i++) |
| 467 | cpdma_chan_destroy(ctlr->channels[i]); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 468 | |
| 469 | cpdma_desc_pool_destroy(ctlr->pool); |
| 470 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 471 | kfree(ctlr); |
| 472 | return ret; |
| 473 | } |
Arnd Bergmann | 32a6d90 | 2012-04-20 10:56:09 +0000 | [diff] [blame] | 474 | EXPORT_SYMBOL_GPL(cpdma_ctlr_destroy); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 475 | |
| 476 | int cpdma_ctlr_int_ctrl(struct cpdma_ctlr *ctlr, bool enable) |
| 477 | { |
| 478 | unsigned long flags; |
| 479 | int i, reg; |
| 480 | |
| 481 | spin_lock_irqsave(&ctlr->lock, flags); |
| 482 | if (ctlr->state != CPDMA_STATE_ACTIVE) { |
| 483 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 484 | return -EINVAL; |
| 485 | } |
| 486 | |
| 487 | reg = enable ? CPDMA_DMAINTMASKSET : CPDMA_DMAINTMASKCLEAR; |
| 488 | dma_reg_write(ctlr, reg, CPDMA_DMAINT_HOSTERR); |
| 489 | |
| 490 | for (i = 0; i < ARRAY_SIZE(ctlr->channels); i++) { |
| 491 | if (ctlr->channels[i]) |
| 492 | cpdma_chan_int_ctrl(ctlr->channels[i], enable); |
| 493 | } |
| 494 | |
| 495 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 496 | return 0; |
| 497 | } |
Arnd Bergmann | 6929e24 | 2013-02-14 17:53:01 +0100 | [diff] [blame] | 498 | EXPORT_SYMBOL_GPL(cpdma_ctlr_int_ctrl); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 499 | |
Mugunthan V N | 510a1e72 | 2013-02-17 22:19:20 +0000 | [diff] [blame] | 500 | void cpdma_ctlr_eoi(struct cpdma_ctlr *ctlr, u32 value) |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 501 | { |
Mugunthan V N | 510a1e72 | 2013-02-17 22:19:20 +0000 | [diff] [blame] | 502 | dma_reg_write(ctlr, CPDMA_MACEOIVECTOR, value); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 503 | } |
Arnd Bergmann | 6929e24 | 2013-02-14 17:53:01 +0100 | [diff] [blame] | 504 | EXPORT_SYMBOL_GPL(cpdma_ctlr_eoi); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 505 | |
| 506 | struct cpdma_chan *cpdma_chan_create(struct cpdma_ctlr *ctlr, int chan_num, |
| 507 | cpdma_handler_fn handler) |
| 508 | { |
| 509 | struct cpdma_chan *chan; |
| 510 | int ret, offset = (chan_num % CPDMA_MAX_CHANNELS) * 4; |
| 511 | unsigned long flags; |
| 512 | |
| 513 | if (__chan_linear(chan_num) >= ctlr->num_chan) |
| 514 | return NULL; |
| 515 | |
| 516 | ret = -ENOMEM; |
| 517 | chan = kzalloc(sizeof(*chan), GFP_KERNEL); |
| 518 | if (!chan) |
| 519 | goto err_chan_alloc; |
| 520 | |
| 521 | spin_lock_irqsave(&ctlr->lock, flags); |
| 522 | ret = -EBUSY; |
| 523 | if (ctlr->channels[chan_num]) |
| 524 | goto err_chan_busy; |
| 525 | |
| 526 | chan->ctlr = ctlr; |
| 527 | chan->state = CPDMA_STATE_IDLE; |
| 528 | chan->chan_num = chan_num; |
| 529 | chan->handler = handler; |
| 530 | |
| 531 | if (is_rx_chan(chan)) { |
| 532 | chan->hdp = ctlr->params.rxhdp + offset; |
| 533 | chan->cp = ctlr->params.rxcp + offset; |
| 534 | chan->rxfree = ctlr->params.rxfree + offset; |
| 535 | chan->int_set = CPDMA_RXINTMASKSET; |
| 536 | chan->int_clear = CPDMA_RXINTMASKCLEAR; |
| 537 | chan->td = CPDMA_RXTEARDOWN; |
| 538 | chan->dir = DMA_FROM_DEVICE; |
| 539 | } else { |
| 540 | chan->hdp = ctlr->params.txhdp + offset; |
| 541 | chan->cp = ctlr->params.txcp + offset; |
| 542 | chan->int_set = CPDMA_TXINTMASKSET; |
| 543 | chan->int_clear = CPDMA_TXINTMASKCLEAR; |
| 544 | chan->td = CPDMA_TXTEARDOWN; |
| 545 | chan->dir = DMA_TO_DEVICE; |
| 546 | } |
| 547 | chan->mask = BIT(chan_linear(chan)); |
| 548 | |
| 549 | spin_lock_init(&chan->lock); |
| 550 | |
| 551 | ctlr->channels[chan_num] = chan; |
| 552 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 553 | return chan; |
| 554 | |
| 555 | err_chan_busy: |
| 556 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 557 | kfree(chan); |
| 558 | err_chan_alloc: |
| 559 | return ERR_PTR(ret); |
| 560 | } |
Arnd Bergmann | 32a6d90 | 2012-04-20 10:56:09 +0000 | [diff] [blame] | 561 | EXPORT_SYMBOL_GPL(cpdma_chan_create); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 562 | |
| 563 | int cpdma_chan_destroy(struct cpdma_chan *chan) |
| 564 | { |
Julia Lawall | f37c54b | 2012-08-14 05:49:47 +0000 | [diff] [blame] | 565 | struct cpdma_ctlr *ctlr; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 566 | unsigned long flags; |
| 567 | |
| 568 | if (!chan) |
| 569 | return -EINVAL; |
Julia Lawall | f37c54b | 2012-08-14 05:49:47 +0000 | [diff] [blame] | 570 | ctlr = chan->ctlr; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 571 | |
| 572 | spin_lock_irqsave(&ctlr->lock, flags); |
| 573 | if (chan->state != CPDMA_STATE_IDLE) |
| 574 | cpdma_chan_stop(chan); |
| 575 | ctlr->channels[chan->chan_num] = NULL; |
| 576 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 577 | kfree(chan); |
| 578 | return 0; |
| 579 | } |
Arnd Bergmann | 32a6d90 | 2012-04-20 10:56:09 +0000 | [diff] [blame] | 580 | EXPORT_SYMBOL_GPL(cpdma_chan_destroy); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 581 | |
| 582 | int cpdma_chan_get_stats(struct cpdma_chan *chan, |
| 583 | struct cpdma_chan_stats *stats) |
| 584 | { |
| 585 | unsigned long flags; |
| 586 | if (!chan) |
| 587 | return -EINVAL; |
| 588 | spin_lock_irqsave(&chan->lock, flags); |
| 589 | memcpy(stats, &chan->stats, sizeof(*stats)); |
| 590 | spin_unlock_irqrestore(&chan->lock, flags); |
| 591 | return 0; |
| 592 | } |
| 593 | |
| 594 | int cpdma_chan_dump(struct cpdma_chan *chan) |
| 595 | { |
| 596 | unsigned long flags; |
| 597 | struct device *dev = chan->ctlr->dev; |
| 598 | |
| 599 | spin_lock_irqsave(&chan->lock, flags); |
| 600 | |
| 601 | dev_info(dev, "channel %d (%s %d) state %s", |
| 602 | chan->chan_num, is_rx_chan(chan) ? "rx" : "tx", |
| 603 | chan_linear(chan), cpdma_state_str[chan->state]); |
| 604 | dev_info(dev, "\thdp: %x\n", chan_read(chan, hdp)); |
| 605 | dev_info(dev, "\tcp: %x\n", chan_read(chan, cp)); |
| 606 | if (chan->rxfree) { |
| 607 | dev_info(dev, "\trxfree: %x\n", |
| 608 | chan_read(chan, rxfree)); |
| 609 | } |
| 610 | |
| 611 | dev_info(dev, "\tstats head_enqueue: %d\n", |
| 612 | chan->stats.head_enqueue); |
| 613 | dev_info(dev, "\tstats tail_enqueue: %d\n", |
| 614 | chan->stats.tail_enqueue); |
| 615 | dev_info(dev, "\tstats pad_enqueue: %d\n", |
| 616 | chan->stats.pad_enqueue); |
| 617 | dev_info(dev, "\tstats misqueued: %d\n", |
| 618 | chan->stats.misqueued); |
| 619 | dev_info(dev, "\tstats desc_alloc_fail: %d\n", |
| 620 | chan->stats.desc_alloc_fail); |
| 621 | dev_info(dev, "\tstats pad_alloc_fail: %d\n", |
| 622 | chan->stats.pad_alloc_fail); |
| 623 | dev_info(dev, "\tstats runt_receive_buff: %d\n", |
| 624 | chan->stats.runt_receive_buff); |
| 625 | dev_info(dev, "\tstats runt_transmit_buff: %d\n", |
| 626 | chan->stats.runt_transmit_buff); |
| 627 | dev_info(dev, "\tstats empty_dequeue: %d\n", |
| 628 | chan->stats.empty_dequeue); |
| 629 | dev_info(dev, "\tstats busy_dequeue: %d\n", |
| 630 | chan->stats.busy_dequeue); |
| 631 | dev_info(dev, "\tstats good_dequeue: %d\n", |
| 632 | chan->stats.good_dequeue); |
| 633 | dev_info(dev, "\tstats requeue: %d\n", |
| 634 | chan->stats.requeue); |
| 635 | dev_info(dev, "\tstats teardown_dequeue: %d\n", |
| 636 | chan->stats.teardown_dequeue); |
| 637 | |
| 638 | spin_unlock_irqrestore(&chan->lock, flags); |
| 639 | return 0; |
| 640 | } |
| 641 | |
| 642 | static void __cpdma_chan_submit(struct cpdma_chan *chan, |
| 643 | struct cpdma_desc __iomem *desc) |
| 644 | { |
| 645 | struct cpdma_ctlr *ctlr = chan->ctlr; |
| 646 | struct cpdma_desc __iomem *prev = chan->tail; |
| 647 | struct cpdma_desc_pool *pool = ctlr->pool; |
| 648 | dma_addr_t desc_dma; |
| 649 | u32 mode; |
| 650 | |
| 651 | desc_dma = desc_phys(pool, desc); |
| 652 | |
| 653 | /* simple case - idle channel */ |
| 654 | if (!chan->head) { |
| 655 | chan->stats.head_enqueue++; |
| 656 | chan->head = desc; |
| 657 | chan->tail = desc; |
| 658 | if (chan->state == CPDMA_STATE_ACTIVE) |
| 659 | chan_write(chan, hdp, desc_dma); |
| 660 | return; |
| 661 | } |
| 662 | |
| 663 | /* first chain the descriptor at the tail of the list */ |
| 664 | desc_write(prev, hw_next, desc_dma); |
| 665 | chan->tail = desc; |
| 666 | chan->stats.tail_enqueue++; |
| 667 | |
| 668 | /* next check if EOQ has been triggered already */ |
| 669 | mode = desc_read(prev, hw_mode); |
| 670 | if (((mode & (CPDMA_DESC_EOQ | CPDMA_DESC_OWNER)) == CPDMA_DESC_EOQ) && |
| 671 | (chan->state == CPDMA_STATE_ACTIVE)) { |
| 672 | desc_write(prev, hw_mode, mode & ~CPDMA_DESC_EOQ); |
| 673 | chan_write(chan, hdp, desc_dma); |
| 674 | chan->stats.misqueued++; |
| 675 | } |
| 676 | } |
| 677 | |
| 678 | int cpdma_chan_submit(struct cpdma_chan *chan, void *token, void *data, |
Sebastian Siewior | aef614e | 2013-04-23 07:31:38 +0000 | [diff] [blame] | 679 | int len, int directed) |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 680 | { |
| 681 | struct cpdma_ctlr *ctlr = chan->ctlr; |
| 682 | struct cpdma_desc __iomem *desc; |
| 683 | dma_addr_t buffer; |
| 684 | unsigned long flags; |
| 685 | u32 mode; |
| 686 | int ret = 0; |
| 687 | |
| 688 | spin_lock_irqsave(&chan->lock, flags); |
| 689 | |
| 690 | if (chan->state == CPDMA_STATE_TEARDOWN) { |
| 691 | ret = -EINVAL; |
| 692 | goto unlock_ret; |
| 693 | } |
| 694 | |
Mugunthan V N | fae5082 | 2013-01-17 06:31:34 +0000 | [diff] [blame] | 695 | desc = cpdma_desc_alloc(ctlr->pool, 1, is_rx_chan(chan)); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 696 | if (!desc) { |
| 697 | chan->stats.desc_alloc_fail++; |
| 698 | ret = -ENOMEM; |
| 699 | goto unlock_ret; |
| 700 | } |
| 701 | |
| 702 | if (len < ctlr->params.min_packet_size) { |
| 703 | len = ctlr->params.min_packet_size; |
| 704 | chan->stats.runt_transmit_buff++; |
| 705 | } |
| 706 | |
| 707 | buffer = dma_map_single(ctlr->dev, data, len, chan->dir); |
| 708 | mode = CPDMA_DESC_OWNER | CPDMA_DESC_SOP | CPDMA_DESC_EOP; |
Mugunthan V N | f6e135c | 2013-02-11 09:52:18 +0000 | [diff] [blame] | 709 | cpdma_desc_to_port(chan, mode, directed); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 710 | |
| 711 | desc_write(desc, hw_next, 0); |
| 712 | desc_write(desc, hw_buffer, buffer); |
| 713 | desc_write(desc, hw_len, len); |
| 714 | desc_write(desc, hw_mode, mode | len); |
| 715 | desc_write(desc, sw_token, token); |
| 716 | desc_write(desc, sw_buffer, buffer); |
| 717 | desc_write(desc, sw_len, len); |
| 718 | |
| 719 | __cpdma_chan_submit(chan, desc); |
| 720 | |
| 721 | if (chan->state == CPDMA_STATE_ACTIVE && chan->rxfree) |
| 722 | chan_write(chan, rxfree, 1); |
| 723 | |
| 724 | chan->count++; |
| 725 | |
| 726 | unlock_ret: |
| 727 | spin_unlock_irqrestore(&chan->lock, flags); |
| 728 | return ret; |
| 729 | } |
Arnd Bergmann | 32a6d90 | 2012-04-20 10:56:09 +0000 | [diff] [blame] | 730 | EXPORT_SYMBOL_GPL(cpdma_chan_submit); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 731 | |
Mugunthan V N | fae5082 | 2013-01-17 06:31:34 +0000 | [diff] [blame] | 732 | bool cpdma_check_free_tx_desc(struct cpdma_chan *chan) |
| 733 | { |
| 734 | unsigned long flags; |
| 735 | int index; |
| 736 | bool ret; |
| 737 | struct cpdma_ctlr *ctlr = chan->ctlr; |
| 738 | struct cpdma_desc_pool *pool = ctlr->pool; |
| 739 | |
| 740 | spin_lock_irqsave(&pool->lock, flags); |
| 741 | |
| 742 | index = bitmap_find_next_zero_area(pool->bitmap, |
| 743 | pool->num_desc, pool->num_desc/2, 1, 0); |
| 744 | |
| 745 | if (index < pool->num_desc) |
| 746 | ret = true; |
| 747 | else |
| 748 | ret = false; |
| 749 | |
| 750 | spin_unlock_irqrestore(&pool->lock, flags); |
| 751 | return ret; |
| 752 | } |
| 753 | EXPORT_SYMBOL_GPL(cpdma_check_free_tx_desc); |
| 754 | |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 755 | static void __cpdma_chan_free(struct cpdma_chan *chan, |
| 756 | struct cpdma_desc __iomem *desc, |
| 757 | int outlen, int status) |
| 758 | { |
| 759 | struct cpdma_ctlr *ctlr = chan->ctlr; |
| 760 | struct cpdma_desc_pool *pool = ctlr->pool; |
| 761 | dma_addr_t buff_dma; |
| 762 | int origlen; |
| 763 | void *token; |
| 764 | |
| 765 | token = (void *)desc_read(desc, sw_token); |
| 766 | buff_dma = desc_read(desc, sw_buffer); |
| 767 | origlen = desc_read(desc, sw_len); |
| 768 | |
| 769 | dma_unmap_single(ctlr->dev, buff_dma, origlen, chan->dir); |
| 770 | cpdma_desc_free(pool, desc, 1); |
| 771 | (*chan->handler)(token, outlen, status); |
| 772 | } |
| 773 | |
| 774 | static int __cpdma_chan_process(struct cpdma_chan *chan) |
| 775 | { |
| 776 | struct cpdma_ctlr *ctlr = chan->ctlr; |
| 777 | struct cpdma_desc __iomem *desc; |
| 778 | int status, outlen; |
Sebastian Siewior | b4727e6 | 2013-04-23 07:31:39 +0000 | [diff] [blame] | 779 | int cb_status = 0; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 780 | struct cpdma_desc_pool *pool = ctlr->pool; |
| 781 | dma_addr_t desc_dma; |
| 782 | unsigned long flags; |
| 783 | |
| 784 | spin_lock_irqsave(&chan->lock, flags); |
| 785 | |
| 786 | desc = chan->head; |
| 787 | if (!desc) { |
| 788 | chan->stats.empty_dequeue++; |
| 789 | status = -ENOENT; |
| 790 | goto unlock_ret; |
| 791 | } |
| 792 | desc_dma = desc_phys(pool, desc); |
| 793 | |
| 794 | status = __raw_readl(&desc->hw_mode); |
| 795 | outlen = status & 0x7ff; |
| 796 | if (status & CPDMA_DESC_OWNER) { |
| 797 | chan->stats.busy_dequeue++; |
| 798 | status = -EBUSY; |
| 799 | goto unlock_ret; |
| 800 | } |
Mugunthan V N | f6e135c | 2013-02-11 09:52:18 +0000 | [diff] [blame] | 801 | status = status & (CPDMA_DESC_EOQ | CPDMA_DESC_TD_COMPLETE | |
| 802 | CPDMA_DESC_PORT_MASK); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 803 | |
| 804 | chan->head = desc_from_phys(pool, desc_read(desc, hw_next)); |
| 805 | chan_write(chan, cp, desc_dma); |
| 806 | chan->count--; |
| 807 | chan->stats.good_dequeue++; |
| 808 | |
| 809 | if (status & CPDMA_DESC_EOQ) { |
| 810 | chan->stats.requeue++; |
| 811 | chan_write(chan, hdp, desc_phys(pool, chan->head)); |
| 812 | } |
| 813 | |
| 814 | spin_unlock_irqrestore(&chan->lock, flags); |
Sebastian Siewior | b4727e6 | 2013-04-23 07:31:39 +0000 | [diff] [blame] | 815 | if (unlikely(status & CPDMA_DESC_TD_COMPLETE)) |
| 816 | cb_status = -ENOSYS; |
| 817 | else |
| 818 | cb_status = status; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 819 | |
Sebastian Siewior | b4727e6 | 2013-04-23 07:31:39 +0000 | [diff] [blame] | 820 | __cpdma_chan_free(chan, desc, outlen, cb_status); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 821 | return status; |
| 822 | |
| 823 | unlock_ret: |
| 824 | spin_unlock_irqrestore(&chan->lock, flags); |
| 825 | return status; |
| 826 | } |
| 827 | |
| 828 | int cpdma_chan_process(struct cpdma_chan *chan, int quota) |
| 829 | { |
| 830 | int used = 0, ret = 0; |
| 831 | |
| 832 | if (chan->state != CPDMA_STATE_ACTIVE) |
| 833 | return -EINVAL; |
| 834 | |
| 835 | while (used < quota) { |
| 836 | ret = __cpdma_chan_process(chan); |
| 837 | if (ret < 0) |
| 838 | break; |
| 839 | used++; |
| 840 | } |
| 841 | return used; |
| 842 | } |
Arnd Bergmann | 32a6d90 | 2012-04-20 10:56:09 +0000 | [diff] [blame] | 843 | EXPORT_SYMBOL_GPL(cpdma_chan_process); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 844 | |
| 845 | int cpdma_chan_start(struct cpdma_chan *chan) |
| 846 | { |
| 847 | struct cpdma_ctlr *ctlr = chan->ctlr; |
| 848 | struct cpdma_desc_pool *pool = ctlr->pool; |
| 849 | unsigned long flags; |
| 850 | |
| 851 | spin_lock_irqsave(&chan->lock, flags); |
| 852 | if (chan->state != CPDMA_STATE_IDLE) { |
| 853 | spin_unlock_irqrestore(&chan->lock, flags); |
| 854 | return -EBUSY; |
| 855 | } |
| 856 | if (ctlr->state != CPDMA_STATE_ACTIVE) { |
| 857 | spin_unlock_irqrestore(&chan->lock, flags); |
| 858 | return -EINVAL; |
| 859 | } |
| 860 | dma_reg_write(ctlr, chan->int_set, chan->mask); |
| 861 | chan->state = CPDMA_STATE_ACTIVE; |
| 862 | if (chan->head) { |
| 863 | chan_write(chan, hdp, desc_phys(pool, chan->head)); |
| 864 | if (chan->rxfree) |
| 865 | chan_write(chan, rxfree, chan->count); |
| 866 | } |
| 867 | |
| 868 | spin_unlock_irqrestore(&chan->lock, flags); |
| 869 | return 0; |
| 870 | } |
Arnd Bergmann | 32a6d90 | 2012-04-20 10:56:09 +0000 | [diff] [blame] | 871 | EXPORT_SYMBOL_GPL(cpdma_chan_start); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 872 | |
| 873 | int cpdma_chan_stop(struct cpdma_chan *chan) |
| 874 | { |
| 875 | struct cpdma_ctlr *ctlr = chan->ctlr; |
| 876 | struct cpdma_desc_pool *pool = ctlr->pool; |
| 877 | unsigned long flags; |
| 878 | int ret; |
Sebastian Siewior | 817f6d1 | 2013-04-23 07:31:35 +0000 | [diff] [blame] | 879 | unsigned timeout; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 880 | |
| 881 | spin_lock_irqsave(&chan->lock, flags); |
| 882 | if (chan->state != CPDMA_STATE_ACTIVE) { |
| 883 | spin_unlock_irqrestore(&chan->lock, flags); |
| 884 | return -EINVAL; |
| 885 | } |
| 886 | |
| 887 | chan->state = CPDMA_STATE_TEARDOWN; |
| 888 | dma_reg_write(ctlr, chan->int_clear, chan->mask); |
| 889 | |
| 890 | /* trigger teardown */ |
Christian Riesch | b4ad042 | 2012-02-22 21:58:00 +0000 | [diff] [blame] | 891 | dma_reg_write(ctlr, chan->td, chan_linear(chan)); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 892 | |
| 893 | /* wait for teardown complete */ |
Sebastian Siewior | 817f6d1 | 2013-04-23 07:31:35 +0000 | [diff] [blame] | 894 | timeout = 100 * 100; /* 100 ms */ |
| 895 | while (timeout) { |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 896 | u32 cp = chan_read(chan, cp); |
| 897 | if ((cp & CPDMA_TEARDOWN_VALUE) == CPDMA_TEARDOWN_VALUE) |
| 898 | break; |
Sebastian Siewior | 817f6d1 | 2013-04-23 07:31:35 +0000 | [diff] [blame] | 899 | udelay(10); |
| 900 | timeout--; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 901 | } |
Sebastian Siewior | 817f6d1 | 2013-04-23 07:31:35 +0000 | [diff] [blame] | 902 | WARN_ON(!timeout); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 903 | chan_write(chan, cp, CPDMA_TEARDOWN_VALUE); |
| 904 | |
| 905 | /* handle completed packets */ |
Ilya Yanok | 7746ab0 | 2011-12-18 10:02:04 +0000 | [diff] [blame] | 906 | spin_unlock_irqrestore(&chan->lock, flags); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 907 | do { |
| 908 | ret = __cpdma_chan_process(chan); |
| 909 | if (ret < 0) |
| 910 | break; |
| 911 | } while ((ret & CPDMA_DESC_TD_COMPLETE) == 0); |
Ilya Yanok | 7746ab0 | 2011-12-18 10:02:04 +0000 | [diff] [blame] | 912 | spin_lock_irqsave(&chan->lock, flags); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 913 | |
| 914 | /* remaining packets haven't been tx/rx'ed, clean them up */ |
| 915 | while (chan->head) { |
| 916 | struct cpdma_desc __iomem *desc = chan->head; |
| 917 | dma_addr_t next_dma; |
| 918 | |
| 919 | next_dma = desc_read(desc, hw_next); |
| 920 | chan->head = desc_from_phys(pool, next_dma); |
htbegin | ffb5ba9 | 2012-10-01 16:42:43 +0000 | [diff] [blame] | 921 | chan->count--; |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 922 | chan->stats.teardown_dequeue++; |
| 923 | |
| 924 | /* issue callback without locks held */ |
| 925 | spin_unlock_irqrestore(&chan->lock, flags); |
| 926 | __cpdma_chan_free(chan, desc, 0, -ENOSYS); |
| 927 | spin_lock_irqsave(&chan->lock, flags); |
| 928 | } |
| 929 | |
| 930 | chan->state = CPDMA_STATE_IDLE; |
| 931 | spin_unlock_irqrestore(&chan->lock, flags); |
| 932 | return 0; |
| 933 | } |
Arnd Bergmann | 32a6d90 | 2012-04-20 10:56:09 +0000 | [diff] [blame] | 934 | EXPORT_SYMBOL_GPL(cpdma_chan_stop); |
Cyril Chemparathy | ef8c2da | 2010-09-15 10:11:28 -0400 | [diff] [blame] | 935 | |
| 936 | int cpdma_chan_int_ctrl(struct cpdma_chan *chan, bool enable) |
| 937 | { |
| 938 | unsigned long flags; |
| 939 | |
| 940 | spin_lock_irqsave(&chan->lock, flags); |
| 941 | if (chan->state != CPDMA_STATE_ACTIVE) { |
| 942 | spin_unlock_irqrestore(&chan->lock, flags); |
| 943 | return -EINVAL; |
| 944 | } |
| 945 | |
| 946 | dma_reg_write(chan->ctlr, enable ? chan->int_set : chan->int_clear, |
| 947 | chan->mask); |
| 948 | spin_unlock_irqrestore(&chan->lock, flags); |
| 949 | |
| 950 | return 0; |
| 951 | } |
| 952 | |
| 953 | struct cpdma_control_info { |
| 954 | u32 reg; |
| 955 | u32 shift, mask; |
| 956 | int access; |
| 957 | #define ACCESS_RO BIT(0) |
| 958 | #define ACCESS_WO BIT(1) |
| 959 | #define ACCESS_RW (ACCESS_RO | ACCESS_WO) |
| 960 | }; |
| 961 | |
| 962 | struct cpdma_control_info controls[] = { |
| 963 | [CPDMA_CMD_IDLE] = {CPDMA_DMACONTROL, 3, 1, ACCESS_WO}, |
| 964 | [CPDMA_COPY_ERROR_FRAMES] = {CPDMA_DMACONTROL, 4, 1, ACCESS_RW}, |
| 965 | [CPDMA_RX_OFF_LEN_UPDATE] = {CPDMA_DMACONTROL, 2, 1, ACCESS_RW}, |
| 966 | [CPDMA_RX_OWNERSHIP_FLIP] = {CPDMA_DMACONTROL, 1, 1, ACCESS_RW}, |
| 967 | [CPDMA_TX_PRIO_FIXED] = {CPDMA_DMACONTROL, 0, 1, ACCESS_RW}, |
| 968 | [CPDMA_STAT_IDLE] = {CPDMA_DMASTATUS, 31, 1, ACCESS_RO}, |
| 969 | [CPDMA_STAT_TX_ERR_CODE] = {CPDMA_DMASTATUS, 20, 0xf, ACCESS_RW}, |
| 970 | [CPDMA_STAT_TX_ERR_CHAN] = {CPDMA_DMASTATUS, 16, 0x7, ACCESS_RW}, |
| 971 | [CPDMA_STAT_RX_ERR_CODE] = {CPDMA_DMASTATUS, 12, 0xf, ACCESS_RW}, |
| 972 | [CPDMA_STAT_RX_ERR_CHAN] = {CPDMA_DMASTATUS, 8, 0x7, ACCESS_RW}, |
| 973 | [CPDMA_RX_BUFFER_OFFSET] = {CPDMA_RXBUFFOFS, 0, 0xffff, ACCESS_RW}, |
| 974 | }; |
| 975 | |
| 976 | int cpdma_control_get(struct cpdma_ctlr *ctlr, int control) |
| 977 | { |
| 978 | unsigned long flags; |
| 979 | struct cpdma_control_info *info = &controls[control]; |
| 980 | int ret; |
| 981 | |
| 982 | spin_lock_irqsave(&ctlr->lock, flags); |
| 983 | |
| 984 | ret = -ENOTSUPP; |
| 985 | if (!ctlr->params.has_ext_regs) |
| 986 | goto unlock_ret; |
| 987 | |
| 988 | ret = -EINVAL; |
| 989 | if (ctlr->state != CPDMA_STATE_ACTIVE) |
| 990 | goto unlock_ret; |
| 991 | |
| 992 | ret = -ENOENT; |
| 993 | if (control < 0 || control >= ARRAY_SIZE(controls)) |
| 994 | goto unlock_ret; |
| 995 | |
| 996 | ret = -EPERM; |
| 997 | if ((info->access & ACCESS_RO) != ACCESS_RO) |
| 998 | goto unlock_ret; |
| 999 | |
| 1000 | ret = (dma_reg_read(ctlr, info->reg) >> info->shift) & info->mask; |
| 1001 | |
| 1002 | unlock_ret: |
| 1003 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 1004 | return ret; |
| 1005 | } |
| 1006 | |
| 1007 | int cpdma_control_set(struct cpdma_ctlr *ctlr, int control, int value) |
| 1008 | { |
| 1009 | unsigned long flags; |
| 1010 | struct cpdma_control_info *info = &controls[control]; |
| 1011 | int ret; |
| 1012 | u32 val; |
| 1013 | |
| 1014 | spin_lock_irqsave(&ctlr->lock, flags); |
| 1015 | |
| 1016 | ret = -ENOTSUPP; |
| 1017 | if (!ctlr->params.has_ext_regs) |
| 1018 | goto unlock_ret; |
| 1019 | |
| 1020 | ret = -EINVAL; |
| 1021 | if (ctlr->state != CPDMA_STATE_ACTIVE) |
| 1022 | goto unlock_ret; |
| 1023 | |
| 1024 | ret = -ENOENT; |
| 1025 | if (control < 0 || control >= ARRAY_SIZE(controls)) |
| 1026 | goto unlock_ret; |
| 1027 | |
| 1028 | ret = -EPERM; |
| 1029 | if ((info->access & ACCESS_WO) != ACCESS_WO) |
| 1030 | goto unlock_ret; |
| 1031 | |
| 1032 | val = dma_reg_read(ctlr, info->reg); |
| 1033 | val &= ~(info->mask << info->shift); |
| 1034 | val |= (value & info->mask) << info->shift; |
| 1035 | dma_reg_write(ctlr, info->reg, val); |
| 1036 | ret = 0; |
| 1037 | |
| 1038 | unlock_ret: |
| 1039 | spin_unlock_irqrestore(&ctlr->lock, flags); |
| 1040 | return ret; |
| 1041 | } |
Arnd Bergmann | 6929e24 | 2013-02-14 17:53:01 +0100 | [diff] [blame] | 1042 | EXPORT_SYMBOL_GPL(cpdma_control_set); |
Sebastian Siewior | 4bc21d4 | 2013-04-24 08:48:22 +0000 | [diff] [blame^] | 1043 | |
| 1044 | MODULE_LICENSE("GPL"); |