blob: b2728d6ba2fdea97774d904bcd04f58d12187772 [file] [log] [blame]
Chris Leechc13c8262006-05-23 17:18:44 -07001/*
2 * Copyright(c) 2004 - 2006 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation; either version 2 of the License, or (at your option)
7 * any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59
16 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called COPYING.
20 */
21
22/*
23 * This code implements the DMA subsystem. It provides a HW-neutral interface
24 * for other kernel code to use asynchronous memory copy capabilities,
25 * if present, and allows different HW DMA drivers to register as providing
26 * this capability.
27 *
28 * Due to the fact we are accelerating what is already a relatively fast
29 * operation, the code goes to great lengths to avoid additional overhead,
30 * such as locking.
31 *
32 * LOCKING:
33 *
Dan Williamsaa1e6f12009-01-06 11:38:17 -070034 * The subsystem keeps a global list of dma_device structs it is protected by a
35 * mutex, dma_list_mutex.
Chris Leechc13c8262006-05-23 17:18:44 -070036 *
Dan Williamsf27c5802009-01-06 11:38:18 -070037 * A subsystem can get access to a channel by calling dmaengine_get() followed
38 * by dma_find_channel(), or if it has need for an exclusive channel it can call
39 * dma_request_channel(). Once a channel is allocated a reference is taken
40 * against its corresponding driver to disable removal.
41 *
Chris Leechc13c8262006-05-23 17:18:44 -070042 * Each device has a channels list, which runs unlocked but is never modified
43 * once the device is registered, it's just setup by the driver.
44 *
Dan Williamsf27c5802009-01-06 11:38:18 -070045 * See Documentation/dmaengine.txt for more details
Chris Leechc13c8262006-05-23 17:18:44 -070046 */
47
Joe Perches63433252012-07-18 09:51:28 -070048#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
49
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000050#include <linux/dma-mapping.h>
Chris Leechc13c8262006-05-23 17:18:44 -070051#include <linux/init.h>
52#include <linux/module.h>
Dan Williams7405f742007-01-02 11:10:43 -070053#include <linux/mm.h>
Chris Leechc13c8262006-05-23 17:18:44 -070054#include <linux/device.h>
55#include <linux/dmaengine.h>
56#include <linux/hardirq.h>
57#include <linux/spinlock.h>
58#include <linux/percpu.h>
59#include <linux/rcupdate.h>
60#include <linux/mutex.h>
Dan Williams7405f742007-01-02 11:10:43 -070061#include <linux/jiffies.h>
Dan Williams2ba05622009-01-06 11:38:14 -070062#include <linux/rculist.h>
Dan Williams864498a2009-01-06 11:38:21 -070063#include <linux/idr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090064#include <linux/slab.h>
Jon Hunter9a6cecc2012-09-14 17:41:57 -050065#include <linux/of_dma.h>
Chris Leechc13c8262006-05-23 17:18:44 -070066
67static DEFINE_MUTEX(dma_list_mutex);
Axel Lin21ef4b82011-07-20 11:32:28 +080068static DEFINE_IDR(dma_idr);
Chris Leechc13c8262006-05-23 17:18:44 -070069static LIST_HEAD(dma_device_list);
Dan Williams6f49a572009-01-06 11:38:14 -070070static long dmaengine_ref_count;
Chris Leechc13c8262006-05-23 17:18:44 -070071
72/* --- sysfs implementation --- */
73
Dan Williams41d5e592009-01-06 11:38:21 -070074/**
75 * dev_to_dma_chan - convert a device pointer to the its sysfs container object
76 * @dev - device node
77 *
78 * Must be called under dma_list_mutex
79 */
80static struct dma_chan *dev_to_dma_chan(struct device *dev)
81{
82 struct dma_chan_dev *chan_dev;
83
84 chan_dev = container_of(dev, typeof(*chan_dev), device);
85 return chan_dev->chan;
86}
87
Tony Jones891f78e2007-09-25 02:03:03 +020088static ssize_t show_memcpy_count(struct device *dev, struct device_attribute *attr, char *buf)
Chris Leechc13c8262006-05-23 17:18:44 -070089{
Dan Williams41d5e592009-01-06 11:38:21 -070090 struct dma_chan *chan;
Chris Leechc13c8262006-05-23 17:18:44 -070091 unsigned long count = 0;
92 int i;
Dan Williams41d5e592009-01-06 11:38:21 -070093 int err;
Chris Leechc13c8262006-05-23 17:18:44 -070094
Dan Williams41d5e592009-01-06 11:38:21 -070095 mutex_lock(&dma_list_mutex);
96 chan = dev_to_dma_chan(dev);
97 if (chan) {
98 for_each_possible_cpu(i)
99 count += per_cpu_ptr(chan->local, i)->memcpy_count;
100 err = sprintf(buf, "%lu\n", count);
101 } else
102 err = -ENODEV;
103 mutex_unlock(&dma_list_mutex);
Chris Leechc13c8262006-05-23 17:18:44 -0700104
Dan Williams41d5e592009-01-06 11:38:21 -0700105 return err;
Chris Leechc13c8262006-05-23 17:18:44 -0700106}
107
Tony Jones891f78e2007-09-25 02:03:03 +0200108static ssize_t show_bytes_transferred(struct device *dev, struct device_attribute *attr,
109 char *buf)
Chris Leechc13c8262006-05-23 17:18:44 -0700110{
Dan Williams41d5e592009-01-06 11:38:21 -0700111 struct dma_chan *chan;
Chris Leechc13c8262006-05-23 17:18:44 -0700112 unsigned long count = 0;
113 int i;
Dan Williams41d5e592009-01-06 11:38:21 -0700114 int err;
Chris Leechc13c8262006-05-23 17:18:44 -0700115
Dan Williams41d5e592009-01-06 11:38:21 -0700116 mutex_lock(&dma_list_mutex);
117 chan = dev_to_dma_chan(dev);
118 if (chan) {
119 for_each_possible_cpu(i)
120 count += per_cpu_ptr(chan->local, i)->bytes_transferred;
121 err = sprintf(buf, "%lu\n", count);
122 } else
123 err = -ENODEV;
124 mutex_unlock(&dma_list_mutex);
Chris Leechc13c8262006-05-23 17:18:44 -0700125
Dan Williams41d5e592009-01-06 11:38:21 -0700126 return err;
Chris Leechc13c8262006-05-23 17:18:44 -0700127}
128
Tony Jones891f78e2007-09-25 02:03:03 +0200129static ssize_t show_in_use(struct device *dev, struct device_attribute *attr, char *buf)
Chris Leechc13c8262006-05-23 17:18:44 -0700130{
Dan Williams41d5e592009-01-06 11:38:21 -0700131 struct dma_chan *chan;
132 int err;
Chris Leechc13c8262006-05-23 17:18:44 -0700133
Dan Williams41d5e592009-01-06 11:38:21 -0700134 mutex_lock(&dma_list_mutex);
135 chan = dev_to_dma_chan(dev);
136 if (chan)
137 err = sprintf(buf, "%d\n", chan->client_count);
138 else
139 err = -ENODEV;
140 mutex_unlock(&dma_list_mutex);
141
142 return err;
Chris Leechc13c8262006-05-23 17:18:44 -0700143}
144
Tony Jones891f78e2007-09-25 02:03:03 +0200145static struct device_attribute dma_attrs[] = {
Chris Leechc13c8262006-05-23 17:18:44 -0700146 __ATTR(memcpy_count, S_IRUGO, show_memcpy_count, NULL),
147 __ATTR(bytes_transferred, S_IRUGO, show_bytes_transferred, NULL),
148 __ATTR(in_use, S_IRUGO, show_in_use, NULL),
149 __ATTR_NULL
150};
151
Dan Williams41d5e592009-01-06 11:38:21 -0700152static void chan_dev_release(struct device *dev)
153{
154 struct dma_chan_dev *chan_dev;
155
156 chan_dev = container_of(dev, typeof(*chan_dev), device);
Dan Williams864498a2009-01-06 11:38:21 -0700157 if (atomic_dec_and_test(chan_dev->idr_ref)) {
158 mutex_lock(&dma_list_mutex);
159 idr_remove(&dma_idr, chan_dev->dev_id);
160 mutex_unlock(&dma_list_mutex);
161 kfree(chan_dev->idr_ref);
162 }
Dan Williams41d5e592009-01-06 11:38:21 -0700163 kfree(chan_dev);
164}
165
Chris Leechc13c8262006-05-23 17:18:44 -0700166static struct class dma_devclass = {
Tony Jones891f78e2007-09-25 02:03:03 +0200167 .name = "dma",
168 .dev_attrs = dma_attrs,
Dan Williams41d5e592009-01-06 11:38:21 -0700169 .dev_release = chan_dev_release,
Chris Leechc13c8262006-05-23 17:18:44 -0700170};
171
172/* --- client and device registration --- */
173
Dan Williams59b5ec22009-01-06 11:38:15 -0700174#define dma_device_satisfies_mask(device, mask) \
175 __dma_device_satisfies_mask((device), &(mask))
Dan Williamsd379b012007-07-09 11:56:42 -0700176static int
Dan Williams59b5ec22009-01-06 11:38:15 -0700177__dma_device_satisfies_mask(struct dma_device *device, dma_cap_mask_t *want)
Dan Williamsd379b012007-07-09 11:56:42 -0700178{
179 dma_cap_mask_t has;
180
Dan Williams59b5ec22009-01-06 11:38:15 -0700181 bitmap_and(has.bits, want->bits, device->cap_mask.bits,
Dan Williamsd379b012007-07-09 11:56:42 -0700182 DMA_TX_TYPE_END);
183 return bitmap_equal(want->bits, has.bits, DMA_TX_TYPE_END);
184}
185
Dan Williams6f49a572009-01-06 11:38:14 -0700186static struct module *dma_chan_to_owner(struct dma_chan *chan)
187{
188 return chan->device->dev->driver->owner;
189}
190
191/**
192 * balance_ref_count - catch up the channel reference count
193 * @chan - channel to balance ->client_count versus dmaengine_ref_count
194 *
195 * balance_ref_count must be called under dma_list_mutex
196 */
197static void balance_ref_count(struct dma_chan *chan)
198{
199 struct module *owner = dma_chan_to_owner(chan);
200
201 while (chan->client_count < dmaengine_ref_count) {
202 __module_get(owner);
203 chan->client_count++;
204 }
205}
206
207/**
208 * dma_chan_get - try to grab a dma channel's parent driver module
209 * @chan - channel to grab
210 *
211 * Must be called under dma_list_mutex
212 */
213static int dma_chan_get(struct dma_chan *chan)
214{
215 int err = -ENODEV;
216 struct module *owner = dma_chan_to_owner(chan);
217
218 if (chan->client_count) {
219 __module_get(owner);
220 err = 0;
221 } else if (try_module_get(owner))
222 err = 0;
223
224 if (err == 0)
225 chan->client_count++;
226
227 /* allocate upon first client reference */
228 if (chan->client_count == 1 && err == 0) {
Dan Williamsaa1e6f12009-01-06 11:38:17 -0700229 int desc_cnt = chan->device->device_alloc_chan_resources(chan);
Dan Williams6f49a572009-01-06 11:38:14 -0700230
231 if (desc_cnt < 0) {
232 err = desc_cnt;
233 chan->client_count = 0;
234 module_put(owner);
Dan Williams59b5ec22009-01-06 11:38:15 -0700235 } else if (!dma_has_cap(DMA_PRIVATE, chan->device->cap_mask))
Dan Williams6f49a572009-01-06 11:38:14 -0700236 balance_ref_count(chan);
237 }
238
239 return err;
240}
241
242/**
243 * dma_chan_put - drop a reference to a dma channel's parent driver module
244 * @chan - channel to release
245 *
246 * Must be called under dma_list_mutex
247 */
248static void dma_chan_put(struct dma_chan *chan)
249{
250 if (!chan->client_count)
251 return; /* this channel failed alloc_chan_resources */
252 chan->client_count--;
253 module_put(dma_chan_to_owner(chan));
254 if (chan->client_count == 0)
255 chan->device->device_free_chan_resources(chan);
256}
257
Dan Williams7405f742007-01-02 11:10:43 -0700258enum dma_status dma_sync_wait(struct dma_chan *chan, dma_cookie_t cookie)
259{
260 enum dma_status status;
261 unsigned long dma_sync_wait_timeout = jiffies + msecs_to_jiffies(5000);
262
263 dma_async_issue_pending(chan);
264 do {
265 status = dma_async_is_tx_complete(chan, cookie, NULL, NULL);
266 if (time_after_eq(jiffies, dma_sync_wait_timeout)) {
Joe Perches63433252012-07-18 09:51:28 -0700267 pr_err("%s: timeout!\n", __func__);
Dan Williams7405f742007-01-02 11:10:43 -0700268 return DMA_ERROR;
269 }
Bartlomiej Zolnierkiewicz2cbe7fe2012-11-08 10:02:07 +0000270 if (status != DMA_IN_PROGRESS)
271 break;
272 cpu_relax();
273 } while (1);
Dan Williams7405f742007-01-02 11:10:43 -0700274
275 return status;
276}
277EXPORT_SYMBOL(dma_sync_wait);
278
Chris Leechc13c8262006-05-23 17:18:44 -0700279/**
Dan Williamsbec08512009-01-06 11:38:14 -0700280 * dma_cap_mask_all - enable iteration over all operation types
281 */
282static dma_cap_mask_t dma_cap_mask_all;
283
284/**
285 * dma_chan_tbl_ent - tracks channel allocations per core/operation
286 * @chan - associated channel for this entry
287 */
288struct dma_chan_tbl_ent {
289 struct dma_chan *chan;
290};
291
292/**
293 * channel_table - percpu lookup table for memory-to-memory offload providers
294 */
Tejun Heoa29d8b82010-02-02 14:39:15 +0900295static struct dma_chan_tbl_ent __percpu *channel_table[DMA_TX_TYPE_END];
Dan Williamsbec08512009-01-06 11:38:14 -0700296
297static int __init dma_channel_table_init(void)
298{
299 enum dma_transaction_type cap;
300 int err = 0;
301
302 bitmap_fill(dma_cap_mask_all.bits, DMA_TX_TYPE_END);
303
Dan Williams59b5ec22009-01-06 11:38:15 -0700304 /* 'interrupt', 'private', and 'slave' are channel capabilities,
305 * but are not associated with an operation so they do not need
306 * an entry in the channel_table
Dan Williamsbec08512009-01-06 11:38:14 -0700307 */
308 clear_bit(DMA_INTERRUPT, dma_cap_mask_all.bits);
Dan Williams59b5ec22009-01-06 11:38:15 -0700309 clear_bit(DMA_PRIVATE, dma_cap_mask_all.bits);
Dan Williamsbec08512009-01-06 11:38:14 -0700310 clear_bit(DMA_SLAVE, dma_cap_mask_all.bits);
311
312 for_each_dma_cap_mask(cap, dma_cap_mask_all) {
313 channel_table[cap] = alloc_percpu(struct dma_chan_tbl_ent);
314 if (!channel_table[cap]) {
315 err = -ENOMEM;
316 break;
317 }
318 }
319
320 if (err) {
Joe Perches63433252012-07-18 09:51:28 -0700321 pr_err("initialization failure\n");
Dan Williamsbec08512009-01-06 11:38:14 -0700322 for_each_dma_cap_mask(cap, dma_cap_mask_all)
323 if (channel_table[cap])
324 free_percpu(channel_table[cap]);
325 }
326
327 return err;
328}
Dan Williams652afc22009-01-06 11:38:22 -0700329arch_initcall(dma_channel_table_init);
Dan Williamsbec08512009-01-06 11:38:14 -0700330
331/**
332 * dma_find_channel - find a channel to carry out the operation
333 * @tx_type: transaction type
334 */
335struct dma_chan *dma_find_channel(enum dma_transaction_type tx_type)
336{
Christoph Lametere7dcaa42009-10-03 19:48:23 +0900337 return this_cpu_read(channel_table[tx_type]->chan);
Dan Williamsbec08512009-01-06 11:38:14 -0700338}
339EXPORT_SYMBOL(dma_find_channel);
340
Dave Jianga2bd1142012-04-04 16:10:46 -0700341/*
342 * net_dma_find_channel - find a channel for net_dma
343 * net_dma has alignment requirements
344 */
345struct dma_chan *net_dma_find_channel(void)
346{
347 struct dma_chan *chan = dma_find_channel(DMA_MEMCPY);
348 if (chan && !is_dma_copy_aligned(chan->device, 1, 1, 1))
349 return NULL;
350
351 return chan;
352}
353EXPORT_SYMBOL(net_dma_find_channel);
354
Dan Williamsbec08512009-01-06 11:38:14 -0700355/**
Dan Williams2ba05622009-01-06 11:38:14 -0700356 * dma_issue_pending_all - flush all pending operations across all channels
357 */
358void dma_issue_pending_all(void)
359{
360 struct dma_device *device;
361 struct dma_chan *chan;
362
Dan Williams2ba05622009-01-06 11:38:14 -0700363 rcu_read_lock();
Dan Williams59b5ec22009-01-06 11:38:15 -0700364 list_for_each_entry_rcu(device, &dma_device_list, global_node) {
365 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
366 continue;
Dan Williams2ba05622009-01-06 11:38:14 -0700367 list_for_each_entry(chan, &device->channels, device_node)
368 if (chan->client_count)
369 device->device_issue_pending(chan);
Dan Williams59b5ec22009-01-06 11:38:15 -0700370 }
Dan Williams2ba05622009-01-06 11:38:14 -0700371 rcu_read_unlock();
372}
373EXPORT_SYMBOL(dma_issue_pending_all);
374
375/**
Dan Williamsbec08512009-01-06 11:38:14 -0700376 * nth_chan - returns the nth channel of the given capability
377 * @cap: capability to match
378 * @n: nth channel desired
379 *
380 * Defaults to returning the channel with the desired capability and the
381 * lowest reference count when 'n' cannot be satisfied. Must be called
382 * under dma_list_mutex.
383 */
384static struct dma_chan *nth_chan(enum dma_transaction_type cap, int n)
385{
386 struct dma_device *device;
387 struct dma_chan *chan;
388 struct dma_chan *ret = NULL;
389 struct dma_chan *min = NULL;
390
391 list_for_each_entry(device, &dma_device_list, global_node) {
Dan Williams59b5ec22009-01-06 11:38:15 -0700392 if (!dma_has_cap(cap, device->cap_mask) ||
393 dma_has_cap(DMA_PRIVATE, device->cap_mask))
Dan Williamsbec08512009-01-06 11:38:14 -0700394 continue;
395 list_for_each_entry(chan, &device->channels, device_node) {
396 if (!chan->client_count)
397 continue;
398 if (!min)
399 min = chan;
400 else if (chan->table_count < min->table_count)
401 min = chan;
402
403 if (n-- == 0) {
404 ret = chan;
405 break; /* done */
406 }
407 }
408 if (ret)
409 break; /* done */
410 }
411
412 if (!ret)
413 ret = min;
414
415 if (ret)
416 ret->table_count++;
417
418 return ret;
419}
420
421/**
422 * dma_channel_rebalance - redistribute the available channels
423 *
424 * Optimize for cpu isolation (each cpu gets a dedicated channel for an
425 * operation type) in the SMP case, and operation isolation (avoid
426 * multi-tasking channels) in the non-SMP case. Must be called under
427 * dma_list_mutex.
428 */
429static void dma_channel_rebalance(void)
430{
431 struct dma_chan *chan;
432 struct dma_device *device;
433 int cpu;
434 int cap;
435 int n;
436
437 /* undo the last distribution */
438 for_each_dma_cap_mask(cap, dma_cap_mask_all)
439 for_each_possible_cpu(cpu)
440 per_cpu_ptr(channel_table[cap], cpu)->chan = NULL;
441
Dan Williams59b5ec22009-01-06 11:38:15 -0700442 list_for_each_entry(device, &dma_device_list, global_node) {
443 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
444 continue;
Dan Williamsbec08512009-01-06 11:38:14 -0700445 list_for_each_entry(chan, &device->channels, device_node)
446 chan->table_count = 0;
Dan Williams59b5ec22009-01-06 11:38:15 -0700447 }
Dan Williamsbec08512009-01-06 11:38:14 -0700448
449 /* don't populate the channel_table if no clients are available */
450 if (!dmaengine_ref_count)
451 return;
452
453 /* redistribute available channels */
454 n = 0;
455 for_each_dma_cap_mask(cap, dma_cap_mask_all)
456 for_each_online_cpu(cpu) {
457 if (num_possible_cpus() > 1)
458 chan = nth_chan(cap, n++);
459 else
460 chan = nth_chan(cap, -1);
461
462 per_cpu_ptr(channel_table[cap], cpu)->chan = chan;
463 }
464}
465
Dan Williamse2346672009-01-06 11:38:21 -0700466static struct dma_chan *private_candidate(dma_cap_mask_t *mask, struct dma_device *dev,
467 dma_filter_fn fn, void *fn_param)
Dan Williams59b5ec22009-01-06 11:38:15 -0700468{
469 struct dma_chan *chan;
Dan Williams59b5ec22009-01-06 11:38:15 -0700470
471 if (!__dma_device_satisfies_mask(dev, mask)) {
472 pr_debug("%s: wrong capabilities\n", __func__);
473 return NULL;
474 }
475 /* devices with multiple channels need special handling as we need to
476 * ensure that all channels are either private or public.
477 */
478 if (dev->chancnt > 1 && !dma_has_cap(DMA_PRIVATE, dev->cap_mask))
479 list_for_each_entry(chan, &dev->channels, device_node) {
480 /* some channels are already publicly allocated */
481 if (chan->client_count)
482 return NULL;
483 }
484
485 list_for_each_entry(chan, &dev->channels, device_node) {
486 if (chan->client_count) {
487 pr_debug("%s: %s busy\n",
Dan Williams41d5e592009-01-06 11:38:21 -0700488 __func__, dma_chan_name(chan));
Dan Williams59b5ec22009-01-06 11:38:15 -0700489 continue;
490 }
Dan Williamse2346672009-01-06 11:38:21 -0700491 if (fn && !fn(chan, fn_param)) {
492 pr_debug("%s: %s filter said false\n",
493 __func__, dma_chan_name(chan));
494 continue;
495 }
496 return chan;
Dan Williams59b5ec22009-01-06 11:38:15 -0700497 }
498
Dan Williamse2346672009-01-06 11:38:21 -0700499 return NULL;
Dan Williams59b5ec22009-01-06 11:38:15 -0700500}
501
502/**
503 * dma_request_channel - try to allocate an exclusive channel
504 * @mask: capabilities that the channel must satisfy
505 * @fn: optional callback to disposition available channels
506 * @fn_param: opaque parameter to pass to dma_filter_fn
507 */
508struct dma_chan *__dma_request_channel(dma_cap_mask_t *mask, dma_filter_fn fn, void *fn_param)
509{
510 struct dma_device *device, *_d;
511 struct dma_chan *chan = NULL;
Dan Williams59b5ec22009-01-06 11:38:15 -0700512 int err;
513
514 /* Find a channel */
515 mutex_lock(&dma_list_mutex);
516 list_for_each_entry_safe(device, _d, &dma_device_list, global_node) {
Dan Williamse2346672009-01-06 11:38:21 -0700517 chan = private_candidate(mask, device, fn, fn_param);
518 if (chan) {
Dan Williams59b5ec22009-01-06 11:38:15 -0700519 /* Found a suitable channel, try to grab, prep, and
520 * return it. We first set DMA_PRIVATE to disable
521 * balance_ref_count as this channel will not be
522 * published in the general-purpose allocator
523 */
524 dma_cap_set(DMA_PRIVATE, device->cap_mask);
Atsushi Nemoto0f571512009-03-06 20:07:14 +0900525 device->privatecnt++;
Dan Williams59b5ec22009-01-06 11:38:15 -0700526 err = dma_chan_get(chan);
527
528 if (err == -ENODEV) {
Joe Perches63433252012-07-18 09:51:28 -0700529 pr_debug("%s: %s module removed\n",
530 __func__, dma_chan_name(chan));
Dan Williams59b5ec22009-01-06 11:38:15 -0700531 list_del_rcu(&device->global_node);
532 } else if (err)
Fabio Estevamd8b53482012-02-21 12:51:59 -0200533 pr_debug("%s: failed to get %s: (%d)\n",
Joe Perches63433252012-07-18 09:51:28 -0700534 __func__, dma_chan_name(chan), err);
Dan Williams59b5ec22009-01-06 11:38:15 -0700535 else
536 break;
Atsushi Nemoto0f571512009-03-06 20:07:14 +0900537 if (--device->privatecnt == 0)
538 dma_cap_clear(DMA_PRIVATE, device->cap_mask);
Dan Williamse2346672009-01-06 11:38:21 -0700539 chan = NULL;
540 }
Dan Williams59b5ec22009-01-06 11:38:15 -0700541 }
542 mutex_unlock(&dma_list_mutex);
543
Joe Perches63433252012-07-18 09:51:28 -0700544 pr_debug("%s: %s (%s)\n",
545 __func__,
546 chan ? "success" : "fail",
Dan Williams41d5e592009-01-06 11:38:21 -0700547 chan ? dma_chan_name(chan) : NULL);
Dan Williams59b5ec22009-01-06 11:38:15 -0700548
549 return chan;
550}
551EXPORT_SYMBOL_GPL(__dma_request_channel);
552
Jon Hunter9a6cecc2012-09-14 17:41:57 -0500553/**
554 * dma_request_slave_channel - try to allocate an exclusive slave channel
555 * @dev: pointer to client device structure
556 * @name: slave channel name
557 */
558struct dma_chan *dma_request_slave_channel(struct device *dev, char *name)
559{
560 /* If device-tree is present get slave info from here */
561 if (dev->of_node)
562 return of_dma_request_slave_channel(dev->of_node, name);
563
564 return NULL;
565}
566EXPORT_SYMBOL_GPL(dma_request_slave_channel);
567
Dan Williams59b5ec22009-01-06 11:38:15 -0700568void dma_release_channel(struct dma_chan *chan)
569{
570 mutex_lock(&dma_list_mutex);
571 WARN_ONCE(chan->client_count != 1,
572 "chan reference count %d != 1\n", chan->client_count);
573 dma_chan_put(chan);
Atsushi Nemoto0f571512009-03-06 20:07:14 +0900574 /* drop PRIVATE cap enabled by __dma_request_channel() */
575 if (--chan->device->privatecnt == 0)
576 dma_cap_clear(DMA_PRIVATE, chan->device->cap_mask);
Dan Williams59b5ec22009-01-06 11:38:15 -0700577 mutex_unlock(&dma_list_mutex);
578}
579EXPORT_SYMBOL_GPL(dma_release_channel);
580
Dan Williamsbec08512009-01-06 11:38:14 -0700581/**
Dan Williams209b84a2009-01-06 11:38:17 -0700582 * dmaengine_get - register interest in dma_channels
Chris Leechc13c8262006-05-23 17:18:44 -0700583 */
Dan Williams209b84a2009-01-06 11:38:17 -0700584void dmaengine_get(void)
Chris Leechc13c8262006-05-23 17:18:44 -0700585{
Dan Williams6f49a572009-01-06 11:38:14 -0700586 struct dma_device *device, *_d;
587 struct dma_chan *chan;
588 int err;
589
Chris Leechc13c8262006-05-23 17:18:44 -0700590 mutex_lock(&dma_list_mutex);
Dan Williams6f49a572009-01-06 11:38:14 -0700591 dmaengine_ref_count++;
592
593 /* try to grab channels */
Dan Williams59b5ec22009-01-06 11:38:15 -0700594 list_for_each_entry_safe(device, _d, &dma_device_list, global_node) {
595 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
596 continue;
Dan Williams6f49a572009-01-06 11:38:14 -0700597 list_for_each_entry(chan, &device->channels, device_node) {
598 err = dma_chan_get(chan);
599 if (err == -ENODEV) {
600 /* module removed before we could use it */
Dan Williams2ba05622009-01-06 11:38:14 -0700601 list_del_rcu(&device->global_node);
Dan Williams6f49a572009-01-06 11:38:14 -0700602 break;
603 } else if (err)
Fabio Estevam0eb5a352012-10-04 17:11:16 -0700604 pr_debug("%s: failed to get %s: (%d)\n",
Joe Perches63433252012-07-18 09:51:28 -0700605 __func__, dma_chan_name(chan), err);
Dan Williams6f49a572009-01-06 11:38:14 -0700606 }
Dan Williams59b5ec22009-01-06 11:38:15 -0700607 }
Dan Williams6f49a572009-01-06 11:38:14 -0700608
Dan Williamsbec08512009-01-06 11:38:14 -0700609 /* if this is the first reference and there were channels
610 * waiting we need to rebalance to get those channels
611 * incorporated into the channel table
612 */
613 if (dmaengine_ref_count == 1)
614 dma_channel_rebalance();
Chris Leechc13c8262006-05-23 17:18:44 -0700615 mutex_unlock(&dma_list_mutex);
Chris Leechc13c8262006-05-23 17:18:44 -0700616}
Dan Williams209b84a2009-01-06 11:38:17 -0700617EXPORT_SYMBOL(dmaengine_get);
Chris Leechc13c8262006-05-23 17:18:44 -0700618
619/**
Dan Williams209b84a2009-01-06 11:38:17 -0700620 * dmaengine_put - let dma drivers be removed when ref_count == 0
Chris Leechc13c8262006-05-23 17:18:44 -0700621 */
Dan Williams209b84a2009-01-06 11:38:17 -0700622void dmaengine_put(void)
Chris Leechc13c8262006-05-23 17:18:44 -0700623{
Dan Williamsd379b012007-07-09 11:56:42 -0700624 struct dma_device *device;
Chris Leechc13c8262006-05-23 17:18:44 -0700625 struct dma_chan *chan;
626
Chris Leechc13c8262006-05-23 17:18:44 -0700627 mutex_lock(&dma_list_mutex);
Dan Williams6f49a572009-01-06 11:38:14 -0700628 dmaengine_ref_count--;
629 BUG_ON(dmaengine_ref_count < 0);
630 /* drop channel references */
Dan Williams59b5ec22009-01-06 11:38:15 -0700631 list_for_each_entry(device, &dma_device_list, global_node) {
632 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
633 continue;
Dan Williams6f49a572009-01-06 11:38:14 -0700634 list_for_each_entry(chan, &device->channels, device_node)
635 dma_chan_put(chan);
Dan Williams59b5ec22009-01-06 11:38:15 -0700636 }
Chris Leechc13c8262006-05-23 17:18:44 -0700637 mutex_unlock(&dma_list_mutex);
Chris Leechc13c8262006-05-23 17:18:44 -0700638}
Dan Williams209b84a2009-01-06 11:38:17 -0700639EXPORT_SYMBOL(dmaengine_put);
Chris Leechc13c8262006-05-23 17:18:44 -0700640
Dan Williams138f4c32009-09-08 17:42:51 -0700641static bool device_has_all_tx_types(struct dma_device *device)
642{
643 /* A device that satisfies this test has channels that will never cause
644 * an async_tx channel switch event as all possible operation types can
645 * be handled.
646 */
647 #ifdef CONFIG_ASYNC_TX_DMA
648 if (!dma_has_cap(DMA_INTERRUPT, device->cap_mask))
649 return false;
650 #endif
651
652 #if defined(CONFIG_ASYNC_MEMCPY) || defined(CONFIG_ASYNC_MEMCPY_MODULE)
653 if (!dma_has_cap(DMA_MEMCPY, device->cap_mask))
654 return false;
655 #endif
656
657 #if defined(CONFIG_ASYNC_MEMSET) || defined(CONFIG_ASYNC_MEMSET_MODULE)
658 if (!dma_has_cap(DMA_MEMSET, device->cap_mask))
659 return false;
660 #endif
661
662 #if defined(CONFIG_ASYNC_XOR) || defined(CONFIG_ASYNC_XOR_MODULE)
663 if (!dma_has_cap(DMA_XOR, device->cap_mask))
664 return false;
Dan Williams7b3cc2b2009-11-19 17:10:37 -0700665
666 #ifndef CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA
Dan Williams4499a242009-11-19 17:10:25 -0700667 if (!dma_has_cap(DMA_XOR_VAL, device->cap_mask))
668 return false;
Dan Williams138f4c32009-09-08 17:42:51 -0700669 #endif
Dan Williams7b3cc2b2009-11-19 17:10:37 -0700670 #endif
Dan Williams138f4c32009-09-08 17:42:51 -0700671
672 #if defined(CONFIG_ASYNC_PQ) || defined(CONFIG_ASYNC_PQ_MODULE)
673 if (!dma_has_cap(DMA_PQ, device->cap_mask))
674 return false;
Dan Williams7b3cc2b2009-11-19 17:10:37 -0700675
676 #ifndef CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA
Dan Williams4499a242009-11-19 17:10:25 -0700677 if (!dma_has_cap(DMA_PQ_VAL, device->cap_mask))
678 return false;
Dan Williams138f4c32009-09-08 17:42:51 -0700679 #endif
Dan Williams7b3cc2b2009-11-19 17:10:37 -0700680 #endif
Dan Williams138f4c32009-09-08 17:42:51 -0700681
682 return true;
683}
684
Dan Williams257b17c2009-03-25 09:13:23 -0700685static int get_dma_id(struct dma_device *device)
686{
687 int rc;
688
Dan Williams257b17c2009-03-25 09:13:23 -0700689 mutex_lock(&dma_list_mutex);
Dan Williams257b17c2009-03-25 09:13:23 -0700690
Tejun Heo69ee2662013-02-27 17:04:03 -0800691 rc = idr_alloc(&dma_idr, NULL, 0, 0, GFP_KERNEL);
692 if (rc >= 0)
693 device->dev_id = rc;
694
695 mutex_unlock(&dma_list_mutex);
696 return rc < 0 ? rc : 0;
Dan Williams257b17c2009-03-25 09:13:23 -0700697}
698
Chris Leechc13c8262006-05-23 17:18:44 -0700699/**
Randy Dunlap65088712006-07-03 19:45:31 -0700700 * dma_async_device_register - registers DMA devices found
Chris Leechc13c8262006-05-23 17:18:44 -0700701 * @device: &dma_device
702 */
703int dma_async_device_register(struct dma_device *device)
704{
Jeff Garzikff487fb2007-03-08 09:57:34 -0800705 int chancnt = 0, rc;
Chris Leechc13c8262006-05-23 17:18:44 -0700706 struct dma_chan* chan;
Dan Williams864498a2009-01-06 11:38:21 -0700707 atomic_t *idr_ref;
Chris Leechc13c8262006-05-23 17:18:44 -0700708
709 if (!device)
710 return -ENODEV;
711
Dan Williams7405f742007-01-02 11:10:43 -0700712 /* validate device routines */
713 BUG_ON(dma_has_cap(DMA_MEMCPY, device->cap_mask) &&
714 !device->device_prep_dma_memcpy);
715 BUG_ON(dma_has_cap(DMA_XOR, device->cap_mask) &&
716 !device->device_prep_dma_xor);
Dan Williams099f53c2009-04-08 14:28:37 -0700717 BUG_ON(dma_has_cap(DMA_XOR_VAL, device->cap_mask) &&
718 !device->device_prep_dma_xor_val);
Dan Williamsb2f46fd2009-07-14 12:20:36 -0700719 BUG_ON(dma_has_cap(DMA_PQ, device->cap_mask) &&
720 !device->device_prep_dma_pq);
721 BUG_ON(dma_has_cap(DMA_PQ_VAL, device->cap_mask) &&
722 !device->device_prep_dma_pq_val);
Dan Williams7405f742007-01-02 11:10:43 -0700723 BUG_ON(dma_has_cap(DMA_MEMSET, device->cap_mask) &&
724 !device->device_prep_dma_memset);
Zhang Wei9b941c62008-03-13 17:45:28 -0700725 BUG_ON(dma_has_cap(DMA_INTERRUPT, device->cap_mask) &&
Dan Williams7405f742007-01-02 11:10:43 -0700726 !device->device_prep_dma_interrupt);
Ira Snydera86ee032010-09-30 11:46:44 +0000727 BUG_ON(dma_has_cap(DMA_SG, device->cap_mask) &&
728 !device->device_prep_dma_sg);
Sascha Hauer782bc952010-09-30 13:56:32 +0000729 BUG_ON(dma_has_cap(DMA_CYCLIC, device->cap_mask) &&
730 !device->device_prep_dma_cyclic);
Haavard Skinnemoendc0ee6432008-07-08 11:59:35 -0700731 BUG_ON(dma_has_cap(DMA_SLAVE, device->cap_mask) &&
Linus Walleijc3635c72010-03-26 16:44:01 -0700732 !device->device_control);
Jassi Brarb14dab72011-10-13 12:33:30 +0530733 BUG_ON(dma_has_cap(DMA_INTERLEAVE, device->cap_mask) &&
734 !device->device_prep_interleaved_dma);
Dan Williams7405f742007-01-02 11:10:43 -0700735
736 BUG_ON(!device->device_alloc_chan_resources);
737 BUG_ON(!device->device_free_chan_resources);
Linus Walleij07934482010-03-26 16:50:49 -0700738 BUG_ON(!device->device_tx_status);
Dan Williams7405f742007-01-02 11:10:43 -0700739 BUG_ON(!device->device_issue_pending);
740 BUG_ON(!device->dev);
741
Dan Williams138f4c32009-09-08 17:42:51 -0700742 /* note: this only matters in the
Dan Williams5fc6d892010-10-07 16:44:50 -0700743 * CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=n case
Dan Williams138f4c32009-09-08 17:42:51 -0700744 */
745 if (device_has_all_tx_types(device))
746 dma_cap_set(DMA_ASYNC_TX, device->cap_mask);
747
Dan Williams864498a2009-01-06 11:38:21 -0700748 idr_ref = kmalloc(sizeof(*idr_ref), GFP_KERNEL);
749 if (!idr_ref)
750 return -ENOMEM;
Dan Williams257b17c2009-03-25 09:13:23 -0700751 rc = get_dma_id(device);
752 if (rc != 0) {
753 kfree(idr_ref);
Dan Williams864498a2009-01-06 11:38:21 -0700754 return rc;
Dan Williams257b17c2009-03-25 09:13:23 -0700755 }
756
757 atomic_set(idr_ref, 0);
Chris Leechc13c8262006-05-23 17:18:44 -0700758
759 /* represent channels in sysfs. Probably want devs too */
760 list_for_each_entry(chan, &device->channels, device_node) {
Dan Williams257b17c2009-03-25 09:13:23 -0700761 rc = -ENOMEM;
Chris Leechc13c8262006-05-23 17:18:44 -0700762 chan->local = alloc_percpu(typeof(*chan->local));
763 if (chan->local == NULL)
Dan Williams257b17c2009-03-25 09:13:23 -0700764 goto err_out;
Dan Williams41d5e592009-01-06 11:38:21 -0700765 chan->dev = kzalloc(sizeof(*chan->dev), GFP_KERNEL);
766 if (chan->dev == NULL) {
767 free_percpu(chan->local);
Dan Williams257b17c2009-03-25 09:13:23 -0700768 chan->local = NULL;
769 goto err_out;
Dan Williams41d5e592009-01-06 11:38:21 -0700770 }
Chris Leechc13c8262006-05-23 17:18:44 -0700771
772 chan->chan_id = chancnt++;
Dan Williams41d5e592009-01-06 11:38:21 -0700773 chan->dev->device.class = &dma_devclass;
774 chan->dev->device.parent = device->dev;
775 chan->dev->chan = chan;
Dan Williams864498a2009-01-06 11:38:21 -0700776 chan->dev->idr_ref = idr_ref;
777 chan->dev->dev_id = device->dev_id;
778 atomic_inc(idr_ref);
Dan Williams41d5e592009-01-06 11:38:21 -0700779 dev_set_name(&chan->dev->device, "dma%dchan%d",
Kay Sievers06190d82008-11-11 13:12:33 -0700780 device->dev_id, chan->chan_id);
Chris Leechc13c8262006-05-23 17:18:44 -0700781
Dan Williams41d5e592009-01-06 11:38:21 -0700782 rc = device_register(&chan->dev->device);
Jeff Garzikff487fb2007-03-08 09:57:34 -0800783 if (rc) {
Jeff Garzikff487fb2007-03-08 09:57:34 -0800784 free_percpu(chan->local);
785 chan->local = NULL;
Dan Williams257b17c2009-03-25 09:13:23 -0700786 kfree(chan->dev);
787 atomic_dec(idr_ref);
Jeff Garzikff487fb2007-03-08 09:57:34 -0800788 goto err_out;
789 }
Dan Williams7cc5bf92008-07-08 11:58:21 -0700790 chan->client_count = 0;
Chris Leechc13c8262006-05-23 17:18:44 -0700791 }
Dan Williams59b5ec22009-01-06 11:38:15 -0700792 device->chancnt = chancnt;
Chris Leechc13c8262006-05-23 17:18:44 -0700793
794 mutex_lock(&dma_list_mutex);
Dan Williams59b5ec22009-01-06 11:38:15 -0700795 /* take references on public channels */
796 if (dmaengine_ref_count && !dma_has_cap(DMA_PRIVATE, device->cap_mask))
Dan Williams6f49a572009-01-06 11:38:14 -0700797 list_for_each_entry(chan, &device->channels, device_node) {
798 /* if clients are already waiting for channels we need
799 * to take references on their behalf
800 */
801 if (dma_chan_get(chan) == -ENODEV) {
802 /* note we can only get here for the first
803 * channel as the remaining channels are
804 * guaranteed to get a reference
805 */
806 rc = -ENODEV;
807 mutex_unlock(&dma_list_mutex);
808 goto err_out;
809 }
810 }
Dan Williams2ba05622009-01-06 11:38:14 -0700811 list_add_tail_rcu(&device->global_node, &dma_device_list);
Atsushi Nemoto0f571512009-03-06 20:07:14 +0900812 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
813 device->privatecnt++; /* Always private */
Dan Williamsbec08512009-01-06 11:38:14 -0700814 dma_channel_rebalance();
Chris Leechc13c8262006-05-23 17:18:44 -0700815 mutex_unlock(&dma_list_mutex);
816
Chris Leechc13c8262006-05-23 17:18:44 -0700817 return 0;
Jeff Garzikff487fb2007-03-08 09:57:34 -0800818
819err_out:
Dan Williams257b17c2009-03-25 09:13:23 -0700820 /* if we never registered a channel just release the idr */
821 if (atomic_read(idr_ref) == 0) {
822 mutex_lock(&dma_list_mutex);
823 idr_remove(&dma_idr, device->dev_id);
824 mutex_unlock(&dma_list_mutex);
825 kfree(idr_ref);
826 return rc;
827 }
828
Jeff Garzikff487fb2007-03-08 09:57:34 -0800829 list_for_each_entry(chan, &device->channels, device_node) {
830 if (chan->local == NULL)
831 continue;
Dan Williams41d5e592009-01-06 11:38:21 -0700832 mutex_lock(&dma_list_mutex);
833 chan->dev->chan = NULL;
834 mutex_unlock(&dma_list_mutex);
835 device_unregister(&chan->dev->device);
Jeff Garzikff487fb2007-03-08 09:57:34 -0800836 free_percpu(chan->local);
837 }
838 return rc;
Chris Leechc13c8262006-05-23 17:18:44 -0700839}
David Brownell765e3d82007-03-16 13:38:05 -0800840EXPORT_SYMBOL(dma_async_device_register);
Chris Leechc13c8262006-05-23 17:18:44 -0700841
842/**
Dan Williams6f49a572009-01-06 11:38:14 -0700843 * dma_async_device_unregister - unregister a DMA device
Randy Dunlap65088712006-07-03 19:45:31 -0700844 * @device: &dma_device
Dan Williamsf27c5802009-01-06 11:38:18 -0700845 *
846 * This routine is called by dma driver exit routines, dmaengine holds module
847 * references to prevent it being called while channels are in use.
Randy Dunlap65088712006-07-03 19:45:31 -0700848 */
849void dma_async_device_unregister(struct dma_device *device)
Chris Leechc13c8262006-05-23 17:18:44 -0700850{
851 struct dma_chan *chan;
Chris Leechc13c8262006-05-23 17:18:44 -0700852
853 mutex_lock(&dma_list_mutex);
Dan Williams2ba05622009-01-06 11:38:14 -0700854 list_del_rcu(&device->global_node);
Dan Williamsbec08512009-01-06 11:38:14 -0700855 dma_channel_rebalance();
Chris Leechc13c8262006-05-23 17:18:44 -0700856 mutex_unlock(&dma_list_mutex);
857
858 list_for_each_entry(chan, &device->channels, device_node) {
Dan Williams6f49a572009-01-06 11:38:14 -0700859 WARN_ONCE(chan->client_count,
860 "%s called while %d clients hold a reference\n",
861 __func__, chan->client_count);
Dan Williams41d5e592009-01-06 11:38:21 -0700862 mutex_lock(&dma_list_mutex);
863 chan->dev->chan = NULL;
864 mutex_unlock(&dma_list_mutex);
865 device_unregister(&chan->dev->device);
Anatolij Gustschinadef4772010-01-26 10:26:06 +0100866 free_percpu(chan->local);
Chris Leechc13c8262006-05-23 17:18:44 -0700867 }
Chris Leechc13c8262006-05-23 17:18:44 -0700868}
David Brownell765e3d82007-03-16 13:38:05 -0800869EXPORT_SYMBOL(dma_async_device_unregister);
Chris Leechc13c8262006-05-23 17:18:44 -0700870
Dan Williams7405f742007-01-02 11:10:43 -0700871/**
872 * dma_async_memcpy_buf_to_buf - offloaded copy between virtual addresses
873 * @chan: DMA channel to offload copy to
874 * @dest: destination address (virtual)
875 * @src: source address (virtual)
876 * @len: length
877 *
878 * Both @dest and @src must be mappable to a bus address according to the
879 * DMA mapping API rules for streaming mappings.
880 * Both @dest and @src must stay memory resident (kernel memory or locked
881 * user space pages).
882 */
883dma_cookie_t
884dma_async_memcpy_buf_to_buf(struct dma_chan *chan, void *dest,
885 void *src, size_t len)
886{
887 struct dma_device *dev = chan->device;
888 struct dma_async_tx_descriptor *tx;
Dan Williams00367312008-02-02 19:49:57 -0700889 dma_addr_t dma_dest, dma_src;
Dan Williams7405f742007-01-02 11:10:43 -0700890 dma_cookie_t cookie;
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200891 unsigned long flags;
Dan Williams7405f742007-01-02 11:10:43 -0700892
Dan Williams00367312008-02-02 19:49:57 -0700893 dma_src = dma_map_single(dev->dev, src, len, DMA_TO_DEVICE);
894 dma_dest = dma_map_single(dev->dev, dest, len, DMA_FROM_DEVICE);
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200895 flags = DMA_CTRL_ACK |
896 DMA_COMPL_SRC_UNMAP_SINGLE |
897 DMA_COMPL_DEST_UNMAP_SINGLE;
898 tx = dev->device_prep_dma_memcpy(chan, dma_dest, dma_src, len, flags);
Dan Williams00367312008-02-02 19:49:57 -0700899
900 if (!tx) {
901 dma_unmap_single(dev->dev, dma_src, len, DMA_TO_DEVICE);
902 dma_unmap_single(dev->dev, dma_dest, len, DMA_FROM_DEVICE);
Dan Williams7405f742007-01-02 11:10:43 -0700903 return -ENOMEM;
Dan Williams00367312008-02-02 19:49:57 -0700904 }
Dan Williams7405f742007-01-02 11:10:43 -0700905
Dan Williams7405f742007-01-02 11:10:43 -0700906 tx->callback = NULL;
Dan Williams7405f742007-01-02 11:10:43 -0700907 cookie = tx->tx_submit(tx);
908
Christoph Lametere7dcaa42009-10-03 19:48:23 +0900909 preempt_disable();
910 __this_cpu_add(chan->local->bytes_transferred, len);
911 __this_cpu_inc(chan->local->memcpy_count);
912 preempt_enable();
Dan Williams7405f742007-01-02 11:10:43 -0700913
914 return cookie;
915}
916EXPORT_SYMBOL(dma_async_memcpy_buf_to_buf);
917
918/**
919 * dma_async_memcpy_buf_to_pg - offloaded copy from address to page
920 * @chan: DMA channel to offload copy to
921 * @page: destination page
922 * @offset: offset in page to copy to
923 * @kdata: source address (virtual)
924 * @len: length
925 *
926 * Both @page/@offset and @kdata must be mappable to a bus address according
927 * to the DMA mapping API rules for streaming mappings.
928 * Both @page/@offset and @kdata must stay memory resident (kernel memory or
929 * locked user space pages)
930 */
931dma_cookie_t
932dma_async_memcpy_buf_to_pg(struct dma_chan *chan, struct page *page,
933 unsigned int offset, void *kdata, size_t len)
934{
935 struct dma_device *dev = chan->device;
936 struct dma_async_tx_descriptor *tx;
Dan Williams00367312008-02-02 19:49:57 -0700937 dma_addr_t dma_dest, dma_src;
Dan Williams7405f742007-01-02 11:10:43 -0700938 dma_cookie_t cookie;
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200939 unsigned long flags;
Dan Williams7405f742007-01-02 11:10:43 -0700940
Dan Williams00367312008-02-02 19:49:57 -0700941 dma_src = dma_map_single(dev->dev, kdata, len, DMA_TO_DEVICE);
942 dma_dest = dma_map_page(dev->dev, page, offset, len, DMA_FROM_DEVICE);
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200943 flags = DMA_CTRL_ACK | DMA_COMPL_SRC_UNMAP_SINGLE;
944 tx = dev->device_prep_dma_memcpy(chan, dma_dest, dma_src, len, flags);
Dan Williams00367312008-02-02 19:49:57 -0700945
946 if (!tx) {
947 dma_unmap_single(dev->dev, dma_src, len, DMA_TO_DEVICE);
948 dma_unmap_page(dev->dev, dma_dest, len, DMA_FROM_DEVICE);
Dan Williams7405f742007-01-02 11:10:43 -0700949 return -ENOMEM;
Dan Williams00367312008-02-02 19:49:57 -0700950 }
Dan Williams7405f742007-01-02 11:10:43 -0700951
Dan Williams7405f742007-01-02 11:10:43 -0700952 tx->callback = NULL;
Dan Williams7405f742007-01-02 11:10:43 -0700953 cookie = tx->tx_submit(tx);
954
Christoph Lametere7dcaa42009-10-03 19:48:23 +0900955 preempt_disable();
956 __this_cpu_add(chan->local->bytes_transferred, len);
957 __this_cpu_inc(chan->local->memcpy_count);
958 preempt_enable();
Dan Williams7405f742007-01-02 11:10:43 -0700959
960 return cookie;
961}
962EXPORT_SYMBOL(dma_async_memcpy_buf_to_pg);
963
964/**
965 * dma_async_memcpy_pg_to_pg - offloaded copy from page to page
966 * @chan: DMA channel to offload copy to
967 * @dest_pg: destination page
968 * @dest_off: offset in page to copy to
969 * @src_pg: source page
970 * @src_off: offset in page to copy from
971 * @len: length
972 *
973 * Both @dest_page/@dest_off and @src_page/@src_off must be mappable to a bus
974 * address according to the DMA mapping API rules for streaming mappings.
975 * Both @dest_page/@dest_off and @src_page/@src_off must stay memory resident
976 * (kernel memory or locked user space pages).
977 */
978dma_cookie_t
979dma_async_memcpy_pg_to_pg(struct dma_chan *chan, struct page *dest_pg,
980 unsigned int dest_off, struct page *src_pg, unsigned int src_off,
981 size_t len)
982{
983 struct dma_device *dev = chan->device;
984 struct dma_async_tx_descriptor *tx;
Dan Williams00367312008-02-02 19:49:57 -0700985 dma_addr_t dma_dest, dma_src;
Dan Williams7405f742007-01-02 11:10:43 -0700986 dma_cookie_t cookie;
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200987 unsigned long flags;
Dan Williams7405f742007-01-02 11:10:43 -0700988
Dan Williams00367312008-02-02 19:49:57 -0700989 dma_src = dma_map_page(dev->dev, src_pg, src_off, len, DMA_TO_DEVICE);
990 dma_dest = dma_map_page(dev->dev, dest_pg, dest_off, len,
991 DMA_FROM_DEVICE);
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200992 flags = DMA_CTRL_ACK;
993 tx = dev->device_prep_dma_memcpy(chan, dma_dest, dma_src, len, flags);
Dan Williams00367312008-02-02 19:49:57 -0700994
995 if (!tx) {
996 dma_unmap_page(dev->dev, dma_src, len, DMA_TO_DEVICE);
997 dma_unmap_page(dev->dev, dma_dest, len, DMA_FROM_DEVICE);
Dan Williams7405f742007-01-02 11:10:43 -0700998 return -ENOMEM;
Dan Williams00367312008-02-02 19:49:57 -0700999 }
Dan Williams7405f742007-01-02 11:10:43 -07001000
Dan Williams7405f742007-01-02 11:10:43 -07001001 tx->callback = NULL;
Dan Williams7405f742007-01-02 11:10:43 -07001002 cookie = tx->tx_submit(tx);
1003
Christoph Lametere7dcaa42009-10-03 19:48:23 +09001004 preempt_disable();
1005 __this_cpu_add(chan->local->bytes_transferred, len);
1006 __this_cpu_inc(chan->local->memcpy_count);
1007 preempt_enable();
Dan Williams7405f742007-01-02 11:10:43 -07001008
1009 return cookie;
1010}
1011EXPORT_SYMBOL(dma_async_memcpy_pg_to_pg);
1012
1013void dma_async_tx_descriptor_init(struct dma_async_tx_descriptor *tx,
1014 struct dma_chan *chan)
1015{
1016 tx->chan = chan;
Dan Williams5fc6d892010-10-07 16:44:50 -07001017 #ifdef CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH
Dan Williams7405f742007-01-02 11:10:43 -07001018 spin_lock_init(&tx->lock);
Dan Williamscaa20d972010-05-17 16:24:16 -07001019 #endif
Dan Williams7405f742007-01-02 11:10:43 -07001020}
1021EXPORT_SYMBOL(dma_async_tx_descriptor_init);
1022
Dan Williams07f22112009-01-05 17:14:31 -07001023/* dma_wait_for_async_tx - spin wait for a transaction to complete
1024 * @tx: in-flight transaction to wait on
Dan Williams07f22112009-01-05 17:14:31 -07001025 */
1026enum dma_status
1027dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx)
1028{
Dan Williams95475e52009-07-14 12:19:02 -07001029 unsigned long dma_sync_wait_timeout = jiffies + msecs_to_jiffies(5000);
Dan Williams07f22112009-01-05 17:14:31 -07001030
1031 if (!tx)
1032 return DMA_SUCCESS;
1033
Dan Williams95475e52009-07-14 12:19:02 -07001034 while (tx->cookie == -EBUSY) {
1035 if (time_after_eq(jiffies, dma_sync_wait_timeout)) {
1036 pr_err("%s timeout waiting for descriptor submission\n",
Joe Perches63433252012-07-18 09:51:28 -07001037 __func__);
Dan Williams95475e52009-07-14 12:19:02 -07001038 return DMA_ERROR;
1039 }
1040 cpu_relax();
1041 }
1042 return dma_sync_wait(tx->chan, tx->cookie);
Dan Williams07f22112009-01-05 17:14:31 -07001043}
1044EXPORT_SYMBOL_GPL(dma_wait_for_async_tx);
1045
1046/* dma_run_dependencies - helper routine for dma drivers to process
1047 * (start) dependent operations on their target channel
1048 * @tx: transaction with dependencies
1049 */
1050void dma_run_dependencies(struct dma_async_tx_descriptor *tx)
1051{
Dan Williamscaa20d972010-05-17 16:24:16 -07001052 struct dma_async_tx_descriptor *dep = txd_next(tx);
Dan Williams07f22112009-01-05 17:14:31 -07001053 struct dma_async_tx_descriptor *dep_next;
1054 struct dma_chan *chan;
1055
1056 if (!dep)
1057 return;
1058
Yuri Tikhonovdd59b852009-01-12 15:17:20 -07001059 /* we'll submit tx->next now, so clear the link */
Dan Williamscaa20d972010-05-17 16:24:16 -07001060 txd_clear_next(tx);
Dan Williams07f22112009-01-05 17:14:31 -07001061 chan = dep->chan;
1062
1063 /* keep submitting up until a channel switch is detected
1064 * in that case we will be called again as a result of
1065 * processing the interrupt from async_tx_channel_switch
1066 */
1067 for (; dep; dep = dep_next) {
Dan Williamscaa20d972010-05-17 16:24:16 -07001068 txd_lock(dep);
1069 txd_clear_parent(dep);
1070 dep_next = txd_next(dep);
Dan Williams07f22112009-01-05 17:14:31 -07001071 if (dep_next && dep_next->chan == chan)
Dan Williamscaa20d972010-05-17 16:24:16 -07001072 txd_clear_next(dep); /* ->next will be submitted */
Dan Williams07f22112009-01-05 17:14:31 -07001073 else
1074 dep_next = NULL; /* submit current dep and terminate */
Dan Williamscaa20d972010-05-17 16:24:16 -07001075 txd_unlock(dep);
Dan Williams07f22112009-01-05 17:14:31 -07001076
1077 dep->tx_submit(dep);
1078 }
1079
1080 chan->device->device_issue_pending(chan);
1081}
1082EXPORT_SYMBOL_GPL(dma_run_dependencies);
1083
Chris Leechc13c8262006-05-23 17:18:44 -07001084static int __init dma_bus_init(void)
1085{
Chris Leechc13c8262006-05-23 17:18:44 -07001086 return class_register(&dma_devclass);
1087}
Dan Williams652afc22009-01-06 11:38:22 -07001088arch_initcall(dma_bus_init);
Chris Leechc13c8262006-05-23 17:18:44 -07001089
Dan Williamsbec08512009-01-06 11:38:14 -07001090