]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/dma/dmaengine.c
dmaengine: add fence support
[net-next-2.6.git] / drivers / dma / dmaengine.c
CommitLineData
c13c8260
CL
1/*
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 *
aa1e6f1a
DW
34 * The subsystem keeps a global list of dma_device structs it is protected by a
35 * mutex, dma_list_mutex.
c13c8260 36 *
f27c580c
DW
37 * 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 *
c13c8260
CL
42 * 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 *
f27c580c 45 * See Documentation/dmaengine.txt for more details
c13c8260
CL
46 */
47
48#include <linux/init.h>
49#include <linux/module.h>
7405f74b 50#include <linux/mm.h>
c13c8260
CL
51#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>
7405f74b 58#include <linux/jiffies.h>
2ba05622 59#include <linux/rculist.h>
864498aa 60#include <linux/idr.h>
c13c8260
CL
61
62static DEFINE_MUTEX(dma_list_mutex);
63static LIST_HEAD(dma_device_list);
6f49a57a 64static long dmaengine_ref_count;
864498aa 65static struct idr dma_idr;
c13c8260
CL
66
67/* --- sysfs implementation --- */
68
41d5e59c
DW
69/**
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
891f78ea 83static ssize_t show_memcpy_count(struct device *dev, struct device_attribute *attr, char *buf)
c13c8260 84{
41d5e59c 85 struct dma_chan *chan;
c13c8260
CL
86 unsigned long count = 0;
87 int i;
41d5e59c 88 int err;
c13c8260 89
41d5e59c
DW
90 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);
c13c8260 99
41d5e59c 100 return err;
c13c8260
CL
101}
102
891f78ea
TJ
103static ssize_t show_bytes_transferred(struct device *dev, struct device_attribute *attr,
104 char *buf)
c13c8260 105{
41d5e59c 106 struct dma_chan *chan;
c13c8260
CL
107 unsigned long count = 0;
108 int i;
41d5e59c 109 int err;
c13c8260 110
41d5e59c
DW
111 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);
c13c8260 120
41d5e59c 121 return err;
c13c8260
CL
122}
123
891f78ea 124static ssize_t show_in_use(struct device *dev, struct device_attribute *attr, char *buf)
c13c8260 125{
41d5e59c
DW
126 struct dma_chan *chan;
127 int err;
c13c8260 128
41d5e59c
DW
129 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;
c13c8260
CL
138}
139
891f78ea 140static struct device_attribute dma_attrs[] = {
c13c8260
CL
141 __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
41d5e59c
DW
147static 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);
864498aa
DW
152 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 }
41d5e59c
DW
158 kfree(chan_dev);
159}
160
c13c8260 161static struct class dma_devclass = {
891f78ea
TJ
162 .name = "dma",
163 .dev_attrs = dma_attrs,
41d5e59c 164 .dev_release = chan_dev_release,
c13c8260
CL
165};
166
167/* --- client and device registration --- */
168
59b5ec21
DW
169#define dma_device_satisfies_mask(device, mask) \
170 __dma_device_satisfies_mask((device), &(mask))
d379b01e 171static int
59b5ec21 172__dma_device_satisfies_mask(struct dma_device *device, dma_cap_mask_t *want)
d379b01e
DW
173{
174 dma_cap_mask_t has;
175
59b5ec21 176 bitmap_and(has.bits, want->bits, device->cap_mask.bits,
d379b01e
DW
177 DMA_TX_TYPE_END);
178 return bitmap_equal(want->bits, has.bits, DMA_TX_TYPE_END);
179}
180
6f49a57a
DW
181static 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) {
aa1e6f1a 224 int desc_cnt = chan->device->device_alloc_chan_resources(chan);
6f49a57a
DW
225
226 if (desc_cnt < 0) {
227 err = desc_cnt;
228 chan->client_count = 0;
229 module_put(owner);
59b5ec21 230 } else if (!dma_has_cap(DMA_PRIVATE, chan->device->cap_mask))
6f49a57a
DW
231 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
7405f74b
DW
253enum 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
bec08513
DW
271/**
272 * 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
59b5ec21
DW
296 /* '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
bec08513
DW
299 */
300 clear_bit(DMA_INTERRUPT, dma_cap_mask_all.bits);
59b5ec21 301 clear_bit(DMA_PRIVATE, dma_cap_mask_all.bits);
bec08513
DW
302 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}
652afc27 321arch_initcall(dma_channel_table_init);
bec08513
DW
322
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
bec08513
DW
332 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
2ba05622
DW
340/**
341 * 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
2ba05622 348 rcu_read_lock();
59b5ec21
DW
349 list_for_each_entry_rcu(device, &dma_device_list, global_node) {
350 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
351 continue;
2ba05622
DW
352 list_for_each_entry(chan, &device->channels, device_node)
353 if (chan->client_count)
354 device->device_issue_pending(chan);
59b5ec21 355 }
2ba05622
DW
356 rcu_read_unlock();
357}
358EXPORT_SYMBOL(dma_issue_pending_all);
359
bec08513
DW
360/**
361 * 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) {
59b5ec21
DW
377 if (!dma_has_cap(cap, device->cap_mask) ||
378 dma_has_cap(DMA_PRIVATE, device->cap_mask))
bec08513
DW
379 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
59b5ec21
DW
427 list_for_each_entry(device, &dma_device_list, global_node) {
428 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
429 continue;
bec08513
DW
430 list_for_each_entry(chan, &device->channels, device_node)
431 chan->table_count = 0;
59b5ec21 432 }
bec08513
DW
433
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
e2346677
DW
451static struct dma_chan *private_candidate(dma_cap_mask_t *mask, struct dma_device *dev,
452 dma_filter_fn fn, void *fn_param)
59b5ec21
DW
453{
454 struct dma_chan *chan;
59b5ec21
DW
455
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",
41d5e59c 473 __func__, dma_chan_name(chan));
59b5ec21
DW
474 continue;
475 }
e2346677
DW
476 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;
59b5ec21
DW
482 }
483
e2346677 484 return NULL;
59b5ec21
DW
485}
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;
59b5ec21
DW
497 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) {
e2346677
DW
502 chan = private_candidate(mask, device, fn, fn_param);
503 if (chan) {
59b5ec21
DW
504 /* 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);
0f571515 510 device->privatecnt++;
59b5ec21
DW
511 err = dma_chan_get(chan);
512
513 if (err == -ENODEV) {
514 pr_debug("%s: %s module removed\n", __func__,
41d5e59c 515 dma_chan_name(chan));
59b5ec21
DW
516 list_del_rcu(&device->global_node);
517 } else if (err)
518 pr_err("dmaengine: failed to get %s: (%d)\n",
41d5e59c 519 dma_chan_name(chan), err);
59b5ec21
DW
520 else
521 break;
0f571515
AN
522 if (--device->privatecnt == 0)
523 dma_cap_clear(DMA_PRIVATE, device->cap_mask);
287d8592 524 chan->private = NULL;
e2346677
DW
525 chan = NULL;
526 }
59b5ec21
DW
527 }
528 mutex_unlock(&dma_list_mutex);
529
530 pr_debug("%s: %s (%s)\n", __func__, chan ? "success" : "fail",
41d5e59c 531 chan ? dma_chan_name(chan) : NULL);
59b5ec21
DW
532
533 return chan;
534}
535EXPORT_SYMBOL_GPL(__dma_request_channel);
536
537void dma_release_channel(struct dma_chan *chan)
538{
539 mutex_lock(&dma_list_mutex);
540 WARN_ONCE(chan->client_count != 1,
541 "chan reference count %d != 1\n", chan->client_count);
542 dma_chan_put(chan);
0f571515
AN
543 /* drop PRIVATE cap enabled by __dma_request_channel() */
544 if (--chan->device->privatecnt == 0)
545 dma_cap_clear(DMA_PRIVATE, chan->device->cap_mask);
287d8592 546 chan->private = NULL;
59b5ec21
DW
547 mutex_unlock(&dma_list_mutex);
548}
549EXPORT_SYMBOL_GPL(dma_release_channel);
550
d379b01e 551/**
209b84a8 552 * dmaengine_get - register interest in dma_channels
d379b01e 553 */
209b84a8 554void dmaengine_get(void)
d379b01e 555{
6f49a57a
DW
556 struct dma_device *device, *_d;
557 struct dma_chan *chan;
558 int err;
559
c13c8260 560 mutex_lock(&dma_list_mutex);
6f49a57a
DW
561 dmaengine_ref_count++;
562
563 /* try to grab channels */
59b5ec21
DW
564 list_for_each_entry_safe(device, _d, &dma_device_list, global_node) {
565 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
566 continue;
6f49a57a
DW
567 list_for_each_entry(chan, &device->channels, device_node) {
568 err = dma_chan_get(chan);
569 if (err == -ENODEV) {
570 /* module removed before we could use it */
2ba05622 571 list_del_rcu(&device->global_node);
6f49a57a
DW
572 break;
573 } else if (err)
574 pr_err("dmaengine: failed to get %s: (%d)\n",
41d5e59c 575 dma_chan_name(chan), err);
6f49a57a 576 }
59b5ec21 577 }
6f49a57a 578
bec08513
DW
579 /* if this is the first reference and there were channels
580 * waiting we need to rebalance to get those channels
581 * incorporated into the channel table
582 */
583 if (dmaengine_ref_count == 1)
584 dma_channel_rebalance();
c13c8260 585 mutex_unlock(&dma_list_mutex);
c13c8260 586}
209b84a8 587EXPORT_SYMBOL(dmaengine_get);
c13c8260
CL
588
589/**
209b84a8 590 * dmaengine_put - let dma drivers be removed when ref_count == 0
c13c8260 591 */
209b84a8 592void dmaengine_put(void)
c13c8260 593{
d379b01e 594 struct dma_device *device;
c13c8260
CL
595 struct dma_chan *chan;
596
c13c8260 597 mutex_lock(&dma_list_mutex);
6f49a57a
DW
598 dmaengine_ref_count--;
599 BUG_ON(dmaengine_ref_count < 0);
600 /* drop channel references */
59b5ec21
DW
601 list_for_each_entry(device, &dma_device_list, global_node) {
602 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
603 continue;
6f49a57a
DW
604 list_for_each_entry(chan, &device->channels, device_node)
605 dma_chan_put(chan);
59b5ec21 606 }
c13c8260 607 mutex_unlock(&dma_list_mutex);
c13c8260 608}
209b84a8 609EXPORT_SYMBOL(dmaengine_put);
c13c8260 610
257b17ca
DW
611static int get_dma_id(struct dma_device *device)
612{
613 int rc;
614
615 idr_retry:
616 if (!idr_pre_get(&dma_idr, GFP_KERNEL))
617 return -ENOMEM;
618 mutex_lock(&dma_list_mutex);
619 rc = idr_get_new(&dma_idr, NULL, &device->dev_id);
620 mutex_unlock(&dma_list_mutex);
621 if (rc == -EAGAIN)
622 goto idr_retry;
623 else if (rc != 0)
624 return rc;
625
626 return 0;
627}
628
c13c8260 629/**
6508871e 630 * dma_async_device_register - registers DMA devices found
c13c8260
CL
631 * @device: &dma_device
632 */
633int dma_async_device_register(struct dma_device *device)
634{
ff487fb7 635 int chancnt = 0, rc;
c13c8260 636 struct dma_chan* chan;
864498aa 637 atomic_t *idr_ref;
c13c8260
CL
638
639 if (!device)
640 return -ENODEV;
641
7405f74b
DW
642 /* validate device routines */
643 BUG_ON(dma_has_cap(DMA_MEMCPY, device->cap_mask) &&
644 !device->device_prep_dma_memcpy);
645 BUG_ON(dma_has_cap(DMA_XOR, device->cap_mask) &&
646 !device->device_prep_dma_xor);
099f53cb
DW
647 BUG_ON(dma_has_cap(DMA_XOR_VAL, device->cap_mask) &&
648 !device->device_prep_dma_xor_val);
b2f46fd8
DW
649 BUG_ON(dma_has_cap(DMA_PQ, device->cap_mask) &&
650 !device->device_prep_dma_pq);
651 BUG_ON(dma_has_cap(DMA_PQ_VAL, device->cap_mask) &&
652 !device->device_prep_dma_pq_val);
7405f74b
DW
653 BUG_ON(dma_has_cap(DMA_MEMSET, device->cap_mask) &&
654 !device->device_prep_dma_memset);
9b941c66 655 BUG_ON(dma_has_cap(DMA_INTERRUPT, device->cap_mask) &&
7405f74b 656 !device->device_prep_dma_interrupt);
dc0ee643
HS
657 BUG_ON(dma_has_cap(DMA_SLAVE, device->cap_mask) &&
658 !device->device_prep_slave_sg);
659 BUG_ON(dma_has_cap(DMA_SLAVE, device->cap_mask) &&
660 !device->device_terminate_all);
7405f74b
DW
661
662 BUG_ON(!device->device_alloc_chan_resources);
663 BUG_ON(!device->device_free_chan_resources);
7405f74b
DW
664 BUG_ON(!device->device_is_tx_complete);
665 BUG_ON(!device->device_issue_pending);
666 BUG_ON(!device->dev);
667
864498aa
DW
668 idr_ref = kmalloc(sizeof(*idr_ref), GFP_KERNEL);
669 if (!idr_ref)
670 return -ENOMEM;
257b17ca
DW
671 rc = get_dma_id(device);
672 if (rc != 0) {
673 kfree(idr_ref);
864498aa 674 return rc;
257b17ca
DW
675 }
676
677 atomic_set(idr_ref, 0);
c13c8260
CL
678
679 /* represent channels in sysfs. Probably want devs too */
680 list_for_each_entry(chan, &device->channels, device_node) {
257b17ca 681 rc = -ENOMEM;
c13c8260
CL
682 chan->local = alloc_percpu(typeof(*chan->local));
683 if (chan->local == NULL)
257b17ca 684 goto err_out;
41d5e59c
DW
685 chan->dev = kzalloc(sizeof(*chan->dev), GFP_KERNEL);
686 if (chan->dev == NULL) {
687 free_percpu(chan->local);
257b17ca
DW
688 chan->local = NULL;
689 goto err_out;
41d5e59c 690 }
c13c8260
CL
691
692 chan->chan_id = chancnt++;
41d5e59c
DW
693 chan->dev->device.class = &dma_devclass;
694 chan->dev->device.parent = device->dev;
695 chan->dev->chan = chan;
864498aa
DW
696 chan->dev->idr_ref = idr_ref;
697 chan->dev->dev_id = device->dev_id;
698 atomic_inc(idr_ref);
41d5e59c 699 dev_set_name(&chan->dev->device, "dma%dchan%d",
06190d84 700 device->dev_id, chan->chan_id);
c13c8260 701
41d5e59c 702 rc = device_register(&chan->dev->device);
ff487fb7 703 if (rc) {
ff487fb7
JG
704 free_percpu(chan->local);
705 chan->local = NULL;
257b17ca
DW
706 kfree(chan->dev);
707 atomic_dec(idr_ref);
ff487fb7
JG
708 goto err_out;
709 }
7cc5bf9a 710 chan->client_count = 0;
c13c8260 711 }
59b5ec21 712 device->chancnt = chancnt;
c13c8260
CL
713
714 mutex_lock(&dma_list_mutex);
59b5ec21
DW
715 /* take references on public channels */
716 if (dmaengine_ref_count && !dma_has_cap(DMA_PRIVATE, device->cap_mask))
6f49a57a
DW
717 list_for_each_entry(chan, &device->channels, device_node) {
718 /* if clients are already waiting for channels we need
719 * to take references on their behalf
720 */
721 if (dma_chan_get(chan) == -ENODEV) {
722 /* note we can only get here for the first
723 * channel as the remaining channels are
724 * guaranteed to get a reference
725 */
726 rc = -ENODEV;
727 mutex_unlock(&dma_list_mutex);
728 goto err_out;
729 }
730 }
2ba05622 731 list_add_tail_rcu(&device->global_node, &dma_device_list);
0f571515
AN
732 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
733 device->privatecnt++; /* Always private */
bec08513 734 dma_channel_rebalance();
c13c8260
CL
735 mutex_unlock(&dma_list_mutex);
736
c13c8260 737 return 0;
ff487fb7
JG
738
739err_out:
257b17ca
DW
740 /* if we never registered a channel just release the idr */
741 if (atomic_read(idr_ref) == 0) {
742 mutex_lock(&dma_list_mutex);
743 idr_remove(&dma_idr, device->dev_id);
744 mutex_unlock(&dma_list_mutex);
745 kfree(idr_ref);
746 return rc;
747 }
748
ff487fb7
JG
749 list_for_each_entry(chan, &device->channels, device_node) {
750 if (chan->local == NULL)
751 continue;
41d5e59c
DW
752 mutex_lock(&dma_list_mutex);
753 chan->dev->chan = NULL;
754 mutex_unlock(&dma_list_mutex);
755 device_unregister(&chan->dev->device);
ff487fb7
JG
756 free_percpu(chan->local);
757 }
758 return rc;
c13c8260 759}
765e3d8a 760EXPORT_SYMBOL(dma_async_device_register);
c13c8260 761
6508871e 762/**
6f49a57a 763 * dma_async_device_unregister - unregister a DMA device
6508871e 764 * @device: &dma_device
f27c580c
DW
765 *
766 * This routine is called by dma driver exit routines, dmaengine holds module
767 * references to prevent it being called while channels are in use.
6508871e
RD
768 */
769void dma_async_device_unregister(struct dma_device *device)
c13c8260
CL
770{
771 struct dma_chan *chan;
c13c8260
CL
772
773 mutex_lock(&dma_list_mutex);
2ba05622 774 list_del_rcu(&device->global_node);
bec08513 775 dma_channel_rebalance();
c13c8260
CL
776 mutex_unlock(&dma_list_mutex);
777
778 list_for_each_entry(chan, &device->channels, device_node) {
6f49a57a
DW
779 WARN_ONCE(chan->client_count,
780 "%s called while %d clients hold a reference\n",
781 __func__, chan->client_count);
41d5e59c
DW
782 mutex_lock(&dma_list_mutex);
783 chan->dev->chan = NULL;
784 mutex_unlock(&dma_list_mutex);
785 device_unregister(&chan->dev->device);
c13c8260 786 }
c13c8260 787}
765e3d8a 788EXPORT_SYMBOL(dma_async_device_unregister);
c13c8260 789
7405f74b
DW
790/**
791 * dma_async_memcpy_buf_to_buf - offloaded copy between virtual addresses
792 * @chan: DMA channel to offload copy to
793 * @dest: destination address (virtual)
794 * @src: source address (virtual)
795 * @len: length
796 *
797 * Both @dest and @src must be mappable to a bus address according to the
798 * DMA mapping API rules for streaming mappings.
799 * Both @dest and @src must stay memory resident (kernel memory or locked
800 * user space pages).
801 */
802dma_cookie_t
803dma_async_memcpy_buf_to_buf(struct dma_chan *chan, void *dest,
804 void *src, size_t len)
805{
806 struct dma_device *dev = chan->device;
807 struct dma_async_tx_descriptor *tx;
0036731c 808 dma_addr_t dma_dest, dma_src;
7405f74b
DW
809 dma_cookie_t cookie;
810 int cpu;
4f005dbe 811 unsigned long flags;
7405f74b 812
0036731c
DW
813 dma_src = dma_map_single(dev->dev, src, len, DMA_TO_DEVICE);
814 dma_dest = dma_map_single(dev->dev, dest, len, DMA_FROM_DEVICE);
4f005dbe
MS
815 flags = DMA_CTRL_ACK |
816 DMA_COMPL_SRC_UNMAP_SINGLE |
817 DMA_COMPL_DEST_UNMAP_SINGLE;
818 tx = dev->device_prep_dma_memcpy(chan, dma_dest, dma_src, len, flags);
0036731c
DW
819
820 if (!tx) {
821 dma_unmap_single(dev->dev, dma_src, len, DMA_TO_DEVICE);
822 dma_unmap_single(dev->dev, dma_dest, len, DMA_FROM_DEVICE);
7405f74b 823 return -ENOMEM;
0036731c 824 }
7405f74b 825
7405f74b 826 tx->callback = NULL;
7405f74b
DW
827 cookie = tx->tx_submit(tx);
828
829 cpu = get_cpu();
830 per_cpu_ptr(chan->local, cpu)->bytes_transferred += len;
831 per_cpu_ptr(chan->local, cpu)->memcpy_count++;
832 put_cpu();
833
834 return cookie;
835}
836EXPORT_SYMBOL(dma_async_memcpy_buf_to_buf);
837
838/**
839 * dma_async_memcpy_buf_to_pg - offloaded copy from address to page
840 * @chan: DMA channel to offload copy to
841 * @page: destination page
842 * @offset: offset in page to copy to
843 * @kdata: source address (virtual)
844 * @len: length
845 *
846 * Both @page/@offset and @kdata must be mappable to a bus address according
847 * to the DMA mapping API rules for streaming mappings.
848 * Both @page/@offset and @kdata must stay memory resident (kernel memory or
849 * locked user space pages)
850 */
851dma_cookie_t
852dma_async_memcpy_buf_to_pg(struct dma_chan *chan, struct page *page,
853 unsigned int offset, void *kdata, size_t len)
854{
855 struct dma_device *dev = chan->device;
856 struct dma_async_tx_descriptor *tx;
0036731c 857 dma_addr_t dma_dest, dma_src;
7405f74b
DW
858 dma_cookie_t cookie;
859 int cpu;
4f005dbe 860 unsigned long flags;
7405f74b 861
0036731c
DW
862 dma_src = dma_map_single(dev->dev, kdata, len, DMA_TO_DEVICE);
863 dma_dest = dma_map_page(dev->dev, page, offset, len, DMA_FROM_DEVICE);
4f005dbe
MS
864 flags = DMA_CTRL_ACK | DMA_COMPL_SRC_UNMAP_SINGLE;
865 tx = dev->device_prep_dma_memcpy(chan, dma_dest, dma_src, len, flags);
0036731c
DW
866
867 if (!tx) {
868 dma_unmap_single(dev->dev, dma_src, len, DMA_TO_DEVICE);
869 dma_unmap_page(dev->dev, dma_dest, len, DMA_FROM_DEVICE);
7405f74b 870 return -ENOMEM;
0036731c 871 }
7405f74b 872
7405f74b 873 tx->callback = NULL;
7405f74b
DW
874 cookie = tx->tx_submit(tx);
875
876 cpu = get_cpu();
877 per_cpu_ptr(chan->local, cpu)->bytes_transferred += len;
878 per_cpu_ptr(chan->local, cpu)->memcpy_count++;
879 put_cpu();
880
881 return cookie;
882}
883EXPORT_SYMBOL(dma_async_memcpy_buf_to_pg);
884
885/**
886 * dma_async_memcpy_pg_to_pg - offloaded copy from page to page
887 * @chan: DMA channel to offload copy to
888 * @dest_pg: destination page
889 * @dest_off: offset in page to copy to
890 * @src_pg: source page
891 * @src_off: offset in page to copy from
892 * @len: length
893 *
894 * Both @dest_page/@dest_off and @src_page/@src_off must be mappable to a bus
895 * address according to the DMA mapping API rules for streaming mappings.
896 * Both @dest_page/@dest_off and @src_page/@src_off must stay memory resident
897 * (kernel memory or locked user space pages).
898 */
899dma_cookie_t
900dma_async_memcpy_pg_to_pg(struct dma_chan *chan, struct page *dest_pg,
901 unsigned int dest_off, struct page *src_pg, unsigned int src_off,
902 size_t len)
903{
904 struct dma_device *dev = chan->device;
905 struct dma_async_tx_descriptor *tx;
0036731c 906 dma_addr_t dma_dest, dma_src;
7405f74b
DW
907 dma_cookie_t cookie;
908 int cpu;
4f005dbe 909 unsigned long flags;
7405f74b 910
0036731c
DW
911 dma_src = dma_map_page(dev->dev, src_pg, src_off, len, DMA_TO_DEVICE);
912 dma_dest = dma_map_page(dev->dev, dest_pg, dest_off, len,
913 DMA_FROM_DEVICE);
4f005dbe
MS
914 flags = DMA_CTRL_ACK;
915 tx = dev->device_prep_dma_memcpy(chan, dma_dest, dma_src, len, flags);
0036731c
DW
916
917 if (!tx) {
918 dma_unmap_page(dev->dev, dma_src, len, DMA_TO_DEVICE);
919 dma_unmap_page(dev->dev, dma_dest, len, DMA_FROM_DEVICE);
7405f74b 920 return -ENOMEM;
0036731c 921 }
7405f74b 922
7405f74b 923 tx->callback = NULL;
7405f74b
DW
924 cookie = tx->tx_submit(tx);
925
926 cpu = get_cpu();
927 per_cpu_ptr(chan->local, cpu)->bytes_transferred += len;
928 per_cpu_ptr(chan->local, cpu)->memcpy_count++;
929 put_cpu();
930
931 return cookie;
932}
933EXPORT_SYMBOL(dma_async_memcpy_pg_to_pg);
934
935void dma_async_tx_descriptor_init(struct dma_async_tx_descriptor *tx,
936 struct dma_chan *chan)
937{
938 tx->chan = chan;
939 spin_lock_init(&tx->lock);
ccccce22 940 INIT_LIST_HEAD(&tx->tx_list);
7405f74b
DW
941}
942EXPORT_SYMBOL(dma_async_tx_descriptor_init);
943
07f2211e
DW
944/* dma_wait_for_async_tx - spin wait for a transaction to complete
945 * @tx: in-flight transaction to wait on
07f2211e
DW
946 */
947enum dma_status
948dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx)
949{
95475e57 950 unsigned long dma_sync_wait_timeout = jiffies + msecs_to_jiffies(5000);
07f2211e
DW
951
952 if (!tx)
953 return DMA_SUCCESS;
954
95475e57
DW
955 while (tx->cookie == -EBUSY) {
956 if (time_after_eq(jiffies, dma_sync_wait_timeout)) {
957 pr_err("%s timeout waiting for descriptor submission\n",
958 __func__);
959 return DMA_ERROR;
960 }
961 cpu_relax();
962 }
963 return dma_sync_wait(tx->chan, tx->cookie);
07f2211e
DW
964}
965EXPORT_SYMBOL_GPL(dma_wait_for_async_tx);
966
967/* dma_run_dependencies - helper routine for dma drivers to process
968 * (start) dependent operations on their target channel
969 * @tx: transaction with dependencies
970 */
971void dma_run_dependencies(struct dma_async_tx_descriptor *tx)
972{
973 struct dma_async_tx_descriptor *dep = tx->next;
974 struct dma_async_tx_descriptor *dep_next;
975 struct dma_chan *chan;
976
977 if (!dep)
978 return;
979
dd59b853
YT
980 /* we'll submit tx->next now, so clear the link */
981 tx->next = NULL;
07f2211e
DW
982 chan = dep->chan;
983
984 /* keep submitting up until a channel switch is detected
985 * in that case we will be called again as a result of
986 * processing the interrupt from async_tx_channel_switch
987 */
988 for (; dep; dep = dep_next) {
989 spin_lock_bh(&dep->lock);
990 dep->parent = NULL;
991 dep_next = dep->next;
992 if (dep_next && dep_next->chan == chan)
993 dep->next = NULL; /* ->next will be submitted */
994 else
995 dep_next = NULL; /* submit current dep and terminate */
996 spin_unlock_bh(&dep->lock);
997
998 dep->tx_submit(dep);
999 }
1000
1001 chan->device->device_issue_pending(chan);
1002}
1003EXPORT_SYMBOL_GPL(dma_run_dependencies);
1004
c13c8260
CL
1005static int __init dma_bus_init(void)
1006{
864498aa 1007 idr_init(&dma_idr);
c13c8260
CL
1008 mutex_init(&dma_list_mutex);
1009 return class_register(&dma_devclass);
1010}
652afc27 1011arch_initcall(dma_bus_init);
c13c8260 1012
bec08513 1013