2 * Copyright(c) 2004 - 2006 Intel Corporation. All rights reserved.
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)
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
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.
18 * The full GNU General Public License is included in this distribution in the
19 * file called COPYING.
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
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,
34 * The subsystem keeps a global list of dma_device structs it is protected by a
35 * mutex, dma_list_mutex.
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.
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.
45 * See Documentation/dmaengine.txt for more details
48 #include <linux/init.h>
49 #include <linux/module.h>
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>
58 #include <linux/jiffies.h>
59 #include <linux/rculist.h>
60 #include <linux/idr.h>
61 #include <linux/slab.h>
63 static DEFINE_MUTEX(dma_list_mutex
);
64 static LIST_HEAD(dma_device_list
);
65 static long dmaengine_ref_count
;
66 static struct idr dma_idr
;
68 /* --- sysfs implementation --- */
71 * dev_to_dma_chan - convert a device pointer to the its sysfs container object
74 * Must be called under dma_list_mutex
76 static struct dma_chan
*dev_to_dma_chan(struct device
*dev
)
78 struct dma_chan_dev
*chan_dev
;
80 chan_dev
= container_of(dev
, typeof(*chan_dev
), device
);
81 return chan_dev
->chan
;
84 static ssize_t
show_memcpy_count(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
86 struct dma_chan
*chan
;
87 unsigned long count
= 0;
91 mutex_lock(&dma_list_mutex
);
92 chan
= dev_to_dma_chan(dev
);
94 for_each_possible_cpu(i
)
95 count
+= per_cpu_ptr(chan
->local
, i
)->memcpy_count
;
96 err
= sprintf(buf
, "%lu\n", count
);
99 mutex_unlock(&dma_list_mutex
);
104 static ssize_t
show_bytes_transferred(struct device
*dev
, struct device_attribute
*attr
,
107 struct dma_chan
*chan
;
108 unsigned long count
= 0;
112 mutex_lock(&dma_list_mutex
);
113 chan
= dev_to_dma_chan(dev
);
115 for_each_possible_cpu(i
)
116 count
+= per_cpu_ptr(chan
->local
, i
)->bytes_transferred
;
117 err
= sprintf(buf
, "%lu\n", count
);
120 mutex_unlock(&dma_list_mutex
);
125 static ssize_t
show_in_use(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
127 struct dma_chan
*chan
;
130 mutex_lock(&dma_list_mutex
);
131 chan
= dev_to_dma_chan(dev
);
133 err
= sprintf(buf
, "%d\n", chan
->client_count
);
136 mutex_unlock(&dma_list_mutex
);
141 static struct device_attribute dma_attrs
[] = {
142 __ATTR(memcpy_count
, S_IRUGO
, show_memcpy_count
, NULL
),
143 __ATTR(bytes_transferred
, S_IRUGO
, show_bytes_transferred
, NULL
),
144 __ATTR(in_use
, S_IRUGO
, show_in_use
, NULL
),
148 static void chan_dev_release(struct device
*dev
)
150 struct dma_chan_dev
*chan_dev
;
152 chan_dev
= container_of(dev
, typeof(*chan_dev
), device
);
153 if (atomic_dec_and_test(chan_dev
->idr_ref
)) {
154 mutex_lock(&dma_list_mutex
);
155 idr_remove(&dma_idr
, chan_dev
->dev_id
);
156 mutex_unlock(&dma_list_mutex
);
157 kfree(chan_dev
->idr_ref
);
162 static struct class dma_devclass
= {
164 .dev_attrs
= dma_attrs
,
165 .dev_release
= chan_dev_release
,
168 /* --- client and device registration --- */
170 #define dma_device_satisfies_mask(device, mask) \
171 __dma_device_satisfies_mask((device), &(mask))
173 __dma_device_satisfies_mask(struct dma_device
*device
, dma_cap_mask_t
*want
)
177 bitmap_and(has
.bits
, want
->bits
, device
->cap_mask
.bits
,
179 return bitmap_equal(want
->bits
, has
.bits
, DMA_TX_TYPE_END
);
182 static struct module
*dma_chan_to_owner(struct dma_chan
*chan
)
184 return chan
->device
->dev
->driver
->owner
;
188 * balance_ref_count - catch up the channel reference count
189 * @chan - channel to balance ->client_count versus dmaengine_ref_count
191 * balance_ref_count must be called under dma_list_mutex
193 static void balance_ref_count(struct dma_chan
*chan
)
195 struct module
*owner
= dma_chan_to_owner(chan
);
197 while (chan
->client_count
< dmaengine_ref_count
) {
199 chan
->client_count
++;
204 * dma_chan_get - try to grab a dma channel's parent driver module
205 * @chan - channel to grab
207 * Must be called under dma_list_mutex
209 static int dma_chan_get(struct dma_chan
*chan
)
212 struct module
*owner
= dma_chan_to_owner(chan
);
214 if (chan
->client_count
) {
217 } else if (try_module_get(owner
))
221 chan
->client_count
++;
223 /* allocate upon first client reference */
224 if (chan
->client_count
== 1 && err
== 0) {
225 int desc_cnt
= chan
->device
->device_alloc_chan_resources(chan
);
229 chan
->client_count
= 0;
231 } else if (!dma_has_cap(DMA_PRIVATE
, chan
->device
->cap_mask
))
232 balance_ref_count(chan
);
239 * dma_chan_put - drop a reference to a dma channel's parent driver module
240 * @chan - channel to release
242 * Must be called under dma_list_mutex
244 static void dma_chan_put(struct dma_chan
*chan
)
246 if (!chan
->client_count
)
247 return; /* this channel failed alloc_chan_resources */
248 chan
->client_count
--;
249 module_put(dma_chan_to_owner(chan
));
250 if (chan
->client_count
== 0)
251 chan
->device
->device_free_chan_resources(chan
);
254 enum dma_status
dma_sync_wait(struct dma_chan
*chan
, dma_cookie_t cookie
)
256 enum dma_status status
;
257 unsigned long dma_sync_wait_timeout
= jiffies
+ msecs_to_jiffies(5000);
259 dma_async_issue_pending(chan
);
261 status
= dma_async_is_tx_complete(chan
, cookie
, NULL
, NULL
);
262 if (time_after_eq(jiffies
, dma_sync_wait_timeout
)) {
263 printk(KERN_ERR
"dma_sync_wait_timeout!\n");
266 } while (status
== DMA_IN_PROGRESS
);
270 EXPORT_SYMBOL(dma_sync_wait
);
273 * dma_cap_mask_all - enable iteration over all operation types
275 static dma_cap_mask_t dma_cap_mask_all
;
278 * dma_chan_tbl_ent - tracks channel allocations per core/operation
279 * @chan - associated channel for this entry
281 struct dma_chan_tbl_ent
{
282 struct dma_chan
*chan
;
286 * channel_table - percpu lookup table for memory-to-memory offload providers
288 static struct dma_chan_tbl_ent __percpu
*channel_table
[DMA_TX_TYPE_END
];
290 static int __init
dma_channel_table_init(void)
292 enum dma_transaction_type cap
;
295 bitmap_fill(dma_cap_mask_all
.bits
, DMA_TX_TYPE_END
);
297 /* 'interrupt', 'private', and 'slave' are channel capabilities,
298 * but are not associated with an operation so they do not need
299 * an entry in the channel_table
301 clear_bit(DMA_INTERRUPT
, dma_cap_mask_all
.bits
);
302 clear_bit(DMA_PRIVATE
, dma_cap_mask_all
.bits
);
303 clear_bit(DMA_SLAVE
, dma_cap_mask_all
.bits
);
305 for_each_dma_cap_mask(cap
, dma_cap_mask_all
) {
306 channel_table
[cap
] = alloc_percpu(struct dma_chan_tbl_ent
);
307 if (!channel_table
[cap
]) {
314 pr_err("dmaengine: initialization failure\n");
315 for_each_dma_cap_mask(cap
, dma_cap_mask_all
)
316 if (channel_table
[cap
])
317 free_percpu(channel_table
[cap
]);
322 arch_initcall(dma_channel_table_init
);
325 * dma_find_channel - find a channel to carry out the operation
326 * @tx_type: transaction type
328 struct dma_chan
*dma_find_channel(enum dma_transaction_type tx_type
)
330 return this_cpu_read(channel_table
[tx_type
]->chan
);
332 EXPORT_SYMBOL(dma_find_channel
);
335 * dma_issue_pending_all - flush all pending operations across all channels
337 void dma_issue_pending_all(void)
339 struct dma_device
*device
;
340 struct dma_chan
*chan
;
343 list_for_each_entry_rcu(device
, &dma_device_list
, global_node
) {
344 if (dma_has_cap(DMA_PRIVATE
, device
->cap_mask
))
346 list_for_each_entry(chan
, &device
->channels
, device_node
)
347 if (chan
->client_count
)
348 device
->device_issue_pending(chan
);
352 EXPORT_SYMBOL(dma_issue_pending_all
);
355 * nth_chan - returns the nth channel of the given capability
356 * @cap: capability to match
357 * @n: nth channel desired
359 * Defaults to returning the channel with the desired capability and the
360 * lowest reference count when 'n' cannot be satisfied. Must be called
361 * under dma_list_mutex.
363 static struct dma_chan
*nth_chan(enum dma_transaction_type cap
, int n
)
365 struct dma_device
*device
;
366 struct dma_chan
*chan
;
367 struct dma_chan
*ret
= NULL
;
368 struct dma_chan
*min
= NULL
;
370 list_for_each_entry(device
, &dma_device_list
, global_node
) {
371 if (!dma_has_cap(cap
, device
->cap_mask
) ||
372 dma_has_cap(DMA_PRIVATE
, device
->cap_mask
))
374 list_for_each_entry(chan
, &device
->channels
, device_node
) {
375 if (!chan
->client_count
)
379 else if (chan
->table_count
< min
->table_count
)
401 * dma_channel_rebalance - redistribute the available channels
403 * Optimize for cpu isolation (each cpu gets a dedicated channel for an
404 * operation type) in the SMP case, and operation isolation (avoid
405 * multi-tasking channels) in the non-SMP case. Must be called under
408 static void dma_channel_rebalance(void)
410 struct dma_chan
*chan
;
411 struct dma_device
*device
;
416 /* undo the last distribution */
417 for_each_dma_cap_mask(cap
, dma_cap_mask_all
)
418 for_each_possible_cpu(cpu
)
419 per_cpu_ptr(channel_table
[cap
], cpu
)->chan
= NULL
;
421 list_for_each_entry(device
, &dma_device_list
, global_node
) {
422 if (dma_has_cap(DMA_PRIVATE
, device
->cap_mask
))
424 list_for_each_entry(chan
, &device
->channels
, device_node
)
425 chan
->table_count
= 0;
428 /* don't populate the channel_table if no clients are available */
429 if (!dmaengine_ref_count
)
432 /* redistribute available channels */
434 for_each_dma_cap_mask(cap
, dma_cap_mask_all
)
435 for_each_online_cpu(cpu
) {
436 if (num_possible_cpus() > 1)
437 chan
= nth_chan(cap
, n
++);
439 chan
= nth_chan(cap
, -1);
441 per_cpu_ptr(channel_table
[cap
], cpu
)->chan
= chan
;
445 static struct dma_chan
*private_candidate(dma_cap_mask_t
*mask
, struct dma_device
*dev
,
446 dma_filter_fn fn
, void *fn_param
)
448 struct dma_chan
*chan
;
450 if (!__dma_device_satisfies_mask(dev
, mask
)) {
451 pr_debug("%s: wrong capabilities\n", __func__
);
454 /* devices with multiple channels need special handling as we need to
455 * ensure that all channels are either private or public.
457 if (dev
->chancnt
> 1 && !dma_has_cap(DMA_PRIVATE
, dev
->cap_mask
))
458 list_for_each_entry(chan
, &dev
->channels
, device_node
) {
459 /* some channels are already publicly allocated */
460 if (chan
->client_count
)
464 list_for_each_entry(chan
, &dev
->channels
, device_node
) {
465 if (chan
->client_count
) {
466 pr_debug("%s: %s busy\n",
467 __func__
, dma_chan_name(chan
));
470 if (fn
&& !fn(chan
, fn_param
)) {
471 pr_debug("%s: %s filter said false\n",
472 __func__
, dma_chan_name(chan
));
482 * dma_request_channel - try to allocate an exclusive channel
483 * @mask: capabilities that the channel must satisfy
484 * @fn: optional callback to disposition available channels
485 * @fn_param: opaque parameter to pass to dma_filter_fn
487 struct dma_chan
*__dma_request_channel(dma_cap_mask_t
*mask
, dma_filter_fn fn
, void *fn_param
)
489 struct dma_device
*device
, *_d
;
490 struct dma_chan
*chan
= NULL
;
494 mutex_lock(&dma_list_mutex
);
495 list_for_each_entry_safe(device
, _d
, &dma_device_list
, global_node
) {
496 chan
= private_candidate(mask
, device
, fn
, fn_param
);
498 /* Found a suitable channel, try to grab, prep, and
499 * return it. We first set DMA_PRIVATE to disable
500 * balance_ref_count as this channel will not be
501 * published in the general-purpose allocator
503 dma_cap_set(DMA_PRIVATE
, device
->cap_mask
);
504 device
->privatecnt
++;
505 err
= dma_chan_get(chan
);
507 if (err
== -ENODEV
) {
508 pr_debug("%s: %s module removed\n", __func__
,
509 dma_chan_name(chan
));
510 list_del_rcu(&device
->global_node
);
512 pr_err("dmaengine: failed to get %s: (%d)\n",
513 dma_chan_name(chan
), err
);
516 if (--device
->privatecnt
== 0)
517 dma_cap_clear(DMA_PRIVATE
, device
->cap_mask
);
521 mutex_unlock(&dma_list_mutex
);
523 pr_debug("%s: %s (%s)\n", __func__
, chan
? "success" : "fail",
524 chan
? dma_chan_name(chan
) : NULL
);
528 EXPORT_SYMBOL_GPL(__dma_request_channel
);
530 void dma_release_channel(struct dma_chan
*chan
)
532 mutex_lock(&dma_list_mutex
);
533 WARN_ONCE(chan
->client_count
!= 1,
534 "chan reference count %d != 1\n", chan
->client_count
);
536 /* drop PRIVATE cap enabled by __dma_request_channel() */
537 if (--chan
->device
->privatecnt
== 0)
538 dma_cap_clear(DMA_PRIVATE
, chan
->device
->cap_mask
);
539 mutex_unlock(&dma_list_mutex
);
541 EXPORT_SYMBOL_GPL(dma_release_channel
);
544 * dmaengine_get - register interest in dma_channels
546 void dmaengine_get(void)
548 struct dma_device
*device
, *_d
;
549 struct dma_chan
*chan
;
552 mutex_lock(&dma_list_mutex
);
553 dmaengine_ref_count
++;
555 /* try to grab channels */
556 list_for_each_entry_safe(device
, _d
, &dma_device_list
, global_node
) {
557 if (dma_has_cap(DMA_PRIVATE
, device
->cap_mask
))
559 list_for_each_entry(chan
, &device
->channels
, device_node
) {
560 err
= dma_chan_get(chan
);
561 if (err
== -ENODEV
) {
562 /* module removed before we could use it */
563 list_del_rcu(&device
->global_node
);
566 pr_err("dmaengine: failed to get %s: (%d)\n",
567 dma_chan_name(chan
), err
);
571 /* if this is the first reference and there were channels
572 * waiting we need to rebalance to get those channels
573 * incorporated into the channel table
575 if (dmaengine_ref_count
== 1)
576 dma_channel_rebalance();
577 mutex_unlock(&dma_list_mutex
);
579 EXPORT_SYMBOL(dmaengine_get
);
582 * dmaengine_put - let dma drivers be removed when ref_count == 0
584 void dmaengine_put(void)
586 struct dma_device
*device
;
587 struct dma_chan
*chan
;
589 mutex_lock(&dma_list_mutex
);
590 dmaengine_ref_count
--;
591 BUG_ON(dmaengine_ref_count
< 0);
592 /* drop channel references */
593 list_for_each_entry(device
, &dma_device_list
, global_node
) {
594 if (dma_has_cap(DMA_PRIVATE
, device
->cap_mask
))
596 list_for_each_entry(chan
, &device
->channels
, device_node
)
599 mutex_unlock(&dma_list_mutex
);
601 EXPORT_SYMBOL(dmaengine_put
);
603 static bool device_has_all_tx_types(struct dma_device
*device
)
605 /* A device that satisfies this test has channels that will never cause
606 * an async_tx channel switch event as all possible operation types can
609 #ifdef CONFIG_ASYNC_TX_DMA
610 if (!dma_has_cap(DMA_INTERRUPT
, device
->cap_mask
))
614 #if defined(CONFIG_ASYNC_MEMCPY) || defined(CONFIG_ASYNC_MEMCPY_MODULE)
615 if (!dma_has_cap(DMA_MEMCPY
, device
->cap_mask
))
619 #if defined(CONFIG_ASYNC_MEMSET) || defined(CONFIG_ASYNC_MEMSET_MODULE)
620 if (!dma_has_cap(DMA_MEMSET
, device
->cap_mask
))
624 #if defined(CONFIG_ASYNC_XOR) || defined(CONFIG_ASYNC_XOR_MODULE)
625 if (!dma_has_cap(DMA_XOR
, device
->cap_mask
))
628 #ifndef CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA
629 if (!dma_has_cap(DMA_XOR_VAL
, device
->cap_mask
))
634 #if defined(CONFIG_ASYNC_PQ) || defined(CONFIG_ASYNC_PQ_MODULE)
635 if (!dma_has_cap(DMA_PQ
, device
->cap_mask
))
638 #ifndef CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA
639 if (!dma_has_cap(DMA_PQ_VAL
, device
->cap_mask
))
647 static int get_dma_id(struct dma_device
*device
)
652 if (!idr_pre_get(&dma_idr
, GFP_KERNEL
))
654 mutex_lock(&dma_list_mutex
);
655 rc
= idr_get_new(&dma_idr
, NULL
, &device
->dev_id
);
656 mutex_unlock(&dma_list_mutex
);
666 * dma_async_device_register - registers DMA devices found
667 * @device: &dma_device
669 int dma_async_device_register(struct dma_device
*device
)
672 struct dma_chan
* chan
;
678 /* validate device routines */
679 BUG_ON(dma_has_cap(DMA_MEMCPY
, device
->cap_mask
) &&
680 !device
->device_prep_dma_memcpy
);
681 BUG_ON(dma_has_cap(DMA_XOR
, device
->cap_mask
) &&
682 !device
->device_prep_dma_xor
);
683 BUG_ON(dma_has_cap(DMA_XOR_VAL
, device
->cap_mask
) &&
684 !device
->device_prep_dma_xor_val
);
685 BUG_ON(dma_has_cap(DMA_PQ
, device
->cap_mask
) &&
686 !device
->device_prep_dma_pq
);
687 BUG_ON(dma_has_cap(DMA_PQ_VAL
, device
->cap_mask
) &&
688 !device
->device_prep_dma_pq_val
);
689 BUG_ON(dma_has_cap(DMA_MEMSET
, device
->cap_mask
) &&
690 !device
->device_prep_dma_memset
);
691 BUG_ON(dma_has_cap(DMA_INTERRUPT
, device
->cap_mask
) &&
692 !device
->device_prep_dma_interrupt
);
693 BUG_ON(dma_has_cap(DMA_SLAVE
, device
->cap_mask
) &&
694 !device
->device_prep_slave_sg
);
695 BUG_ON(dma_has_cap(DMA_SLAVE
, device
->cap_mask
) &&
696 !device
->device_control
);
698 BUG_ON(!device
->device_alloc_chan_resources
);
699 BUG_ON(!device
->device_free_chan_resources
);
700 BUG_ON(!device
->device_tx_status
);
701 BUG_ON(!device
->device_issue_pending
);
702 BUG_ON(!device
->dev
);
704 /* note: this only matters in the
705 * CONFIG_ASYNC_TX_DISABLE_CHANNEL_SWITCH=y case
707 if (device_has_all_tx_types(device
))
708 dma_cap_set(DMA_ASYNC_TX
, device
->cap_mask
);
710 idr_ref
= kmalloc(sizeof(*idr_ref
), GFP_KERNEL
);
713 rc
= get_dma_id(device
);
719 atomic_set(idr_ref
, 0);
721 /* represent channels in sysfs. Probably want devs too */
722 list_for_each_entry(chan
, &device
->channels
, device_node
) {
724 chan
->local
= alloc_percpu(typeof(*chan
->local
));
725 if (chan
->local
== NULL
)
727 chan
->dev
= kzalloc(sizeof(*chan
->dev
), GFP_KERNEL
);
728 if (chan
->dev
== NULL
) {
729 free_percpu(chan
->local
);
734 chan
->chan_id
= chancnt
++;
735 chan
->dev
->device
.class = &dma_devclass
;
736 chan
->dev
->device
.parent
= device
->dev
;
737 chan
->dev
->chan
= chan
;
738 chan
->dev
->idr_ref
= idr_ref
;
739 chan
->dev
->dev_id
= device
->dev_id
;
741 dev_set_name(&chan
->dev
->device
, "dma%dchan%d",
742 device
->dev_id
, chan
->chan_id
);
744 rc
= device_register(&chan
->dev
->device
);
746 free_percpu(chan
->local
);
752 chan
->client_count
= 0;
754 device
->chancnt
= chancnt
;
756 mutex_lock(&dma_list_mutex
);
757 /* take references on public channels */
758 if (dmaengine_ref_count
&& !dma_has_cap(DMA_PRIVATE
, device
->cap_mask
))
759 list_for_each_entry(chan
, &device
->channels
, device_node
) {
760 /* if clients are already waiting for channels we need
761 * to take references on their behalf
763 if (dma_chan_get(chan
) == -ENODEV
) {
764 /* note we can only get here for the first
765 * channel as the remaining channels are
766 * guaranteed to get a reference
769 mutex_unlock(&dma_list_mutex
);
773 list_add_tail_rcu(&device
->global_node
, &dma_device_list
);
774 if (dma_has_cap(DMA_PRIVATE
, device
->cap_mask
))
775 device
->privatecnt
++; /* Always private */
776 dma_channel_rebalance();
777 mutex_unlock(&dma_list_mutex
);
782 /* if we never registered a channel just release the idr */
783 if (atomic_read(idr_ref
) == 0) {
784 mutex_lock(&dma_list_mutex
);
785 idr_remove(&dma_idr
, device
->dev_id
);
786 mutex_unlock(&dma_list_mutex
);
791 list_for_each_entry(chan
, &device
->channels
, device_node
) {
792 if (chan
->local
== NULL
)
794 mutex_lock(&dma_list_mutex
);
795 chan
->dev
->chan
= NULL
;
796 mutex_unlock(&dma_list_mutex
);
797 device_unregister(&chan
->dev
->device
);
798 free_percpu(chan
->local
);
802 EXPORT_SYMBOL(dma_async_device_register
);
805 * dma_async_device_unregister - unregister a DMA device
806 * @device: &dma_device
808 * This routine is called by dma driver exit routines, dmaengine holds module
809 * references to prevent it being called while channels are in use.
811 void dma_async_device_unregister(struct dma_device
*device
)
813 struct dma_chan
*chan
;
815 mutex_lock(&dma_list_mutex
);
816 list_del_rcu(&device
->global_node
);
817 dma_channel_rebalance();
818 mutex_unlock(&dma_list_mutex
);
820 list_for_each_entry(chan
, &device
->channels
, device_node
) {
821 WARN_ONCE(chan
->client_count
,
822 "%s called while %d clients hold a reference\n",
823 __func__
, chan
->client_count
);
824 mutex_lock(&dma_list_mutex
);
825 chan
->dev
->chan
= NULL
;
826 mutex_unlock(&dma_list_mutex
);
827 device_unregister(&chan
->dev
->device
);
828 free_percpu(chan
->local
);
831 EXPORT_SYMBOL(dma_async_device_unregister
);
834 * dma_async_memcpy_buf_to_buf - offloaded copy between virtual addresses
835 * @chan: DMA channel to offload copy to
836 * @dest: destination address (virtual)
837 * @src: source address (virtual)
840 * Both @dest and @src must be mappable to a bus address according to the
841 * DMA mapping API rules for streaming mappings.
842 * Both @dest and @src must stay memory resident (kernel memory or locked
846 dma_async_memcpy_buf_to_buf(struct dma_chan
*chan
, void *dest
,
847 void *src
, size_t len
)
849 struct dma_device
*dev
= chan
->device
;
850 struct dma_async_tx_descriptor
*tx
;
851 dma_addr_t dma_dest
, dma_src
;
855 dma_src
= dma_map_single(dev
->dev
, src
, len
, DMA_TO_DEVICE
);
856 dma_dest
= dma_map_single(dev
->dev
, dest
, len
, DMA_FROM_DEVICE
);
857 flags
= DMA_CTRL_ACK
|
858 DMA_COMPL_SRC_UNMAP_SINGLE
|
859 DMA_COMPL_DEST_UNMAP_SINGLE
;
860 tx
= dev
->device_prep_dma_memcpy(chan
, dma_dest
, dma_src
, len
, flags
);
863 dma_unmap_single(dev
->dev
, dma_src
, len
, DMA_TO_DEVICE
);
864 dma_unmap_single(dev
->dev
, dma_dest
, len
, DMA_FROM_DEVICE
);
869 cookie
= tx
->tx_submit(tx
);
872 __this_cpu_add(chan
->local
->bytes_transferred
, len
);
873 __this_cpu_inc(chan
->local
->memcpy_count
);
878 EXPORT_SYMBOL(dma_async_memcpy_buf_to_buf
);
881 * dma_async_memcpy_buf_to_pg - offloaded copy from address to page
882 * @chan: DMA channel to offload copy to
883 * @page: destination page
884 * @offset: offset in page to copy to
885 * @kdata: source address (virtual)
888 * Both @page/@offset and @kdata must be mappable to a bus address according
889 * to the DMA mapping API rules for streaming mappings.
890 * Both @page/@offset and @kdata must stay memory resident (kernel memory or
891 * locked user space pages)
894 dma_async_memcpy_buf_to_pg(struct dma_chan
*chan
, struct page
*page
,
895 unsigned int offset
, void *kdata
, size_t len
)
897 struct dma_device
*dev
= chan
->device
;
898 struct dma_async_tx_descriptor
*tx
;
899 dma_addr_t dma_dest
, dma_src
;
903 dma_src
= dma_map_single(dev
->dev
, kdata
, len
, DMA_TO_DEVICE
);
904 dma_dest
= dma_map_page(dev
->dev
, page
, offset
, len
, DMA_FROM_DEVICE
);
905 flags
= DMA_CTRL_ACK
| DMA_COMPL_SRC_UNMAP_SINGLE
;
906 tx
= dev
->device_prep_dma_memcpy(chan
, dma_dest
, dma_src
, len
, flags
);
909 dma_unmap_single(dev
->dev
, dma_src
, len
, DMA_TO_DEVICE
);
910 dma_unmap_page(dev
->dev
, dma_dest
, len
, DMA_FROM_DEVICE
);
915 cookie
= tx
->tx_submit(tx
);
918 __this_cpu_add(chan
->local
->bytes_transferred
, len
);
919 __this_cpu_inc(chan
->local
->memcpy_count
);
924 EXPORT_SYMBOL(dma_async_memcpy_buf_to_pg
);
927 * dma_async_memcpy_pg_to_pg - offloaded copy from page to page
928 * @chan: DMA channel to offload copy to
929 * @dest_pg: destination page
930 * @dest_off: offset in page to copy to
931 * @src_pg: source page
932 * @src_off: offset in page to copy from
935 * Both @dest_page/@dest_off and @src_page/@src_off must be mappable to a bus
936 * address according to the DMA mapping API rules for streaming mappings.
937 * Both @dest_page/@dest_off and @src_page/@src_off must stay memory resident
938 * (kernel memory or locked user space pages).
941 dma_async_memcpy_pg_to_pg(struct dma_chan
*chan
, struct page
*dest_pg
,
942 unsigned int dest_off
, struct page
*src_pg
, unsigned int src_off
,
945 struct dma_device
*dev
= chan
->device
;
946 struct dma_async_tx_descriptor
*tx
;
947 dma_addr_t dma_dest
, dma_src
;
951 dma_src
= dma_map_page(dev
->dev
, src_pg
, src_off
, len
, DMA_TO_DEVICE
);
952 dma_dest
= dma_map_page(dev
->dev
, dest_pg
, dest_off
, len
,
954 flags
= DMA_CTRL_ACK
;
955 tx
= dev
->device_prep_dma_memcpy(chan
, dma_dest
, dma_src
, len
, flags
);
958 dma_unmap_page(dev
->dev
, dma_src
, len
, DMA_TO_DEVICE
);
959 dma_unmap_page(dev
->dev
, dma_dest
, len
, DMA_FROM_DEVICE
);
964 cookie
= tx
->tx_submit(tx
);
967 __this_cpu_add(chan
->local
->bytes_transferred
, len
);
968 __this_cpu_inc(chan
->local
->memcpy_count
);
973 EXPORT_SYMBOL(dma_async_memcpy_pg_to_pg
);
975 void dma_async_tx_descriptor_init(struct dma_async_tx_descriptor
*tx
,
976 struct dma_chan
*chan
)
979 #ifndef CONFIG_ASYNC_TX_DISABLE_CHANNEL_SWITCH
980 spin_lock_init(&tx
->lock
);
983 EXPORT_SYMBOL(dma_async_tx_descriptor_init
);
985 /* dma_wait_for_async_tx - spin wait for a transaction to complete
986 * @tx: in-flight transaction to wait on
989 dma_wait_for_async_tx(struct dma_async_tx_descriptor
*tx
)
991 unsigned long dma_sync_wait_timeout
= jiffies
+ msecs_to_jiffies(5000);
996 while (tx
->cookie
== -EBUSY
) {
997 if (time_after_eq(jiffies
, dma_sync_wait_timeout
)) {
998 pr_err("%s timeout waiting for descriptor submission\n",
1004 return dma_sync_wait(tx
->chan
, tx
->cookie
);
1006 EXPORT_SYMBOL_GPL(dma_wait_for_async_tx
);
1008 /* dma_run_dependencies - helper routine for dma drivers to process
1009 * (start) dependent operations on their target channel
1010 * @tx: transaction with dependencies
1012 void dma_run_dependencies(struct dma_async_tx_descriptor
*tx
)
1014 struct dma_async_tx_descriptor
*dep
= txd_next(tx
);
1015 struct dma_async_tx_descriptor
*dep_next
;
1016 struct dma_chan
*chan
;
1021 /* we'll submit tx->next now, so clear the link */
1025 /* keep submitting up until a channel switch is detected
1026 * in that case we will be called again as a result of
1027 * processing the interrupt from async_tx_channel_switch
1029 for (; dep
; dep
= dep_next
) {
1031 txd_clear_parent(dep
);
1032 dep_next
= txd_next(dep
);
1033 if (dep_next
&& dep_next
->chan
== chan
)
1034 txd_clear_next(dep
); /* ->next will be submitted */
1036 dep_next
= NULL
; /* submit current dep and terminate */
1039 dep
->tx_submit(dep
);
1042 chan
->device
->device_issue_pending(chan
);
1044 EXPORT_SYMBOL_GPL(dma_run_dependencies
);
1046 static int __init
dma_bus_init(void)
1049 mutex_init(&dma_list_mutex
);
1050 return class_register(&dma_devclass
);
1052 arch_initcall(dma_bus_init
);