Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Renesas SuperH DMA Engine support |
| 3 | * |
| 4 | * base is drivers/dma/flsdma.c |
| 5 | * |
| 6 | * Copyright (C) 2009 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> |
| 7 | * Copyright (C) 2009 Renesas Solutions, Inc. All rights reserved. |
| 8 | * Copyright (C) 2007 Freescale Semiconductor, Inc. All rights reserved. |
| 9 | * |
| 10 | * This is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * - DMA of SuperH does not have Hardware DMA chain mode. |
| 16 | * - MAX DMA size is 16MB. |
| 17 | * |
| 18 | */ |
| 19 | |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/slab.h> |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/dmaengine.h> |
| 25 | #include <linux/delay.h> |
| 26 | #include <linux/dma-mapping.h> |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 27 | #include <linux/platform_device.h> |
Guennadi Liakhovetski | 20f2a3b | 2010-02-11 16:50:18 +0000 | [diff] [blame] | 28 | #include <linux/pm_runtime.h> |
Magnus Damm | b2623a6 | 2010-03-19 04:47:10 +0000 | [diff] [blame] | 29 | #include <linux/sh_dma.h> |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 30 | #include <linux/notifier.h> |
| 31 | #include <linux/kdebug.h> |
| 32 | #include <linux/spinlock.h> |
| 33 | #include <linux/rculist.h> |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 34 | #include "shdma.h" |
| 35 | |
| 36 | /* DMA descriptor control */ |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 37 | enum sh_dmae_desc_status { |
| 38 | DESC_IDLE, |
| 39 | DESC_PREPARED, |
| 40 | DESC_SUBMITTED, |
| 41 | DESC_COMPLETED, /* completed, have to call callback */ |
| 42 | DESC_WAITING, /* callback called, waiting for ack / re-submit */ |
| 43 | }; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 44 | |
| 45 | #define NR_DESCS_PER_CHANNEL 32 |
Guennadi Liakhovetski | 8b1935e | 2010-02-11 16:50:14 +0000 | [diff] [blame] | 46 | /* Default MEMCPY transfer size = 2^2 = 4 bytes */ |
| 47 | #define LOG2_DEFAULT_XFER_SIZE 2 |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 48 | |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 49 | /* |
| 50 | * Used for write-side mutual exclusion for the global device list, |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 51 | * read-side synchronization by way of RCU, and per-controller data. |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 52 | */ |
| 53 | static DEFINE_SPINLOCK(sh_dmae_lock); |
| 54 | static LIST_HEAD(sh_dmae_devices); |
| 55 | |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 56 | /* A bitmask with bits enough for enum sh_dmae_slave_chan_id */ |
Magnus Damm | 02ca508 | 2010-03-19 04:46:47 +0000 | [diff] [blame] | 57 | static unsigned long sh_dmae_slave_used[BITS_TO_LONGS(SH_DMA_SLAVE_NUMBER)]; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 58 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 59 | static void sh_dmae_chan_ld_cleanup(struct sh_dmae_chan *sh_chan, bool all); |
| 60 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 61 | static void sh_dmae_writel(struct sh_dmae_chan *sh_dc, u32 data, u32 reg) |
| 62 | { |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 63 | __raw_writel(data, sh_dc->base + reg / sizeof(u32)); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | static u32 sh_dmae_readl(struct sh_dmae_chan *sh_dc, u32 reg) |
| 67 | { |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 68 | return __raw_readl(sh_dc->base + reg / sizeof(u32)); |
| 69 | } |
| 70 | |
| 71 | static u16 dmaor_read(struct sh_dmae_device *shdev) |
| 72 | { |
| 73 | return __raw_readw(shdev->chan_reg + DMAOR / sizeof(u32)); |
| 74 | } |
| 75 | |
| 76 | static void dmaor_write(struct sh_dmae_device *shdev, u16 data) |
| 77 | { |
| 78 | __raw_writew(data, shdev->chan_reg + DMAOR / sizeof(u32)); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 79 | } |
| 80 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 81 | /* |
| 82 | * Reset DMA controller |
| 83 | * |
| 84 | * SH7780 has two DMAOR register |
| 85 | */ |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 86 | static void sh_dmae_ctl_stop(struct sh_dmae_device *shdev) |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 87 | { |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 88 | unsigned short dmaor; |
| 89 | unsigned long flags; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 90 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 91 | spin_lock_irqsave(&sh_dmae_lock, flags); |
| 92 | |
| 93 | dmaor = dmaor_read(shdev); |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 94 | dmaor_write(shdev, dmaor & ~(DMAOR_NMIF | DMAOR_AE | DMAOR_DME)); |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 95 | |
| 96 | spin_unlock_irqrestore(&sh_dmae_lock, flags); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 97 | } |
| 98 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 99 | static int sh_dmae_rst(struct sh_dmae_device *shdev) |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 100 | { |
| 101 | unsigned short dmaor; |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 102 | unsigned long flags; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 103 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 104 | spin_lock_irqsave(&sh_dmae_lock, flags); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 105 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 106 | dmaor = dmaor_read(shdev) & ~(DMAOR_NMIF | DMAOR_AE | DMAOR_DME); |
| 107 | |
| 108 | dmaor_write(shdev, dmaor | shdev->pdata->dmaor_init); |
| 109 | |
| 110 | dmaor = dmaor_read(shdev); |
| 111 | |
| 112 | spin_unlock_irqrestore(&sh_dmae_lock, flags); |
| 113 | |
| 114 | if (dmaor & (DMAOR_AE | DMAOR_NMIF)) { |
| 115 | dev_warn(shdev->common.dev, "Can't initialize DMAOR.\n"); |
| 116 | return -EIO; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 117 | } |
| 118 | return 0; |
| 119 | } |
| 120 | |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 121 | static bool dmae_is_busy(struct sh_dmae_chan *sh_chan) |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 122 | { |
| 123 | u32 chcr = sh_dmae_readl(sh_chan, CHCR); |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 124 | |
| 125 | if ((chcr & (CHCR_DE | CHCR_TE)) == CHCR_DE) |
| 126 | return true; /* working */ |
| 127 | |
| 128 | return false; /* waiting */ |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 129 | } |
| 130 | |
Guennadi Liakhovetski | 8b1935e | 2010-02-11 16:50:14 +0000 | [diff] [blame] | 131 | static unsigned int calc_xmit_shift(struct sh_dmae_chan *sh_chan, u32 chcr) |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 132 | { |
Guennadi Liakhovetski | 8b1935e | 2010-02-11 16:50:14 +0000 | [diff] [blame] | 133 | struct sh_dmae_device *shdev = container_of(sh_chan->common.device, |
| 134 | struct sh_dmae_device, common); |
| 135 | struct sh_dmae_pdata *pdata = shdev->pdata; |
| 136 | int cnt = ((chcr & pdata->ts_low_mask) >> pdata->ts_low_shift) | |
| 137 | ((chcr & pdata->ts_high_mask) >> pdata->ts_high_shift); |
Guennadi Liakhovetski | 623b4ac | 2010-02-03 14:44:12 +0000 | [diff] [blame] | 138 | |
Guennadi Liakhovetski | 8b1935e | 2010-02-11 16:50:14 +0000 | [diff] [blame] | 139 | if (cnt >= pdata->ts_shift_num) |
| 140 | cnt = 0; |
| 141 | |
| 142 | return pdata->ts_shift[cnt]; |
| 143 | } |
| 144 | |
| 145 | static u32 log2size_to_chcr(struct sh_dmae_chan *sh_chan, int l2size) |
| 146 | { |
| 147 | struct sh_dmae_device *shdev = container_of(sh_chan->common.device, |
| 148 | struct sh_dmae_device, common); |
| 149 | struct sh_dmae_pdata *pdata = shdev->pdata; |
| 150 | int i; |
| 151 | |
| 152 | for (i = 0; i < pdata->ts_shift_num; i++) |
| 153 | if (pdata->ts_shift[i] == l2size) |
| 154 | break; |
| 155 | |
| 156 | if (i == pdata->ts_shift_num) |
| 157 | i = 0; |
| 158 | |
| 159 | return ((i << pdata->ts_low_shift) & pdata->ts_low_mask) | |
| 160 | ((i << pdata->ts_high_shift) & pdata->ts_high_mask); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 161 | } |
| 162 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 163 | static void dmae_set_reg(struct sh_dmae_chan *sh_chan, struct sh_dmae_regs *hw) |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 164 | { |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 165 | sh_dmae_writel(sh_chan, hw->sar, SAR); |
| 166 | sh_dmae_writel(sh_chan, hw->dar, DAR); |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 167 | sh_dmae_writel(sh_chan, hw->tcr >> sh_chan->xmit_shift, TCR); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | static void dmae_start(struct sh_dmae_chan *sh_chan) |
| 171 | { |
| 172 | u32 chcr = sh_dmae_readl(sh_chan, CHCR); |
| 173 | |
Guennadi Liakhovetski | 86d61b3 | 2009-12-10 18:35:07 +0100 | [diff] [blame] | 174 | chcr |= CHCR_DE | CHCR_IE; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 175 | sh_dmae_writel(sh_chan, chcr & ~CHCR_TE, CHCR); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | static void dmae_halt(struct sh_dmae_chan *sh_chan) |
| 179 | { |
| 180 | u32 chcr = sh_dmae_readl(sh_chan, CHCR); |
| 181 | |
| 182 | chcr &= ~(CHCR_DE | CHCR_TE | CHCR_IE); |
| 183 | sh_dmae_writel(sh_chan, chcr, CHCR); |
| 184 | } |
| 185 | |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 186 | static void dmae_init(struct sh_dmae_chan *sh_chan) |
| 187 | { |
Guennadi Liakhovetski | 8b1935e | 2010-02-11 16:50:14 +0000 | [diff] [blame] | 188 | /* |
| 189 | * Default configuration for dual address memory-memory transfer. |
| 190 | * 0x400 represents auto-request. |
| 191 | */ |
| 192 | u32 chcr = DM_INC | SM_INC | 0x400 | log2size_to_chcr(sh_chan, |
| 193 | LOG2_DEFAULT_XFER_SIZE); |
| 194 | sh_chan->xmit_shift = calc_xmit_shift(sh_chan, chcr); |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 195 | sh_dmae_writel(sh_chan, chcr, CHCR); |
| 196 | } |
| 197 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 198 | static int dmae_set_chcr(struct sh_dmae_chan *sh_chan, u32 val) |
| 199 | { |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 200 | /* If DMA is active, cannot set CHCR. TODO: remove this superfluous check */ |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 201 | if (dmae_is_busy(sh_chan)) |
| 202 | return -EBUSY; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 203 | |
Guennadi Liakhovetski | 8b1935e | 2010-02-11 16:50:14 +0000 | [diff] [blame] | 204 | sh_chan->xmit_shift = calc_xmit_shift(sh_chan, val); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 205 | sh_dmae_writel(sh_chan, val, CHCR); |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 206 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 207 | return 0; |
| 208 | } |
| 209 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 210 | static int dmae_set_dmars(struct sh_dmae_chan *sh_chan, u16 val) |
| 211 | { |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 212 | struct sh_dmae_device *shdev = container_of(sh_chan->common.device, |
| 213 | struct sh_dmae_device, common); |
| 214 | struct sh_dmae_pdata *pdata = shdev->pdata; |
Guennadi Liakhovetski | 5bac942 | 2010-04-21 15:36:49 +0000 | [diff] [blame] | 215 | const struct sh_dmae_channel *chan_pdata = &pdata->channel[sh_chan->id]; |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 216 | u16 __iomem *addr = shdev->dmars + chan_pdata->dmars / sizeof(u16); |
| 217 | int shift = chan_pdata->dmars_bit; |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 218 | |
| 219 | if (dmae_is_busy(sh_chan)) |
| 220 | return -EBUSY; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 221 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 222 | __raw_writew((__raw_readw(addr) & (0xff00 >> shift)) | (val << shift), |
| 223 | addr); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | static dma_cookie_t sh_dmae_tx_submit(struct dma_async_tx_descriptor *tx) |
| 229 | { |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 230 | struct sh_desc *desc = tx_to_sh_desc(tx), *chunk, *last = desc, *c; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 231 | struct sh_dmae_chan *sh_chan = to_sh_chan(tx->chan); |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 232 | dma_async_tx_callback callback = tx->callback; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 233 | dma_cookie_t cookie; |
| 234 | |
| 235 | spin_lock_bh(&sh_chan->desc_lock); |
| 236 | |
| 237 | cookie = sh_chan->common.cookie; |
| 238 | cookie++; |
| 239 | if (cookie < 0) |
| 240 | cookie = 1; |
| 241 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 242 | sh_chan->common.cookie = cookie; |
| 243 | tx->cookie = cookie; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 244 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 245 | /* Mark all chunks of this descriptor as submitted, move to the queue */ |
| 246 | list_for_each_entry_safe(chunk, c, desc->node.prev, node) { |
| 247 | /* |
| 248 | * All chunks are on the global ld_free, so, we have to find |
| 249 | * the end of the chain ourselves |
| 250 | */ |
| 251 | if (chunk != desc && (chunk->mark == DESC_IDLE || |
| 252 | chunk->async_tx.cookie > 0 || |
| 253 | chunk->async_tx.cookie == -EBUSY || |
| 254 | &chunk->node == &sh_chan->ld_free)) |
| 255 | break; |
| 256 | chunk->mark = DESC_SUBMITTED; |
| 257 | /* Callback goes to the last chunk */ |
| 258 | chunk->async_tx.callback = NULL; |
| 259 | chunk->cookie = cookie; |
| 260 | list_move_tail(&chunk->node, &sh_chan->ld_queue); |
| 261 | last = chunk; |
| 262 | } |
| 263 | |
| 264 | last->async_tx.callback = callback; |
| 265 | last->async_tx.callback_param = tx->callback_param; |
| 266 | |
| 267 | dev_dbg(sh_chan->dev, "submit #%d@%p on %d: %x[%d] -> %x\n", |
| 268 | tx->cookie, &last->async_tx, sh_chan->id, |
| 269 | desc->hw.sar, desc->hw.tcr, desc->hw.dar); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 270 | |
| 271 | spin_unlock_bh(&sh_chan->desc_lock); |
| 272 | |
| 273 | return cookie; |
| 274 | } |
| 275 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 276 | /* Called with desc_lock held */ |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 277 | static struct sh_desc *sh_dmae_get_desc(struct sh_dmae_chan *sh_chan) |
| 278 | { |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 279 | struct sh_desc *desc; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 280 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 281 | list_for_each_entry(desc, &sh_chan->ld_free, node) |
| 282 | if (desc->mark != DESC_PREPARED) { |
| 283 | BUG_ON(desc->mark != DESC_IDLE); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 284 | list_del(&desc->node); |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 285 | return desc; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 286 | } |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 287 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 288 | return NULL; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 289 | } |
| 290 | |
Guennadi Liakhovetski | 5bac942 | 2010-04-21 15:36:49 +0000 | [diff] [blame] | 291 | static const struct sh_dmae_slave_config *sh_dmae_find_slave( |
Magnus Damm | 4bab9d4 | 2010-03-19 04:46:38 +0000 | [diff] [blame] | 292 | struct sh_dmae_chan *sh_chan, struct sh_dmae_slave *param) |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 293 | { |
| 294 | struct dma_device *dma_dev = sh_chan->common.device; |
| 295 | struct sh_dmae_device *shdev = container_of(dma_dev, |
| 296 | struct sh_dmae_device, common); |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 297 | struct sh_dmae_pdata *pdata = shdev->pdata; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 298 | int i; |
| 299 | |
Magnus Damm | 02ca508 | 2010-03-19 04:46:47 +0000 | [diff] [blame] | 300 | if (param->slave_id >= SH_DMA_SLAVE_NUMBER) |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 301 | return NULL; |
| 302 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 303 | for (i = 0; i < pdata->slave_num; i++) |
Magnus Damm | 4bab9d4 | 2010-03-19 04:46:38 +0000 | [diff] [blame] | 304 | if (pdata->slave[i].slave_id == param->slave_id) |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 305 | return pdata->slave + i; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 306 | |
| 307 | return NULL; |
| 308 | } |
| 309 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 310 | static int sh_dmae_alloc_chan_resources(struct dma_chan *chan) |
| 311 | { |
| 312 | struct sh_dmae_chan *sh_chan = to_sh_chan(chan); |
| 313 | struct sh_desc *desc; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 314 | struct sh_dmae_slave *param = chan->private; |
Guennadi Liakhovetski | 83515bc | 2010-04-19 08:39:39 +0000 | [diff] [blame] | 315 | int ret; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 316 | |
Guennadi Liakhovetski | 20f2a3b | 2010-02-11 16:50:18 +0000 | [diff] [blame] | 317 | pm_runtime_get_sync(sh_chan->dev); |
| 318 | |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 319 | /* |
| 320 | * This relies on the guarantee from dmaengine that alloc_chan_resources |
| 321 | * never runs concurrently with itself or free_chan_resources. |
| 322 | */ |
| 323 | if (param) { |
Guennadi Liakhovetski | 5bac942 | 2010-04-21 15:36:49 +0000 | [diff] [blame] | 324 | const struct sh_dmae_slave_config *cfg; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 325 | |
Magnus Damm | 4bab9d4 | 2010-03-19 04:46:38 +0000 | [diff] [blame] | 326 | cfg = sh_dmae_find_slave(sh_chan, param); |
Guennadi Liakhovetski | 83515bc | 2010-04-19 08:39:39 +0000 | [diff] [blame] | 327 | if (!cfg) { |
| 328 | ret = -EINVAL; |
| 329 | goto efindslave; |
| 330 | } |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 331 | |
Guennadi Liakhovetski | 83515bc | 2010-04-19 08:39:39 +0000 | [diff] [blame] | 332 | if (test_and_set_bit(param->slave_id, sh_dmae_slave_used)) { |
| 333 | ret = -EBUSY; |
| 334 | goto etestused; |
| 335 | } |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 336 | |
| 337 | param->config = cfg; |
| 338 | |
| 339 | dmae_set_dmars(sh_chan, cfg->mid_rid); |
| 340 | dmae_set_chcr(sh_chan, cfg->chcr); |
Guennadi Liakhovetski | 8b1935e | 2010-02-11 16:50:14 +0000 | [diff] [blame] | 341 | } else if ((sh_dmae_readl(sh_chan, CHCR) & 0xf00) != 0x400) { |
| 342 | dmae_init(sh_chan); |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 343 | } |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 344 | |
| 345 | spin_lock_bh(&sh_chan->desc_lock); |
| 346 | while (sh_chan->descs_allocated < NR_DESCS_PER_CHANNEL) { |
| 347 | spin_unlock_bh(&sh_chan->desc_lock); |
| 348 | desc = kzalloc(sizeof(struct sh_desc), GFP_KERNEL); |
| 349 | if (!desc) { |
| 350 | spin_lock_bh(&sh_chan->desc_lock); |
| 351 | break; |
| 352 | } |
| 353 | dma_async_tx_descriptor_init(&desc->async_tx, |
| 354 | &sh_chan->common); |
| 355 | desc->async_tx.tx_submit = sh_dmae_tx_submit; |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 356 | desc->mark = DESC_IDLE; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 357 | |
| 358 | spin_lock_bh(&sh_chan->desc_lock); |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 359 | list_add(&desc->node, &sh_chan->ld_free); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 360 | sh_chan->descs_allocated++; |
| 361 | } |
| 362 | spin_unlock_bh(&sh_chan->desc_lock); |
| 363 | |
Guennadi Liakhovetski | 83515bc | 2010-04-19 08:39:39 +0000 | [diff] [blame] | 364 | if (!sh_chan->descs_allocated) { |
| 365 | ret = -ENOMEM; |
| 366 | goto edescalloc; |
| 367 | } |
Guennadi Liakhovetski | 20f2a3b | 2010-02-11 16:50:18 +0000 | [diff] [blame] | 368 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 369 | return sh_chan->descs_allocated; |
Guennadi Liakhovetski | 83515bc | 2010-04-19 08:39:39 +0000 | [diff] [blame] | 370 | |
| 371 | edescalloc: |
| 372 | if (param) |
| 373 | clear_bit(param->slave_id, sh_dmae_slave_used); |
| 374 | etestused: |
| 375 | efindslave: |
| 376 | pm_runtime_put(sh_chan->dev); |
| 377 | return ret; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | /* |
| 381 | * sh_dma_free_chan_resources - Free all resources of the channel. |
| 382 | */ |
| 383 | static void sh_dmae_free_chan_resources(struct dma_chan *chan) |
| 384 | { |
| 385 | struct sh_dmae_chan *sh_chan = to_sh_chan(chan); |
| 386 | struct sh_desc *desc, *_desc; |
| 387 | LIST_HEAD(list); |
Guennadi Liakhovetski | 20f2a3b | 2010-02-11 16:50:18 +0000 | [diff] [blame] | 388 | int descs = sh_chan->descs_allocated; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 389 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 390 | /* Protect against ISR */ |
| 391 | spin_lock_irq(&sh_chan->desc_lock); |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 392 | dmae_halt(sh_chan); |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 393 | spin_unlock_irq(&sh_chan->desc_lock); |
| 394 | |
| 395 | /* Now no new interrupts will occur */ |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 396 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 397 | /* Prepared and not submitted descriptors can still be on the queue */ |
| 398 | if (!list_empty(&sh_chan->ld_queue)) |
| 399 | sh_dmae_chan_ld_cleanup(sh_chan, true); |
| 400 | |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 401 | if (chan->private) { |
| 402 | /* The caller is holding dma_list_mutex */ |
| 403 | struct sh_dmae_slave *param = chan->private; |
| 404 | clear_bit(param->slave_id, sh_dmae_slave_used); |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 405 | chan->private = NULL; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 406 | } |
| 407 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 408 | spin_lock_bh(&sh_chan->desc_lock); |
| 409 | |
| 410 | list_splice_init(&sh_chan->ld_free, &list); |
| 411 | sh_chan->descs_allocated = 0; |
| 412 | |
| 413 | spin_unlock_bh(&sh_chan->desc_lock); |
| 414 | |
Guennadi Liakhovetski | 20f2a3b | 2010-02-11 16:50:18 +0000 | [diff] [blame] | 415 | if (descs > 0) |
| 416 | pm_runtime_put(sh_chan->dev); |
| 417 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 418 | list_for_each_entry_safe(desc, _desc, &list, node) |
| 419 | kfree(desc); |
| 420 | } |
| 421 | |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 422 | /** |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 423 | * sh_dmae_add_desc - get, set up and return one transfer descriptor |
| 424 | * @sh_chan: DMA channel |
| 425 | * @flags: DMA transfer flags |
| 426 | * @dest: destination DMA address, incremented when direction equals |
| 427 | * DMA_FROM_DEVICE or DMA_BIDIRECTIONAL |
| 428 | * @src: source DMA address, incremented when direction equals |
| 429 | * DMA_TO_DEVICE or DMA_BIDIRECTIONAL |
| 430 | * @len: DMA transfer length |
| 431 | * @first: if NULL, set to the current descriptor and cookie set to -EBUSY |
| 432 | * @direction: needed for slave DMA to decide which address to keep constant, |
| 433 | * equals DMA_BIDIRECTIONAL for MEMCPY |
| 434 | * Returns 0 or an error |
| 435 | * Locks: called with desc_lock held |
| 436 | */ |
| 437 | static struct sh_desc *sh_dmae_add_desc(struct sh_dmae_chan *sh_chan, |
| 438 | unsigned long flags, dma_addr_t *dest, dma_addr_t *src, size_t *len, |
| 439 | struct sh_desc **first, enum dma_data_direction direction) |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 440 | { |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 441 | struct sh_desc *new; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 442 | size_t copy_size; |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 443 | |
| 444 | if (!*len) |
| 445 | return NULL; |
| 446 | |
| 447 | /* Allocate the link descriptor from the free list */ |
| 448 | new = sh_dmae_get_desc(sh_chan); |
| 449 | if (!new) { |
| 450 | dev_err(sh_chan->dev, "No free link descriptor available\n"); |
| 451 | return NULL; |
| 452 | } |
| 453 | |
| 454 | copy_size = min(*len, (size_t)SH_DMA_TCR_MAX + 1); |
| 455 | |
| 456 | new->hw.sar = *src; |
| 457 | new->hw.dar = *dest; |
| 458 | new->hw.tcr = copy_size; |
| 459 | |
| 460 | if (!*first) { |
| 461 | /* First desc */ |
| 462 | new->async_tx.cookie = -EBUSY; |
| 463 | *first = new; |
| 464 | } else { |
| 465 | /* Other desc - invisible to the user */ |
| 466 | new->async_tx.cookie = -EINVAL; |
| 467 | } |
| 468 | |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 469 | dev_dbg(sh_chan->dev, |
| 470 | "chaining (%u/%u)@%x -> %x with %p, cookie %d, shift %d\n", |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 471 | copy_size, *len, *src, *dest, &new->async_tx, |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 472 | new->async_tx.cookie, sh_chan->xmit_shift); |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 473 | |
| 474 | new->mark = DESC_PREPARED; |
| 475 | new->async_tx.flags = flags; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 476 | new->direction = direction; |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 477 | |
| 478 | *len -= copy_size; |
| 479 | if (direction == DMA_BIDIRECTIONAL || direction == DMA_TO_DEVICE) |
| 480 | *src += copy_size; |
| 481 | if (direction == DMA_BIDIRECTIONAL || direction == DMA_FROM_DEVICE) |
| 482 | *dest += copy_size; |
| 483 | |
| 484 | return new; |
| 485 | } |
| 486 | |
| 487 | /* |
| 488 | * sh_dmae_prep_sg - prepare transfer descriptors from an SG list |
| 489 | * |
| 490 | * Common routine for public (MEMCPY) and slave DMA. The MEMCPY case is also |
| 491 | * converted to scatter-gather to guarantee consistent locking and a correct |
| 492 | * list manipulation. For slave DMA direction carries the usual meaning, and, |
| 493 | * logically, the SG list is RAM and the addr variable contains slave address, |
| 494 | * e.g., the FIFO I/O register. For MEMCPY direction equals DMA_BIDIRECTIONAL |
| 495 | * and the SG list contains only one element and points at the source buffer. |
| 496 | */ |
| 497 | static struct dma_async_tx_descriptor *sh_dmae_prep_sg(struct sh_dmae_chan *sh_chan, |
| 498 | struct scatterlist *sgl, unsigned int sg_len, dma_addr_t *addr, |
| 499 | enum dma_data_direction direction, unsigned long flags) |
| 500 | { |
| 501 | struct scatterlist *sg; |
| 502 | struct sh_desc *first = NULL, *new = NULL /* compiler... */; |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 503 | LIST_HEAD(tx_list); |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 504 | int chunks = 0; |
| 505 | int i; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 506 | |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 507 | if (!sg_len) |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 508 | return NULL; |
| 509 | |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 510 | for_each_sg(sgl, sg, sg_len, i) |
| 511 | chunks += (sg_dma_len(sg) + SH_DMA_TCR_MAX) / |
| 512 | (SH_DMA_TCR_MAX + 1); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 513 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 514 | /* Have to lock the whole loop to protect against concurrent release */ |
| 515 | spin_lock_bh(&sh_chan->desc_lock); |
| 516 | |
| 517 | /* |
| 518 | * Chaining: |
| 519 | * first descriptor is what user is dealing with in all API calls, its |
| 520 | * cookie is at first set to -EBUSY, at tx-submit to a positive |
| 521 | * number |
| 522 | * if more than one chunk is needed further chunks have cookie = -EINVAL |
| 523 | * the last chunk, if not equal to the first, has cookie = -ENOSPC |
| 524 | * all chunks are linked onto the tx_list head with their .node heads |
| 525 | * only during this function, then they are immediately spliced |
| 526 | * back onto the free list in form of a chain |
| 527 | */ |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 528 | for_each_sg(sgl, sg, sg_len, i) { |
| 529 | dma_addr_t sg_addr = sg_dma_address(sg); |
| 530 | size_t len = sg_dma_len(sg); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 531 | |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 532 | if (!len) |
| 533 | goto err_get_desc; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 534 | |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 535 | do { |
| 536 | dev_dbg(sh_chan->dev, "Add SG #%d@%p[%d], dma %llx\n", |
| 537 | i, sg, len, (unsigned long long)sg_addr); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 538 | |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 539 | if (direction == DMA_FROM_DEVICE) |
| 540 | new = sh_dmae_add_desc(sh_chan, flags, |
| 541 | &sg_addr, addr, &len, &first, |
| 542 | direction); |
| 543 | else |
| 544 | new = sh_dmae_add_desc(sh_chan, flags, |
| 545 | addr, &sg_addr, &len, &first, |
| 546 | direction); |
| 547 | if (!new) |
| 548 | goto err_get_desc; |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 549 | |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 550 | new->chunks = chunks--; |
| 551 | list_add_tail(&new->node, &tx_list); |
| 552 | } while (len); |
| 553 | } |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 554 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 555 | if (new != first) |
| 556 | new->async_tx.cookie = -ENOSPC; |
| 557 | |
| 558 | /* Put them back on the free list, so, they don't get lost */ |
| 559 | list_splice_tail(&tx_list, &sh_chan->ld_free); |
| 560 | |
| 561 | spin_unlock_bh(&sh_chan->desc_lock); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 562 | |
| 563 | return &first->async_tx; |
Guennadi Liakhovetski | fc46185 | 2010-01-19 07:24:55 +0000 | [diff] [blame] | 564 | |
| 565 | err_get_desc: |
| 566 | list_for_each_entry(new, &tx_list, node) |
| 567 | new->mark = DESC_IDLE; |
| 568 | list_splice(&tx_list, &sh_chan->ld_free); |
| 569 | |
| 570 | spin_unlock_bh(&sh_chan->desc_lock); |
| 571 | |
| 572 | return NULL; |
| 573 | } |
| 574 | |
| 575 | static struct dma_async_tx_descriptor *sh_dmae_prep_memcpy( |
| 576 | struct dma_chan *chan, dma_addr_t dma_dest, dma_addr_t dma_src, |
| 577 | size_t len, unsigned long flags) |
| 578 | { |
| 579 | struct sh_dmae_chan *sh_chan; |
| 580 | struct scatterlist sg; |
| 581 | |
| 582 | if (!chan || !len) |
| 583 | return NULL; |
| 584 | |
| 585 | sh_chan = to_sh_chan(chan); |
| 586 | |
| 587 | sg_init_table(&sg, 1); |
| 588 | sg_set_page(&sg, pfn_to_page(PFN_DOWN(dma_src)), len, |
| 589 | offset_in_page(dma_src)); |
| 590 | sg_dma_address(&sg) = dma_src; |
| 591 | sg_dma_len(&sg) = len; |
| 592 | |
| 593 | return sh_dmae_prep_sg(sh_chan, &sg, 1, &dma_dest, DMA_BIDIRECTIONAL, |
| 594 | flags); |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 595 | } |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 596 | |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 597 | static struct dma_async_tx_descriptor *sh_dmae_prep_slave_sg( |
| 598 | struct dma_chan *chan, struct scatterlist *sgl, unsigned int sg_len, |
| 599 | enum dma_data_direction direction, unsigned long flags) |
| 600 | { |
| 601 | struct sh_dmae_slave *param; |
| 602 | struct sh_dmae_chan *sh_chan; |
Guennadi Liakhovetski | 5bac942 | 2010-04-21 15:36:49 +0000 | [diff] [blame] | 603 | dma_addr_t slave_addr; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 604 | |
| 605 | if (!chan) |
| 606 | return NULL; |
| 607 | |
| 608 | sh_chan = to_sh_chan(chan); |
| 609 | param = chan->private; |
| 610 | |
| 611 | /* Someone calling slave DMA on a public channel? */ |
| 612 | if (!param || !sg_len) { |
| 613 | dev_warn(sh_chan->dev, "%s: bad parameter: %p, %d, %d\n", |
| 614 | __func__, param, sg_len, param ? param->slave_id : -1); |
| 615 | return NULL; |
| 616 | } |
| 617 | |
Dan Carpenter | 9f9ff20 | 2010-08-14 11:01:45 +0200 | [diff] [blame] | 618 | slave_addr = param->config->addr; |
| 619 | |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 620 | /* |
| 621 | * if (param != NULL), this is a successfully requested slave channel, |
| 622 | * therefore param->config != NULL too. |
| 623 | */ |
Guennadi Liakhovetski | 5bac942 | 2010-04-21 15:36:49 +0000 | [diff] [blame] | 624 | return sh_dmae_prep_sg(sh_chan, sgl, sg_len, &slave_addr, |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 625 | direction, flags); |
| 626 | } |
| 627 | |
Linus Walleij | 0582763 | 2010-05-17 16:30:42 -0700 | [diff] [blame] | 628 | static int sh_dmae_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd, |
| 629 | unsigned long arg) |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 630 | { |
| 631 | struct sh_dmae_chan *sh_chan = to_sh_chan(chan); |
| 632 | |
Linus Walleij | c3635c7 | 2010-03-26 16:44:01 -0700 | [diff] [blame] | 633 | /* Only supports DMA_TERMINATE_ALL */ |
| 634 | if (cmd != DMA_TERMINATE_ALL) |
| 635 | return -ENXIO; |
| 636 | |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 637 | if (!chan) |
Linus Walleij | c3635c7 | 2010-03-26 16:44:01 -0700 | [diff] [blame] | 638 | return -EINVAL; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 639 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 640 | spin_lock_bh(&sh_chan->desc_lock); |
Guennadi Liakhovetski | c014906 | 2010-02-18 16:30:02 +0000 | [diff] [blame] | 641 | dmae_halt(sh_chan); |
| 642 | |
Guennadi Liakhovetski | c014906 | 2010-02-18 16:30:02 +0000 | [diff] [blame] | 643 | if (!list_empty(&sh_chan->ld_queue)) { |
| 644 | /* Record partial transfer */ |
| 645 | struct sh_desc *desc = list_entry(sh_chan->ld_queue.next, |
| 646 | struct sh_desc, node); |
| 647 | desc->partial = (desc->hw.tcr - sh_dmae_readl(sh_chan, TCR)) << |
| 648 | sh_chan->xmit_shift; |
| 649 | |
| 650 | } |
| 651 | spin_unlock_bh(&sh_chan->desc_lock); |
| 652 | |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 653 | sh_dmae_chan_ld_cleanup(sh_chan, true); |
Linus Walleij | c3635c7 | 2010-03-26 16:44:01 -0700 | [diff] [blame] | 654 | |
| 655 | return 0; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 656 | } |
| 657 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 658 | static dma_async_tx_callback __ld_cleanup(struct sh_dmae_chan *sh_chan, bool all) |
| 659 | { |
| 660 | struct sh_desc *desc, *_desc; |
| 661 | /* Is the "exposed" head of a chain acked? */ |
| 662 | bool head_acked = false; |
| 663 | dma_cookie_t cookie = 0; |
| 664 | dma_async_tx_callback callback = NULL; |
| 665 | void *param = NULL; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 666 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 667 | spin_lock_bh(&sh_chan->desc_lock); |
| 668 | list_for_each_entry_safe(desc, _desc, &sh_chan->ld_queue, node) { |
| 669 | struct dma_async_tx_descriptor *tx = &desc->async_tx; |
| 670 | |
| 671 | BUG_ON(tx->cookie > 0 && tx->cookie != desc->cookie); |
| 672 | BUG_ON(desc->mark != DESC_SUBMITTED && |
| 673 | desc->mark != DESC_COMPLETED && |
| 674 | desc->mark != DESC_WAITING); |
| 675 | |
| 676 | /* |
| 677 | * queue is ordered, and we use this loop to (1) clean up all |
| 678 | * completed descriptors, and to (2) update descriptor flags of |
| 679 | * any chunks in a (partially) completed chain |
| 680 | */ |
| 681 | if (!all && desc->mark == DESC_SUBMITTED && |
| 682 | desc->cookie != cookie) |
| 683 | break; |
| 684 | |
| 685 | if (tx->cookie > 0) |
| 686 | cookie = tx->cookie; |
| 687 | |
| 688 | if (desc->mark == DESC_COMPLETED && desc->chunks == 1) { |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 689 | if (sh_chan->completed_cookie != desc->cookie - 1) |
| 690 | dev_dbg(sh_chan->dev, |
| 691 | "Completing cookie %d, expected %d\n", |
| 692 | desc->cookie, |
| 693 | sh_chan->completed_cookie + 1); |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 694 | sh_chan->completed_cookie = desc->cookie; |
| 695 | } |
| 696 | |
| 697 | /* Call callback on the last chunk */ |
| 698 | if (desc->mark == DESC_COMPLETED && tx->callback) { |
| 699 | desc->mark = DESC_WAITING; |
| 700 | callback = tx->callback; |
| 701 | param = tx->callback_param; |
| 702 | dev_dbg(sh_chan->dev, "descriptor #%d@%p on %d callback\n", |
| 703 | tx->cookie, tx, sh_chan->id); |
| 704 | BUG_ON(desc->chunks != 1); |
| 705 | break; |
| 706 | } |
| 707 | |
| 708 | if (tx->cookie > 0 || tx->cookie == -EBUSY) { |
| 709 | if (desc->mark == DESC_COMPLETED) { |
| 710 | BUG_ON(tx->cookie < 0); |
| 711 | desc->mark = DESC_WAITING; |
| 712 | } |
| 713 | head_acked = async_tx_test_ack(tx); |
| 714 | } else { |
| 715 | switch (desc->mark) { |
| 716 | case DESC_COMPLETED: |
| 717 | desc->mark = DESC_WAITING; |
| 718 | /* Fall through */ |
| 719 | case DESC_WAITING: |
| 720 | if (head_acked) |
| 721 | async_tx_ack(&desc->async_tx); |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | dev_dbg(sh_chan->dev, "descriptor %p #%d completed.\n", |
| 726 | tx, tx->cookie); |
| 727 | |
| 728 | if (((desc->mark == DESC_COMPLETED || |
| 729 | desc->mark == DESC_WAITING) && |
| 730 | async_tx_test_ack(&desc->async_tx)) || all) { |
| 731 | /* Remove from ld_queue list */ |
| 732 | desc->mark = DESC_IDLE; |
| 733 | list_move(&desc->node, &sh_chan->ld_free); |
| 734 | } |
| 735 | } |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 736 | |
| 737 | if (all && !callback) |
| 738 | /* |
| 739 | * Terminating and the loop completed normally: forgive |
| 740 | * uncompleted cookies |
| 741 | */ |
| 742 | sh_chan->completed_cookie = sh_chan->common.cookie; |
| 743 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 744 | spin_unlock_bh(&sh_chan->desc_lock); |
| 745 | |
| 746 | if (callback) |
| 747 | callback(param); |
| 748 | |
| 749 | return callback; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 750 | } |
| 751 | |
| 752 | /* |
| 753 | * sh_chan_ld_cleanup - Clean up link descriptors |
| 754 | * |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 755 | * This function cleans up the ld_queue of DMA channel. |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 756 | */ |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 757 | static void sh_dmae_chan_ld_cleanup(struct sh_dmae_chan *sh_chan, bool all) |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 758 | { |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 759 | while (__ld_cleanup(sh_chan, all)) |
| 760 | ; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | static void sh_chan_xfer_ld_queue(struct sh_dmae_chan *sh_chan) |
| 764 | { |
Guennadi Liakhovetski | 47a4dc2 | 2010-02-11 16:50:05 +0000 | [diff] [blame] | 765 | struct sh_desc *desc; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 766 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 767 | spin_lock_bh(&sh_chan->desc_lock); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 768 | /* DMA work check */ |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 769 | if (dmae_is_busy(sh_chan)) { |
| 770 | spin_unlock_bh(&sh_chan->desc_lock); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 771 | return; |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 772 | } |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 773 | |
Justin P. Mattock | 5a3a765 | 2011-01-19 15:36:38 +0100 | [diff] [blame] | 774 | /* Find the first not transferred descriptor */ |
Guennadi Liakhovetski | 47a4dc2 | 2010-02-11 16:50:05 +0000 | [diff] [blame] | 775 | list_for_each_entry(desc, &sh_chan->ld_queue, node) |
| 776 | if (desc->mark == DESC_SUBMITTED) { |
Guennadi Liakhovetski | c014906 | 2010-02-18 16:30:02 +0000 | [diff] [blame] | 777 | dev_dbg(sh_chan->dev, "Queue #%d to %d: %u@%x -> %x\n", |
| 778 | desc->async_tx.cookie, sh_chan->id, |
| 779 | desc->hw.tcr, desc->hw.sar, desc->hw.dar); |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 780 | /* Get the ld start address from ld_queue */ |
Guennadi Liakhovetski | 47a4dc2 | 2010-02-11 16:50:05 +0000 | [diff] [blame] | 781 | dmae_set_reg(sh_chan, &desc->hw); |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 782 | dmae_start(sh_chan); |
| 783 | break; |
| 784 | } |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 785 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 786 | spin_unlock_bh(&sh_chan->desc_lock); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | static void sh_dmae_memcpy_issue_pending(struct dma_chan *chan) |
| 790 | { |
| 791 | struct sh_dmae_chan *sh_chan = to_sh_chan(chan); |
| 792 | sh_chan_xfer_ld_queue(sh_chan); |
| 793 | } |
| 794 | |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 795 | static enum dma_status sh_dmae_tx_status(struct dma_chan *chan, |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 796 | dma_cookie_t cookie, |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 797 | struct dma_tx_state *txstate) |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 798 | { |
| 799 | struct sh_dmae_chan *sh_chan = to_sh_chan(chan); |
| 800 | dma_cookie_t last_used; |
| 801 | dma_cookie_t last_complete; |
Guennadi Liakhovetski | 47a4dc2 | 2010-02-11 16:50:05 +0000 | [diff] [blame] | 802 | enum dma_status status; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 803 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 804 | sh_dmae_chan_ld_cleanup(sh_chan, false); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 805 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 806 | /* First read completed cookie to avoid a skew */ |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 807 | last_complete = sh_chan->completed_cookie; |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 808 | rmb(); |
| 809 | last_used = chan->cookie; |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 810 | BUG_ON(last_complete < 0); |
Dan Williams | bca3469 | 2010-03-26 16:52:10 -0700 | [diff] [blame] | 811 | dma_set_tx_state(txstate, last_complete, last_used, 0); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 812 | |
Guennadi Liakhovetski | 47a4dc2 | 2010-02-11 16:50:05 +0000 | [diff] [blame] | 813 | spin_lock_bh(&sh_chan->desc_lock); |
| 814 | |
| 815 | status = dma_async_is_complete(cookie, last_complete, last_used); |
| 816 | |
| 817 | /* |
| 818 | * If we don't find cookie on the queue, it has been aborted and we have |
| 819 | * to report error |
| 820 | */ |
| 821 | if (status != DMA_SUCCESS) { |
| 822 | struct sh_desc *desc; |
| 823 | status = DMA_ERROR; |
| 824 | list_for_each_entry(desc, &sh_chan->ld_queue, node) |
| 825 | if (desc->cookie == cookie) { |
| 826 | status = DMA_IN_PROGRESS; |
| 827 | break; |
| 828 | } |
| 829 | } |
| 830 | |
| 831 | spin_unlock_bh(&sh_chan->desc_lock); |
| 832 | |
| 833 | return status; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 834 | } |
| 835 | |
| 836 | static irqreturn_t sh_dmae_interrupt(int irq, void *data) |
| 837 | { |
| 838 | irqreturn_t ret = IRQ_NONE; |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 839 | struct sh_dmae_chan *sh_chan = data; |
| 840 | u32 chcr; |
| 841 | |
| 842 | spin_lock(&sh_chan->desc_lock); |
| 843 | |
| 844 | chcr = sh_dmae_readl(sh_chan, CHCR); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 845 | |
| 846 | if (chcr & CHCR_TE) { |
| 847 | /* DMA stop */ |
| 848 | dmae_halt(sh_chan); |
| 849 | |
| 850 | ret = IRQ_HANDLED; |
| 851 | tasklet_schedule(&sh_chan->tasklet); |
| 852 | } |
| 853 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 854 | spin_unlock(&sh_chan->desc_lock); |
| 855 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 856 | return ret; |
| 857 | } |
| 858 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 859 | /* Called from error IRQ or NMI */ |
| 860 | static bool sh_dmae_reset(struct sh_dmae_device *shdev) |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 861 | { |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 862 | unsigned int handled = 0; |
Guennadi Liakhovetski | 47a4dc2 | 2010-02-11 16:50:05 +0000 | [diff] [blame] | 863 | int i; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 864 | |
Guennadi Liakhovetski | 47a4dc2 | 2010-02-11 16:50:05 +0000 | [diff] [blame] | 865 | /* halt the dma controller */ |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 866 | sh_dmae_ctl_stop(shdev); |
Guennadi Liakhovetski | 47a4dc2 | 2010-02-11 16:50:05 +0000 | [diff] [blame] | 867 | |
| 868 | /* We cannot detect, which channel caused the error, have to reset all */ |
Guennadi Liakhovetski | 8b1935e | 2010-02-11 16:50:14 +0000 | [diff] [blame] | 869 | for (i = 0; i < SH_DMAC_MAX_CHANNELS; i++) { |
Guennadi Liakhovetski | 47a4dc2 | 2010-02-11 16:50:05 +0000 | [diff] [blame] | 870 | struct sh_dmae_chan *sh_chan = shdev->chan[i]; |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 871 | struct sh_desc *desc; |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 872 | LIST_HEAD(dl); |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 873 | |
| 874 | if (!sh_chan) |
| 875 | continue; |
| 876 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 877 | spin_lock(&sh_chan->desc_lock); |
| 878 | |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 879 | /* Stop the channel */ |
| 880 | dmae_halt(sh_chan); |
| 881 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 882 | list_splice_init(&sh_chan->ld_queue, &dl); |
| 883 | |
| 884 | spin_unlock(&sh_chan->desc_lock); |
| 885 | |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 886 | /* Complete all */ |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 887 | list_for_each_entry(desc, &dl, node) { |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 888 | struct dma_async_tx_descriptor *tx = &desc->async_tx; |
| 889 | desc->mark = DESC_IDLE; |
| 890 | if (tx->callback) |
| 891 | tx->callback(tx->callback_param); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 892 | } |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 893 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 894 | spin_lock(&sh_chan->desc_lock); |
| 895 | list_splice(&dl, &sh_chan->ld_free); |
| 896 | spin_unlock(&sh_chan->desc_lock); |
| 897 | |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 898 | handled++; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 899 | } |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 900 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 901 | sh_dmae_rst(shdev); |
Guennadi Liakhovetski | 47a4dc2 | 2010-02-11 16:50:05 +0000 | [diff] [blame] | 902 | |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 903 | return !!handled; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 904 | } |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 905 | |
| 906 | static irqreturn_t sh_dmae_err(int irq, void *data) |
| 907 | { |
Yoshihiro Shimoda | ff7690b | 2011-02-09 07:46:47 +0000 | [diff] [blame] | 908 | struct sh_dmae_device *shdev = data; |
| 909 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 910 | if (!(dmaor_read(shdev) & DMAOR_AE)) |
Yoshihiro Shimoda | ff7690b | 2011-02-09 07:46:47 +0000 | [diff] [blame] | 911 | return IRQ_NONE; |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 912 | |
| 913 | sh_dmae_reset(data); |
| 914 | return IRQ_HANDLED; |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 915 | } |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 916 | |
| 917 | static void dmae_do_tasklet(unsigned long data) |
| 918 | { |
| 919 | struct sh_dmae_chan *sh_chan = (struct sh_dmae_chan *)data; |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 920 | struct sh_desc *desc; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 921 | u32 sar_buf = sh_dmae_readl(sh_chan, SAR); |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 922 | u32 dar_buf = sh_dmae_readl(sh_chan, DAR); |
Guennadi Liakhovetski | 86d61b3 | 2009-12-10 18:35:07 +0100 | [diff] [blame] | 923 | |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 924 | spin_lock(&sh_chan->desc_lock); |
| 925 | list_for_each_entry(desc, &sh_chan->ld_queue, node) { |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 926 | if (desc->mark == DESC_SUBMITTED && |
| 927 | ((desc->direction == DMA_FROM_DEVICE && |
| 928 | (desc->hw.dar + desc->hw.tcr) == dar_buf) || |
| 929 | (desc->hw.sar + desc->hw.tcr) == sar_buf)) { |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 930 | dev_dbg(sh_chan->dev, "done #%d@%p dst %u\n", |
| 931 | desc->async_tx.cookie, &desc->async_tx, |
| 932 | desc->hw.dar); |
| 933 | desc->mark = DESC_COMPLETED; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 934 | break; |
| 935 | } |
| 936 | } |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 937 | spin_unlock(&sh_chan->desc_lock); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 938 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 939 | /* Next desc */ |
| 940 | sh_chan_xfer_ld_queue(sh_chan); |
Guennadi Liakhovetski | 3542a11 | 2009-12-17 09:41:39 -0700 | [diff] [blame] | 941 | sh_dmae_chan_ld_cleanup(sh_chan, false); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 942 | } |
| 943 | |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 944 | static bool sh_dmae_nmi_notify(struct sh_dmae_device *shdev) |
| 945 | { |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 946 | /* Fast path out if NMIF is not asserted for this controller */ |
| 947 | if ((dmaor_read(shdev) & DMAOR_NMIF) == 0) |
| 948 | return false; |
| 949 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 950 | return sh_dmae_reset(shdev); |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 951 | } |
| 952 | |
| 953 | static int sh_dmae_nmi_handler(struct notifier_block *self, |
| 954 | unsigned long cmd, void *data) |
| 955 | { |
| 956 | struct sh_dmae_device *shdev; |
| 957 | int ret = NOTIFY_DONE; |
| 958 | bool triggered; |
| 959 | |
| 960 | /* |
| 961 | * Only concern ourselves with NMI events. |
| 962 | * |
| 963 | * Normally we would check the die chain value, but as this needs |
| 964 | * to be architecture independent, check for NMI context instead. |
| 965 | */ |
| 966 | if (!in_nmi()) |
| 967 | return NOTIFY_DONE; |
| 968 | |
| 969 | rcu_read_lock(); |
| 970 | list_for_each_entry_rcu(shdev, &sh_dmae_devices, node) { |
| 971 | /* |
| 972 | * Only stop if one of the controllers has NMIF asserted, |
| 973 | * we do not want to interfere with regular address error |
| 974 | * handling or NMI events that don't concern the DMACs. |
| 975 | */ |
| 976 | triggered = sh_dmae_nmi_notify(shdev); |
| 977 | if (triggered == true) |
| 978 | ret = NOTIFY_OK; |
| 979 | } |
| 980 | rcu_read_unlock(); |
| 981 | |
| 982 | return ret; |
| 983 | } |
| 984 | |
| 985 | static struct notifier_block sh_dmae_nmi_notifier __read_mostly = { |
| 986 | .notifier_call = sh_dmae_nmi_handler, |
| 987 | |
| 988 | /* Run before NMI debug handler and KGDB */ |
| 989 | .priority = 1, |
| 990 | }; |
| 991 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 992 | static int __devinit sh_dmae_chan_probe(struct sh_dmae_device *shdev, int id, |
| 993 | int irq, unsigned long flags) |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 994 | { |
| 995 | int err; |
Guennadi Liakhovetski | 5bac942 | 2010-04-21 15:36:49 +0000 | [diff] [blame] | 996 | const struct sh_dmae_channel *chan_pdata = &shdev->pdata->channel[id]; |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 997 | struct platform_device *pdev = to_platform_device(shdev->common.dev); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 998 | struct sh_dmae_chan *new_sh_chan; |
| 999 | |
| 1000 | /* alloc channel */ |
| 1001 | new_sh_chan = kzalloc(sizeof(struct sh_dmae_chan), GFP_KERNEL); |
| 1002 | if (!new_sh_chan) { |
Guennadi Liakhovetski | 86d61b3 | 2009-12-10 18:35:07 +0100 | [diff] [blame] | 1003 | dev_err(shdev->common.dev, |
| 1004 | "No free memory for allocating dma channels!\n"); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1005 | return -ENOMEM; |
| 1006 | } |
| 1007 | |
Guennadi Liakhovetski | 8b1935e | 2010-02-11 16:50:14 +0000 | [diff] [blame] | 1008 | /* copy struct dma_device */ |
| 1009 | new_sh_chan->common.device = &shdev->common; |
| 1010 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1011 | new_sh_chan->dev = shdev->common.dev; |
| 1012 | new_sh_chan->id = id; |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1013 | new_sh_chan->irq = irq; |
| 1014 | new_sh_chan->base = shdev->chan_reg + chan_pdata->offset / sizeof(u32); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1015 | |
| 1016 | /* Init DMA tasklet */ |
| 1017 | tasklet_init(&new_sh_chan->tasklet, dmae_do_tasklet, |
| 1018 | (unsigned long)new_sh_chan); |
| 1019 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1020 | spin_lock_init(&new_sh_chan->desc_lock); |
| 1021 | |
| 1022 | /* Init descripter manage list */ |
| 1023 | INIT_LIST_HEAD(&new_sh_chan->ld_queue); |
| 1024 | INIT_LIST_HEAD(&new_sh_chan->ld_free); |
| 1025 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1026 | /* Add the channel to DMA device channel list */ |
| 1027 | list_add_tail(&new_sh_chan->common.device_node, |
| 1028 | &shdev->common.channels); |
| 1029 | shdev->common.chancnt++; |
| 1030 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1031 | if (pdev->id >= 0) |
| 1032 | snprintf(new_sh_chan->dev_id, sizeof(new_sh_chan->dev_id), |
| 1033 | "sh-dmae%d.%d", pdev->id, new_sh_chan->id); |
| 1034 | else |
| 1035 | snprintf(new_sh_chan->dev_id, sizeof(new_sh_chan->dev_id), |
| 1036 | "sh-dma%d", new_sh_chan->id); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1037 | |
| 1038 | /* set up channel irq */ |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1039 | err = request_irq(irq, &sh_dmae_interrupt, flags, |
Guennadi Liakhovetski | 86d61b3 | 2009-12-10 18:35:07 +0100 | [diff] [blame] | 1040 | new_sh_chan->dev_id, new_sh_chan); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1041 | if (err) { |
| 1042 | dev_err(shdev->common.dev, "DMA channel %d request_irq error " |
| 1043 | "with return %d\n", id, err); |
| 1044 | goto err_no_irq; |
| 1045 | } |
| 1046 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1047 | shdev->chan[id] = new_sh_chan; |
| 1048 | return 0; |
| 1049 | |
| 1050 | err_no_irq: |
| 1051 | /* remove from dmaengine device node */ |
| 1052 | list_del(&new_sh_chan->common.device_node); |
| 1053 | kfree(new_sh_chan); |
| 1054 | return err; |
| 1055 | } |
| 1056 | |
| 1057 | static void sh_dmae_chan_remove(struct sh_dmae_device *shdev) |
| 1058 | { |
| 1059 | int i; |
| 1060 | |
| 1061 | for (i = shdev->common.chancnt - 1 ; i >= 0 ; i--) { |
| 1062 | if (shdev->chan[i]) { |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1063 | struct sh_dmae_chan *sh_chan = shdev->chan[i]; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1064 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1065 | free_irq(sh_chan->irq, sh_chan); |
| 1066 | |
| 1067 | list_del(&sh_chan->common.device_node); |
| 1068 | kfree(sh_chan); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1069 | shdev->chan[i] = NULL; |
| 1070 | } |
| 1071 | } |
| 1072 | shdev->common.chancnt = 0; |
| 1073 | } |
| 1074 | |
| 1075 | static int __init sh_dmae_probe(struct platform_device *pdev) |
| 1076 | { |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1077 | struct sh_dmae_pdata *pdata = pdev->dev.platform_data; |
| 1078 | unsigned long irqflags = IRQF_DISABLED, |
Guennadi Liakhovetski | 8b1935e | 2010-02-11 16:50:14 +0000 | [diff] [blame] | 1079 | chan_flag[SH_DMAC_MAX_CHANNELS] = {}; |
| 1080 | int errirq, chan_irq[SH_DMAC_MAX_CHANNELS]; |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1081 | int err, i, irq_cnt = 0, irqres = 0; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1082 | struct sh_dmae_device *shdev; |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1083 | struct resource *chan, *dmars, *errirq_res, *chanirq_res; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1084 | |
Dan Williams | 56adf7e | 2009-11-22 12:10:10 -0700 | [diff] [blame] | 1085 | /* get platform data */ |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1086 | if (!pdata || !pdata->channel_num) |
Dan Williams | 56adf7e | 2009-11-22 12:10:10 -0700 | [diff] [blame] | 1087 | return -ENODEV; |
| 1088 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1089 | chan = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1090 | /* DMARS area is optional, if absent, this controller cannot do slave DMA */ |
| 1091 | dmars = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
| 1092 | /* |
| 1093 | * IRQ resources: |
| 1094 | * 1. there always must be at least one IRQ IO-resource. On SH4 it is |
| 1095 | * the error IRQ, in which case it is the only IRQ in this resource: |
| 1096 | * start == end. If it is the only IRQ resource, all channels also |
| 1097 | * use the same IRQ. |
| 1098 | * 2. DMA channel IRQ resources can be specified one per resource or in |
| 1099 | * ranges (start != end) |
| 1100 | * 3. iff all events (channels and, optionally, error) on this |
| 1101 | * controller use the same IRQ, only one IRQ resource can be |
| 1102 | * specified, otherwise there must be one IRQ per channel, even if |
| 1103 | * some of them are equal |
| 1104 | * 4. if all IRQs on this controller are equal or if some specific IRQs |
| 1105 | * specify IORESOURCE_IRQ_SHAREABLE in their resources, they will be |
| 1106 | * requested with the IRQF_SHARED flag |
| 1107 | */ |
| 1108 | errirq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
| 1109 | if (!chan || !errirq_res) |
| 1110 | return -ENODEV; |
| 1111 | |
| 1112 | if (!request_mem_region(chan->start, resource_size(chan), pdev->name)) { |
| 1113 | dev_err(&pdev->dev, "DMAC register region already claimed\n"); |
| 1114 | return -EBUSY; |
| 1115 | } |
| 1116 | |
| 1117 | if (dmars && !request_mem_region(dmars->start, resource_size(dmars), pdev->name)) { |
| 1118 | dev_err(&pdev->dev, "DMAC DMARS region already claimed\n"); |
| 1119 | err = -EBUSY; |
| 1120 | goto ermrdmars; |
| 1121 | } |
| 1122 | |
| 1123 | err = -ENOMEM; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1124 | shdev = kzalloc(sizeof(struct sh_dmae_device), GFP_KERNEL); |
| 1125 | if (!shdev) { |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1126 | dev_err(&pdev->dev, "Not enough memory\n"); |
| 1127 | goto ealloc; |
| 1128 | } |
| 1129 | |
| 1130 | shdev->chan_reg = ioremap(chan->start, resource_size(chan)); |
| 1131 | if (!shdev->chan_reg) |
| 1132 | goto emapchan; |
| 1133 | if (dmars) { |
| 1134 | shdev->dmars = ioremap(dmars->start, resource_size(dmars)); |
| 1135 | if (!shdev->dmars) |
| 1136 | goto emapdmars; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1137 | } |
| 1138 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1139 | /* platform data */ |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1140 | shdev->pdata = pdata; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1141 | |
Guennadi Liakhovetski | 20f2a3b | 2010-02-11 16:50:18 +0000 | [diff] [blame] | 1142 | pm_runtime_enable(&pdev->dev); |
| 1143 | pm_runtime_get_sync(&pdev->dev); |
| 1144 | |
Guennadi Liakhovetski | 31705e2 | 2011-05-02 07:59:02 +0000 | [diff] [blame] | 1145 | spin_lock_irq(&sh_dmae_lock); |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 1146 | list_add_tail_rcu(&shdev->node, &sh_dmae_devices); |
Guennadi Liakhovetski | 31705e2 | 2011-05-02 07:59:02 +0000 | [diff] [blame] | 1147 | spin_unlock_irq(&sh_dmae_lock); |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 1148 | |
Guennadi Liakhovetski | 2dc6666 | 2011-04-29 17:09:21 +0000 | [diff] [blame] | 1149 | /* reset dma controller - only needed as a test */ |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1150 | err = sh_dmae_rst(shdev); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1151 | if (err) |
| 1152 | goto rst_err; |
| 1153 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1154 | INIT_LIST_HEAD(&shdev->common.channels); |
| 1155 | |
| 1156 | dma_cap_set(DMA_MEMCPY, shdev->common.cap_mask); |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1157 | if (dmars) |
| 1158 | dma_cap_set(DMA_SLAVE, shdev->common.cap_mask); |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 1159 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1160 | shdev->common.device_alloc_chan_resources |
| 1161 | = sh_dmae_alloc_chan_resources; |
| 1162 | shdev->common.device_free_chan_resources = sh_dmae_free_chan_resources; |
| 1163 | shdev->common.device_prep_dma_memcpy = sh_dmae_prep_memcpy; |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 1164 | shdev->common.device_tx_status = sh_dmae_tx_status; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1165 | shdev->common.device_issue_pending = sh_dmae_memcpy_issue_pending; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 1166 | |
| 1167 | /* Compulsory for DMA_SLAVE fields */ |
| 1168 | shdev->common.device_prep_slave_sg = sh_dmae_prep_slave_sg; |
Linus Walleij | c3635c7 | 2010-03-26 16:44:01 -0700 | [diff] [blame] | 1169 | shdev->common.device_control = sh_dmae_control; |
Guennadi Liakhovetski | cfefe99 | 2010-02-03 14:46:41 +0000 | [diff] [blame] | 1170 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1171 | shdev->common.dev = &pdev->dev; |
Guennadi Liakhovetski | ddb4f0f | 2009-12-04 19:44:41 +0100 | [diff] [blame] | 1172 | /* Default transfer size of 32 bytes requires 32-byte alignment */ |
Guennadi Liakhovetski | 8b1935e | 2010-02-11 16:50:14 +0000 | [diff] [blame] | 1173 | shdev->common.copy_align = LOG2_DEFAULT_XFER_SIZE; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1174 | |
Magnus Damm | 927a7c9 | 2010-03-19 04:47:19 +0000 | [diff] [blame] | 1175 | #if defined(CONFIG_CPU_SH4) || defined(CONFIG_ARCH_SHMOBILE) |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1176 | chanirq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 1); |
| 1177 | |
| 1178 | if (!chanirq_res) |
| 1179 | chanirq_res = errirq_res; |
| 1180 | else |
| 1181 | irqres++; |
| 1182 | |
| 1183 | if (chanirq_res == errirq_res || |
| 1184 | (errirq_res->flags & IORESOURCE_BITS) == IORESOURCE_IRQ_SHAREABLE) |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1185 | irqflags = IRQF_SHARED; |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1186 | |
| 1187 | errirq = errirq_res->start; |
| 1188 | |
| 1189 | err = request_irq(errirq, sh_dmae_err, irqflags, |
| 1190 | "DMAC Address Error", shdev); |
| 1191 | if (err) { |
| 1192 | dev_err(&pdev->dev, |
| 1193 | "DMA failed requesting irq #%d, error %d\n", |
| 1194 | errirq, err); |
| 1195 | goto eirq_err; |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1196 | } |
| 1197 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1198 | #else |
| 1199 | chanirq_res = errirq_res; |
Magnus Damm | 927a7c9 | 2010-03-19 04:47:19 +0000 | [diff] [blame] | 1200 | #endif /* CONFIG_CPU_SH4 || CONFIG_ARCH_SHMOBILE */ |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1201 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1202 | if (chanirq_res->start == chanirq_res->end && |
| 1203 | !platform_get_resource(pdev, IORESOURCE_IRQ, 1)) { |
| 1204 | /* Special case - all multiplexed */ |
| 1205 | for (; irq_cnt < pdata->channel_num; irq_cnt++) { |
| 1206 | chan_irq[irq_cnt] = chanirq_res->start; |
| 1207 | chan_flag[irq_cnt] = IRQF_SHARED; |
| 1208 | } |
| 1209 | } else { |
| 1210 | do { |
| 1211 | for (i = chanirq_res->start; i <= chanirq_res->end; i++) { |
| 1212 | if ((errirq_res->flags & IORESOURCE_BITS) == |
| 1213 | IORESOURCE_IRQ_SHAREABLE) |
| 1214 | chan_flag[irq_cnt] = IRQF_SHARED; |
| 1215 | else |
| 1216 | chan_flag[irq_cnt] = IRQF_DISABLED; |
| 1217 | dev_dbg(&pdev->dev, |
| 1218 | "Found IRQ %d for channel %d\n", |
| 1219 | i, irq_cnt); |
| 1220 | chan_irq[irq_cnt++] = i; |
| 1221 | } |
| 1222 | chanirq_res = platform_get_resource(pdev, |
| 1223 | IORESOURCE_IRQ, ++irqres); |
| 1224 | } while (irq_cnt < pdata->channel_num && chanirq_res); |
| 1225 | } |
| 1226 | |
| 1227 | if (irq_cnt < pdata->channel_num) |
| 1228 | goto eirqres; |
| 1229 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1230 | /* Create DMA Channel */ |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1231 | for (i = 0; i < pdata->channel_num; i++) { |
| 1232 | err = sh_dmae_chan_probe(shdev, i, chan_irq[i], chan_flag[i]); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1233 | if (err) |
| 1234 | goto chan_probe_err; |
| 1235 | } |
| 1236 | |
Guennadi Liakhovetski | 20f2a3b | 2010-02-11 16:50:18 +0000 | [diff] [blame] | 1237 | pm_runtime_put(&pdev->dev); |
| 1238 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1239 | platform_set_drvdata(pdev, shdev); |
| 1240 | dma_async_device_register(&shdev->common); |
| 1241 | |
| 1242 | return err; |
| 1243 | |
| 1244 | chan_probe_err: |
| 1245 | sh_dmae_chan_remove(shdev); |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1246 | eirqres: |
Magnus Damm | 927a7c9 | 2010-03-19 04:47:19 +0000 | [diff] [blame] | 1247 | #if defined(CONFIG_CPU_SH4) || defined(CONFIG_ARCH_SHMOBILE) |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1248 | free_irq(errirq, shdev); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1249 | eirq_err: |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1250 | #endif |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1251 | rst_err: |
Guennadi Liakhovetski | 31705e2 | 2011-05-02 07:59:02 +0000 | [diff] [blame] | 1252 | spin_lock_irq(&sh_dmae_lock); |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 1253 | list_del_rcu(&shdev->node); |
Guennadi Liakhovetski | 31705e2 | 2011-05-02 07:59:02 +0000 | [diff] [blame] | 1254 | spin_unlock_irq(&sh_dmae_lock); |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 1255 | |
Guennadi Liakhovetski | 20f2a3b | 2010-02-11 16:50:18 +0000 | [diff] [blame] | 1256 | pm_runtime_put(&pdev->dev); |
Guennadi Liakhovetski | 467017b | 2011-04-29 17:09:25 +0000 | [diff] [blame] | 1257 | pm_runtime_disable(&pdev->dev); |
| 1258 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1259 | if (dmars) |
| 1260 | iounmap(shdev->dmars); |
| 1261 | emapdmars: |
| 1262 | iounmap(shdev->chan_reg); |
Guennadi Liakhovetski | 31705e2 | 2011-05-02 07:59:02 +0000 | [diff] [blame] | 1263 | synchronize_rcu(); |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1264 | emapchan: |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1265 | kfree(shdev); |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1266 | ealloc: |
| 1267 | if (dmars) |
| 1268 | release_mem_region(dmars->start, resource_size(dmars)); |
| 1269 | ermrdmars: |
| 1270 | release_mem_region(chan->start, resource_size(chan)); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1271 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1272 | return err; |
| 1273 | } |
| 1274 | |
| 1275 | static int __exit sh_dmae_remove(struct platform_device *pdev) |
| 1276 | { |
| 1277 | struct sh_dmae_device *shdev = platform_get_drvdata(pdev); |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1278 | struct resource *res; |
| 1279 | int errirq = platform_get_irq(pdev, 0); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1280 | |
| 1281 | dma_async_device_unregister(&shdev->common); |
| 1282 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1283 | if (errirq > 0) |
| 1284 | free_irq(errirq, shdev); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1285 | |
Guennadi Liakhovetski | 31705e2 | 2011-05-02 07:59:02 +0000 | [diff] [blame] | 1286 | spin_lock_irq(&sh_dmae_lock); |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 1287 | list_del_rcu(&shdev->node); |
Guennadi Liakhovetski | 31705e2 | 2011-05-02 07:59:02 +0000 | [diff] [blame] | 1288 | spin_unlock_irq(&sh_dmae_lock); |
Paul Mundt | 03aa18f | 2010-12-17 19:16:10 +0900 | [diff] [blame] | 1289 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1290 | /* channel data remove */ |
| 1291 | sh_dmae_chan_remove(shdev); |
| 1292 | |
Guennadi Liakhovetski | 20f2a3b | 2010-02-11 16:50:18 +0000 | [diff] [blame] | 1293 | pm_runtime_disable(&pdev->dev); |
| 1294 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1295 | if (shdev->dmars) |
| 1296 | iounmap(shdev->dmars); |
| 1297 | iounmap(shdev->chan_reg); |
| 1298 | |
Guennadi Liakhovetski | 31705e2 | 2011-05-02 07:59:02 +0000 | [diff] [blame] | 1299 | synchronize_rcu(); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1300 | kfree(shdev); |
| 1301 | |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1302 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1303 | if (res) |
| 1304 | release_mem_region(res->start, resource_size(res)); |
| 1305 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
| 1306 | if (res) |
| 1307 | release_mem_region(res->start, resource_size(res)); |
| 1308 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1309 | return 0; |
| 1310 | } |
| 1311 | |
| 1312 | static void sh_dmae_shutdown(struct platform_device *pdev) |
| 1313 | { |
| 1314 | struct sh_dmae_device *shdev = platform_get_drvdata(pdev); |
Guennadi Liakhovetski | 027811b | 2010-02-11 16:50:10 +0000 | [diff] [blame] | 1315 | sh_dmae_ctl_stop(shdev); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1316 | } |
| 1317 | |
Guennadi Liakhovetski | 467017b | 2011-04-29 17:09:25 +0000 | [diff] [blame] | 1318 | static int sh_dmae_runtime_suspend(struct device *dev) |
| 1319 | { |
| 1320 | return 0; |
| 1321 | } |
| 1322 | |
| 1323 | static int sh_dmae_runtime_resume(struct device *dev) |
| 1324 | { |
| 1325 | struct sh_dmae_device *shdev = dev_get_drvdata(dev); |
| 1326 | |
| 1327 | return sh_dmae_rst(shdev); |
| 1328 | } |
| 1329 | |
| 1330 | #ifdef CONFIG_PM |
| 1331 | static int sh_dmae_suspend(struct device *dev) |
| 1332 | { |
| 1333 | struct sh_dmae_device *shdev = dev_get_drvdata(dev); |
| 1334 | int i; |
| 1335 | |
| 1336 | for (i = 0; i < shdev->pdata->channel_num; i++) { |
| 1337 | struct sh_dmae_chan *sh_chan = shdev->chan[i]; |
| 1338 | if (sh_chan->descs_allocated) |
| 1339 | sh_chan->pm_error = pm_runtime_put_sync(dev); |
| 1340 | } |
| 1341 | |
| 1342 | return 0; |
| 1343 | } |
| 1344 | |
| 1345 | static int sh_dmae_resume(struct device *dev) |
| 1346 | { |
| 1347 | struct sh_dmae_device *shdev = dev_get_drvdata(dev); |
| 1348 | int i; |
| 1349 | |
| 1350 | for (i = 0; i < shdev->pdata->channel_num; i++) { |
| 1351 | struct sh_dmae_chan *sh_chan = shdev->chan[i]; |
| 1352 | struct sh_dmae_slave *param = sh_chan->common.private; |
| 1353 | |
| 1354 | if (!sh_chan->descs_allocated) |
| 1355 | continue; |
| 1356 | |
| 1357 | if (!sh_chan->pm_error) |
| 1358 | pm_runtime_get_sync(dev); |
| 1359 | |
| 1360 | if (param) { |
| 1361 | const struct sh_dmae_slave_config *cfg = param->config; |
| 1362 | dmae_set_dmars(sh_chan, cfg->mid_rid); |
| 1363 | dmae_set_chcr(sh_chan, cfg->chcr); |
| 1364 | } else { |
| 1365 | dmae_init(sh_chan); |
| 1366 | } |
| 1367 | } |
| 1368 | |
| 1369 | return 0; |
| 1370 | } |
| 1371 | #else |
| 1372 | #define sh_dmae_suspend NULL |
| 1373 | #define sh_dmae_resume NULL |
| 1374 | #endif |
| 1375 | |
| 1376 | const struct dev_pm_ops sh_dmae_pm = { |
| 1377 | .suspend = sh_dmae_suspend, |
| 1378 | .resume = sh_dmae_resume, |
| 1379 | .runtime_suspend = sh_dmae_runtime_suspend, |
| 1380 | .runtime_resume = sh_dmae_runtime_resume, |
| 1381 | }; |
| 1382 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1383 | static struct platform_driver sh_dmae_driver = { |
| 1384 | .remove = __exit_p(sh_dmae_remove), |
| 1385 | .shutdown = sh_dmae_shutdown, |
| 1386 | .driver = { |
Guennadi Liakhovetski | 7a5c106 | 2010-05-21 15:28:51 +0000 | [diff] [blame] | 1387 | .owner = THIS_MODULE, |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1388 | .name = "sh-dma-engine", |
Guennadi Liakhovetski | 467017b | 2011-04-29 17:09:25 +0000 | [diff] [blame] | 1389 | .pm = &sh_dmae_pm, |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1390 | }, |
| 1391 | }; |
| 1392 | |
| 1393 | static int __init sh_dmae_init(void) |
| 1394 | { |
Guennadi Liakhovetski | 661382f | 2011-01-06 17:04:50 +0000 | [diff] [blame] | 1395 | /* Wire up NMI handling */ |
| 1396 | int err = register_die_notifier(&sh_dmae_nmi_notifier); |
| 1397 | if (err) |
| 1398 | return err; |
| 1399 | |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1400 | return platform_driver_probe(&sh_dmae_driver, sh_dmae_probe); |
| 1401 | } |
| 1402 | module_init(sh_dmae_init); |
| 1403 | |
| 1404 | static void __exit sh_dmae_exit(void) |
| 1405 | { |
| 1406 | platform_driver_unregister(&sh_dmae_driver); |
Guennadi Liakhovetski | 661382f | 2011-01-06 17:04:50 +0000 | [diff] [blame] | 1407 | |
| 1408 | unregister_die_notifier(&sh_dmae_nmi_notifier); |
Nobuhiro Iwamatsu | d8902ad | 2009-09-07 03:26:23 +0000 | [diff] [blame] | 1409 | } |
| 1410 | module_exit(sh_dmae_exit); |
| 1411 | |
| 1412 | MODULE_AUTHOR("Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>"); |
| 1413 | MODULE_DESCRIPTION("Renesas SH DMA Engine driver"); |
| 1414 | MODULE_LICENSE("GPL"); |
Guennadi Liakhovetski | e584334 | 2010-11-24 09:48:10 +0000 | [diff] [blame] | 1415 | MODULE_ALIAS("platform:sh-dma-engine"); |