2 * Framework for buffer objects that can be shared across devices/subsystems.
4 * Copyright(C) 2011 Linaro Limited. All rights reserved.
5 * Author: Sumit Semwal <sumit.semwal@ti.com>
7 * Many thanks to linaro-mm-sig list, and specially
8 * Arnd Bergmann <arnd@arndb.de>, Rob Clark <rob@ti.com> and
9 * Daniel Vetter <daniel@ffwll.ch> for their support in creation and
10 * refining of this idea.
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License version 2 as published by
14 * the Free Software Foundation.
16 * This program is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
21 * You should have received a copy of the GNU General Public License along with
22 * this program. If not, see <http://www.gnu.org/licenses/>.
26 #include <linux/slab.h>
27 #include <linux/dma-buf.h>
28 #include <linux/fence.h>
29 #include <linux/anon_inodes.h>
30 #include <linux/export.h>
31 #include <linux/debugfs.h>
32 #include <linux/module.h>
33 #include <linux/seq_file.h>
34 #include <linux/poll.h>
35 #include <linux/reservation.h>
37 static inline int is_dma_buf_file(struct file
*);
40 struct list_head head
;
44 static struct dma_buf_list db_list
;
46 static int dma_buf_release(struct inode
*inode
, struct file
*file
)
48 struct dma_buf
*dmabuf
;
50 if (!is_dma_buf_file(file
))
53 dmabuf
= file
->private_data
;
55 BUG_ON(dmabuf
->vmapping_counter
);
58 * Any fences that a dma-buf poll can wait on should be signaled
59 * before releasing dma-buf. This is the responsibility of each
60 * driver that uses the reservation objects.
62 * If you hit this BUG() it means someone dropped their ref to the
63 * dma-buf while still having pending operation to the buffer.
65 BUG_ON(dmabuf
->cb_shared
.active
|| dmabuf
->cb_excl
.active
);
67 dmabuf
->ops
->release(dmabuf
);
69 mutex_lock(&db_list
.lock
);
70 list_del(&dmabuf
->list_node
);
71 mutex_unlock(&db_list
.lock
);
73 if (dmabuf
->resv
== (struct reservation_object
*)&dmabuf
[1])
74 reservation_object_fini(dmabuf
->resv
);
76 module_put(dmabuf
->owner
);
81 static int dma_buf_mmap_internal(struct file
*file
, struct vm_area_struct
*vma
)
83 struct dma_buf
*dmabuf
;
85 if (!is_dma_buf_file(file
))
88 dmabuf
= file
->private_data
;
90 /* check for overflowing the buffer's size */
91 if (vma
->vm_pgoff
+ ((vma
->vm_end
- vma
->vm_start
) >> PAGE_SHIFT
) >
92 dmabuf
->size
>> PAGE_SHIFT
)
95 return dmabuf
->ops
->mmap(dmabuf
, vma
);
98 static loff_t
dma_buf_llseek(struct file
*file
, loff_t offset
, int whence
)
100 struct dma_buf
*dmabuf
;
103 if (!is_dma_buf_file(file
))
106 dmabuf
= file
->private_data
;
108 /* only support discovering the end of the buffer,
109 but also allow SEEK_SET to maintain the idiomatic
110 SEEK_END(0), SEEK_CUR(0) pattern */
111 if (whence
== SEEK_END
)
113 else if (whence
== SEEK_SET
)
121 return base
+ offset
;
124 static void dma_buf_poll_cb(struct fence
*fence
, struct fence_cb
*cb
)
126 struct dma_buf_poll_cb_t
*dcb
= (struct dma_buf_poll_cb_t
*)cb
;
129 spin_lock_irqsave(&dcb
->poll
->lock
, flags
);
130 wake_up_locked_poll(dcb
->poll
, dcb
->active
);
132 spin_unlock_irqrestore(&dcb
->poll
->lock
, flags
);
135 static unsigned int dma_buf_poll(struct file
*file
, poll_table
*poll
)
137 struct dma_buf
*dmabuf
;
138 struct reservation_object
*resv
;
139 struct reservation_object_list
*fobj
;
140 struct fence
*fence_excl
;
141 unsigned long events
;
142 unsigned shared_count
, seq
;
144 dmabuf
= file
->private_data
;
145 if (!dmabuf
|| !dmabuf
->resv
)
150 poll_wait(file
, &dmabuf
->poll
, poll
);
152 events
= poll_requested_events(poll
) & (POLLIN
| POLLOUT
);
157 seq
= read_seqcount_begin(&resv
->seq
);
160 fobj
= rcu_dereference(resv
->fence
);
162 shared_count
= fobj
->shared_count
;
165 fence_excl
= rcu_dereference(resv
->fence_excl
);
166 if (read_seqcount_retry(&resv
->seq
, seq
)) {
171 if (fence_excl
&& (!(events
& POLLOUT
) || shared_count
== 0)) {
172 struct dma_buf_poll_cb_t
*dcb
= &dmabuf
->cb_excl
;
173 unsigned long pevents
= POLLIN
;
175 if (shared_count
== 0)
178 spin_lock_irq(&dmabuf
->poll
.lock
);
180 dcb
->active
|= pevents
;
183 dcb
->active
= pevents
;
184 spin_unlock_irq(&dmabuf
->poll
.lock
);
186 if (events
& pevents
) {
187 if (!fence_get_rcu(fence_excl
)) {
188 /* force a recheck */
190 dma_buf_poll_cb(NULL
, &dcb
->cb
);
191 } else if (!fence_add_callback(fence_excl
, &dcb
->cb
,
194 fence_put(fence_excl
);
197 * No callback queued, wake up any additional
200 fence_put(fence_excl
);
201 dma_buf_poll_cb(NULL
, &dcb
->cb
);
206 if ((events
& POLLOUT
) && shared_count
> 0) {
207 struct dma_buf_poll_cb_t
*dcb
= &dmabuf
->cb_shared
;
210 /* Only queue a new callback if no event has fired yet */
211 spin_lock_irq(&dmabuf
->poll
.lock
);
215 dcb
->active
= POLLOUT
;
216 spin_unlock_irq(&dmabuf
->poll
.lock
);
218 if (!(events
& POLLOUT
))
221 for (i
= 0; i
< shared_count
; ++i
) {
222 struct fence
*fence
= rcu_dereference(fobj
->shared
[i
]);
224 if (!fence_get_rcu(fence
)) {
226 * fence refcount dropped to zero, this means
227 * that fobj has been freed
229 * call dma_buf_poll_cb and force a recheck!
232 dma_buf_poll_cb(NULL
, &dcb
->cb
);
235 if (!fence_add_callback(fence
, &dcb
->cb
,
244 /* No callback queued, wake up any additional waiters. */
245 if (i
== shared_count
)
246 dma_buf_poll_cb(NULL
, &dcb
->cb
);
254 static const struct file_operations dma_buf_fops
= {
255 .release
= dma_buf_release
,
256 .mmap
= dma_buf_mmap_internal
,
257 .llseek
= dma_buf_llseek
,
258 .poll
= dma_buf_poll
,
262 * is_dma_buf_file - Check if struct file* is associated with dma_buf
264 static inline int is_dma_buf_file(struct file
*file
)
266 return file
->f_op
== &dma_buf_fops
;
270 * dma_buf_export - Creates a new dma_buf, and associates an anon file
271 * with this buffer, so it can be exported.
272 * Also connect the allocator specific data and ops to the buffer.
273 * Additionally, provide a name string for exporter; useful in debugging.
275 * @exp_info: [in] holds all the export related information provided
276 * by the exporter. see struct dma_buf_export_info
277 * for further details.
279 * Returns, on success, a newly created dma_buf object, which wraps the
280 * supplied private data and operations for dma_buf_ops. On either missing
281 * ops, or error in allocating struct dma_buf, will return negative error.
284 struct dma_buf
*dma_buf_export(const struct dma_buf_export_info
*exp_info
)
286 struct dma_buf
*dmabuf
;
287 struct reservation_object
*resv
= exp_info
->resv
;
289 size_t alloc_size
= sizeof(struct dma_buf
);
292 alloc_size
+= sizeof(struct reservation_object
);
294 /* prevent &dma_buf[1] == dma_buf->resv */
297 if (WARN_ON(!exp_info
->priv
299 || !exp_info
->ops
->map_dma_buf
300 || !exp_info
->ops
->unmap_dma_buf
301 || !exp_info
->ops
->release
302 || !exp_info
->ops
->kmap_atomic
303 || !exp_info
->ops
->kmap
304 || !exp_info
->ops
->mmap
)) {
305 return ERR_PTR(-EINVAL
);
308 if (!try_module_get(exp_info
->owner
))
309 return ERR_PTR(-ENOENT
);
311 dmabuf
= kzalloc(alloc_size
, GFP_KERNEL
);
313 module_put(exp_info
->owner
);
314 return ERR_PTR(-ENOMEM
);
317 dmabuf
->priv
= exp_info
->priv
;
318 dmabuf
->ops
= exp_info
->ops
;
319 dmabuf
->size
= exp_info
->size
;
320 dmabuf
->exp_name
= exp_info
->exp_name
;
321 dmabuf
->owner
= exp_info
->owner
;
322 init_waitqueue_head(&dmabuf
->poll
);
323 dmabuf
->cb_excl
.poll
= dmabuf
->cb_shared
.poll
= &dmabuf
->poll
;
324 dmabuf
->cb_excl
.active
= dmabuf
->cb_shared
.active
= 0;
327 resv
= (struct reservation_object
*)&dmabuf
[1];
328 reservation_object_init(resv
);
332 file
= anon_inode_getfile("dmabuf", &dma_buf_fops
, dmabuf
,
336 return ERR_CAST(file
);
339 file
->f_mode
|= FMODE_LSEEK
;
342 mutex_init(&dmabuf
->lock
);
343 INIT_LIST_HEAD(&dmabuf
->attachments
);
345 mutex_lock(&db_list
.lock
);
346 list_add(&dmabuf
->list_node
, &db_list
.head
);
347 mutex_unlock(&db_list
.lock
);
351 EXPORT_SYMBOL_GPL(dma_buf_export
);
354 * dma_buf_fd - returns a file descriptor for the given dma_buf
355 * @dmabuf: [in] pointer to dma_buf for which fd is required.
356 * @flags: [in] flags to give to fd
358 * On success, returns an associated 'fd'. Else, returns error.
360 int dma_buf_fd(struct dma_buf
*dmabuf
, int flags
)
364 if (!dmabuf
|| !dmabuf
->file
)
367 fd
= get_unused_fd_flags(flags
);
371 fd_install(fd
, dmabuf
->file
);
375 EXPORT_SYMBOL_GPL(dma_buf_fd
);
378 * dma_buf_get - returns the dma_buf structure related to an fd
379 * @fd: [in] fd associated with the dma_buf to be returned
381 * On success, returns the dma_buf structure associated with an fd; uses
382 * file's refcounting done by fget to increase refcount. returns ERR_PTR
385 struct dma_buf
*dma_buf_get(int fd
)
392 return ERR_PTR(-EBADF
);
394 if (!is_dma_buf_file(file
)) {
396 return ERR_PTR(-EINVAL
);
399 return file
->private_data
;
401 EXPORT_SYMBOL_GPL(dma_buf_get
);
404 * dma_buf_put - decreases refcount of the buffer
405 * @dmabuf: [in] buffer to reduce refcount of
407 * Uses file's refcounting done implicitly by fput()
409 void dma_buf_put(struct dma_buf
*dmabuf
)
411 if (WARN_ON(!dmabuf
|| !dmabuf
->file
))
416 EXPORT_SYMBOL_GPL(dma_buf_put
);
419 * dma_buf_attach - Add the device to dma_buf's attachments list; optionally,
420 * calls attach() of dma_buf_ops to allow device-specific attach functionality
421 * @dmabuf: [in] buffer to attach device to.
422 * @dev: [in] device to be attached.
424 * Returns struct dma_buf_attachment * for this attachment; returns ERR_PTR on
427 struct dma_buf_attachment
*dma_buf_attach(struct dma_buf
*dmabuf
,
430 struct dma_buf_attachment
*attach
;
433 if (WARN_ON(!dmabuf
|| !dev
))
434 return ERR_PTR(-EINVAL
);
436 attach
= kzalloc(sizeof(struct dma_buf_attachment
), GFP_KERNEL
);
438 return ERR_PTR(-ENOMEM
);
441 attach
->dmabuf
= dmabuf
;
443 mutex_lock(&dmabuf
->lock
);
445 if (dmabuf
->ops
->attach
) {
446 ret
= dmabuf
->ops
->attach(dmabuf
, dev
, attach
);
450 list_add(&attach
->node
, &dmabuf
->attachments
);
452 mutex_unlock(&dmabuf
->lock
);
457 mutex_unlock(&dmabuf
->lock
);
460 EXPORT_SYMBOL_GPL(dma_buf_attach
);
463 * dma_buf_detach - Remove the given attachment from dmabuf's attachments list;
464 * optionally calls detach() of dma_buf_ops for device-specific detach
465 * @dmabuf: [in] buffer to detach from.
466 * @attach: [in] attachment to be detached; is free'd after this call.
469 void dma_buf_detach(struct dma_buf
*dmabuf
, struct dma_buf_attachment
*attach
)
471 if (WARN_ON(!dmabuf
|| !attach
))
474 mutex_lock(&dmabuf
->lock
);
475 list_del(&attach
->node
);
476 if (dmabuf
->ops
->detach
)
477 dmabuf
->ops
->detach(dmabuf
, attach
);
479 mutex_unlock(&dmabuf
->lock
);
482 EXPORT_SYMBOL_GPL(dma_buf_detach
);
485 * dma_buf_map_attachment - Returns the scatterlist table of the attachment;
486 * mapped into _device_ address space. Is a wrapper for map_dma_buf() of the
488 * @attach: [in] attachment whose scatterlist is to be returned
489 * @direction: [in] direction of DMA transfer
491 * Returns sg_table containing the scatterlist to be returned; returns ERR_PTR
494 struct sg_table
*dma_buf_map_attachment(struct dma_buf_attachment
*attach
,
495 enum dma_data_direction direction
)
497 struct sg_table
*sg_table
= ERR_PTR(-EINVAL
);
501 if (WARN_ON(!attach
|| !attach
->dmabuf
))
502 return ERR_PTR(-EINVAL
);
504 sg_table
= attach
->dmabuf
->ops
->map_dma_buf(attach
, direction
);
506 sg_table
= ERR_PTR(-ENOMEM
);
510 EXPORT_SYMBOL_GPL(dma_buf_map_attachment
);
513 * dma_buf_unmap_attachment - unmaps and decreases usecount of the buffer;might
514 * deallocate the scatterlist associated. Is a wrapper for unmap_dma_buf() of
516 * @attach: [in] attachment to unmap buffer from
517 * @sg_table: [in] scatterlist info of the buffer to unmap
518 * @direction: [in] direction of DMA transfer
521 void dma_buf_unmap_attachment(struct dma_buf_attachment
*attach
,
522 struct sg_table
*sg_table
,
523 enum dma_data_direction direction
)
527 if (WARN_ON(!attach
|| !attach
->dmabuf
|| !sg_table
))
530 attach
->dmabuf
->ops
->unmap_dma_buf(attach
, sg_table
,
533 EXPORT_SYMBOL_GPL(dma_buf_unmap_attachment
);
537 * dma_buf_begin_cpu_access - Must be called before accessing a dma_buf from the
538 * cpu in the kernel context. Calls begin_cpu_access to allow exporter-specific
539 * preparations. Coherency is only guaranteed in the specified range for the
540 * specified access direction.
541 * @dmabuf: [in] buffer to prepare cpu access for.
542 * @start: [in] start of range for cpu access.
543 * @len: [in] length of range for cpu access.
544 * @direction: [in] length of range for cpu access.
546 * Can return negative error values, returns 0 on success.
548 int dma_buf_begin_cpu_access(struct dma_buf
*dmabuf
, size_t start
, size_t len
,
549 enum dma_data_direction direction
)
553 if (WARN_ON(!dmabuf
))
556 if (dmabuf
->ops
->begin_cpu_access
)
557 ret
= dmabuf
->ops
->begin_cpu_access(dmabuf
, start
,
562 EXPORT_SYMBOL_GPL(dma_buf_begin_cpu_access
);
565 * dma_buf_end_cpu_access - Must be called after accessing a dma_buf from the
566 * cpu in the kernel context. Calls end_cpu_access to allow exporter-specific
567 * actions. Coherency is only guaranteed in the specified range for the
568 * specified access direction.
569 * @dmabuf: [in] buffer to complete cpu access for.
570 * @start: [in] start of range for cpu access.
571 * @len: [in] length of range for cpu access.
572 * @direction: [in] length of range for cpu access.
574 * This call must always succeed.
576 void dma_buf_end_cpu_access(struct dma_buf
*dmabuf
, size_t start
, size_t len
,
577 enum dma_data_direction direction
)
581 if (dmabuf
->ops
->end_cpu_access
)
582 dmabuf
->ops
->end_cpu_access(dmabuf
, start
, len
, direction
);
584 EXPORT_SYMBOL_GPL(dma_buf_end_cpu_access
);
587 * dma_buf_kmap_atomic - Map a page of the buffer object into kernel address
588 * space. The same restrictions as for kmap_atomic and friends apply.
589 * @dmabuf: [in] buffer to map page from.
590 * @page_num: [in] page in PAGE_SIZE units to map.
592 * This call must always succeed, any necessary preparations that might fail
593 * need to be done in begin_cpu_access.
595 void *dma_buf_kmap_atomic(struct dma_buf
*dmabuf
, unsigned long page_num
)
599 return dmabuf
->ops
->kmap_atomic(dmabuf
, page_num
);
601 EXPORT_SYMBOL_GPL(dma_buf_kmap_atomic
);
604 * dma_buf_kunmap_atomic - Unmap a page obtained by dma_buf_kmap_atomic.
605 * @dmabuf: [in] buffer to unmap page from.
606 * @page_num: [in] page in PAGE_SIZE units to unmap.
607 * @vaddr: [in] kernel space pointer obtained from dma_buf_kmap_atomic.
609 * This call must always succeed.
611 void dma_buf_kunmap_atomic(struct dma_buf
*dmabuf
, unsigned long page_num
,
616 if (dmabuf
->ops
->kunmap_atomic
)
617 dmabuf
->ops
->kunmap_atomic(dmabuf
, page_num
, vaddr
);
619 EXPORT_SYMBOL_GPL(dma_buf_kunmap_atomic
);
622 * dma_buf_kmap - Map a page of the buffer object into kernel address space. The
623 * same restrictions as for kmap and friends apply.
624 * @dmabuf: [in] buffer to map page from.
625 * @page_num: [in] page in PAGE_SIZE units to map.
627 * This call must always succeed, any necessary preparations that might fail
628 * need to be done in begin_cpu_access.
630 void *dma_buf_kmap(struct dma_buf
*dmabuf
, unsigned long page_num
)
634 return dmabuf
->ops
->kmap(dmabuf
, page_num
);
636 EXPORT_SYMBOL_GPL(dma_buf_kmap
);
639 * dma_buf_kunmap - Unmap a page obtained by dma_buf_kmap.
640 * @dmabuf: [in] buffer to unmap page from.
641 * @page_num: [in] page in PAGE_SIZE units to unmap.
642 * @vaddr: [in] kernel space pointer obtained from dma_buf_kmap.
644 * This call must always succeed.
646 void dma_buf_kunmap(struct dma_buf
*dmabuf
, unsigned long page_num
,
651 if (dmabuf
->ops
->kunmap
)
652 dmabuf
->ops
->kunmap(dmabuf
, page_num
, vaddr
);
654 EXPORT_SYMBOL_GPL(dma_buf_kunmap
);
658 * dma_buf_mmap - Setup up a userspace mmap with the given vma
659 * @dmabuf: [in] buffer that should back the vma
660 * @vma: [in] vma for the mmap
661 * @pgoff: [in] offset in pages where this mmap should start within the
664 * This function adjusts the passed in vma so that it points at the file of the
665 * dma_buf operation. It also adjusts the starting pgoff and does bounds
666 * checking on the size of the vma. Then it calls the exporters mmap function to
667 * set up the mapping.
669 * Can return negative error values, returns 0 on success.
671 int dma_buf_mmap(struct dma_buf
*dmabuf
, struct vm_area_struct
*vma
,
674 struct file
*oldfile
;
677 if (WARN_ON(!dmabuf
|| !vma
))
680 /* check for offset overflow */
681 if (pgoff
+ ((vma
->vm_end
- vma
->vm_start
) >> PAGE_SHIFT
) < pgoff
)
684 /* check for overflowing the buffer's size */
685 if (pgoff
+ ((vma
->vm_end
- vma
->vm_start
) >> PAGE_SHIFT
) >
686 dmabuf
->size
>> PAGE_SHIFT
)
689 /* readjust the vma */
690 get_file(dmabuf
->file
);
691 oldfile
= vma
->vm_file
;
692 vma
->vm_file
= dmabuf
->file
;
693 vma
->vm_pgoff
= pgoff
;
695 ret
= dmabuf
->ops
->mmap(dmabuf
, vma
);
697 /* restore old parameters on failure */
698 vma
->vm_file
= oldfile
;
707 EXPORT_SYMBOL_GPL(dma_buf_mmap
);
710 * dma_buf_vmap - Create virtual mapping for the buffer object into kernel
711 * address space. Same restrictions as for vmap and friends apply.
712 * @dmabuf: [in] buffer to vmap
714 * This call may fail due to lack of virtual mapping address space.
715 * These calls are optional in drivers. The intended use for them
716 * is for mapping objects linear in kernel space for high use objects.
717 * Please attempt to use kmap/kunmap before thinking about these interfaces.
719 * Returns NULL on error.
721 void *dma_buf_vmap(struct dma_buf
*dmabuf
)
725 if (WARN_ON(!dmabuf
))
728 if (!dmabuf
->ops
->vmap
)
731 mutex_lock(&dmabuf
->lock
);
732 if (dmabuf
->vmapping_counter
) {
733 dmabuf
->vmapping_counter
++;
734 BUG_ON(!dmabuf
->vmap_ptr
);
735 ptr
= dmabuf
->vmap_ptr
;
739 BUG_ON(dmabuf
->vmap_ptr
);
741 ptr
= dmabuf
->ops
->vmap(dmabuf
);
742 if (WARN_ON_ONCE(IS_ERR(ptr
)))
747 dmabuf
->vmap_ptr
= ptr
;
748 dmabuf
->vmapping_counter
= 1;
751 mutex_unlock(&dmabuf
->lock
);
754 EXPORT_SYMBOL_GPL(dma_buf_vmap
);
757 * dma_buf_vunmap - Unmap a vmap obtained by dma_buf_vmap.
758 * @dmabuf: [in] buffer to vunmap
759 * @vaddr: [in] vmap to vunmap
761 void dma_buf_vunmap(struct dma_buf
*dmabuf
, void *vaddr
)
763 if (WARN_ON(!dmabuf
))
766 BUG_ON(!dmabuf
->vmap_ptr
);
767 BUG_ON(dmabuf
->vmapping_counter
== 0);
768 BUG_ON(dmabuf
->vmap_ptr
!= vaddr
);
770 mutex_lock(&dmabuf
->lock
);
771 if (--dmabuf
->vmapping_counter
== 0) {
772 if (dmabuf
->ops
->vunmap
)
773 dmabuf
->ops
->vunmap(dmabuf
, vaddr
);
774 dmabuf
->vmap_ptr
= NULL
;
776 mutex_unlock(&dmabuf
->lock
);
778 EXPORT_SYMBOL_GPL(dma_buf_vunmap
);
780 #ifdef CONFIG_DEBUG_FS
781 static int dma_buf_describe(struct seq_file
*s
)
784 struct dma_buf
*buf_obj
;
785 struct dma_buf_attachment
*attach_obj
;
786 int count
= 0, attach_count
;
789 ret
= mutex_lock_interruptible(&db_list
.lock
);
794 seq_puts(s
, "\nDma-buf Objects:\n");
795 seq_puts(s
, "size\tflags\tmode\tcount\texp_name\n");
797 list_for_each_entry(buf_obj
, &db_list
.head
, list_node
) {
798 ret
= mutex_lock_interruptible(&buf_obj
->lock
);
802 "\tERROR locking buffer object: skipping\n");
806 seq_printf(s
, "%08zu\t%08x\t%08x\t%08ld\t%s\n",
808 buf_obj
->file
->f_flags
, buf_obj
->file
->f_mode
,
809 file_count(buf_obj
->file
),
812 seq_puts(s
, "\tAttached Devices:\n");
815 list_for_each_entry(attach_obj
, &buf_obj
->attachments
, node
) {
818 seq_printf(s
, "%s\n", dev_name(attach_obj
->dev
));
822 seq_printf(s
, "Total %d devices attached\n\n",
826 size
+= buf_obj
->size
;
827 mutex_unlock(&buf_obj
->lock
);
830 seq_printf(s
, "\nTotal %d objects, %zu bytes\n", count
, size
);
832 mutex_unlock(&db_list
.lock
);
836 static int dma_buf_show(struct seq_file
*s
, void *unused
)
838 void (*func
)(struct seq_file
*) = s
->private;
844 static int dma_buf_debug_open(struct inode
*inode
, struct file
*file
)
846 return single_open(file
, dma_buf_show
, inode
->i_private
);
849 static const struct file_operations dma_buf_debug_fops
= {
850 .open
= dma_buf_debug_open
,
853 .release
= single_release
,
856 static struct dentry
*dma_buf_debugfs_dir
;
858 static int dma_buf_init_debugfs(void)
862 dma_buf_debugfs_dir
= debugfs_create_dir("dma_buf", NULL
);
864 if (IS_ERR(dma_buf_debugfs_dir
)) {
865 err
= PTR_ERR(dma_buf_debugfs_dir
);
866 dma_buf_debugfs_dir
= NULL
;
870 err
= dma_buf_debugfs_create_file("bufinfo", dma_buf_describe
);
873 pr_debug("dma_buf: debugfs: failed to create node bufinfo\n");
878 static void dma_buf_uninit_debugfs(void)
880 if (dma_buf_debugfs_dir
)
881 debugfs_remove_recursive(dma_buf_debugfs_dir
);
884 int dma_buf_debugfs_create_file(const char *name
,
885 int (*write
)(struct seq_file
*))
889 d
= debugfs_create_file(name
, S_IRUGO
, dma_buf_debugfs_dir
,
890 write
, &dma_buf_debug_fops
);
892 return PTR_ERR_OR_ZERO(d
);
895 static inline int dma_buf_init_debugfs(void)
899 static inline void dma_buf_uninit_debugfs(void)
904 static int __init
dma_buf_init(void)
906 mutex_init(&db_list
.lock
);
907 INIT_LIST_HEAD(&db_list
.head
);
908 dma_buf_init_debugfs();
911 subsys_initcall(dma_buf_init
);
913 static void __exit
dma_buf_deinit(void)
915 dma_buf_uninit_debugfs();
917 __exitcall(dma_buf_deinit
);