blob: 49243d14b894a53e5f9e13dc367d649dadbfd193 [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
48#include <linux/init.h>
49#include <linux/module.h>
Dan Williams7405f742007-01-02 11:10:43 -070050#include <linux/mm.h>
Chris Leechc13c8262006-05-23 17:18:44 -070051#include <linux/device.h>
52#include <linux/dmaengine.h>
53#include <linux/hardirq.h>
54#include <linux/spinlock.h>
55#include <linux/percpu.h>
56#include <linux/rcupdate.h>
57#include <linux/mutex.h>
Dan Williams7405f742007-01-02 11:10:43 -070058#include <linux/jiffies.h>
Dan Williams2ba05622009-01-06 11:38:14 -070059#include <linux/rculist.h>
Dan Williams864498a2009-01-06 11:38:21 -070060#include <linux/idr.h>
Chris Leechc13c8262006-05-23 17:18:44 -070061
62static DEFINE_MUTEX(dma_list_mutex);
63static LIST_HEAD(dma_device_list);
Dan Williams6f49a572009-01-06 11:38:14 -070064static long dmaengine_ref_count;
Dan Williams864498a2009-01-06 11:38:21 -070065static struct idr dma_idr;
Chris Leechc13c8262006-05-23 17:18:44 -070066
67/* --- sysfs implementation --- */
68
Dan Williams41d5e592009-01-06 11:38:21 -070069/**
70 * dev_to_dma_chan - convert a device pointer to the its sysfs container object
71 * @dev - device node
72 *
73 * Must be called under dma_list_mutex
74 */
75static struct dma_chan *dev_to_dma_chan(struct device *dev)
76{
77 struct dma_chan_dev *chan_dev;
78
79 chan_dev = container_of(dev, typeof(*chan_dev), device);
80 return chan_dev->chan;
81}
82
Tony Jones891f78e2007-09-25 02:03:03 +020083static ssize_t show_memcpy_count(struct device *dev, struct device_attribute *attr, char *buf)
Chris Leechc13c8262006-05-23 17:18:44 -070084{
Dan Williams41d5e592009-01-06 11:38:21 -070085 struct dma_chan *chan;
Chris Leechc13c8262006-05-23 17:18:44 -070086 unsigned long count = 0;
87 int i;
Dan Williams41d5e592009-01-06 11:38:21 -070088 int err;
Chris Leechc13c8262006-05-23 17:18:44 -070089
Dan Williams41d5e592009-01-06 11:38:21 -070090 mutex_lock(&dma_list_mutex);
91 chan = dev_to_dma_chan(dev);
92 if (chan) {
93 for_each_possible_cpu(i)
94 count += per_cpu_ptr(chan->local, i)->memcpy_count;
95 err = sprintf(buf, "%lu\n", count);
96 } else
97 err = -ENODEV;
98 mutex_unlock(&dma_list_mutex);
Chris Leechc13c8262006-05-23 17:18:44 -070099
Dan Williams41d5e592009-01-06 11:38:21 -0700100 return err;
Chris Leechc13c8262006-05-23 17:18:44 -0700101}
102
Tony Jones891f78e2007-09-25 02:03:03 +0200103static ssize_t show_bytes_transferred(struct device *dev, struct device_attribute *attr,
104 char *buf)
Chris Leechc13c8262006-05-23 17:18:44 -0700105{
Dan Williams41d5e592009-01-06 11:38:21 -0700106 struct dma_chan *chan;
Chris Leechc13c8262006-05-23 17:18:44 -0700107 unsigned long count = 0;
108 int i;
Dan Williams41d5e592009-01-06 11:38:21 -0700109 int err;
Chris Leechc13c8262006-05-23 17:18:44 -0700110
Dan Williams41d5e592009-01-06 11:38:21 -0700111 mutex_lock(&dma_list_mutex);
112 chan = dev_to_dma_chan(dev);
113 if (chan) {
114 for_each_possible_cpu(i)
115 count += per_cpu_ptr(chan->local, i)->bytes_transferred;
116 err = sprintf(buf, "%lu\n", count);
117 } else
118 err = -ENODEV;
119 mutex_unlock(&dma_list_mutex);
Chris Leechc13c8262006-05-23 17:18:44 -0700120
Dan Williams41d5e592009-01-06 11:38:21 -0700121 return err;
Chris Leechc13c8262006-05-23 17:18:44 -0700122}
123
Tony Jones891f78e2007-09-25 02:03:03 +0200124static ssize_t show_in_use(struct device *dev, struct device_attribute *attr, char *buf)
Chris Leechc13c8262006-05-23 17:18:44 -0700125{
Dan Williams41d5e592009-01-06 11:38:21 -0700126 struct dma_chan *chan;
127 int err;
Chris Leechc13c8262006-05-23 17:18:44 -0700128
Dan Williams41d5e592009-01-06 11:38:21 -0700129 mutex_lock(&dma_list_mutex);
130 chan = dev_to_dma_chan(dev);
131 if (chan)
132 err = sprintf(buf, "%d\n", chan->client_count);
133 else
134 err = -ENODEV;
135 mutex_unlock(&dma_list_mutex);
136
137 return err;
Chris Leechc13c8262006-05-23 17:18:44 -0700138}
139
Tony Jones891f78e2007-09-25 02:03:03 +0200140static struct device_attribute dma_attrs[] = {
Chris Leechc13c8262006-05-23 17:18:44 -0700141 __ATTR(memcpy_count, S_IRUGO, show_memcpy_count, NULL),
142 __ATTR(bytes_transferred, S_IRUGO, show_bytes_transferred, NULL),
143 __ATTR(in_use, S_IRUGO, show_in_use, NULL),
144 __ATTR_NULL
145};
146
Dan Williams41d5e592009-01-06 11:38:21 -0700147static void chan_dev_release(struct device *dev)
148{
149 struct dma_chan_dev *chan_dev;
150
151 chan_dev = container_of(dev, typeof(*chan_dev), device);
Dan Williams864498a2009-01-06 11:38:21 -0700152 if (atomic_dec_and_test(chan_dev->idr_ref)) {
153 mutex_lock(&dma_list_mutex);
154 idr_remove(&dma_idr, chan_dev->dev_id);
155 mutex_unlock(&dma_list_mutex);
156 kfree(chan_dev->idr_ref);
157 }
Dan Williams41d5e592009-01-06 11:38:21 -0700158 kfree(chan_dev);
159}
160
Chris Leechc13c8262006-05-23 17:18:44 -0700161static struct class dma_devclass = {
Tony Jones891f78e2007-09-25 02:03:03 +0200162 .name = "dma",
163 .dev_attrs = dma_attrs,
Dan Williams41d5e592009-01-06 11:38:21 -0700164 .dev_release = chan_dev_release,
Chris Leechc13c8262006-05-23 17:18:44 -0700165};
166
167/* --- client and device registration --- */
168
Dan Williams59b5ec22009-01-06 11:38:15 -0700169#define dma_device_satisfies_mask(device, mask) \
170 __dma_device_satisfies_mask((device), &(mask))
Dan Williamsd379b012007-07-09 11:56:42 -0700171static int
Dan Williams59b5ec22009-01-06 11:38:15 -0700172__dma_device_satisfies_mask(struct dma_device *device, dma_cap_mask_t *want)
Dan Williamsd379b012007-07-09 11:56:42 -0700173{
174 dma_cap_mask_t has;
175
Dan Williams59b5ec22009-01-06 11:38:15 -0700176 bitmap_and(has.bits, want->bits, device->cap_mask.bits,
Dan Williamsd379b012007-07-09 11:56:42 -0700177 DMA_TX_TYPE_END);
178 return bitmap_equal(want->bits, has.bits, DMA_TX_TYPE_END);
179}
180
Dan Williams6f49a572009-01-06 11:38:14 -0700181static struct module *dma_chan_to_owner(struct dma_chan *chan)
182{
183 return chan->device->dev->driver->owner;
184}
185
186/**
187 * balance_ref_count - catch up the channel reference count
188 * @chan - channel to balance ->client_count versus dmaengine_ref_count
189 *
190 * balance_ref_count must be called under dma_list_mutex
191 */
192static void balance_ref_count(struct dma_chan *chan)
193{
194 struct module *owner = dma_chan_to_owner(chan);
195
196 while (chan->client_count < dmaengine_ref_count) {
197 __module_get(owner);
198 chan->client_count++;
199 }
200}
201
202/**
203 * dma_chan_get - try to grab a dma channel's parent driver module
204 * @chan - channel to grab
205 *
206 * Must be called under dma_list_mutex
207 */
208static int dma_chan_get(struct dma_chan *chan)
209{
210 int err = -ENODEV;
211 struct module *owner = dma_chan_to_owner(chan);
212
213 if (chan->client_count) {
214 __module_get(owner);
215 err = 0;
216 } else if (try_module_get(owner))
217 err = 0;
218
219 if (err == 0)
220 chan->client_count++;
221
222 /* allocate upon first client reference */
223 if (chan->client_count == 1 && err == 0) {
Dan Williamsaa1e6f12009-01-06 11:38:17 -0700224 int desc_cnt = chan->device->device_alloc_chan_resources(chan);
Dan Williams6f49a572009-01-06 11:38:14 -0700225
226 if (desc_cnt < 0) {
227 err = desc_cnt;
228 chan->client_count = 0;
229 module_put(owner);
Dan Williams59b5ec22009-01-06 11:38:15 -0700230 } else if (!dma_has_cap(DMA_PRIVATE, chan->device->cap_mask))
Dan Williams6f49a572009-01-06 11:38:14 -0700231 balance_ref_count(chan);
232 }
233
234 return err;
235}
236
237/**
238 * dma_chan_put - drop a reference to a dma channel's parent driver module
239 * @chan - channel to release
240 *
241 * Must be called under dma_list_mutex
242 */
243static void dma_chan_put(struct dma_chan *chan)
244{
245 if (!chan->client_count)
246 return; /* this channel failed alloc_chan_resources */
247 chan->client_count--;
248 module_put(dma_chan_to_owner(chan));
249 if (chan->client_count == 0)
250 chan->device->device_free_chan_resources(chan);
251}
252
Dan Williams7405f742007-01-02 11:10:43 -0700253enum dma_status dma_sync_wait(struct dma_chan *chan, dma_cookie_t cookie)
254{
255 enum dma_status status;
256 unsigned long dma_sync_wait_timeout = jiffies + msecs_to_jiffies(5000);
257
258 dma_async_issue_pending(chan);
259 do {
260 status = dma_async_is_tx_complete(chan, cookie, NULL, NULL);
261 if (time_after_eq(jiffies, dma_sync_wait_timeout)) {
262 printk(KERN_ERR "dma_sync_wait_timeout!\n");
263 return DMA_ERROR;
264 }
265 } while (status == DMA_IN_PROGRESS);
266
267 return status;
268}
269EXPORT_SYMBOL(dma_sync_wait);
270
Chris Leechc13c8262006-05-23 17:18:44 -0700271/**
Dan Williamsbec08512009-01-06 11:38:14 -0700272 * dma_cap_mask_all - enable iteration over all operation types
273 */
274static dma_cap_mask_t dma_cap_mask_all;
275
276/**
277 * dma_chan_tbl_ent - tracks channel allocations per core/operation
278 * @chan - associated channel for this entry
279 */
280struct dma_chan_tbl_ent {
281 struct dma_chan *chan;
282};
283
284/**
285 * channel_table - percpu lookup table for memory-to-memory offload providers
286 */
287static struct dma_chan_tbl_ent *channel_table[DMA_TX_TYPE_END];
288
289static int __init dma_channel_table_init(void)
290{
291 enum dma_transaction_type cap;
292 int err = 0;
293
294 bitmap_fill(dma_cap_mask_all.bits, DMA_TX_TYPE_END);
295
Dan Williams59b5ec22009-01-06 11:38:15 -0700296 /* 'interrupt', 'private', and 'slave' are channel capabilities,
297 * but are not associated with an operation so they do not need
298 * an entry in the channel_table
Dan Williamsbec08512009-01-06 11:38:14 -0700299 */
300 clear_bit(DMA_INTERRUPT, dma_cap_mask_all.bits);
Dan Williams59b5ec22009-01-06 11:38:15 -0700301 clear_bit(DMA_PRIVATE, dma_cap_mask_all.bits);
Dan Williamsbec08512009-01-06 11:38:14 -0700302 clear_bit(DMA_SLAVE, dma_cap_mask_all.bits);
303
304 for_each_dma_cap_mask(cap, dma_cap_mask_all) {
305 channel_table[cap] = alloc_percpu(struct dma_chan_tbl_ent);
306 if (!channel_table[cap]) {
307 err = -ENOMEM;
308 break;
309 }
310 }
311
312 if (err) {
313 pr_err("dmaengine: initialization failure\n");
314 for_each_dma_cap_mask(cap, dma_cap_mask_all)
315 if (channel_table[cap])
316 free_percpu(channel_table[cap]);
317 }
318
319 return err;
320}
Dan Williams652afc22009-01-06 11:38:22 -0700321arch_initcall(dma_channel_table_init);
Dan Williamsbec08512009-01-06 11:38:14 -0700322
323/**
324 * dma_find_channel - find a channel to carry out the operation
325 * @tx_type: transaction type
326 */
327struct dma_chan *dma_find_channel(enum dma_transaction_type tx_type)
328{
329 struct dma_chan *chan;
330 int cpu;
331
Dan Williamsbec08512009-01-06 11:38:14 -0700332 cpu = get_cpu();
333 chan = per_cpu_ptr(channel_table[tx_type], cpu)->chan;
334 put_cpu();
335
336 return chan;
337}
338EXPORT_SYMBOL(dma_find_channel);
339
340/**
Dan Williams2ba05622009-01-06 11:38:14 -0700341 * dma_issue_pending_all - flush all pending operations across all channels
342 */
343void dma_issue_pending_all(void)
344{
345 struct dma_device *device;
346 struct dma_chan *chan;
347
Dan Williams2ba05622009-01-06 11:38:14 -0700348 rcu_read_lock();
Dan Williams59b5ec22009-01-06 11:38:15 -0700349 list_for_each_entry_rcu(device, &dma_device_list, global_node) {
350 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
351 continue;
Dan Williams2ba05622009-01-06 11:38:14 -0700352 list_for_each_entry(chan, &device->channels, device_node)
353 if (chan->client_count)
354 device->device_issue_pending(chan);
Dan Williams59b5ec22009-01-06 11:38:15 -0700355 }
Dan Williams2ba05622009-01-06 11:38:14 -0700356 rcu_read_unlock();
357}
358EXPORT_SYMBOL(dma_issue_pending_all);
359
360/**
Dan Williamsbec08512009-01-06 11:38:14 -0700361 * nth_chan - returns the nth channel of the given capability
362 * @cap: capability to match
363 * @n: nth channel desired
364 *
365 * Defaults to returning the channel with the desired capability and the
366 * lowest reference count when 'n' cannot be satisfied. Must be called
367 * under dma_list_mutex.
368 */
369static struct dma_chan *nth_chan(enum dma_transaction_type cap, int n)
370{
371 struct dma_device *device;
372 struct dma_chan *chan;
373 struct dma_chan *ret = NULL;
374 struct dma_chan *min = NULL;
375
376 list_for_each_entry(device, &dma_device_list, global_node) {
Dan Williams59b5ec22009-01-06 11:38:15 -0700377 if (!dma_has_cap(cap, device->cap_mask) ||
378 dma_has_cap(DMA_PRIVATE, device->cap_mask))
Dan Williamsbec08512009-01-06 11:38:14 -0700379 continue;
380 list_for_each_entry(chan, &device->channels, device_node) {
381 if (!chan->client_count)
382 continue;
383 if (!min)
384 min = chan;
385 else if (chan->table_count < min->table_count)
386 min = chan;
387
388 if (n-- == 0) {
389 ret = chan;
390 break; /* done */
391 }
392 }
393 if (ret)
394 break; /* done */
395 }
396
397 if (!ret)
398 ret = min;
399
400 if (ret)
401 ret->table_count++;
402
403 return ret;
404}
405
406/**
407 * dma_channel_rebalance - redistribute the available channels
408 *
409 * Optimize for cpu isolation (each cpu gets a dedicated channel for an
410 * operation type) in the SMP case, and operation isolation (avoid
411 * multi-tasking channels) in the non-SMP case. Must be called under
412 * dma_list_mutex.
413 */
414static void dma_channel_rebalance(void)
415{
416 struct dma_chan *chan;
417 struct dma_device *device;
418 int cpu;
419 int cap;
420 int n;
421
422 /* undo the last distribution */
423 for_each_dma_cap_mask(cap, dma_cap_mask_all)
424 for_each_possible_cpu(cpu)
425 per_cpu_ptr(channel_table[cap], cpu)->chan = NULL;
426
Dan Williams59b5ec22009-01-06 11:38:15 -0700427 list_for_each_entry(device, &dma_device_list, global_node) {
428 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
429 continue;
Dan Williamsbec08512009-01-06 11:38:14 -0700430 list_for_each_entry(chan, &device->channels, device_node)
431 chan->table_count = 0;
Dan Williams59b5ec22009-01-06 11:38:15 -0700432 }
Dan Williamsbec08512009-01-06 11:38:14 -0700433
434 /* don't populate the channel_table if no clients are available */
435 if (!dmaengine_ref_count)
436 return;
437
438 /* redistribute available channels */
439 n = 0;
440 for_each_dma_cap_mask(cap, dma_cap_mask_all)
441 for_each_online_cpu(cpu) {
442 if (num_possible_cpus() > 1)
443 chan = nth_chan(cap, n++);
444 else
445 chan = nth_chan(cap, -1);
446
447 per_cpu_ptr(channel_table[cap], cpu)->chan = chan;
448 }
449}
450
Dan Williamse2346672009-01-06 11:38:21 -0700451static struct dma_chan *private_candidate(dma_cap_mask_t *mask, struct dma_device *dev,
452 dma_filter_fn fn, void *fn_param)
Dan Williams59b5ec22009-01-06 11:38:15 -0700453{
454 struct dma_chan *chan;
Dan Williams59b5ec22009-01-06 11:38:15 -0700455
456 if (!__dma_device_satisfies_mask(dev, mask)) {
457 pr_debug("%s: wrong capabilities\n", __func__);
458 return NULL;
459 }
460 /* devices with multiple channels need special handling as we need to
461 * ensure that all channels are either private or public.
462 */
463 if (dev->chancnt > 1 && !dma_has_cap(DMA_PRIVATE, dev->cap_mask))
464 list_for_each_entry(chan, &dev->channels, device_node) {
465 /* some channels are already publicly allocated */
466 if (chan->client_count)
467 return NULL;
468 }
469
470 list_for_each_entry(chan, &dev->channels, device_node) {
471 if (chan->client_count) {
472 pr_debug("%s: %s busy\n",
Dan Williams41d5e592009-01-06 11:38:21 -0700473 __func__, dma_chan_name(chan));
Dan Williams59b5ec22009-01-06 11:38:15 -0700474 continue;
475 }
Dan Williamse2346672009-01-06 11:38:21 -0700476 if (fn && !fn(chan, fn_param)) {
477 pr_debug("%s: %s filter said false\n",
478 __func__, dma_chan_name(chan));
479 continue;
480 }
481 return chan;
Dan Williams59b5ec22009-01-06 11:38:15 -0700482 }
483
Dan Williamse2346672009-01-06 11:38:21 -0700484 return NULL;
Dan Williams59b5ec22009-01-06 11:38:15 -0700485}
486
487/**
488 * dma_request_channel - try to allocate an exclusive channel
489 * @mask: capabilities that the channel must satisfy
490 * @fn: optional callback to disposition available channels
491 * @fn_param: opaque parameter to pass to dma_filter_fn
492 */
493struct dma_chan *__dma_request_channel(dma_cap_mask_t *mask, dma_filter_fn fn, void *fn_param)
494{
495 struct dma_device *device, *_d;
496 struct dma_chan *chan = NULL;
Dan Williams59b5ec22009-01-06 11:38:15 -0700497 int err;
498
499 /* Find a channel */
500 mutex_lock(&dma_list_mutex);
501 list_for_each_entry_safe(device, _d, &dma_device_list, global_node) {
Dan Williamse2346672009-01-06 11:38:21 -0700502 chan = private_candidate(mask, device, fn, fn_param);
503 if (chan) {
Dan Williams59b5ec22009-01-06 11:38:15 -0700504 /* Found a suitable channel, try to grab, prep, and
505 * return it. We first set DMA_PRIVATE to disable
506 * balance_ref_count as this channel will not be
507 * published in the general-purpose allocator
508 */
509 dma_cap_set(DMA_PRIVATE, device->cap_mask);
510 err = dma_chan_get(chan);
511
512 if (err == -ENODEV) {
513 pr_debug("%s: %s module removed\n", __func__,
Dan Williams41d5e592009-01-06 11:38:21 -0700514 dma_chan_name(chan));
Dan Williams59b5ec22009-01-06 11:38:15 -0700515 list_del_rcu(&device->global_node);
516 } else if (err)
517 pr_err("dmaengine: failed to get %s: (%d)\n",
Dan Williams41d5e592009-01-06 11:38:21 -0700518 dma_chan_name(chan), err);
Dan Williams59b5ec22009-01-06 11:38:15 -0700519 else
520 break;
Dan Williams287d8592009-02-18 14:48:26 -0800521 chan->private = NULL;
Dan Williamse2346672009-01-06 11:38:21 -0700522 chan = NULL;
523 }
Dan Williams59b5ec22009-01-06 11:38:15 -0700524 }
525 mutex_unlock(&dma_list_mutex);
526
527 pr_debug("%s: %s (%s)\n", __func__, chan ? "success" : "fail",
Dan Williams41d5e592009-01-06 11:38:21 -0700528 chan ? dma_chan_name(chan) : NULL);
Dan Williams59b5ec22009-01-06 11:38:15 -0700529
530 return chan;
531}
532EXPORT_SYMBOL_GPL(__dma_request_channel);
533
534void dma_release_channel(struct dma_chan *chan)
535{
536 mutex_lock(&dma_list_mutex);
537 WARN_ONCE(chan->client_count != 1,
538 "chan reference count %d != 1\n", chan->client_count);
539 dma_chan_put(chan);
Dan Williams287d8592009-02-18 14:48:26 -0800540 chan->private = NULL;
Dan Williams59b5ec22009-01-06 11:38:15 -0700541 mutex_unlock(&dma_list_mutex);
542}
543EXPORT_SYMBOL_GPL(dma_release_channel);
544
Dan Williamsbec08512009-01-06 11:38:14 -0700545/**
Dan Williams209b84a2009-01-06 11:38:17 -0700546 * dmaengine_get - register interest in dma_channels
Chris Leechc13c8262006-05-23 17:18:44 -0700547 */
Dan Williams209b84a2009-01-06 11:38:17 -0700548void dmaengine_get(void)
Chris Leechc13c8262006-05-23 17:18:44 -0700549{
Dan Williams6f49a572009-01-06 11:38:14 -0700550 struct dma_device *device, *_d;
551 struct dma_chan *chan;
552 int err;
553
Chris Leechc13c8262006-05-23 17:18:44 -0700554 mutex_lock(&dma_list_mutex);
Dan Williams6f49a572009-01-06 11:38:14 -0700555 dmaengine_ref_count++;
556
557 /* try to grab channels */
Dan Williams59b5ec22009-01-06 11:38:15 -0700558 list_for_each_entry_safe(device, _d, &dma_device_list, global_node) {
559 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
560 continue;
Dan Williams6f49a572009-01-06 11:38:14 -0700561 list_for_each_entry(chan, &device->channels, device_node) {
562 err = dma_chan_get(chan);
563 if (err == -ENODEV) {
564 /* module removed before we could use it */
Dan Williams2ba05622009-01-06 11:38:14 -0700565 list_del_rcu(&device->global_node);
Dan Williams6f49a572009-01-06 11:38:14 -0700566 break;
567 } else if (err)
568 pr_err("dmaengine: failed to get %s: (%d)\n",
Dan Williams41d5e592009-01-06 11:38:21 -0700569 dma_chan_name(chan), err);
Dan Williams6f49a572009-01-06 11:38:14 -0700570 }
Dan Williams59b5ec22009-01-06 11:38:15 -0700571 }
Dan Williams6f49a572009-01-06 11:38:14 -0700572
Dan Williamsbec08512009-01-06 11:38:14 -0700573 /* if this is the first reference and there were channels
574 * waiting we need to rebalance to get those channels
575 * incorporated into the channel table
576 */
577 if (dmaengine_ref_count == 1)
578 dma_channel_rebalance();
Chris Leechc13c8262006-05-23 17:18:44 -0700579 mutex_unlock(&dma_list_mutex);
Chris Leechc13c8262006-05-23 17:18:44 -0700580}
Dan Williams209b84a2009-01-06 11:38:17 -0700581EXPORT_SYMBOL(dmaengine_get);
Chris Leechc13c8262006-05-23 17:18:44 -0700582
583/**
Dan Williams209b84a2009-01-06 11:38:17 -0700584 * dmaengine_put - let dma drivers be removed when ref_count == 0
Chris Leechc13c8262006-05-23 17:18:44 -0700585 */
Dan Williams209b84a2009-01-06 11:38:17 -0700586void dmaengine_put(void)
Chris Leechc13c8262006-05-23 17:18:44 -0700587{
Dan Williamsd379b012007-07-09 11:56:42 -0700588 struct dma_device *device;
Chris Leechc13c8262006-05-23 17:18:44 -0700589 struct dma_chan *chan;
590
Chris Leechc13c8262006-05-23 17:18:44 -0700591 mutex_lock(&dma_list_mutex);
Dan Williams6f49a572009-01-06 11:38:14 -0700592 dmaengine_ref_count--;
593 BUG_ON(dmaengine_ref_count < 0);
594 /* drop channel references */
Dan Williams59b5ec22009-01-06 11:38:15 -0700595 list_for_each_entry(device, &dma_device_list, global_node) {
596 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
597 continue;
Dan Williams6f49a572009-01-06 11:38:14 -0700598 list_for_each_entry(chan, &device->channels, device_node)
599 dma_chan_put(chan);
Dan Williams59b5ec22009-01-06 11:38:15 -0700600 }
Chris Leechc13c8262006-05-23 17:18:44 -0700601 mutex_unlock(&dma_list_mutex);
Chris Leechc13c8262006-05-23 17:18:44 -0700602}
Dan Williams209b84a2009-01-06 11:38:17 -0700603EXPORT_SYMBOL(dmaengine_put);
Chris Leechc13c8262006-05-23 17:18:44 -0700604
Dan Williams257b17c2009-03-25 09:13:23 -0700605static int get_dma_id(struct dma_device *device)
606{
607 int rc;
608
609 idr_retry:
610 if (!idr_pre_get(&dma_idr, GFP_KERNEL))
611 return -ENOMEM;
612 mutex_lock(&dma_list_mutex);
613 rc = idr_get_new(&dma_idr, NULL, &device->dev_id);
614 mutex_unlock(&dma_list_mutex);
615 if (rc == -EAGAIN)
616 goto idr_retry;
617 else if (rc != 0)
618 return rc;
619
620 return 0;
621}
622
Chris Leechc13c8262006-05-23 17:18:44 -0700623/**
Randy Dunlap65088712006-07-03 19:45:31 -0700624 * dma_async_device_register - registers DMA devices found
Chris Leechc13c8262006-05-23 17:18:44 -0700625 * @device: &dma_device
626 */
627int dma_async_device_register(struct dma_device *device)
628{
Jeff Garzikff487fb2007-03-08 09:57:34 -0800629 int chancnt = 0, rc;
Chris Leechc13c8262006-05-23 17:18:44 -0700630 struct dma_chan* chan;
Dan Williams864498a2009-01-06 11:38:21 -0700631 atomic_t *idr_ref;
Chris Leechc13c8262006-05-23 17:18:44 -0700632
633 if (!device)
634 return -ENODEV;
635
Dan Williams7405f742007-01-02 11:10:43 -0700636 /* validate device routines */
637 BUG_ON(dma_has_cap(DMA_MEMCPY, device->cap_mask) &&
638 !device->device_prep_dma_memcpy);
639 BUG_ON(dma_has_cap(DMA_XOR, device->cap_mask) &&
640 !device->device_prep_dma_xor);
641 BUG_ON(dma_has_cap(DMA_ZERO_SUM, device->cap_mask) &&
642 !device->device_prep_dma_zero_sum);
643 BUG_ON(dma_has_cap(DMA_MEMSET, device->cap_mask) &&
644 !device->device_prep_dma_memset);
Zhang Wei9b941c62008-03-13 17:45:28 -0700645 BUG_ON(dma_has_cap(DMA_INTERRUPT, device->cap_mask) &&
Dan Williams7405f742007-01-02 11:10:43 -0700646 !device->device_prep_dma_interrupt);
Haavard Skinnemoendc0ee6432008-07-08 11:59:35 -0700647 BUG_ON(dma_has_cap(DMA_SLAVE, device->cap_mask) &&
648 !device->device_prep_slave_sg);
649 BUG_ON(dma_has_cap(DMA_SLAVE, device->cap_mask) &&
650 !device->device_terminate_all);
Dan Williams7405f742007-01-02 11:10:43 -0700651
652 BUG_ON(!device->device_alloc_chan_resources);
653 BUG_ON(!device->device_free_chan_resources);
Dan Williams7405f742007-01-02 11:10:43 -0700654 BUG_ON(!device->device_is_tx_complete);
655 BUG_ON(!device->device_issue_pending);
656 BUG_ON(!device->dev);
657
Dan Williams864498a2009-01-06 11:38:21 -0700658 idr_ref = kmalloc(sizeof(*idr_ref), GFP_KERNEL);
659 if (!idr_ref)
660 return -ENOMEM;
Dan Williams257b17c2009-03-25 09:13:23 -0700661 rc = get_dma_id(device);
662 if (rc != 0) {
663 kfree(idr_ref);
Dan Williams864498a2009-01-06 11:38:21 -0700664 return rc;
Dan Williams257b17c2009-03-25 09:13:23 -0700665 }
666
667 atomic_set(idr_ref, 0);
Chris Leechc13c8262006-05-23 17:18:44 -0700668
669 /* represent channels in sysfs. Probably want devs too */
670 list_for_each_entry(chan, &device->channels, device_node) {
Dan Williams257b17c2009-03-25 09:13:23 -0700671 rc = -ENOMEM;
Chris Leechc13c8262006-05-23 17:18:44 -0700672 chan->local = alloc_percpu(typeof(*chan->local));
673 if (chan->local == NULL)
Dan Williams257b17c2009-03-25 09:13:23 -0700674 goto err_out;
Dan Williams41d5e592009-01-06 11:38:21 -0700675 chan->dev = kzalloc(sizeof(*chan->dev), GFP_KERNEL);
676 if (chan->dev == NULL) {
677 free_percpu(chan->local);
Dan Williams257b17c2009-03-25 09:13:23 -0700678 chan->local = NULL;
679 goto err_out;
Dan Williams41d5e592009-01-06 11:38:21 -0700680 }
Chris Leechc13c8262006-05-23 17:18:44 -0700681
682 chan->chan_id = chancnt++;
Dan Williams41d5e592009-01-06 11:38:21 -0700683 chan->dev->device.class = &dma_devclass;
684 chan->dev->device.parent = device->dev;
685 chan->dev->chan = chan;
Dan Williams864498a2009-01-06 11:38:21 -0700686 chan->dev->idr_ref = idr_ref;
687 chan->dev->dev_id = device->dev_id;
688 atomic_inc(idr_ref);
Dan Williams41d5e592009-01-06 11:38:21 -0700689 dev_set_name(&chan->dev->device, "dma%dchan%d",
Kay Sievers06190d82008-11-11 13:12:33 -0700690 device->dev_id, chan->chan_id);
Chris Leechc13c8262006-05-23 17:18:44 -0700691
Dan Williams41d5e592009-01-06 11:38:21 -0700692 rc = device_register(&chan->dev->device);
Jeff Garzikff487fb2007-03-08 09:57:34 -0800693 if (rc) {
Jeff Garzikff487fb2007-03-08 09:57:34 -0800694 free_percpu(chan->local);
695 chan->local = NULL;
Dan Williams257b17c2009-03-25 09:13:23 -0700696 kfree(chan->dev);
697 atomic_dec(idr_ref);
Jeff Garzikff487fb2007-03-08 09:57:34 -0800698 goto err_out;
699 }
Dan Williams7cc5bf92008-07-08 11:58:21 -0700700 chan->client_count = 0;
Chris Leechc13c8262006-05-23 17:18:44 -0700701 }
Dan Williams59b5ec22009-01-06 11:38:15 -0700702 device->chancnt = chancnt;
Chris Leechc13c8262006-05-23 17:18:44 -0700703
704 mutex_lock(&dma_list_mutex);
Dan Williams59b5ec22009-01-06 11:38:15 -0700705 /* take references on public channels */
706 if (dmaengine_ref_count && !dma_has_cap(DMA_PRIVATE, device->cap_mask))
Dan Williams6f49a572009-01-06 11:38:14 -0700707 list_for_each_entry(chan, &device->channels, device_node) {
708 /* if clients are already waiting for channels we need
709 * to take references on their behalf
710 */
711 if (dma_chan_get(chan) == -ENODEV) {
712 /* note we can only get here for the first
713 * channel as the remaining channels are
714 * guaranteed to get a reference
715 */
716 rc = -ENODEV;
717 mutex_unlock(&dma_list_mutex);
718 goto err_out;
719 }
720 }
Dan Williams2ba05622009-01-06 11:38:14 -0700721 list_add_tail_rcu(&device->global_node, &dma_device_list);
Dan Williamsbec08512009-01-06 11:38:14 -0700722 dma_channel_rebalance();
Chris Leechc13c8262006-05-23 17:18:44 -0700723 mutex_unlock(&dma_list_mutex);
724
Chris Leechc13c8262006-05-23 17:18:44 -0700725 return 0;
Jeff Garzikff487fb2007-03-08 09:57:34 -0800726
727err_out:
Dan Williams257b17c2009-03-25 09:13:23 -0700728 /* if we never registered a channel just release the idr */
729 if (atomic_read(idr_ref) == 0) {
730 mutex_lock(&dma_list_mutex);
731 idr_remove(&dma_idr, device->dev_id);
732 mutex_unlock(&dma_list_mutex);
733 kfree(idr_ref);
734 return rc;
735 }
736
Jeff Garzikff487fb2007-03-08 09:57:34 -0800737 list_for_each_entry(chan, &device->channels, device_node) {
738 if (chan->local == NULL)
739 continue;
Dan Williams41d5e592009-01-06 11:38:21 -0700740 mutex_lock(&dma_list_mutex);
741 chan->dev->chan = NULL;
742 mutex_unlock(&dma_list_mutex);
743 device_unregister(&chan->dev->device);
Jeff Garzikff487fb2007-03-08 09:57:34 -0800744 free_percpu(chan->local);
745 }
746 return rc;
Chris Leechc13c8262006-05-23 17:18:44 -0700747}
David Brownell765e3d82007-03-16 13:38:05 -0800748EXPORT_SYMBOL(dma_async_device_register);
Chris Leechc13c8262006-05-23 17:18:44 -0700749
750/**
Dan Williams6f49a572009-01-06 11:38:14 -0700751 * dma_async_device_unregister - unregister a DMA device
Randy Dunlap65088712006-07-03 19:45:31 -0700752 * @device: &dma_device
Dan Williamsf27c5802009-01-06 11:38:18 -0700753 *
754 * This routine is called by dma driver exit routines, dmaengine holds module
755 * references to prevent it being called while channels are in use.
Randy Dunlap65088712006-07-03 19:45:31 -0700756 */
757void dma_async_device_unregister(struct dma_device *device)
Chris Leechc13c8262006-05-23 17:18:44 -0700758{
759 struct dma_chan *chan;
Chris Leechc13c8262006-05-23 17:18:44 -0700760
761 mutex_lock(&dma_list_mutex);
Dan Williams2ba05622009-01-06 11:38:14 -0700762 list_del_rcu(&device->global_node);
Dan Williamsbec08512009-01-06 11:38:14 -0700763 dma_channel_rebalance();
Chris Leechc13c8262006-05-23 17:18:44 -0700764 mutex_unlock(&dma_list_mutex);
765
766 list_for_each_entry(chan, &device->channels, device_node) {
Dan Williams6f49a572009-01-06 11:38:14 -0700767 WARN_ONCE(chan->client_count,
768 "%s called while %d clients hold a reference\n",
769 __func__, chan->client_count);
Dan Williams41d5e592009-01-06 11:38:21 -0700770 mutex_lock(&dma_list_mutex);
771 chan->dev->chan = NULL;
772 mutex_unlock(&dma_list_mutex);
773 device_unregister(&chan->dev->device);
Chris Leechc13c8262006-05-23 17:18:44 -0700774 }
Chris Leechc13c8262006-05-23 17:18:44 -0700775}
David Brownell765e3d82007-03-16 13:38:05 -0800776EXPORT_SYMBOL(dma_async_device_unregister);
Chris Leechc13c8262006-05-23 17:18:44 -0700777
Dan Williams7405f742007-01-02 11:10:43 -0700778/**
779 * dma_async_memcpy_buf_to_buf - offloaded copy between virtual addresses
780 * @chan: DMA channel to offload copy to
781 * @dest: destination address (virtual)
782 * @src: source address (virtual)
783 * @len: length
784 *
785 * Both @dest and @src must be mappable to a bus address according to the
786 * DMA mapping API rules for streaming mappings.
787 * Both @dest and @src must stay memory resident (kernel memory or locked
788 * user space pages).
789 */
790dma_cookie_t
791dma_async_memcpy_buf_to_buf(struct dma_chan *chan, void *dest,
792 void *src, size_t len)
793{
794 struct dma_device *dev = chan->device;
795 struct dma_async_tx_descriptor *tx;
Dan Williams00367312008-02-02 19:49:57 -0700796 dma_addr_t dma_dest, dma_src;
Dan Williams7405f742007-01-02 11:10:43 -0700797 dma_cookie_t cookie;
798 int cpu;
799
Dan Williams00367312008-02-02 19:49:57 -0700800 dma_src = dma_map_single(dev->dev, src, len, DMA_TO_DEVICE);
801 dma_dest = dma_map_single(dev->dev, dest, len, DMA_FROM_DEVICE);
Dan Williams636bdea2008-04-17 20:17:26 -0700802 tx = dev->device_prep_dma_memcpy(chan, dma_dest, dma_src, len,
803 DMA_CTRL_ACK);
Dan Williams00367312008-02-02 19:49:57 -0700804
805 if (!tx) {
806 dma_unmap_single(dev->dev, dma_src, len, DMA_TO_DEVICE);
807 dma_unmap_single(dev->dev, dma_dest, len, DMA_FROM_DEVICE);
Dan Williams7405f742007-01-02 11:10:43 -0700808 return -ENOMEM;
Dan Williams00367312008-02-02 19:49:57 -0700809 }
Dan Williams7405f742007-01-02 11:10:43 -0700810
Dan Williams7405f742007-01-02 11:10:43 -0700811 tx->callback = NULL;
Dan Williams7405f742007-01-02 11:10:43 -0700812 cookie = tx->tx_submit(tx);
813
814 cpu = get_cpu();
815 per_cpu_ptr(chan->local, cpu)->bytes_transferred += len;
816 per_cpu_ptr(chan->local, cpu)->memcpy_count++;
817 put_cpu();
818
819 return cookie;
820}
821EXPORT_SYMBOL(dma_async_memcpy_buf_to_buf);
822
823/**
824 * dma_async_memcpy_buf_to_pg - offloaded copy from address to page
825 * @chan: DMA channel to offload copy to
826 * @page: destination page
827 * @offset: offset in page to copy to
828 * @kdata: source address (virtual)
829 * @len: length
830 *
831 * Both @page/@offset and @kdata must be mappable to a bus address according
832 * to the DMA mapping API rules for streaming mappings.
833 * Both @page/@offset and @kdata must stay memory resident (kernel memory or
834 * locked user space pages)
835 */
836dma_cookie_t
837dma_async_memcpy_buf_to_pg(struct dma_chan *chan, struct page *page,
838 unsigned int offset, void *kdata, size_t len)
839{
840 struct dma_device *dev = chan->device;
841 struct dma_async_tx_descriptor *tx;
Dan Williams00367312008-02-02 19:49:57 -0700842 dma_addr_t dma_dest, dma_src;
Dan Williams7405f742007-01-02 11:10:43 -0700843 dma_cookie_t cookie;
844 int cpu;
845
Dan Williams00367312008-02-02 19:49:57 -0700846 dma_src = dma_map_single(dev->dev, kdata, len, DMA_TO_DEVICE);
847 dma_dest = dma_map_page(dev->dev, page, offset, len, DMA_FROM_DEVICE);
Dan Williams636bdea2008-04-17 20:17:26 -0700848 tx = dev->device_prep_dma_memcpy(chan, dma_dest, dma_src, len,
849 DMA_CTRL_ACK);
Dan Williams00367312008-02-02 19:49:57 -0700850
851 if (!tx) {
852 dma_unmap_single(dev->dev, dma_src, len, DMA_TO_DEVICE);
853 dma_unmap_page(dev->dev, dma_dest, len, DMA_FROM_DEVICE);
Dan Williams7405f742007-01-02 11:10:43 -0700854 return -ENOMEM;
Dan Williams00367312008-02-02 19:49:57 -0700855 }
Dan Williams7405f742007-01-02 11:10:43 -0700856
Dan Williams7405f742007-01-02 11:10:43 -0700857 tx->callback = NULL;
Dan Williams7405f742007-01-02 11:10:43 -0700858 cookie = tx->tx_submit(tx);
859
860 cpu = get_cpu();
861 per_cpu_ptr(chan->local, cpu)->bytes_transferred += len;
862 per_cpu_ptr(chan->local, cpu)->memcpy_count++;
863 put_cpu();
864
865 return cookie;
866}
867EXPORT_SYMBOL(dma_async_memcpy_buf_to_pg);
868
869/**
870 * dma_async_memcpy_pg_to_pg - offloaded copy from page to page
871 * @chan: DMA channel to offload copy to
872 * @dest_pg: destination page
873 * @dest_off: offset in page to copy to
874 * @src_pg: source page
875 * @src_off: offset in page to copy from
876 * @len: length
877 *
878 * Both @dest_page/@dest_off and @src_page/@src_off must be mappable to a bus
879 * address according to the DMA mapping API rules for streaming mappings.
880 * Both @dest_page/@dest_off and @src_page/@src_off must stay memory resident
881 * (kernel memory or locked user space pages).
882 */
883dma_cookie_t
884dma_async_memcpy_pg_to_pg(struct dma_chan *chan, struct page *dest_pg,
885 unsigned int dest_off, struct page *src_pg, unsigned int src_off,
886 size_t len)
887{
888 struct dma_device *dev = chan->device;
889 struct dma_async_tx_descriptor *tx;
Dan Williams00367312008-02-02 19:49:57 -0700890 dma_addr_t dma_dest, dma_src;
Dan Williams7405f742007-01-02 11:10:43 -0700891 dma_cookie_t cookie;
892 int cpu;
893
Dan Williams00367312008-02-02 19:49:57 -0700894 dma_src = dma_map_page(dev->dev, src_pg, src_off, len, DMA_TO_DEVICE);
895 dma_dest = dma_map_page(dev->dev, dest_pg, dest_off, len,
896 DMA_FROM_DEVICE);
Dan Williams636bdea2008-04-17 20:17:26 -0700897 tx = dev->device_prep_dma_memcpy(chan, dma_dest, dma_src, len,
898 DMA_CTRL_ACK);
Dan Williams00367312008-02-02 19:49:57 -0700899
900 if (!tx) {
901 dma_unmap_page(dev->dev, dma_src, len, DMA_TO_DEVICE);
902 dma_unmap_page(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
909 cpu = get_cpu();
910 per_cpu_ptr(chan->local, cpu)->bytes_transferred += len;
911 per_cpu_ptr(chan->local, cpu)->memcpy_count++;
912 put_cpu();
913
914 return cookie;
915}
916EXPORT_SYMBOL(dma_async_memcpy_pg_to_pg);
917
918void dma_async_tx_descriptor_init(struct dma_async_tx_descriptor *tx,
919 struct dma_chan *chan)
920{
921 tx->chan = chan;
922 spin_lock_init(&tx->lock);
Dan Williams7405f742007-01-02 11:10:43 -0700923}
924EXPORT_SYMBOL(dma_async_tx_descriptor_init);
925
Dan Williams07f22112009-01-05 17:14:31 -0700926/* dma_wait_for_async_tx - spin wait for a transaction to complete
927 * @tx: in-flight transaction to wait on
928 *
929 * This routine assumes that tx was obtained from a call to async_memcpy,
930 * async_xor, async_memset, etc which ensures that tx is "in-flight" (prepped
931 * and submitted). Walking the parent chain is only meant to cover for DMA
932 * drivers that do not implement the DMA_INTERRUPT capability and may race with
933 * the driver's descriptor cleanup routine.
934 */
935enum dma_status
936dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx)
937{
938 enum dma_status status;
939 struct dma_async_tx_descriptor *iter;
940 struct dma_async_tx_descriptor *parent;
941
942 if (!tx)
943 return DMA_SUCCESS;
944
945 WARN_ONCE(tx->parent, "%s: speculatively walking dependency chain for"
Dan Williams41d5e592009-01-06 11:38:21 -0700946 " %s\n", __func__, dma_chan_name(tx->chan));
Dan Williams07f22112009-01-05 17:14:31 -0700947
948 /* poll through the dependency chain, return when tx is complete */
949 do {
950 iter = tx;
951
952 /* find the root of the unsubmitted dependency chain */
953 do {
954 parent = iter->parent;
955 if (!parent)
956 break;
957 else
958 iter = parent;
959 } while (parent);
960
961 /* there is a small window for ->parent == NULL and
962 * ->cookie == -EBUSY
963 */
964 while (iter->cookie == -EBUSY)
965 cpu_relax();
966
967 status = dma_sync_wait(iter->chan, iter->cookie);
968 } while (status == DMA_IN_PROGRESS || (iter != tx));
969
970 return status;
971}
972EXPORT_SYMBOL_GPL(dma_wait_for_async_tx);
973
974/* dma_run_dependencies - helper routine for dma drivers to process
975 * (start) dependent operations on their target channel
976 * @tx: transaction with dependencies
977 */
978void dma_run_dependencies(struct dma_async_tx_descriptor *tx)
979{
980 struct dma_async_tx_descriptor *dep = tx->next;
981 struct dma_async_tx_descriptor *dep_next;
982 struct dma_chan *chan;
983
984 if (!dep)
985 return;
986
Yuri Tikhonovdd59b852009-01-12 15:17:20 -0700987 /* we'll submit tx->next now, so clear the link */
988 tx->next = NULL;
Dan Williams07f22112009-01-05 17:14:31 -0700989 chan = dep->chan;
990
991 /* keep submitting up until a channel switch is detected
992 * in that case we will be called again as a result of
993 * processing the interrupt from async_tx_channel_switch
994 */
995 for (; dep; dep = dep_next) {
996 spin_lock_bh(&dep->lock);
997 dep->parent = NULL;
998 dep_next = dep->next;
999 if (dep_next && dep_next->chan == chan)
1000 dep->next = NULL; /* ->next will be submitted */
1001 else
1002 dep_next = NULL; /* submit current dep and terminate */
1003 spin_unlock_bh(&dep->lock);
1004
1005 dep->tx_submit(dep);
1006 }
1007
1008 chan->device->device_issue_pending(chan);
1009}
1010EXPORT_SYMBOL_GPL(dma_run_dependencies);
1011
Chris Leechc13c8262006-05-23 17:18:44 -07001012static int __init dma_bus_init(void)
1013{
Dan Williams864498a2009-01-06 11:38:21 -07001014 idr_init(&dma_idr);
Chris Leechc13c8262006-05-23 17:18:44 -07001015 mutex_init(&dma_list_mutex);
1016 return class_register(&dma_devclass);
1017}
Dan Williams652afc22009-01-06 11:38:22 -07001018arch_initcall(dma_bus_init);
Chris Leechc13c8262006-05-23 17:18:44 -07001019
Dan Williamsbec08512009-01-06 11:38:14 -07001020