dmaengine: remove dma_async_memcpy_complete() macro
[deliverable/linux.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
63433250
JP
48#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
49
b7f080cf 50#include <linux/dma-mapping.h>
c13c8260
CL
51#include <linux/init.h>
52#include <linux/module.h>
7405f74b 53#include <linux/mm.h>
c13c8260
CL
54#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>
7405f74b 61#include <linux/jiffies.h>
2ba05622 62#include <linux/rculist.h>
864498aa 63#include <linux/idr.h>
5a0e3ad6 64#include <linux/slab.h>
9a6cecc8 65#include <linux/of_dma.h>
c13c8260
CL
66
67static DEFINE_MUTEX(dma_list_mutex);
21ef4b8b 68static DEFINE_IDR(dma_idr);
c13c8260 69static LIST_HEAD(dma_device_list);
6f49a57a 70static long dmaengine_ref_count;
c13c8260
CL
71
72/* --- sysfs implementation --- */
73
41d5e59c
DW
74/**
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
891f78ea 88static ssize_t show_memcpy_count(struct device *dev, struct device_attribute *attr, char *buf)
c13c8260 89{
41d5e59c 90 struct dma_chan *chan;
c13c8260
CL
91 unsigned long count = 0;
92 int i;
41d5e59c 93 int err;
c13c8260 94
41d5e59c
DW
95 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);
c13c8260 104
41d5e59c 105 return err;
c13c8260
CL
106}
107
891f78ea
TJ
108static ssize_t show_bytes_transferred(struct device *dev, struct device_attribute *attr,
109 char *buf)
c13c8260 110{
41d5e59c 111 struct dma_chan *chan;
c13c8260
CL
112 unsigned long count = 0;
113 int i;
41d5e59c 114 int err;
c13c8260 115
41d5e59c
DW
116 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);
c13c8260 125
41d5e59c 126 return err;
c13c8260
CL
127}
128
891f78ea 129static ssize_t show_in_use(struct device *dev, struct device_attribute *attr, char *buf)
c13c8260 130{
41d5e59c
DW
131 struct dma_chan *chan;
132 int err;
c13c8260 133
41d5e59c
DW
134 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;
c13c8260
CL
143}
144
891f78ea 145static struct device_attribute dma_attrs[] = {
c13c8260
CL
146 __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
41d5e59c
DW
152static 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);
864498aa
DW
157 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 }
41d5e59c
DW
163 kfree(chan_dev);
164}
165
c13c8260 166static struct class dma_devclass = {
891f78ea
TJ
167 .name = "dma",
168 .dev_attrs = dma_attrs,
41d5e59c 169 .dev_release = chan_dev_release,
c13c8260
CL
170};
171
172/* --- client and device registration --- */
173
59b5ec21
DW
174#define dma_device_satisfies_mask(device, mask) \
175 __dma_device_satisfies_mask((device), &(mask))
d379b01e 176static int
59b5ec21 177__dma_device_satisfies_mask(struct dma_device *device, dma_cap_mask_t *want)
d379b01e
DW
178{
179 dma_cap_mask_t has;
180
59b5ec21 181 bitmap_and(has.bits, want->bits, device->cap_mask.bits,
d379b01e
DW
182 DMA_TX_TYPE_END);
183 return bitmap_equal(want->bits, has.bits, DMA_TX_TYPE_END);
184}
185
6f49a57a
DW
186static 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) {
aa1e6f1a 229 int desc_cnt = chan->device->device_alloc_chan_resources(chan);
6f49a57a
DW
230
231 if (desc_cnt < 0) {
232 err = desc_cnt;
233 chan->client_count = 0;
234 module_put(owner);
59b5ec21 235 } else if (!dma_has_cap(DMA_PRIVATE, chan->device->cap_mask))
6f49a57a
DW
236 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
7405f74b
DW
258enum 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)) {
63433250 267 pr_err("%s: timeout!\n", __func__);
7405f74b
DW
268 return DMA_ERROR;
269 }
270 } while (status == DMA_IN_PROGRESS);
271
272 return status;
273}
274EXPORT_SYMBOL(dma_sync_wait);
275
bec08513
DW
276/**
277 * dma_cap_mask_all - enable iteration over all operation types
278 */
279static dma_cap_mask_t dma_cap_mask_all;
280
281/**
282 * dma_chan_tbl_ent - tracks channel allocations per core/operation
283 * @chan - associated channel for this entry
284 */
285struct dma_chan_tbl_ent {
286 struct dma_chan *chan;
287};
288
289/**
290 * channel_table - percpu lookup table for memory-to-memory offload providers
291 */
a29d8b8e 292static struct dma_chan_tbl_ent __percpu *channel_table[DMA_TX_TYPE_END];
bec08513
DW
293
294static int __init dma_channel_table_init(void)
295{
296 enum dma_transaction_type cap;
297 int err = 0;
298
299 bitmap_fill(dma_cap_mask_all.bits, DMA_TX_TYPE_END);
300
59b5ec21
DW
301 /* 'interrupt', 'private', and 'slave' are channel capabilities,
302 * but are not associated with an operation so they do not need
303 * an entry in the channel_table
bec08513
DW
304 */
305 clear_bit(DMA_INTERRUPT, dma_cap_mask_all.bits);
59b5ec21 306 clear_bit(DMA_PRIVATE, dma_cap_mask_all.bits);
bec08513
DW
307 clear_bit(DMA_SLAVE, dma_cap_mask_all.bits);
308
309 for_each_dma_cap_mask(cap, dma_cap_mask_all) {
310 channel_table[cap] = alloc_percpu(struct dma_chan_tbl_ent);
311 if (!channel_table[cap]) {
312 err = -ENOMEM;
313 break;
314 }
315 }
316
317 if (err) {
63433250 318 pr_err("initialization failure\n");
bec08513
DW
319 for_each_dma_cap_mask(cap, dma_cap_mask_all)
320 if (channel_table[cap])
321 free_percpu(channel_table[cap]);
322 }
323
324 return err;
325}
652afc27 326arch_initcall(dma_channel_table_init);
bec08513
DW
327
328/**
329 * dma_find_channel - find a channel to carry out the operation
330 * @tx_type: transaction type
331 */
332struct dma_chan *dma_find_channel(enum dma_transaction_type tx_type)
333{
e7dcaa47 334 return this_cpu_read(channel_table[tx_type]->chan);
bec08513
DW
335}
336EXPORT_SYMBOL(dma_find_channel);
337
a2bd1140
DJ
338/*
339 * net_dma_find_channel - find a channel for net_dma
340 * net_dma has alignment requirements
341 */
342struct dma_chan *net_dma_find_channel(void)
343{
344 struct dma_chan *chan = dma_find_channel(DMA_MEMCPY);
345 if (chan && !is_dma_copy_aligned(chan->device, 1, 1, 1))
346 return NULL;
347
348 return chan;
349}
350EXPORT_SYMBOL(net_dma_find_channel);
351
2ba05622
DW
352/**
353 * dma_issue_pending_all - flush all pending operations across all channels
354 */
355void dma_issue_pending_all(void)
356{
357 struct dma_device *device;
358 struct dma_chan *chan;
359
2ba05622 360 rcu_read_lock();
59b5ec21
DW
361 list_for_each_entry_rcu(device, &dma_device_list, global_node) {
362 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
363 continue;
2ba05622
DW
364 list_for_each_entry(chan, &device->channels, device_node)
365 if (chan->client_count)
366 device->device_issue_pending(chan);
59b5ec21 367 }
2ba05622
DW
368 rcu_read_unlock();
369}
370EXPORT_SYMBOL(dma_issue_pending_all);
371
bec08513
DW
372/**
373 * nth_chan - returns the nth channel of the given capability
374 * @cap: capability to match
375 * @n: nth channel desired
376 *
377 * Defaults to returning the channel with the desired capability and the
378 * lowest reference count when 'n' cannot be satisfied. Must be called
379 * under dma_list_mutex.
380 */
381static struct dma_chan *nth_chan(enum dma_transaction_type cap, int n)
382{
383 struct dma_device *device;
384 struct dma_chan *chan;
385 struct dma_chan *ret = NULL;
386 struct dma_chan *min = NULL;
387
388 list_for_each_entry(device, &dma_device_list, global_node) {
59b5ec21
DW
389 if (!dma_has_cap(cap, device->cap_mask) ||
390 dma_has_cap(DMA_PRIVATE, device->cap_mask))
bec08513
DW
391 continue;
392 list_for_each_entry(chan, &device->channels, device_node) {
393 if (!chan->client_count)
394 continue;
395 if (!min)
396 min = chan;
397 else if (chan->table_count < min->table_count)
398 min = chan;
399
400 if (n-- == 0) {
401 ret = chan;
402 break; /* done */
403 }
404 }
405 if (ret)
406 break; /* done */
407 }
408
409 if (!ret)
410 ret = min;
411
412 if (ret)
413 ret->table_count++;
414
415 return ret;
416}
417
418/**
419 * dma_channel_rebalance - redistribute the available channels
420 *
421 * Optimize for cpu isolation (each cpu gets a dedicated channel for an
422 * operation type) in the SMP case, and operation isolation (avoid
423 * multi-tasking channels) in the non-SMP case. Must be called under
424 * dma_list_mutex.
425 */
426static void dma_channel_rebalance(void)
427{
428 struct dma_chan *chan;
429 struct dma_device *device;
430 int cpu;
431 int cap;
432 int n;
433
434 /* undo the last distribution */
435 for_each_dma_cap_mask(cap, dma_cap_mask_all)
436 for_each_possible_cpu(cpu)
437 per_cpu_ptr(channel_table[cap], cpu)->chan = NULL;
438
59b5ec21
DW
439 list_for_each_entry(device, &dma_device_list, global_node) {
440 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
441 continue;
bec08513
DW
442 list_for_each_entry(chan, &device->channels, device_node)
443 chan->table_count = 0;
59b5ec21 444 }
bec08513
DW
445
446 /* don't populate the channel_table if no clients are available */
447 if (!dmaengine_ref_count)
448 return;
449
450 /* redistribute available channels */
451 n = 0;
452 for_each_dma_cap_mask(cap, dma_cap_mask_all)
453 for_each_online_cpu(cpu) {
454 if (num_possible_cpus() > 1)
455 chan = nth_chan(cap, n++);
456 else
457 chan = nth_chan(cap, -1);
458
459 per_cpu_ptr(channel_table[cap], cpu)->chan = chan;
460 }
461}
462
e2346677
DW
463static struct dma_chan *private_candidate(dma_cap_mask_t *mask, struct dma_device *dev,
464 dma_filter_fn fn, void *fn_param)
59b5ec21
DW
465{
466 struct dma_chan *chan;
59b5ec21
DW
467
468 if (!__dma_device_satisfies_mask(dev, mask)) {
469 pr_debug("%s: wrong capabilities\n", __func__);
470 return NULL;
471 }
472 /* devices with multiple channels need special handling as we need to
473 * ensure that all channels are either private or public.
474 */
475 if (dev->chancnt > 1 && !dma_has_cap(DMA_PRIVATE, dev->cap_mask))
476 list_for_each_entry(chan, &dev->channels, device_node) {
477 /* some channels are already publicly allocated */
478 if (chan->client_count)
479 return NULL;
480 }
481
482 list_for_each_entry(chan, &dev->channels, device_node) {
483 if (chan->client_count) {
484 pr_debug("%s: %s busy\n",
41d5e59c 485 __func__, dma_chan_name(chan));
59b5ec21
DW
486 continue;
487 }
e2346677
DW
488 if (fn && !fn(chan, fn_param)) {
489 pr_debug("%s: %s filter said false\n",
490 __func__, dma_chan_name(chan));
491 continue;
492 }
493 return chan;
59b5ec21
DW
494 }
495
e2346677 496 return NULL;
59b5ec21
DW
497}
498
499/**
500 * dma_request_channel - try to allocate an exclusive channel
501 * @mask: capabilities that the channel must satisfy
502 * @fn: optional callback to disposition available channels
503 * @fn_param: opaque parameter to pass to dma_filter_fn
504 */
505struct dma_chan *__dma_request_channel(dma_cap_mask_t *mask, dma_filter_fn fn, void *fn_param)
506{
507 struct dma_device *device, *_d;
508 struct dma_chan *chan = NULL;
59b5ec21
DW
509 int err;
510
511 /* Find a channel */
512 mutex_lock(&dma_list_mutex);
513 list_for_each_entry_safe(device, _d, &dma_device_list, global_node) {
e2346677
DW
514 chan = private_candidate(mask, device, fn, fn_param);
515 if (chan) {
59b5ec21
DW
516 /* Found a suitable channel, try to grab, prep, and
517 * return it. We first set DMA_PRIVATE to disable
518 * balance_ref_count as this channel will not be
519 * published in the general-purpose allocator
520 */
521 dma_cap_set(DMA_PRIVATE, device->cap_mask);
0f571515 522 device->privatecnt++;
59b5ec21
DW
523 err = dma_chan_get(chan);
524
525 if (err == -ENODEV) {
63433250
JP
526 pr_debug("%s: %s module removed\n",
527 __func__, dma_chan_name(chan));
59b5ec21
DW
528 list_del_rcu(&device->global_node);
529 } else if (err)
d8b53489 530 pr_debug("%s: failed to get %s: (%d)\n",
63433250 531 __func__, dma_chan_name(chan), err);
59b5ec21
DW
532 else
533 break;
0f571515
AN
534 if (--device->privatecnt == 0)
535 dma_cap_clear(DMA_PRIVATE, device->cap_mask);
e2346677
DW
536 chan = NULL;
537 }
59b5ec21
DW
538 }
539 mutex_unlock(&dma_list_mutex);
540
63433250
JP
541 pr_debug("%s: %s (%s)\n",
542 __func__,
543 chan ? "success" : "fail",
41d5e59c 544 chan ? dma_chan_name(chan) : NULL);
59b5ec21
DW
545
546 return chan;
547}
548EXPORT_SYMBOL_GPL(__dma_request_channel);
549
9a6cecc8
JH
550/**
551 * dma_request_slave_channel - try to allocate an exclusive slave channel
552 * @dev: pointer to client device structure
553 * @name: slave channel name
554 */
555struct dma_chan *dma_request_slave_channel(struct device *dev, char *name)
556{
557 /* If device-tree is present get slave info from here */
558 if (dev->of_node)
559 return of_dma_request_slave_channel(dev->of_node, name);
560
561 return NULL;
562}
563EXPORT_SYMBOL_GPL(dma_request_slave_channel);
564
59b5ec21
DW
565void dma_release_channel(struct dma_chan *chan)
566{
567 mutex_lock(&dma_list_mutex);
568 WARN_ONCE(chan->client_count != 1,
569 "chan reference count %d != 1\n", chan->client_count);
570 dma_chan_put(chan);
0f571515
AN
571 /* drop PRIVATE cap enabled by __dma_request_channel() */
572 if (--chan->device->privatecnt == 0)
573 dma_cap_clear(DMA_PRIVATE, chan->device->cap_mask);
59b5ec21
DW
574 mutex_unlock(&dma_list_mutex);
575}
576EXPORT_SYMBOL_GPL(dma_release_channel);
577
d379b01e 578/**
209b84a8 579 * dmaengine_get - register interest in dma_channels
d379b01e 580 */
209b84a8 581void dmaengine_get(void)
d379b01e 582{
6f49a57a
DW
583 struct dma_device *device, *_d;
584 struct dma_chan *chan;
585 int err;
586
c13c8260 587 mutex_lock(&dma_list_mutex);
6f49a57a
DW
588 dmaengine_ref_count++;
589
590 /* try to grab channels */
59b5ec21
DW
591 list_for_each_entry_safe(device, _d, &dma_device_list, global_node) {
592 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
593 continue;
6f49a57a
DW
594 list_for_each_entry(chan, &device->channels, device_node) {
595 err = dma_chan_get(chan);
596 if (err == -ENODEV) {
597 /* module removed before we could use it */
2ba05622 598 list_del_rcu(&device->global_node);
6f49a57a
DW
599 break;
600 } else if (err)
0eb5a358 601 pr_debug("%s: failed to get %s: (%d)\n",
63433250 602 __func__, dma_chan_name(chan), err);
6f49a57a 603 }
59b5ec21 604 }
6f49a57a 605
bec08513
DW
606 /* if this is the first reference and there were channels
607 * waiting we need to rebalance to get those channels
608 * incorporated into the channel table
609 */
610 if (dmaengine_ref_count == 1)
611 dma_channel_rebalance();
c13c8260 612 mutex_unlock(&dma_list_mutex);
c13c8260 613}
209b84a8 614EXPORT_SYMBOL(dmaengine_get);
c13c8260
CL
615
616/**
209b84a8 617 * dmaengine_put - let dma drivers be removed when ref_count == 0
c13c8260 618 */
209b84a8 619void dmaengine_put(void)
c13c8260 620{
d379b01e 621 struct dma_device *device;
c13c8260
CL
622 struct dma_chan *chan;
623
c13c8260 624 mutex_lock(&dma_list_mutex);
6f49a57a
DW
625 dmaengine_ref_count--;
626 BUG_ON(dmaengine_ref_count < 0);
627 /* drop channel references */
59b5ec21
DW
628 list_for_each_entry(device, &dma_device_list, global_node) {
629 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
630 continue;
6f49a57a
DW
631 list_for_each_entry(chan, &device->channels, device_node)
632 dma_chan_put(chan);
59b5ec21 633 }
c13c8260 634 mutex_unlock(&dma_list_mutex);
c13c8260 635}
209b84a8 636EXPORT_SYMBOL(dmaengine_put);
c13c8260 637
138f4c35
DW
638static bool device_has_all_tx_types(struct dma_device *device)
639{
640 /* A device that satisfies this test has channels that will never cause
641 * an async_tx channel switch event as all possible operation types can
642 * be handled.
643 */
644 #ifdef CONFIG_ASYNC_TX_DMA
645 if (!dma_has_cap(DMA_INTERRUPT, device->cap_mask))
646 return false;
647 #endif
648
649 #if defined(CONFIG_ASYNC_MEMCPY) || defined(CONFIG_ASYNC_MEMCPY_MODULE)
650 if (!dma_has_cap(DMA_MEMCPY, device->cap_mask))
651 return false;
652 #endif
653
654 #if defined(CONFIG_ASYNC_MEMSET) || defined(CONFIG_ASYNC_MEMSET_MODULE)
655 if (!dma_has_cap(DMA_MEMSET, device->cap_mask))
656 return false;
657 #endif
658
659 #if defined(CONFIG_ASYNC_XOR) || defined(CONFIG_ASYNC_XOR_MODULE)
660 if (!dma_has_cap(DMA_XOR, device->cap_mask))
661 return false;
7b3cc2b1
DW
662
663 #ifndef CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA
4499a24d
DW
664 if (!dma_has_cap(DMA_XOR_VAL, device->cap_mask))
665 return false;
138f4c35 666 #endif
7b3cc2b1 667 #endif
138f4c35
DW
668
669 #if defined(CONFIG_ASYNC_PQ) || defined(CONFIG_ASYNC_PQ_MODULE)
670 if (!dma_has_cap(DMA_PQ, device->cap_mask))
671 return false;
7b3cc2b1
DW
672
673 #ifndef CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA
4499a24d
DW
674 if (!dma_has_cap(DMA_PQ_VAL, device->cap_mask))
675 return false;
138f4c35 676 #endif
7b3cc2b1 677 #endif
138f4c35
DW
678
679 return true;
680}
681
257b17ca
DW
682static int get_dma_id(struct dma_device *device)
683{
684 int rc;
685
686 idr_retry:
687 if (!idr_pre_get(&dma_idr, GFP_KERNEL))
688 return -ENOMEM;
689 mutex_lock(&dma_list_mutex);
690 rc = idr_get_new(&dma_idr, NULL, &device->dev_id);
691 mutex_unlock(&dma_list_mutex);
692 if (rc == -EAGAIN)
693 goto idr_retry;
694 else if (rc != 0)
695 return rc;
696
697 return 0;
698}
699
c13c8260 700/**
6508871e 701 * dma_async_device_register - registers DMA devices found
c13c8260
CL
702 * @device: &dma_device
703 */
704int dma_async_device_register(struct dma_device *device)
705{
ff487fb7 706 int chancnt = 0, rc;
c13c8260 707 struct dma_chan* chan;
864498aa 708 atomic_t *idr_ref;
c13c8260
CL
709
710 if (!device)
711 return -ENODEV;
712
7405f74b
DW
713 /* validate device routines */
714 BUG_ON(dma_has_cap(DMA_MEMCPY, device->cap_mask) &&
715 !device->device_prep_dma_memcpy);
716 BUG_ON(dma_has_cap(DMA_XOR, device->cap_mask) &&
717 !device->device_prep_dma_xor);
099f53cb
DW
718 BUG_ON(dma_has_cap(DMA_XOR_VAL, device->cap_mask) &&
719 !device->device_prep_dma_xor_val);
b2f46fd8
DW
720 BUG_ON(dma_has_cap(DMA_PQ, device->cap_mask) &&
721 !device->device_prep_dma_pq);
722 BUG_ON(dma_has_cap(DMA_PQ_VAL, device->cap_mask) &&
723 !device->device_prep_dma_pq_val);
7405f74b
DW
724 BUG_ON(dma_has_cap(DMA_MEMSET, device->cap_mask) &&
725 !device->device_prep_dma_memset);
9b941c66 726 BUG_ON(dma_has_cap(DMA_INTERRUPT, device->cap_mask) &&
7405f74b 727 !device->device_prep_dma_interrupt);
a86ee03c
IS
728 BUG_ON(dma_has_cap(DMA_SG, device->cap_mask) &&
729 !device->device_prep_dma_sg);
782bc950
SH
730 BUG_ON(dma_has_cap(DMA_CYCLIC, device->cap_mask) &&
731 !device->device_prep_dma_cyclic);
dc0ee643 732 BUG_ON(dma_has_cap(DMA_SLAVE, device->cap_mask) &&
c3635c78 733 !device->device_control);
b14dab79
JB
734 BUG_ON(dma_has_cap(DMA_INTERLEAVE, device->cap_mask) &&
735 !device->device_prep_interleaved_dma);
7405f74b
DW
736
737 BUG_ON(!device->device_alloc_chan_resources);
738 BUG_ON(!device->device_free_chan_resources);
07934481 739 BUG_ON(!device->device_tx_status);
7405f74b
DW
740 BUG_ON(!device->device_issue_pending);
741 BUG_ON(!device->dev);
742
138f4c35 743 /* note: this only matters in the
5fc6d897 744 * CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=n case
138f4c35
DW
745 */
746 if (device_has_all_tx_types(device))
747 dma_cap_set(DMA_ASYNC_TX, device->cap_mask);
748
864498aa
DW
749 idr_ref = kmalloc(sizeof(*idr_ref), GFP_KERNEL);
750 if (!idr_ref)
751 return -ENOMEM;
257b17ca
DW
752 rc = get_dma_id(device);
753 if (rc != 0) {
754 kfree(idr_ref);
864498aa 755 return rc;
257b17ca
DW
756 }
757
758 atomic_set(idr_ref, 0);
c13c8260
CL
759
760 /* represent channels in sysfs. Probably want devs too */
761 list_for_each_entry(chan, &device->channels, device_node) {
257b17ca 762 rc = -ENOMEM;
c13c8260
CL
763 chan->local = alloc_percpu(typeof(*chan->local));
764 if (chan->local == NULL)
257b17ca 765 goto err_out;
41d5e59c
DW
766 chan->dev = kzalloc(sizeof(*chan->dev), GFP_KERNEL);
767 if (chan->dev == NULL) {
768 free_percpu(chan->local);
257b17ca
DW
769 chan->local = NULL;
770 goto err_out;
41d5e59c 771 }
c13c8260
CL
772
773 chan->chan_id = chancnt++;
41d5e59c
DW
774 chan->dev->device.class = &dma_devclass;
775 chan->dev->device.parent = device->dev;
776 chan->dev->chan = chan;
864498aa
DW
777 chan->dev->idr_ref = idr_ref;
778 chan->dev->dev_id = device->dev_id;
779 atomic_inc(idr_ref);
41d5e59c 780 dev_set_name(&chan->dev->device, "dma%dchan%d",
06190d84 781 device->dev_id, chan->chan_id);
c13c8260 782
41d5e59c 783 rc = device_register(&chan->dev->device);
ff487fb7 784 if (rc) {
ff487fb7
JG
785 free_percpu(chan->local);
786 chan->local = NULL;
257b17ca
DW
787 kfree(chan->dev);
788 atomic_dec(idr_ref);
ff487fb7
JG
789 goto err_out;
790 }
7cc5bf9a 791 chan->client_count = 0;
c13c8260 792 }
59b5ec21 793 device->chancnt = chancnt;
c13c8260
CL
794
795 mutex_lock(&dma_list_mutex);
59b5ec21
DW
796 /* take references on public channels */
797 if (dmaengine_ref_count && !dma_has_cap(DMA_PRIVATE, device->cap_mask))
6f49a57a
DW
798 list_for_each_entry(chan, &device->channels, device_node) {
799 /* if clients are already waiting for channels we need
800 * to take references on their behalf
801 */
802 if (dma_chan_get(chan) == -ENODEV) {
803 /* note we can only get here for the first
804 * channel as the remaining channels are
805 * guaranteed to get a reference
806 */
807 rc = -ENODEV;
808 mutex_unlock(&dma_list_mutex);
809 goto err_out;
810 }
811 }
2ba05622 812 list_add_tail_rcu(&device->global_node, &dma_device_list);
0f571515
AN
813 if (dma_has_cap(DMA_PRIVATE, device->cap_mask))
814 device->privatecnt++; /* Always private */
bec08513 815 dma_channel_rebalance();
c13c8260
CL
816 mutex_unlock(&dma_list_mutex);
817
c13c8260 818 return 0;
ff487fb7
JG
819
820err_out:
257b17ca
DW
821 /* if we never registered a channel just release the idr */
822 if (atomic_read(idr_ref) == 0) {
823 mutex_lock(&dma_list_mutex);
824 idr_remove(&dma_idr, device->dev_id);
825 mutex_unlock(&dma_list_mutex);
826 kfree(idr_ref);
827 return rc;
828 }
829
ff487fb7
JG
830 list_for_each_entry(chan, &device->channels, device_node) {
831 if (chan->local == NULL)
832 continue;
41d5e59c
DW
833 mutex_lock(&dma_list_mutex);
834 chan->dev->chan = NULL;
835 mutex_unlock(&dma_list_mutex);
836 device_unregister(&chan->dev->device);
ff487fb7
JG
837 free_percpu(chan->local);
838 }
839 return rc;
c13c8260 840}
765e3d8a 841EXPORT_SYMBOL(dma_async_device_register);
c13c8260 842
6508871e 843/**
6f49a57a 844 * dma_async_device_unregister - unregister a DMA device
6508871e 845 * @device: &dma_device
f27c580c
DW
846 *
847 * This routine is called by dma driver exit routines, dmaengine holds module
848 * references to prevent it being called while channels are in use.
6508871e
RD
849 */
850void dma_async_device_unregister(struct dma_device *device)
c13c8260
CL
851{
852 struct dma_chan *chan;
c13c8260
CL
853
854 mutex_lock(&dma_list_mutex);
2ba05622 855 list_del_rcu(&device->global_node);
bec08513 856 dma_channel_rebalance();
c13c8260
CL
857 mutex_unlock(&dma_list_mutex);
858
859 list_for_each_entry(chan, &device->channels, device_node) {
6f49a57a
DW
860 WARN_ONCE(chan->client_count,
861 "%s called while %d clients hold a reference\n",
862 __func__, chan->client_count);
41d5e59c
DW
863 mutex_lock(&dma_list_mutex);
864 chan->dev->chan = NULL;
865 mutex_unlock(&dma_list_mutex);
866 device_unregister(&chan->dev->device);
adef4772 867 free_percpu(chan->local);
c13c8260 868 }
c13c8260 869}
765e3d8a 870EXPORT_SYMBOL(dma_async_device_unregister);
c13c8260 871
7405f74b
DW
872/**
873 * dma_async_memcpy_buf_to_buf - offloaded copy between virtual addresses
874 * @chan: DMA channel to offload copy to
875 * @dest: destination address (virtual)
876 * @src: source address (virtual)
877 * @len: length
878 *
879 * Both @dest and @src must be mappable to a bus address according to the
880 * DMA mapping API rules for streaming mappings.
881 * Both @dest and @src must stay memory resident (kernel memory or locked
882 * user space pages).
883 */
884dma_cookie_t
885dma_async_memcpy_buf_to_buf(struct dma_chan *chan, void *dest,
886 void *src, size_t len)
887{
888 struct dma_device *dev = chan->device;
889 struct dma_async_tx_descriptor *tx;
0036731c 890 dma_addr_t dma_dest, dma_src;
7405f74b 891 dma_cookie_t cookie;
4f005dbe 892 unsigned long flags;
7405f74b 893
0036731c
DW
894 dma_src = dma_map_single(dev->dev, src, len, DMA_TO_DEVICE);
895 dma_dest = dma_map_single(dev->dev, dest, len, DMA_FROM_DEVICE);
4f005dbe
MS
896 flags = DMA_CTRL_ACK |
897 DMA_COMPL_SRC_UNMAP_SINGLE |
898 DMA_COMPL_DEST_UNMAP_SINGLE;
899 tx = dev->device_prep_dma_memcpy(chan, dma_dest, dma_src, len, flags);
0036731c
DW
900
901 if (!tx) {
902 dma_unmap_single(dev->dev, dma_src, len, DMA_TO_DEVICE);
903 dma_unmap_single(dev->dev, dma_dest, len, DMA_FROM_DEVICE);
7405f74b 904 return -ENOMEM;
0036731c 905 }
7405f74b 906
7405f74b 907 tx->callback = NULL;
7405f74b
DW
908 cookie = tx->tx_submit(tx);
909
e7dcaa47
CL
910 preempt_disable();
911 __this_cpu_add(chan->local->bytes_transferred, len);
912 __this_cpu_inc(chan->local->memcpy_count);
913 preempt_enable();
7405f74b
DW
914
915 return cookie;
916}
917EXPORT_SYMBOL(dma_async_memcpy_buf_to_buf);
918
919/**
920 * dma_async_memcpy_buf_to_pg - offloaded copy from address to page
921 * @chan: DMA channel to offload copy to
922 * @page: destination page
923 * @offset: offset in page to copy to
924 * @kdata: source address (virtual)
925 * @len: length
926 *
927 * Both @page/@offset and @kdata must be mappable to a bus address according
928 * to the DMA mapping API rules for streaming mappings.
929 * Both @page/@offset and @kdata must stay memory resident (kernel memory or
930 * locked user space pages)
931 */
932dma_cookie_t
933dma_async_memcpy_buf_to_pg(struct dma_chan *chan, struct page *page,
934 unsigned int offset, void *kdata, size_t len)
935{
936 struct dma_device *dev = chan->device;
937 struct dma_async_tx_descriptor *tx;
0036731c 938 dma_addr_t dma_dest, dma_src;
7405f74b 939 dma_cookie_t cookie;
4f005dbe 940 unsigned long flags;
7405f74b 941
0036731c
DW
942 dma_src = dma_map_single(dev->dev, kdata, len, DMA_TO_DEVICE);
943 dma_dest = dma_map_page(dev->dev, page, offset, len, DMA_FROM_DEVICE);
4f005dbe
MS
944 flags = DMA_CTRL_ACK | DMA_COMPL_SRC_UNMAP_SINGLE;
945 tx = dev->device_prep_dma_memcpy(chan, dma_dest, dma_src, len, flags);
0036731c
DW
946
947 if (!tx) {
948 dma_unmap_single(dev->dev, dma_src, len, DMA_TO_DEVICE);
949 dma_unmap_page(dev->dev, dma_dest, len, DMA_FROM_DEVICE);
7405f74b 950 return -ENOMEM;
0036731c 951 }
7405f74b 952
7405f74b 953 tx->callback = NULL;
7405f74b
DW
954 cookie = tx->tx_submit(tx);
955
e7dcaa47
CL
956 preempt_disable();
957 __this_cpu_add(chan->local->bytes_transferred, len);
958 __this_cpu_inc(chan->local->memcpy_count);
959 preempt_enable();
7405f74b
DW
960
961 return cookie;
962}
963EXPORT_SYMBOL(dma_async_memcpy_buf_to_pg);
964
965/**
966 * dma_async_memcpy_pg_to_pg - offloaded copy from page to page
967 * @chan: DMA channel to offload copy to
968 * @dest_pg: destination page
969 * @dest_off: offset in page to copy to
970 * @src_pg: source page
971 * @src_off: offset in page to copy from
972 * @len: length
973 *
974 * Both @dest_page/@dest_off and @src_page/@src_off must be mappable to a bus
975 * address according to the DMA mapping API rules for streaming mappings.
976 * Both @dest_page/@dest_off and @src_page/@src_off must stay memory resident
977 * (kernel memory or locked user space pages).
978 */
979dma_cookie_t
980dma_async_memcpy_pg_to_pg(struct dma_chan *chan, struct page *dest_pg,
981 unsigned int dest_off, struct page *src_pg, unsigned int src_off,
982 size_t len)
983{
984 struct dma_device *dev = chan->device;
985 struct dma_async_tx_descriptor *tx;
0036731c 986 dma_addr_t dma_dest, dma_src;
7405f74b 987 dma_cookie_t cookie;
4f005dbe 988 unsigned long flags;
7405f74b 989
0036731c
DW
990 dma_src = dma_map_page(dev->dev, src_pg, src_off, len, DMA_TO_DEVICE);
991 dma_dest = dma_map_page(dev->dev, dest_pg, dest_off, len,
992 DMA_FROM_DEVICE);
4f005dbe
MS
993 flags = DMA_CTRL_ACK;
994 tx = dev->device_prep_dma_memcpy(chan, dma_dest, dma_src, len, flags);
0036731c
DW
995
996 if (!tx) {
997 dma_unmap_page(dev->dev, dma_src, len, DMA_TO_DEVICE);
998 dma_unmap_page(dev->dev, dma_dest, len, DMA_FROM_DEVICE);
7405f74b 999 return -ENOMEM;
0036731c 1000 }
7405f74b 1001
7405f74b 1002 tx->callback = NULL;
7405f74b
DW
1003 cookie = tx->tx_submit(tx);
1004
e7dcaa47
CL
1005 preempt_disable();
1006 __this_cpu_add(chan->local->bytes_transferred, len);
1007 __this_cpu_inc(chan->local->memcpy_count);
1008 preempt_enable();
7405f74b
DW
1009
1010 return cookie;
1011}
1012EXPORT_SYMBOL(dma_async_memcpy_pg_to_pg);
1013
1014void dma_async_tx_descriptor_init(struct dma_async_tx_descriptor *tx,
1015 struct dma_chan *chan)
1016{
1017 tx->chan = chan;
5fc6d897 1018 #ifdef CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH
7405f74b 1019 spin_lock_init(&tx->lock);
caa20d97 1020 #endif
7405f74b
DW
1021}
1022EXPORT_SYMBOL(dma_async_tx_descriptor_init);
1023
07f2211e
DW
1024/* dma_wait_for_async_tx - spin wait for a transaction to complete
1025 * @tx: in-flight transaction to wait on
07f2211e
DW
1026 */
1027enum dma_status
1028dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx)
1029{
95475e57 1030 unsigned long dma_sync_wait_timeout = jiffies + msecs_to_jiffies(5000);
07f2211e
DW
1031
1032 if (!tx)
1033 return DMA_SUCCESS;
1034
95475e57
DW
1035 while (tx->cookie == -EBUSY) {
1036 if (time_after_eq(jiffies, dma_sync_wait_timeout)) {
1037 pr_err("%s timeout waiting for descriptor submission\n",
63433250 1038 __func__);
95475e57
DW
1039 return DMA_ERROR;
1040 }
1041 cpu_relax();
1042 }
1043 return dma_sync_wait(tx->chan, tx->cookie);
07f2211e
DW
1044}
1045EXPORT_SYMBOL_GPL(dma_wait_for_async_tx);
1046
1047/* dma_run_dependencies - helper routine for dma drivers to process
1048 * (start) dependent operations on their target channel
1049 * @tx: transaction with dependencies
1050 */
1051void dma_run_dependencies(struct dma_async_tx_descriptor *tx)
1052{
caa20d97 1053 struct dma_async_tx_descriptor *dep = txd_next(tx);
07f2211e
DW
1054 struct dma_async_tx_descriptor *dep_next;
1055 struct dma_chan *chan;
1056
1057 if (!dep)
1058 return;
1059
dd59b853 1060 /* we'll submit tx->next now, so clear the link */
caa20d97 1061 txd_clear_next(tx);
07f2211e
DW
1062 chan = dep->chan;
1063
1064 /* keep submitting up until a channel switch is detected
1065 * in that case we will be called again as a result of
1066 * processing the interrupt from async_tx_channel_switch
1067 */
1068 for (; dep; dep = dep_next) {
caa20d97
DW
1069 txd_lock(dep);
1070 txd_clear_parent(dep);
1071 dep_next = txd_next(dep);
07f2211e 1072 if (dep_next && dep_next->chan == chan)
caa20d97 1073 txd_clear_next(dep); /* ->next will be submitted */
07f2211e
DW
1074 else
1075 dep_next = NULL; /* submit current dep and terminate */
caa20d97 1076 txd_unlock(dep);
07f2211e
DW
1077
1078 dep->tx_submit(dep);
1079 }
1080
1081 chan->device->device_issue_pending(chan);
1082}
1083EXPORT_SYMBOL_GPL(dma_run_dependencies);
1084
c13c8260
CL
1085static int __init dma_bus_init(void)
1086{
c13c8260
CL
1087 return class_register(&dma_devclass);
1088}
652afc27 1089arch_initcall(dma_bus_init);
c13c8260 1090
bec08513 1091
This page took 0.50112 seconds and 5 git commands to generate.