Thomas Gleixner | caab277 | 2019-06-03 07:44:50 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 2 | /* |
| 3 | * Framework for buffer objects that can be shared across devices/subsystems. |
| 4 | * |
| 5 | * Copyright(C) 2011 Linaro Limited. All rights reserved. |
| 6 | * Author: Sumit Semwal <sumit.semwal@ti.com> |
| 7 | * |
| 8 | * Many thanks to linaro-mm-sig list, and specially |
| 9 | * Arnd Bergmann <arnd@arndb.de>, Rob Clark <rob@ti.com> and |
| 10 | * Daniel Vetter <daniel@ffwll.ch> for their support in creation and |
| 11 | * refining of this idea. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 12 | */ |
| 13 | |
| 14 | #include <linux/fs.h> |
| 15 | #include <linux/slab.h> |
| 16 | #include <linux/dma-buf.h> |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 17 | #include <linux/dma-fence.h> |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 18 | #include <linux/anon_inodes.h> |
| 19 | #include <linux/export.h> |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 20 | #include <linux/debugfs.h> |
Sumit Semwal | 9abdffe | 2015-05-05 14:56:15 +0530 | [diff] [blame] | 21 | #include <linux/module.h> |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 22 | #include <linux/seq_file.h> |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 23 | #include <linux/poll.h> |
Christian König | 52791ee | 2019-08-11 10:06:32 +0200 | [diff] [blame] | 24 | #include <linux/dma-resv.h> |
Muhammad Falak R Wani | b02da6f | 2016-05-23 17:08:42 +0530 | [diff] [blame] | 25 | #include <linux/mm.h> |
Greg Hackmann | ed63bb1 | 2019-06-13 15:34:06 -0700 | [diff] [blame] | 26 | #include <linux/mount.h> |
Linus Torvalds | 933a90b | 2019-07-19 10:42:02 -0700 | [diff] [blame] | 27 | #include <linux/pseudo_fs.h> |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 28 | |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 29 | #include <uapi/linux/dma-buf.h> |
Greg Hackmann | ed63bb1 | 2019-06-13 15:34:06 -0700 | [diff] [blame] | 30 | #include <uapi/linux/magic.h> |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 31 | |
Hridya Valsaraju | bdb8d06 | 2021-06-03 14:47:51 -0700 | [diff] [blame] | 32 | #include "dma-buf-sysfs-stats.h" |
| 33 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 34 | static inline int is_dma_buf_file(struct file *); |
| 35 | |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 36 | struct dma_buf_list { |
| 37 | struct list_head head; |
| 38 | struct mutex lock; |
| 39 | }; |
| 40 | |
| 41 | static struct dma_buf_list db_list; |
| 42 | |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 43 | static char *dmabuffs_dname(struct dentry *dentry, char *buffer, int buflen) |
| 44 | { |
| 45 | struct dma_buf *dmabuf; |
| 46 | char name[DMA_BUF_NAME_LEN]; |
| 47 | size_t ret = 0; |
| 48 | |
| 49 | dmabuf = dentry->d_fsdata; |
Charan Teja Kalla | 6348dd2 | 2020-06-19 17:27:19 +0530 | [diff] [blame] | 50 | spin_lock(&dmabuf->name_lock); |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 51 | if (dmabuf->name) |
| 52 | ret = strlcpy(name, dmabuf->name, DMA_BUF_NAME_LEN); |
Charan Teja Kalla | 6348dd2 | 2020-06-19 17:27:19 +0530 | [diff] [blame] | 53 | spin_unlock(&dmabuf->name_lock); |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 54 | |
| 55 | return dynamic_dname(dentry, buffer, buflen, "/%s:%s", |
| 56 | dentry->d_name.name, ret > 0 ? name : ""); |
| 57 | } |
| 58 | |
Sumit Semwal | 4ab59c3 | 2020-06-11 17:14:18 +0530 | [diff] [blame] | 59 | static void dma_buf_release(struct dentry *dentry) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 60 | { |
| 61 | struct dma_buf *dmabuf; |
| 62 | |
Sumit Semwal | 4ab59c3 | 2020-06-11 17:14:18 +0530 | [diff] [blame] | 63 | dmabuf = dentry->d_fsdata; |
Charan Teja Reddy | 19a508b | 2020-09-18 16:02:31 +0530 | [diff] [blame] | 64 | if (unlikely(!dmabuf)) |
| 65 | return; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 66 | |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 67 | BUG_ON(dmabuf->vmapping_counter); |
| 68 | |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 69 | /* |
Michel Dänzer | ff2d238 | 2021-07-23 09:58:57 +0200 | [diff] [blame] | 70 | * If you hit this BUG() it could mean: |
| 71 | * * There's a file reference imbalance in dma_buf_poll / dma_buf_poll_cb or somewhere else |
| 72 | * * dmabuf->cb_in/out.active are non-0 despite no pending fence callback |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 73 | */ |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 74 | BUG_ON(dmabuf->cb_in.active || dmabuf->cb_out.active); |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 75 | |
Guangming Cao | 63c57e8 | 2021-07-20 18:31:58 +0800 | [diff] [blame] | 76 | dma_buf_stats_teardown(dmabuf); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 77 | dmabuf->ops->release(dmabuf); |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 78 | |
Christian König | 52791ee | 2019-08-11 10:06:32 +0200 | [diff] [blame] | 79 | if (dmabuf->resv == (struct dma_resv *)&dmabuf[1]) |
| 80 | dma_resv_fini(dmabuf->resv); |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 81 | |
Charan Teja Reddy | f492283 | 2021-07-23 18:01:08 +0530 | [diff] [blame] | 82 | WARN_ON(!list_empty(&dmabuf->attachments)); |
Sumit Semwal | 9abdffe | 2015-05-05 14:56:15 +0530 | [diff] [blame] | 83 | module_put(dmabuf->owner); |
Cong Wang | d1f3722 | 2019-12-26 22:32:04 -0800 | [diff] [blame] | 84 | kfree(dmabuf->name); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 85 | kfree(dmabuf); |
Sumit Semwal | 4ab59c3 | 2020-06-11 17:14:18 +0530 | [diff] [blame] | 86 | } |
| 87 | |
Charan Teja Reddy | 05cd846 | 2021-01-05 20:06:39 +0530 | [diff] [blame] | 88 | static int dma_buf_file_release(struct inode *inode, struct file *file) |
| 89 | { |
| 90 | struct dma_buf *dmabuf; |
| 91 | |
| 92 | if (!is_dma_buf_file(file)) |
| 93 | return -EINVAL; |
| 94 | |
| 95 | dmabuf = file->private_data; |
| 96 | |
| 97 | mutex_lock(&db_list.lock); |
| 98 | list_del(&dmabuf->list_node); |
| 99 | mutex_unlock(&db_list.lock); |
| 100 | |
| 101 | return 0; |
| 102 | } |
| 103 | |
Sumit Semwal | 4ab59c3 | 2020-06-11 17:14:18 +0530 | [diff] [blame] | 104 | static const struct dentry_operations dma_buf_dentry_ops = { |
| 105 | .d_dname = dmabuffs_dname, |
| 106 | .d_release = dma_buf_release, |
| 107 | }; |
| 108 | |
| 109 | static struct vfsmount *dma_buf_mnt; |
| 110 | |
| 111 | static int dma_buf_fs_init_context(struct fs_context *fc) |
| 112 | { |
| 113 | struct pseudo_fs_context *ctx; |
| 114 | |
| 115 | ctx = init_pseudo(fc, DMA_BUF_MAGIC); |
| 116 | if (!ctx) |
| 117 | return -ENOMEM; |
| 118 | ctx->dops = &dma_buf_dentry_ops; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 119 | return 0; |
| 120 | } |
| 121 | |
Sumit Semwal | 4ab59c3 | 2020-06-11 17:14:18 +0530 | [diff] [blame] | 122 | static struct file_system_type dma_buf_fs_type = { |
| 123 | .name = "dmabuf", |
| 124 | .init_fs_context = dma_buf_fs_init_context, |
| 125 | .kill_sb = kill_anon_super, |
| 126 | }; |
| 127 | |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 128 | static int dma_buf_mmap_internal(struct file *file, struct vm_area_struct *vma) |
| 129 | { |
| 130 | struct dma_buf *dmabuf; |
| 131 | |
| 132 | if (!is_dma_buf_file(file)) |
| 133 | return -EINVAL; |
| 134 | |
| 135 | dmabuf = file->private_data; |
| 136 | |
Andrew F. Davis | e3a9d6c | 2019-03-29 11:52:01 -0500 | [diff] [blame] | 137 | /* check if buffer supports mmap */ |
| 138 | if (!dmabuf->ops->mmap) |
| 139 | return -EINVAL; |
| 140 | |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 141 | /* check for overflowing the buffer's size */ |
Muhammad Falak R Wani | b02da6f | 2016-05-23 17:08:42 +0530 | [diff] [blame] | 142 | if (vma->vm_pgoff + vma_pages(vma) > |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 143 | dmabuf->size >> PAGE_SHIFT) |
| 144 | return -EINVAL; |
| 145 | |
| 146 | return dmabuf->ops->mmap(dmabuf, vma); |
| 147 | } |
| 148 | |
Christopher James Halse Rogers | 19e8697 | 2013-09-10 11:36:45 +0530 | [diff] [blame] | 149 | static loff_t dma_buf_llseek(struct file *file, loff_t offset, int whence) |
| 150 | { |
| 151 | struct dma_buf *dmabuf; |
| 152 | loff_t base; |
| 153 | |
| 154 | if (!is_dma_buf_file(file)) |
| 155 | return -EBADF; |
| 156 | |
| 157 | dmabuf = file->private_data; |
| 158 | |
| 159 | /* only support discovering the end of the buffer, |
| 160 | but also allow SEEK_SET to maintain the idiomatic |
| 161 | SEEK_END(0), SEEK_CUR(0) pattern */ |
| 162 | if (whence == SEEK_END) |
| 163 | base = dmabuf->size; |
| 164 | else if (whence == SEEK_SET) |
| 165 | base = 0; |
| 166 | else |
| 167 | return -EINVAL; |
| 168 | |
| 169 | if (offset != 0) |
| 170 | return -EINVAL; |
| 171 | |
| 172 | return base + offset; |
| 173 | } |
| 174 | |
Daniel Vetter | e7e21c7 | 2016-12-09 22:50:55 +0100 | [diff] [blame] | 175 | /** |
Daniel Vetter | 102514e | 2020-06-12 09:05:35 +0200 | [diff] [blame] | 176 | * DOC: implicit fence polling |
Daniel Vetter | e7e21c7 | 2016-12-09 22:50:55 +0100 | [diff] [blame] | 177 | * |
| 178 | * To support cross-device and cross-driver synchronization of buffer access |
Daniel Vetter | 102514e | 2020-06-12 09:05:35 +0200 | [diff] [blame] | 179 | * implicit fences (represented internally in the kernel with &struct dma_fence) |
| 180 | * can be attached to a &dma_buf. The glue for that and a few related things are |
Christian König | 52791ee | 2019-08-11 10:06:32 +0200 | [diff] [blame] | 181 | * provided in the &dma_resv structure. |
Daniel Vetter | e7e21c7 | 2016-12-09 22:50:55 +0100 | [diff] [blame] | 182 | * |
| 183 | * Userspace can query the state of these implicitly tracked fences using poll() |
| 184 | * and related system calls: |
| 185 | * |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 186 | * - Checking for EPOLLIN, i.e. read access, can be use to query the state of the |
Daniel Vetter | e7e21c7 | 2016-12-09 22:50:55 +0100 | [diff] [blame] | 187 | * most recent write or exclusive fence. |
| 188 | * |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 189 | * - Checking for EPOLLOUT, i.e. write access, can be used to query the state of |
Daniel Vetter | e7e21c7 | 2016-12-09 22:50:55 +0100 | [diff] [blame] | 190 | * all attached fences, shared and exclusive ones. |
| 191 | * |
| 192 | * Note that this only signals the completion of the respective fences, i.e. the |
| 193 | * DMA transfers are complete. Cache flushing and any other necessary |
| 194 | * preparations before CPU access can begin still need to happen. |
| 195 | */ |
| 196 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 197 | static void dma_buf_poll_cb(struct dma_fence *fence, struct dma_fence_cb *cb) |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 198 | { |
| 199 | struct dma_buf_poll_cb_t *dcb = (struct dma_buf_poll_cb_t *)cb; |
Michel Dänzer | ff2d238 | 2021-07-23 09:58:57 +0200 | [diff] [blame] | 200 | struct dma_buf *dmabuf = container_of(dcb->poll, struct dma_buf, poll); |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 201 | unsigned long flags; |
| 202 | |
| 203 | spin_lock_irqsave(&dcb->poll->lock, flags); |
| 204 | wake_up_locked_poll(dcb->poll, dcb->active); |
| 205 | dcb->active = 0; |
| 206 | spin_unlock_irqrestore(&dcb->poll->lock, flags); |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 207 | dma_fence_put(fence); |
Michel Dänzer | ff2d238 | 2021-07-23 09:58:57 +0200 | [diff] [blame] | 208 | /* Paired with get_file in dma_buf_poll */ |
| 209 | fput(dmabuf->file); |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 210 | } |
| 211 | |
Christian König | 0a42016 | 2021-09-24 11:31:22 +0200 | [diff] [blame] | 212 | static bool dma_buf_poll_add_cb(struct dma_resv *resv, bool write, |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 213 | struct dma_buf_poll_cb_t *dcb) |
| 214 | { |
Christian König | 0a42016 | 2021-09-24 11:31:22 +0200 | [diff] [blame] | 215 | struct dma_resv_iter cursor; |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 216 | struct dma_fence *fence; |
Christian König | 0a42016 | 2021-09-24 11:31:22 +0200 | [diff] [blame] | 217 | int r; |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 218 | |
Christian König | 0a42016 | 2021-09-24 11:31:22 +0200 | [diff] [blame] | 219 | dma_resv_for_each_fence(&cursor, resv, write, fence) { |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 220 | dma_fence_get(fence); |
| 221 | r = dma_fence_add_callback(fence, &dcb->cb, dma_buf_poll_cb); |
| 222 | if (!r) |
| 223 | return true; |
| 224 | dma_fence_put(fence); |
| 225 | } |
| 226 | |
| 227 | return false; |
| 228 | } |
| 229 | |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 230 | static __poll_t dma_buf_poll(struct file *file, poll_table *poll) |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 231 | { |
| 232 | struct dma_buf *dmabuf; |
Christian König | 52791ee | 2019-08-11 10:06:32 +0200 | [diff] [blame] | 233 | struct dma_resv *resv; |
Al Viro | 0169943 | 2017-07-03 03:14:15 -0400 | [diff] [blame] | 234 | __poll_t events; |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 235 | |
| 236 | dmabuf = file->private_data; |
| 237 | if (!dmabuf || !dmabuf->resv) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 238 | return EPOLLERR; |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 239 | |
| 240 | resv = dmabuf->resv; |
| 241 | |
| 242 | poll_wait(file, &dmabuf->poll, poll); |
| 243 | |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 244 | events = poll_requested_events(poll) & (EPOLLIN | EPOLLOUT); |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 245 | if (!events) |
| 246 | return 0; |
| 247 | |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 248 | dma_resv_lock(resv, NULL); |
Chris Wilson | b016cd6 | 2019-08-14 19:24:01 +0100 | [diff] [blame] | 249 | |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 250 | if (events & EPOLLOUT) { |
| 251 | struct dma_buf_poll_cb_t *dcb = &dmabuf->cb_out; |
Chris Wilson | b016cd6 | 2019-08-14 19:24:01 +0100 | [diff] [blame] | 252 | |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 253 | /* Check that callback isn't busy */ |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 254 | spin_lock_irq(&dmabuf->poll.lock); |
| 255 | if (dcb->active) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 256 | events &= ~EPOLLOUT; |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 257 | else |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 258 | dcb->active = EPOLLOUT; |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 259 | spin_unlock_irq(&dmabuf->poll.lock); |
| 260 | |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 261 | if (events & EPOLLOUT) { |
Michel Dänzer | ff2d238 | 2021-07-23 09:58:57 +0200 | [diff] [blame] | 262 | /* Paired with fput in dma_buf_poll_cb */ |
| 263 | get_file(dmabuf->file); |
| 264 | |
Christian König | 0a42016 | 2021-09-24 11:31:22 +0200 | [diff] [blame] | 265 | if (!dma_buf_poll_add_cb(resv, true, dcb)) |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 266 | /* No callback queued, wake up any other waiters */ |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 267 | dma_buf_poll_cb(NULL, &dcb->cb); |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 268 | else |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 269 | events &= ~EPOLLOUT; |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 270 | } |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 271 | } |
| 272 | |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 273 | if (events & EPOLLIN) { |
| 274 | struct dma_buf_poll_cb_t *dcb = &dmabuf->cb_in; |
| 275 | |
| 276 | /* Check that callback isn't busy */ |
| 277 | spin_lock_irq(&dmabuf->poll.lock); |
| 278 | if (dcb->active) |
| 279 | events &= ~EPOLLIN; |
| 280 | else |
| 281 | dcb->active = EPOLLIN; |
| 282 | spin_unlock_irq(&dmabuf->poll.lock); |
| 283 | |
| 284 | if (events & EPOLLIN) { |
Michel Dänzer | ff2d238 | 2021-07-23 09:58:57 +0200 | [diff] [blame] | 285 | /* Paired with fput in dma_buf_poll_cb */ |
| 286 | get_file(dmabuf->file); |
| 287 | |
Christian König | 0a42016 | 2021-09-24 11:31:22 +0200 | [diff] [blame] | 288 | if (!dma_buf_poll_add_cb(resv, false, dcb)) |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 289 | /* No callback queued, wake up any other waiters */ |
| 290 | dma_buf_poll_cb(NULL, &dcb->cb); |
| 291 | else |
| 292 | events &= ~EPOLLIN; |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | dma_resv_unlock(resv); |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 297 | return events; |
| 298 | } |
| 299 | |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 300 | /** |
| 301 | * dma_buf_set_name - Set a name to a specific dma_buf to track the usage. |
Guangming Cao | e73c317 | 2021-10-14 18:25:51 +0800 | [diff] [blame] | 302 | * It could support changing the name of the dma-buf if the same |
| 303 | * piece of memory is used for multiple purpose between different devices. |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 304 | * |
Krzysztof Kozlowski | 6d3ba80 | 2020-08-19 19:51:33 +0200 | [diff] [blame] | 305 | * @dmabuf: [in] dmabuf buffer that will be renamed. |
| 306 | * @buf: [in] A piece of userspace memory that contains the name of |
| 307 | * the dma-buf. |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 308 | * |
| 309 | * Returns 0 on success. If the dma-buf buffer is already attached to |
| 310 | * devices, return -EBUSY. |
| 311 | * |
| 312 | */ |
| 313 | static long dma_buf_set_name(struct dma_buf *dmabuf, const char __user *buf) |
| 314 | { |
| 315 | char *name = strndup_user(buf, DMA_BUF_NAME_LEN); |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 316 | |
| 317 | if (IS_ERR(name)) |
| 318 | return PTR_ERR(name); |
| 319 | |
Charan Teja Kalla | 6348dd2 | 2020-06-19 17:27:19 +0530 | [diff] [blame] | 320 | spin_lock(&dmabuf->name_lock); |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 321 | kfree(dmabuf->name); |
| 322 | dmabuf->name = name; |
Charan Teja Kalla | 6348dd2 | 2020-06-19 17:27:19 +0530 | [diff] [blame] | 323 | spin_unlock(&dmabuf->name_lock); |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 324 | |
Guangming Cao | e73c317 | 2021-10-14 18:25:51 +0800 | [diff] [blame] | 325 | return 0; |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 326 | } |
| 327 | |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 328 | static long dma_buf_ioctl(struct file *file, |
| 329 | unsigned int cmd, unsigned long arg) |
| 330 | { |
| 331 | struct dma_buf *dmabuf; |
| 332 | struct dma_buf_sync sync; |
| 333 | enum dma_data_direction direction; |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 334 | int ret; |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 335 | |
| 336 | dmabuf = file->private_data; |
| 337 | |
| 338 | switch (cmd) { |
| 339 | case DMA_BUF_IOCTL_SYNC: |
| 340 | if (copy_from_user(&sync, (void __user *) arg, sizeof(sync))) |
| 341 | return -EFAULT; |
| 342 | |
| 343 | if (sync.flags & ~DMA_BUF_SYNC_VALID_FLAGS_MASK) |
| 344 | return -EINVAL; |
| 345 | |
| 346 | switch (sync.flags & DMA_BUF_SYNC_RW) { |
| 347 | case DMA_BUF_SYNC_READ: |
| 348 | direction = DMA_FROM_DEVICE; |
| 349 | break; |
| 350 | case DMA_BUF_SYNC_WRITE: |
| 351 | direction = DMA_TO_DEVICE; |
| 352 | break; |
| 353 | case DMA_BUF_SYNC_RW: |
| 354 | direction = DMA_BIDIRECTIONAL; |
| 355 | break; |
| 356 | default: |
| 357 | return -EINVAL; |
| 358 | } |
| 359 | |
| 360 | if (sync.flags & DMA_BUF_SYNC_END) |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 361 | ret = dma_buf_end_cpu_access(dmabuf, direction); |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 362 | else |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 363 | ret = dma_buf_begin_cpu_access(dmabuf, direction); |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 364 | |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 365 | return ret; |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 366 | |
Daniel Vetter | a5bff92 | 2020-04-07 15:30:02 +0200 | [diff] [blame] | 367 | case DMA_BUF_SET_NAME_A: |
| 368 | case DMA_BUF_SET_NAME_B: |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 369 | return dma_buf_set_name(dmabuf, (const char __user *)arg); |
| 370 | |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 371 | default: |
| 372 | return -ENOTTY; |
| 373 | } |
| 374 | } |
| 375 | |
Greg Hackmann | bcc0711 | 2019-06-13 15:34:08 -0700 | [diff] [blame] | 376 | static void dma_buf_show_fdinfo(struct seq_file *m, struct file *file) |
| 377 | { |
| 378 | struct dma_buf *dmabuf = file->private_data; |
| 379 | |
| 380 | seq_printf(m, "size:\t%zu\n", dmabuf->size); |
| 381 | /* Don't count the temporary reference taken inside procfs seq_show */ |
| 382 | seq_printf(m, "count:\t%ld\n", file_count(dmabuf->file) - 1); |
| 383 | seq_printf(m, "exp_name:\t%s\n", dmabuf->exp_name); |
Charan Teja Kalla | 6348dd2 | 2020-06-19 17:27:19 +0530 | [diff] [blame] | 384 | spin_lock(&dmabuf->name_lock); |
Greg Hackmann | bcc0711 | 2019-06-13 15:34:08 -0700 | [diff] [blame] | 385 | if (dmabuf->name) |
| 386 | seq_printf(m, "name:\t%s\n", dmabuf->name); |
Charan Teja Kalla | 6348dd2 | 2020-06-19 17:27:19 +0530 | [diff] [blame] | 387 | spin_unlock(&dmabuf->name_lock); |
Greg Hackmann | bcc0711 | 2019-06-13 15:34:08 -0700 | [diff] [blame] | 388 | } |
| 389 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 390 | static const struct file_operations dma_buf_fops = { |
Charan Teja Reddy | 05cd846 | 2021-01-05 20:06:39 +0530 | [diff] [blame] | 391 | .release = dma_buf_file_release, |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 392 | .mmap = dma_buf_mmap_internal, |
Christopher James Halse Rogers | 19e8697 | 2013-09-10 11:36:45 +0530 | [diff] [blame] | 393 | .llseek = dma_buf_llseek, |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 394 | .poll = dma_buf_poll, |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 395 | .unlocked_ioctl = dma_buf_ioctl, |
Arnd Bergmann | 1832f2d | 2018-09-11 21:59:08 +0200 | [diff] [blame] | 396 | .compat_ioctl = compat_ptr_ioctl, |
Greg Hackmann | bcc0711 | 2019-06-13 15:34:08 -0700 | [diff] [blame] | 397 | .show_fdinfo = dma_buf_show_fdinfo, |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 398 | }; |
| 399 | |
| 400 | /* |
| 401 | * is_dma_buf_file - Check if struct file* is associated with dma_buf |
| 402 | */ |
| 403 | static inline int is_dma_buf_file(struct file *file) |
| 404 | { |
| 405 | return file->f_op == &dma_buf_fops; |
| 406 | } |
| 407 | |
Greg Hackmann | ed63bb1 | 2019-06-13 15:34:06 -0700 | [diff] [blame] | 408 | static struct file *dma_buf_getfile(struct dma_buf *dmabuf, int flags) |
| 409 | { |
| 410 | struct file *file; |
| 411 | struct inode *inode = alloc_anon_inode(dma_buf_mnt->mnt_sb); |
| 412 | |
| 413 | if (IS_ERR(inode)) |
| 414 | return ERR_CAST(inode); |
| 415 | |
| 416 | inode->i_size = dmabuf->size; |
| 417 | inode_set_bytes(inode, dmabuf->size); |
| 418 | |
| 419 | file = alloc_file_pseudo(inode, dma_buf_mnt, "dmabuf", |
| 420 | flags, &dma_buf_fops); |
| 421 | if (IS_ERR(file)) |
| 422 | goto err_alloc_file; |
| 423 | file->f_flags = flags & (O_ACCMODE | O_NONBLOCK); |
| 424 | file->private_data = dmabuf; |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 425 | file->f_path.dentry->d_fsdata = dmabuf; |
Greg Hackmann | ed63bb1 | 2019-06-13 15:34:06 -0700 | [diff] [blame] | 426 | |
| 427 | return file; |
| 428 | |
| 429 | err_alloc_file: |
| 430 | iput(inode); |
| 431 | return file; |
| 432 | } |
| 433 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 434 | /** |
Daniel Vetter | 2904a8c | 2016-12-09 19:53:07 +0100 | [diff] [blame] | 435 | * DOC: dma buf device access |
| 436 | * |
| 437 | * For device DMA access to a shared DMA buffer the usual sequence of operations |
| 438 | * is fairly simple: |
| 439 | * |
| 440 | * 1. The exporter defines his exporter instance using |
| 441 | * DEFINE_DMA_BUF_EXPORT_INFO() and calls dma_buf_export() to wrap a private |
| 442 | * buffer object into a &dma_buf. It then exports that &dma_buf to userspace |
| 443 | * as a file descriptor by calling dma_buf_fd(). |
| 444 | * |
| 445 | * 2. Userspace passes this file-descriptors to all drivers it wants this buffer |
| 446 | * to share with: First the filedescriptor is converted to a &dma_buf using |
Liviu Dudau | c138782 | 2017-11-01 14:06:30 +0000 | [diff] [blame] | 447 | * dma_buf_get(). Then the buffer is attached to the device using |
Daniel Vetter | 2904a8c | 2016-12-09 19:53:07 +0100 | [diff] [blame] | 448 | * dma_buf_attach(). |
| 449 | * |
| 450 | * Up to this stage the exporter is still free to migrate or reallocate the |
| 451 | * backing storage. |
| 452 | * |
Liviu Dudau | c138782 | 2017-11-01 14:06:30 +0000 | [diff] [blame] | 453 | * 3. Once the buffer is attached to all devices userspace can initiate DMA |
Daniel Vetter | 2904a8c | 2016-12-09 19:53:07 +0100 | [diff] [blame] | 454 | * access to the shared buffer. In the kernel this is done by calling |
| 455 | * dma_buf_map_attachment() and dma_buf_unmap_attachment(). |
| 456 | * |
| 457 | * 4. Once a driver is done with a shared buffer it needs to call |
| 458 | * dma_buf_detach() (after cleaning up any mappings) and then release the |
Daniel Vetter | 85804b7 | 2020-12-11 16:58:41 +0100 | [diff] [blame] | 459 | * reference acquired with dma_buf_get() by calling dma_buf_put(). |
Daniel Vetter | 2904a8c | 2016-12-09 19:53:07 +0100 | [diff] [blame] | 460 | * |
| 461 | * For the detailed semantics exporters are expected to implement see |
| 462 | * &dma_buf_ops. |
| 463 | */ |
| 464 | |
| 465 | /** |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 466 | * dma_buf_export - Creates a new dma_buf, and associates an anon file |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 467 | * with this buffer, so it can be exported. |
| 468 | * Also connect the allocator specific data and ops to the buffer. |
Sumit Semwal | 78df969 | 2013-03-22 18:22:16 +0530 | [diff] [blame] | 469 | * Additionally, provide a name string for exporter; useful in debugging. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 470 | * |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 471 | * @exp_info: [in] holds all the export related information provided |
Daniel Vetter | f641d3b | 2016-12-29 21:48:24 +0100 | [diff] [blame] | 472 | * by the exporter. see &struct dma_buf_export_info |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 473 | * for further details. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 474 | * |
Daniel Vetter | 85804b7 | 2020-12-11 16:58:41 +0100 | [diff] [blame] | 475 | * Returns, on success, a newly created struct dma_buf object, which wraps the |
| 476 | * supplied private data and operations for struct dma_buf_ops. On either |
| 477 | * missing ops, or error in allocating struct dma_buf, will return negative |
| 478 | * error. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 479 | * |
Daniel Vetter | 2904a8c | 2016-12-09 19:53:07 +0100 | [diff] [blame] | 480 | * For most cases the easiest way to create @exp_info is through the |
| 481 | * %DEFINE_DMA_BUF_EXPORT_INFO macro. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 482 | */ |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 483 | struct dma_buf *dma_buf_export(const struct dma_buf_export_info *exp_info) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 484 | { |
| 485 | struct dma_buf *dmabuf; |
Christian König | 52791ee | 2019-08-11 10:06:32 +0200 | [diff] [blame] | 486 | struct dma_resv *resv = exp_info->resv; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 487 | struct file *file; |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 488 | size_t alloc_size = sizeof(struct dma_buf); |
Chris Wilson | a026df4 | 2016-07-18 12:16:22 +0100 | [diff] [blame] | 489 | int ret; |
Jagan Teki | 5136629 | 2015-05-21 01:09:31 +0530 | [diff] [blame] | 490 | |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 491 | if (!exp_info->resv) |
Christian König | 52791ee | 2019-08-11 10:06:32 +0200 | [diff] [blame] | 492 | alloc_size += sizeof(struct dma_resv); |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 493 | else |
| 494 | /* prevent &dma_buf[1] == dma_buf->resv */ |
| 495 | alloc_size += 1; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 496 | |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 497 | if (WARN_ON(!exp_info->priv |
| 498 | || !exp_info->ops |
| 499 | || !exp_info->ops->map_dma_buf |
| 500 | || !exp_info->ops->unmap_dma_buf |
Andrew F. Davis | e3a9d6c | 2019-03-29 11:52:01 -0500 | [diff] [blame] | 501 | || !exp_info->ops->release)) { |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 502 | return ERR_PTR(-EINVAL); |
| 503 | } |
| 504 | |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 505 | if (WARN_ON(exp_info->ops->cache_sgt_mapping && |
Christian König | bd2275e | 2020-02-18 16:57:24 +0100 | [diff] [blame] | 506 | (exp_info->ops->pin || exp_info->ops->unpin))) |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 507 | return ERR_PTR(-EINVAL); |
| 508 | |
Christian König | bd2275e | 2020-02-18 16:57:24 +0100 | [diff] [blame] | 509 | if (WARN_ON(!exp_info->ops->pin != !exp_info->ops->unpin)) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 510 | return ERR_PTR(-EINVAL); |
| 511 | |
Sumit Semwal | 9abdffe | 2015-05-05 14:56:15 +0530 | [diff] [blame] | 512 | if (!try_module_get(exp_info->owner)) |
| 513 | return ERR_PTR(-ENOENT); |
| 514 | |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 515 | dmabuf = kzalloc(alloc_size, GFP_KERNEL); |
Sumit Semwal | 9abdffe | 2015-05-05 14:56:15 +0530 | [diff] [blame] | 516 | if (!dmabuf) { |
Chris Wilson | a026df4 | 2016-07-18 12:16:22 +0100 | [diff] [blame] | 517 | ret = -ENOMEM; |
| 518 | goto err_module; |
Sumit Semwal | 9abdffe | 2015-05-05 14:56:15 +0530 | [diff] [blame] | 519 | } |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 520 | |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 521 | dmabuf->priv = exp_info->priv; |
| 522 | dmabuf->ops = exp_info->ops; |
| 523 | dmabuf->size = exp_info->size; |
| 524 | dmabuf->exp_name = exp_info->exp_name; |
Sumit Semwal | 9abdffe | 2015-05-05 14:56:15 +0530 | [diff] [blame] | 525 | dmabuf->owner = exp_info->owner; |
Charan Teja Kalla | 6348dd2 | 2020-06-19 17:27:19 +0530 | [diff] [blame] | 526 | spin_lock_init(&dmabuf->name_lock); |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 527 | init_waitqueue_head(&dmabuf->poll); |
Christian König | 6b51b02 | 2021-06-15 13:12:33 +0200 | [diff] [blame] | 528 | dmabuf->cb_in.poll = dmabuf->cb_out.poll = &dmabuf->poll; |
| 529 | dmabuf->cb_in.active = dmabuf->cb_out.active = 0; |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 530 | |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 531 | if (!resv) { |
Christian König | 52791ee | 2019-08-11 10:06:32 +0200 | [diff] [blame] | 532 | resv = (struct dma_resv *)&dmabuf[1]; |
| 533 | dma_resv_init(resv); |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 534 | } |
| 535 | dmabuf->resv = resv; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 536 | |
Greg Hackmann | ed63bb1 | 2019-06-13 15:34:06 -0700 | [diff] [blame] | 537 | file = dma_buf_getfile(dmabuf, exp_info->flags); |
Tuomas Tynkkynen | 9022e24 | 2013-08-27 16:30:38 +0300 | [diff] [blame] | 538 | if (IS_ERR(file)) { |
Chris Wilson | a026df4 | 2016-07-18 12:16:22 +0100 | [diff] [blame] | 539 | ret = PTR_ERR(file); |
| 540 | goto err_dmabuf; |
Tuomas Tynkkynen | 9022e24 | 2013-08-27 16:30:38 +0300 | [diff] [blame] | 541 | } |
Christopher James Halse Rogers | 19e8697 | 2013-09-10 11:36:45 +0530 | [diff] [blame] | 542 | |
| 543 | file->f_mode |= FMODE_LSEEK; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 544 | dmabuf->file = file; |
| 545 | |
Hridya Valsaraju | bdb8d06 | 2021-06-03 14:47:51 -0700 | [diff] [blame] | 546 | ret = dma_buf_stats_setup(dmabuf); |
| 547 | if (ret) |
| 548 | goto err_sysfs; |
| 549 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 550 | mutex_init(&dmabuf->lock); |
| 551 | INIT_LIST_HEAD(&dmabuf->attachments); |
| 552 | |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 553 | mutex_lock(&db_list.lock); |
| 554 | list_add(&dmabuf->list_node, &db_list.head); |
| 555 | mutex_unlock(&db_list.lock); |
| 556 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 557 | return dmabuf; |
Chris Wilson | a026df4 | 2016-07-18 12:16:22 +0100 | [diff] [blame] | 558 | |
Hridya Valsaraju | bdb8d06 | 2021-06-03 14:47:51 -0700 | [diff] [blame] | 559 | err_sysfs: |
| 560 | /* |
| 561 | * Set file->f_path.dentry->d_fsdata to NULL so that when |
| 562 | * dma_buf_release() gets invoked by dentry_ops, it exits |
| 563 | * early before calling the release() dma_buf op. |
| 564 | */ |
| 565 | file->f_path.dentry->d_fsdata = NULL; |
| 566 | fput(file); |
Chris Wilson | a026df4 | 2016-07-18 12:16:22 +0100 | [diff] [blame] | 567 | err_dmabuf: |
| 568 | kfree(dmabuf); |
| 569 | err_module: |
| 570 | module_put(exp_info->owner); |
| 571 | return ERR_PTR(ret); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 572 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 573 | EXPORT_SYMBOL_NS_GPL(dma_buf_export, DMA_BUF); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 574 | |
| 575 | /** |
Daniel Vetter | 85804b7 | 2020-12-11 16:58:41 +0100 | [diff] [blame] | 576 | * dma_buf_fd - returns a file descriptor for the given struct dma_buf |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 577 | * @dmabuf: [in] pointer to dma_buf for which fd is required. |
Dave Airlie | 55c1c4c | 2012-03-16 10:34:02 +0000 | [diff] [blame] | 578 | * @flags: [in] flags to give to fd |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 579 | * |
| 580 | * On success, returns an associated 'fd'. Else, returns error. |
| 581 | */ |
Dave Airlie | 55c1c4c | 2012-03-16 10:34:02 +0000 | [diff] [blame] | 582 | int dma_buf_fd(struct dma_buf *dmabuf, int flags) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 583 | { |
Borislav Petkov | f5e097f | 2012-12-11 16:05:26 +0100 | [diff] [blame] | 584 | int fd; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 585 | |
| 586 | if (!dmabuf || !dmabuf->file) |
| 587 | return -EINVAL; |
| 588 | |
Borislav Petkov | f5e097f | 2012-12-11 16:05:26 +0100 | [diff] [blame] | 589 | fd = get_unused_fd_flags(flags); |
| 590 | if (fd < 0) |
| 591 | return fd; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 592 | |
| 593 | fd_install(fd, dmabuf->file); |
| 594 | |
| 595 | return fd; |
| 596 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 597 | EXPORT_SYMBOL_NS_GPL(dma_buf_fd, DMA_BUF); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 598 | |
| 599 | /** |
Daniel Vetter | 85804b7 | 2020-12-11 16:58:41 +0100 | [diff] [blame] | 600 | * dma_buf_get - returns the struct dma_buf related to an fd |
| 601 | * @fd: [in] fd associated with the struct dma_buf to be returned |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 602 | * |
Daniel Vetter | 85804b7 | 2020-12-11 16:58:41 +0100 | [diff] [blame] | 603 | * On success, returns the struct dma_buf associated with an fd; uses |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 604 | * file's refcounting done by fget to increase refcount. returns ERR_PTR |
| 605 | * otherwise. |
| 606 | */ |
| 607 | struct dma_buf *dma_buf_get(int fd) |
| 608 | { |
| 609 | struct file *file; |
| 610 | |
| 611 | file = fget(fd); |
| 612 | |
| 613 | if (!file) |
| 614 | return ERR_PTR(-EBADF); |
| 615 | |
| 616 | if (!is_dma_buf_file(file)) { |
| 617 | fput(file); |
| 618 | return ERR_PTR(-EINVAL); |
| 619 | } |
| 620 | |
| 621 | return file->private_data; |
| 622 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 623 | EXPORT_SYMBOL_NS_GPL(dma_buf_get, DMA_BUF); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 624 | |
| 625 | /** |
| 626 | * dma_buf_put - decreases refcount of the buffer |
| 627 | * @dmabuf: [in] buffer to reduce refcount of |
| 628 | * |
Daniel Vetter | 2904a8c | 2016-12-09 19:53:07 +0100 | [diff] [blame] | 629 | * Uses file's refcounting done implicitly by fput(). |
| 630 | * |
| 631 | * If, as a result of this call, the refcount becomes 0, the 'release' file |
Daniel Vetter | e9b4d7b | 2016-12-29 21:48:25 +0100 | [diff] [blame] | 632 | * operation related to this fd is called. It calls &dma_buf_ops.release vfunc |
| 633 | * in turn, and frees the memory allocated for dmabuf when exported. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 634 | */ |
| 635 | void dma_buf_put(struct dma_buf *dmabuf) |
| 636 | { |
| 637 | if (WARN_ON(!dmabuf || !dmabuf->file)) |
| 638 | return; |
| 639 | |
| 640 | fput(dmabuf->file); |
| 641 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 642 | EXPORT_SYMBOL_NS_GPL(dma_buf_put, DMA_BUF); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 643 | |
Daniel Vetter | 8433567 | 2021-01-15 17:47:39 +0100 | [diff] [blame] | 644 | static void mangle_sg_table(struct sg_table *sg_table) |
| 645 | { |
| 646 | #ifdef CONFIG_DMABUF_DEBUG |
| 647 | int i; |
| 648 | struct scatterlist *sg; |
| 649 | |
| 650 | /* To catch abuse of the underlying struct page by importers mix |
| 651 | * up the bits, but take care to preserve the low SG_ bits to |
| 652 | * not corrupt the sgt. The mixing is undone in __unmap_dma_buf |
| 653 | * before passing the sgt back to the exporter. */ |
| 654 | for_each_sgtable_sg(sg_table, sg, i) |
| 655 | sg->page_link ^= ~0xffUL; |
| 656 | #endif |
| 657 | |
| 658 | } |
| 659 | static struct sg_table * __map_dma_buf(struct dma_buf_attachment *attach, |
| 660 | enum dma_data_direction direction) |
| 661 | { |
| 662 | struct sg_table *sg_table; |
| 663 | |
| 664 | sg_table = attach->dmabuf->ops->map_dma_buf(attach, direction); |
| 665 | |
| 666 | if (!IS_ERR_OR_NULL(sg_table)) |
| 667 | mangle_sg_table(sg_table); |
| 668 | |
| 669 | return sg_table; |
| 670 | } |
| 671 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 672 | /** |
Daniel Vetter | 85804b7 | 2020-12-11 16:58:41 +0100 | [diff] [blame] | 673 | * dma_buf_dynamic_attach - Add the device to dma_buf's attachments list |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 674 | * @dmabuf: [in] buffer to attach device to. |
| 675 | * @dev: [in] device to be attached. |
Randy Dunlap | 6f49c25 | 2020-04-07 21:20:34 -0700 | [diff] [blame] | 676 | * @importer_ops: [in] importer operations for the attachment |
| 677 | * @importer_priv: [in] importer private pointer for the attachment |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 678 | * |
Daniel Vetter | 2904a8c | 2016-12-09 19:53:07 +0100 | [diff] [blame] | 679 | * Returns struct dma_buf_attachment pointer for this attachment. Attachments |
| 680 | * must be cleaned up by calling dma_buf_detach(). |
| 681 | * |
Daniel Vetter | 85804b7 | 2020-12-11 16:58:41 +0100 | [diff] [blame] | 682 | * Optionally this calls &dma_buf_ops.attach to allow device-specific attach |
| 683 | * functionality. |
| 684 | * |
Daniel Vetter | 2904a8c | 2016-12-09 19:53:07 +0100 | [diff] [blame] | 685 | * Returns: |
| 686 | * |
| 687 | * A pointer to newly created &dma_buf_attachment on success, or a negative |
| 688 | * error code wrapped into a pointer on failure. |
| 689 | * |
| 690 | * Note that this can fail if the backing storage of @dmabuf is in a place not |
| 691 | * accessible to @dev, and cannot be moved to a more suitable place. This is |
| 692 | * indicated with the error code -EBUSY. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 693 | */ |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 694 | struct dma_buf_attachment * |
| 695 | dma_buf_dynamic_attach(struct dma_buf *dmabuf, struct device *dev, |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 696 | const struct dma_buf_attach_ops *importer_ops, |
| 697 | void *importer_priv) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 698 | { |
| 699 | struct dma_buf_attachment *attach; |
| 700 | int ret; |
| 701 | |
Laurent Pinchart | d1aa06a | 2012-01-26 12:27:23 +0100 | [diff] [blame] | 702 | if (WARN_ON(!dmabuf || !dev)) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 703 | return ERR_PTR(-EINVAL); |
| 704 | |
Christian König | 4981cdb | 2020-02-19 13:32:43 +0100 | [diff] [blame] | 705 | if (WARN_ON(importer_ops && !importer_ops->move_notify)) |
| 706 | return ERR_PTR(-EINVAL); |
| 707 | |
Markus Elfring | db7942b | 2017-05-08 10:50:09 +0200 | [diff] [blame] | 708 | attach = kzalloc(sizeof(*attach), GFP_KERNEL); |
Markus Elfring | 34d84ec | 2017-05-08 10:54:17 +0200 | [diff] [blame] | 709 | if (!attach) |
Laurent Pinchart | a9fbc3b | 2012-01-26 12:27:24 +0100 | [diff] [blame] | 710 | return ERR_PTR(-ENOMEM); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 711 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 712 | attach->dev = dev; |
| 713 | attach->dmabuf = dmabuf; |
Christian König | 09606b5 | 2018-03-22 17:09:42 +0100 | [diff] [blame] | 714 | if (importer_ops) |
| 715 | attach->peer2peer = importer_ops->allow_peer2peer; |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 716 | attach->importer_ops = importer_ops; |
| 717 | attach->importer_priv = importer_priv; |
Laurent Pinchart | 2ed9201 | 2012-01-26 12:27:25 +0100 | [diff] [blame] | 718 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 719 | if (dmabuf->ops->attach) { |
Christian König | a19741e | 2018-05-28 11:47:52 +0200 | [diff] [blame] | 720 | ret = dmabuf->ops->attach(dmabuf, attach); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 721 | if (ret) |
| 722 | goto err_attach; |
| 723 | } |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 724 | dma_resv_lock(dmabuf->resv, NULL); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 725 | list_add(&attach->node, &dmabuf->attachments); |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 726 | dma_resv_unlock(dmabuf->resv); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 727 | |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 728 | /* When either the importer or the exporter can't handle dynamic |
| 729 | * mappings we cache the mapping here to avoid issues with the |
| 730 | * reservation object lock. |
| 731 | */ |
| 732 | if (dma_buf_attachment_is_dynamic(attach) != |
| 733 | dma_buf_is_dynamic(dmabuf)) { |
| 734 | struct sg_table *sgt; |
| 735 | |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 736 | if (dma_buf_is_dynamic(attach->dmabuf)) { |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 737 | dma_resv_lock(attach->dmabuf->resv, NULL); |
Christian König | 7e008b0 | 2021-05-17 13:20:17 +0200 | [diff] [blame] | 738 | ret = dmabuf->ops->pin(attach); |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 739 | if (ret) |
| 740 | goto err_unlock; |
| 741 | } |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 742 | |
Daniel Vetter | 8433567 | 2021-01-15 17:47:39 +0100 | [diff] [blame] | 743 | sgt = __map_dma_buf(attach, DMA_BIDIRECTIONAL); |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 744 | if (!sgt) |
| 745 | sgt = ERR_PTR(-ENOMEM); |
| 746 | if (IS_ERR(sgt)) { |
| 747 | ret = PTR_ERR(sgt); |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 748 | goto err_unpin; |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 749 | } |
| 750 | if (dma_buf_is_dynamic(attach->dmabuf)) |
| 751 | dma_resv_unlock(attach->dmabuf->resv); |
| 752 | attach->sgt = sgt; |
| 753 | attach->dir = DMA_BIDIRECTIONAL; |
| 754 | } |
| 755 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 756 | return attach; |
| 757 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 758 | err_attach: |
| 759 | kfree(attach); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 760 | return ERR_PTR(ret); |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 761 | |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 762 | err_unpin: |
| 763 | if (dma_buf_is_dynamic(attach->dmabuf)) |
Christian König | 7e008b0 | 2021-05-17 13:20:17 +0200 | [diff] [blame] | 764 | dmabuf->ops->unpin(attach); |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 765 | |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 766 | err_unlock: |
| 767 | if (dma_buf_is_dynamic(attach->dmabuf)) |
| 768 | dma_resv_unlock(attach->dmabuf->resv); |
| 769 | |
| 770 | dma_buf_detach(dmabuf, attach); |
| 771 | return ERR_PTR(ret); |
| 772 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 773 | EXPORT_SYMBOL_NS_GPL(dma_buf_dynamic_attach, DMA_BUF); |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 774 | |
| 775 | /** |
| 776 | * dma_buf_attach - Wrapper for dma_buf_dynamic_attach |
| 777 | * @dmabuf: [in] buffer to attach device to. |
| 778 | * @dev: [in] device to be attached. |
| 779 | * |
| 780 | * Wrapper to call dma_buf_dynamic_attach() for drivers which still use a static |
| 781 | * mapping. |
| 782 | */ |
| 783 | struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf, |
| 784 | struct device *dev) |
| 785 | { |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 786 | return dma_buf_dynamic_attach(dmabuf, dev, NULL, NULL); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 787 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 788 | EXPORT_SYMBOL_NS_GPL(dma_buf_attach, DMA_BUF); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 789 | |
Daniel Vetter | 8433567 | 2021-01-15 17:47:39 +0100 | [diff] [blame] | 790 | static void __unmap_dma_buf(struct dma_buf_attachment *attach, |
| 791 | struct sg_table *sg_table, |
| 792 | enum dma_data_direction direction) |
| 793 | { |
| 794 | /* uses XOR, hence this unmangles */ |
| 795 | mangle_sg_table(sg_table); |
| 796 | |
| 797 | attach->dmabuf->ops->unmap_dma_buf(attach, sg_table, direction); |
| 798 | } |
| 799 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 800 | /** |
Daniel Vetter | 85804b7 | 2020-12-11 16:58:41 +0100 | [diff] [blame] | 801 | * dma_buf_detach - Remove the given attachment from dmabuf's attachments list |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 802 | * @dmabuf: [in] buffer to detach from. |
| 803 | * @attach: [in] attachment to be detached; is free'd after this call. |
| 804 | * |
Daniel Vetter | 2904a8c | 2016-12-09 19:53:07 +0100 | [diff] [blame] | 805 | * Clean up a device attachment obtained by calling dma_buf_attach(). |
Daniel Vetter | 85804b7 | 2020-12-11 16:58:41 +0100 | [diff] [blame] | 806 | * |
| 807 | * Optionally this calls &dma_buf_ops.detach for device-specific detach. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 808 | */ |
| 809 | void dma_buf_detach(struct dma_buf *dmabuf, struct dma_buf_attachment *attach) |
| 810 | { |
Laurent Pinchart | d1aa06a | 2012-01-26 12:27:23 +0100 | [diff] [blame] | 811 | if (WARN_ON(!dmabuf || !attach)) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 812 | return; |
| 813 | |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 814 | if (attach->sgt) { |
| 815 | if (dma_buf_is_dynamic(attach->dmabuf)) |
| 816 | dma_resv_lock(attach->dmabuf->resv, NULL); |
| 817 | |
Daniel Vetter | 8433567 | 2021-01-15 17:47:39 +0100 | [diff] [blame] | 818 | __unmap_dma_buf(attach, attach->sgt, attach->dir); |
Christian König | f13e143 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 819 | |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 820 | if (dma_buf_is_dynamic(attach->dmabuf)) { |
Christian König | 7e008b0 | 2021-05-17 13:20:17 +0200 | [diff] [blame] | 821 | dmabuf->ops->unpin(attach); |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 822 | dma_resv_unlock(attach->dmabuf->resv); |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 823 | } |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 824 | } |
| 825 | |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 826 | dma_resv_lock(dmabuf->resv, NULL); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 827 | list_del(&attach->node); |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 828 | dma_resv_unlock(dmabuf->resv); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 829 | if (dmabuf->ops->detach) |
| 830 | dmabuf->ops->detach(dmabuf, attach); |
| 831 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 832 | kfree(attach); |
| 833 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 834 | EXPORT_SYMBOL_NS_GPL(dma_buf_detach, DMA_BUF); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 835 | |
| 836 | /** |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 837 | * dma_buf_pin - Lock down the DMA-buf |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 838 | * @attach: [in] attachment which should be pinned |
| 839 | * |
Daniel Vetter | c545781 | 2020-12-11 16:58:43 +0100 | [diff] [blame] | 840 | * Only dynamic importers (who set up @attach with dma_buf_dynamic_attach()) may |
| 841 | * call this, and only for limited use cases like scanout and not for temporary |
| 842 | * pin operations. It is not permitted to allow userspace to pin arbitrary |
| 843 | * amounts of buffers through this interface. |
| 844 | * |
| 845 | * Buffers must be unpinned by calling dma_buf_unpin(). |
| 846 | * |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 847 | * Returns: |
| 848 | * 0 on success, negative error code on failure. |
| 849 | */ |
| 850 | int dma_buf_pin(struct dma_buf_attachment *attach) |
| 851 | { |
| 852 | struct dma_buf *dmabuf = attach->dmabuf; |
| 853 | int ret = 0; |
| 854 | |
Daniel Vetter | c545781 | 2020-12-11 16:58:43 +0100 | [diff] [blame] | 855 | WARN_ON(!dma_buf_attachment_is_dynamic(attach)); |
| 856 | |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 857 | dma_resv_assert_held(dmabuf->resv); |
| 858 | |
| 859 | if (dmabuf->ops->pin) |
| 860 | ret = dmabuf->ops->pin(attach); |
| 861 | |
| 862 | return ret; |
| 863 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 864 | EXPORT_SYMBOL_NS_GPL(dma_buf_pin, DMA_BUF); |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 865 | |
| 866 | /** |
Daniel Vetter | c545781 | 2020-12-11 16:58:43 +0100 | [diff] [blame] | 867 | * dma_buf_unpin - Unpin a DMA-buf |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 868 | * @attach: [in] attachment which should be unpinned |
Daniel Vetter | c545781 | 2020-12-11 16:58:43 +0100 | [diff] [blame] | 869 | * |
| 870 | * This unpins a buffer pinned by dma_buf_pin() and allows the exporter to move |
| 871 | * any mapping of @attach again and inform the importer through |
| 872 | * &dma_buf_attach_ops.move_notify. |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 873 | */ |
| 874 | void dma_buf_unpin(struct dma_buf_attachment *attach) |
| 875 | { |
| 876 | struct dma_buf *dmabuf = attach->dmabuf; |
| 877 | |
Daniel Vetter | c545781 | 2020-12-11 16:58:43 +0100 | [diff] [blame] | 878 | WARN_ON(!dma_buf_attachment_is_dynamic(attach)); |
| 879 | |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 880 | dma_resv_assert_held(dmabuf->resv); |
| 881 | |
| 882 | if (dmabuf->ops->unpin) |
| 883 | dmabuf->ops->unpin(attach); |
| 884 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 885 | EXPORT_SYMBOL_NS_GPL(dma_buf_unpin, DMA_BUF); |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 886 | |
| 887 | /** |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 888 | * dma_buf_map_attachment - Returns the scatterlist table of the attachment; |
| 889 | * mapped into _device_ address space. Is a wrapper for map_dma_buf() of the |
| 890 | * dma_buf_ops. |
| 891 | * @attach: [in] attachment whose scatterlist is to be returned |
| 892 | * @direction: [in] direction of DMA transfer |
| 893 | * |
Colin Cross | fee0c54 | 2013-12-20 16:43:50 -0800 | [diff] [blame] | 894 | * Returns sg_table containing the scatterlist to be returned; returns ERR_PTR |
Daniel Vetter | 2904a8c | 2016-12-09 19:53:07 +0100 | [diff] [blame] | 895 | * on error. May return -EINTR if it is interrupted by a signal. |
| 896 | * |
Jianxin Xiong | ac80cd1 | 2020-10-14 09:16:01 -0700 | [diff] [blame] | 897 | * On success, the DMA addresses and lengths in the returned scatterlist are |
| 898 | * PAGE_SIZE aligned. |
| 899 | * |
Liviu Dudau | c138782 | 2017-11-01 14:06:30 +0000 | [diff] [blame] | 900 | * A mapping must be unmapped by using dma_buf_unmap_attachment(). Note that |
Daniel Vetter | 2904a8c | 2016-12-09 19:53:07 +0100 | [diff] [blame] | 901 | * the underlying backing storage is pinned for as long as a mapping exists, |
| 902 | * therefore users/importers should not hold onto a mapping for undue amounts of |
| 903 | * time. |
Daniel Vetter | 89bcadc | 2021-06-21 17:17:58 +0200 | [diff] [blame] | 904 | * |
| 905 | * Important: Dynamic importers must wait for the exclusive fence of the struct |
| 906 | * dma_resv attached to the DMA-BUF first. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 907 | */ |
| 908 | struct sg_table *dma_buf_map_attachment(struct dma_buf_attachment *attach, |
| 909 | enum dma_data_direction direction) |
| 910 | { |
Colin Ian King | 531beb0 | 2017-09-15 00:05:16 +0100 | [diff] [blame] | 911 | struct sg_table *sg_table; |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 912 | int r; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 913 | |
| 914 | might_sleep(); |
| 915 | |
Laurent Pinchart | d1aa06a | 2012-01-26 12:27:23 +0100 | [diff] [blame] | 916 | if (WARN_ON(!attach || !attach->dmabuf)) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 917 | return ERR_PTR(-EINVAL); |
| 918 | |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 919 | if (dma_buf_attachment_is_dynamic(attach)) |
| 920 | dma_resv_assert_held(attach->dmabuf->resv); |
| 921 | |
Christian König | f13e143 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 922 | if (attach->sgt) { |
| 923 | /* |
| 924 | * Two mappings with different directions for the same |
| 925 | * attachment are not allowed. |
| 926 | */ |
| 927 | if (attach->dir != direction && |
| 928 | attach->dir != DMA_BIDIRECTIONAL) |
| 929 | return ERR_PTR(-EBUSY); |
| 930 | |
| 931 | return attach->sgt; |
| 932 | } |
| 933 | |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 934 | if (dma_buf_is_dynamic(attach->dmabuf)) { |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 935 | dma_resv_assert_held(attach->dmabuf->resv); |
Christian König | 4981cdb | 2020-02-19 13:32:43 +0100 | [diff] [blame] | 936 | if (!IS_ENABLED(CONFIG_DMABUF_MOVE_NOTIFY)) { |
Christian König | 7e008b0 | 2021-05-17 13:20:17 +0200 | [diff] [blame] | 937 | r = attach->dmabuf->ops->pin(attach); |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 938 | if (r) |
| 939 | return ERR_PTR(r); |
| 940 | } |
| 941 | } |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 942 | |
Daniel Vetter | 8433567 | 2021-01-15 17:47:39 +0100 | [diff] [blame] | 943 | sg_table = __map_dma_buf(attach, direction); |
Colin Cross | fee0c54 | 2013-12-20 16:43:50 -0800 | [diff] [blame] | 944 | if (!sg_table) |
| 945 | sg_table = ERR_PTR(-ENOMEM); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 946 | |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 947 | if (IS_ERR(sg_table) && dma_buf_is_dynamic(attach->dmabuf) && |
Christian König | 4981cdb | 2020-02-19 13:32:43 +0100 | [diff] [blame] | 948 | !IS_ENABLED(CONFIG_DMABUF_MOVE_NOTIFY)) |
Christian König | 7e008b0 | 2021-05-17 13:20:17 +0200 | [diff] [blame] | 949 | attach->dmabuf->ops->unpin(attach); |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 950 | |
Christian König | f13e143 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 951 | if (!IS_ERR(sg_table) && attach->dmabuf->ops->cache_sgt_mapping) { |
| 952 | attach->sgt = sg_table; |
| 953 | attach->dir = direction; |
| 954 | } |
| 955 | |
Jianxin Xiong | ac80cd1 | 2020-10-14 09:16:01 -0700 | [diff] [blame] | 956 | #ifdef CONFIG_DMA_API_DEBUG |
Jianxin Xiong | 00efd65 | 2020-11-02 19:51:58 -0800 | [diff] [blame] | 957 | if (!IS_ERR(sg_table)) { |
Jianxin Xiong | ac80cd1 | 2020-10-14 09:16:01 -0700 | [diff] [blame] | 958 | struct scatterlist *sg; |
| 959 | u64 addr; |
| 960 | int len; |
| 961 | int i; |
| 962 | |
| 963 | for_each_sgtable_dma_sg(sg_table, sg, i) { |
| 964 | addr = sg_dma_address(sg); |
| 965 | len = sg_dma_len(sg); |
| 966 | if (!PAGE_ALIGNED(addr) || !PAGE_ALIGNED(len)) { |
| 967 | pr_debug("%s: addr %llx or len %x is not page aligned!\n", |
| 968 | __func__, addr, len); |
| 969 | } |
| 970 | } |
| 971 | } |
| 972 | #endif /* CONFIG_DMA_API_DEBUG */ |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 973 | return sg_table; |
| 974 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 975 | EXPORT_SYMBOL_NS_GPL(dma_buf_map_attachment, DMA_BUF); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 976 | |
| 977 | /** |
| 978 | * dma_buf_unmap_attachment - unmaps and decreases usecount of the buffer;might |
| 979 | * deallocate the scatterlist associated. Is a wrapper for unmap_dma_buf() of |
| 980 | * dma_buf_ops. |
| 981 | * @attach: [in] attachment to unmap buffer from |
| 982 | * @sg_table: [in] scatterlist info of the buffer to unmap |
Sumit Semwal | 33ea2dc | 2012-01-27 15:09:27 +0530 | [diff] [blame] | 983 | * @direction: [in] direction of DMA transfer |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 984 | * |
Daniel Vetter | 2904a8c | 2016-12-09 19:53:07 +0100 | [diff] [blame] | 985 | * This unmaps a DMA mapping for @attached obtained by dma_buf_map_attachment(). |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 986 | */ |
| 987 | void dma_buf_unmap_attachment(struct dma_buf_attachment *attach, |
Sumit Semwal | 33ea2dc | 2012-01-27 15:09:27 +0530 | [diff] [blame] | 988 | struct sg_table *sg_table, |
| 989 | enum dma_data_direction direction) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 990 | { |
Rob Clark | b6fa0cd | 2012-09-28 09:29:43 +0200 | [diff] [blame] | 991 | might_sleep(); |
| 992 | |
Laurent Pinchart | d1aa06a | 2012-01-26 12:27:23 +0100 | [diff] [blame] | 993 | if (WARN_ON(!attach || !attach->dmabuf || !sg_table)) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 994 | return; |
| 995 | |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 996 | if (dma_buf_attachment_is_dynamic(attach)) |
| 997 | dma_resv_assert_held(attach->dmabuf->resv); |
| 998 | |
Christian König | f13e143 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 999 | if (attach->sgt == sg_table) |
| 1000 | return; |
| 1001 | |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 1002 | if (dma_buf_is_dynamic(attach->dmabuf)) |
| 1003 | dma_resv_assert_held(attach->dmabuf->resv); |
| 1004 | |
Daniel Vetter | 8433567 | 2021-01-15 17:47:39 +0100 | [diff] [blame] | 1005 | __unmap_dma_buf(attach, sg_table, direction); |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 1006 | |
| 1007 | if (dma_buf_is_dynamic(attach->dmabuf) && |
Christian König | 4981cdb | 2020-02-19 13:32:43 +0100 | [diff] [blame] | 1008 | !IS_ENABLED(CONFIG_DMABUF_MOVE_NOTIFY)) |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 1009 | dma_buf_unpin(attach); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 1010 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 1011 | EXPORT_SYMBOL_NS_GPL(dma_buf_unmap_attachment, DMA_BUF); |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1012 | |
Daniel Vetter | 0959a16 | 2016-12-09 19:53:08 +0100 | [diff] [blame] | 1013 | /** |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 1014 | * dma_buf_move_notify - notify attachments that DMA-buf is moving |
| 1015 | * |
| 1016 | * @dmabuf: [in] buffer which is moving |
| 1017 | * |
| 1018 | * Informs all attachmenst that they need to destroy and recreated all their |
| 1019 | * mappings. |
| 1020 | */ |
| 1021 | void dma_buf_move_notify(struct dma_buf *dmabuf) |
| 1022 | { |
| 1023 | struct dma_buf_attachment *attach; |
| 1024 | |
| 1025 | dma_resv_assert_held(dmabuf->resv); |
| 1026 | |
| 1027 | list_for_each_entry(attach, &dmabuf->attachments, node) |
Christian König | 4981cdb | 2020-02-19 13:32:43 +0100 | [diff] [blame] | 1028 | if (attach->importer_ops) |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 1029 | attach->importer_ops->move_notify(attach); |
| 1030 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 1031 | EXPORT_SYMBOL_NS_GPL(dma_buf_move_notify, DMA_BUF); |
Christian König | bb42df4 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 1032 | |
| 1033 | /** |
Daniel Vetter | 0959a16 | 2016-12-09 19:53:08 +0100 | [diff] [blame] | 1034 | * DOC: cpu access |
| 1035 | * |
| 1036 | * There are mutliple reasons for supporting CPU access to a dma buffer object: |
| 1037 | * |
| 1038 | * - Fallback operations in the kernel, for example when a device is connected |
| 1039 | * over USB and the kernel needs to shuffle the data around first before |
| 1040 | * sending it away. Cache coherency is handled by braketing any transactions |
| 1041 | * with calls to dma_buf_begin_cpu_access() and dma_buf_end_cpu_access() |
| 1042 | * access. |
| 1043 | * |
Daniel Vetter | 7f0de8d | 2019-11-18 11:35:30 +0100 | [diff] [blame] | 1044 | * Since for most kernel internal dma-buf accesses need the entire buffer, a |
| 1045 | * vmap interface is introduced. Note that on very old 32-bit architectures |
| 1046 | * vmalloc space might be limited and result in vmap calls failing. |
Daniel Vetter | 0959a16 | 2016-12-09 19:53:08 +0100 | [diff] [blame] | 1047 | * |
| 1048 | * Interfaces:: |
Daniel Vetter | de9114e | 2020-12-11 16:58:40 +0100 | [diff] [blame] | 1049 | * |
Shunsuke Mie | 91909d5 | 2021-10-08 20:20:09 +0900 | [diff] [blame] | 1050 | * void \*dma_buf_vmap(struct dma_buf \*dmabuf, struct dma_buf_map \*map) |
| 1051 | * void dma_buf_vunmap(struct dma_buf \*dmabuf, struct dma_buf_map \*map) |
Daniel Vetter | 0959a16 | 2016-12-09 19:53:08 +0100 | [diff] [blame] | 1052 | * |
| 1053 | * The vmap call can fail if there is no vmap support in the exporter, or if |
Daniel Vetter | de9114e | 2020-12-11 16:58:40 +0100 | [diff] [blame] | 1054 | * it runs out of vmalloc space. Note that the dma-buf layer keeps a reference |
| 1055 | * count for all vmap access and calls down into the exporter's vmap function |
| 1056 | * only when no vmapping exists, and only unmaps it once. Protection against |
| 1057 | * concurrent vmap/vunmap calls is provided by taking the &dma_buf.lock mutex. |
Daniel Vetter | 0959a16 | 2016-12-09 19:53:08 +0100 | [diff] [blame] | 1058 | * |
| 1059 | * - For full compatibility on the importer side with existing userspace |
| 1060 | * interfaces, which might already support mmap'ing buffers. This is needed in |
| 1061 | * many processing pipelines (e.g. feeding a software rendered image into a |
| 1062 | * hardware pipeline, thumbnail creation, snapshots, ...). Also, Android's ION |
| 1063 | * framework already supported this and for DMA buffer file descriptors to |
| 1064 | * replace ION buffers mmap support was needed. |
| 1065 | * |
| 1066 | * There is no special interfaces, userspace simply calls mmap on the dma-buf |
| 1067 | * fd. But like for CPU access there's a need to braket the actual access, |
| 1068 | * which is handled by the ioctl (DMA_BUF_IOCTL_SYNC). Note that |
| 1069 | * DMA_BUF_IOCTL_SYNC can fail with -EAGAIN or -EINTR, in which case it must |
| 1070 | * be restarted. |
| 1071 | * |
| 1072 | * Some systems might need some sort of cache coherency management e.g. when |
| 1073 | * CPU and GPU domains are being accessed through dma-buf at the same time. |
| 1074 | * To circumvent this problem there are begin/end coherency markers, that |
| 1075 | * forward directly to existing dma-buf device drivers vfunc hooks. Userspace |
| 1076 | * can make use of those markers through the DMA_BUF_IOCTL_SYNC ioctl. The |
| 1077 | * sequence would be used like following: |
| 1078 | * |
| 1079 | * - mmap dma-buf fd |
| 1080 | * - for each drawing/upload cycle in CPU 1. SYNC_START ioctl, 2. read/write |
| 1081 | * to mmap area 3. SYNC_END ioctl. This can be repeated as often as you |
| 1082 | * want (with the new data being consumed by say the GPU or the scanout |
| 1083 | * device) |
| 1084 | * - munmap once you don't need the buffer any more |
| 1085 | * |
| 1086 | * For correctness and optimal performance, it is always required to use |
| 1087 | * SYNC_START and SYNC_END before and after, respectively, when accessing the |
| 1088 | * mapped address. Userspace cannot rely on coherent access, even when there |
| 1089 | * are systems where it just works without calling these ioctls. |
| 1090 | * |
| 1091 | * - And as a CPU fallback in userspace processing pipelines. |
| 1092 | * |
| 1093 | * Similar to the motivation for kernel cpu access it is again important that |
| 1094 | * the userspace code of a given importing subsystem can use the same |
| 1095 | * interfaces with a imported dma-buf buffer object as with a native buffer |
| 1096 | * object. This is especially important for drm where the userspace part of |
| 1097 | * contemporary OpenGL, X, and other drivers is huge, and reworking them to |
| 1098 | * use a different way to mmap a buffer rather invasive. |
| 1099 | * |
| 1100 | * The assumption in the current dma-buf interfaces is that redirecting the |
| 1101 | * initial mmap is all that's needed. A survey of some of the existing |
| 1102 | * subsystems shows that no driver seems to do any nefarious thing like |
| 1103 | * syncing up with outstanding asynchronous processing on the device or |
| 1104 | * allocating special resources at fault time. So hopefully this is good |
| 1105 | * enough, since adding interfaces to intercept pagefaults and allow pte |
| 1106 | * shootdowns would increase the complexity quite a bit. |
| 1107 | * |
| 1108 | * Interface:: |
Daniel Vetter | 85804b7 | 2020-12-11 16:58:41 +0100 | [diff] [blame] | 1109 | * |
Daniel Vetter | 0959a16 | 2016-12-09 19:53:08 +0100 | [diff] [blame] | 1110 | * int dma_buf_mmap(struct dma_buf \*, struct vm_area_struct \*, |
| 1111 | * unsigned long); |
| 1112 | * |
| 1113 | * If the importing subsystem simply provides a special-purpose mmap call to |
Daniel Vetter | 85804b7 | 2020-12-11 16:58:41 +0100 | [diff] [blame] | 1114 | * set up a mapping in userspace, calling do_mmap with &dma_buf.file will |
Daniel Vetter | 0959a16 | 2016-12-09 19:53:08 +0100 | [diff] [blame] | 1115 | * equally achieve that for a dma-buf object. |
| 1116 | */ |
| 1117 | |
Chris Wilson | ae4e46b | 2016-08-15 16:42:18 +0100 | [diff] [blame] | 1118 | static int __dma_buf_begin_cpu_access(struct dma_buf *dmabuf, |
| 1119 | enum dma_data_direction direction) |
| 1120 | { |
| 1121 | bool write = (direction == DMA_BIDIRECTIONAL || |
| 1122 | direction == DMA_TO_DEVICE); |
Christian König | 52791ee | 2019-08-11 10:06:32 +0200 | [diff] [blame] | 1123 | struct dma_resv *resv = dmabuf->resv; |
Chris Wilson | ae4e46b | 2016-08-15 16:42:18 +0100 | [diff] [blame] | 1124 | long ret; |
| 1125 | |
| 1126 | /* Wait on any implicit rendering fences */ |
Christian König | d3fae3b | 2021-06-02 13:01:15 +0200 | [diff] [blame] | 1127 | ret = dma_resv_wait_timeout(resv, write, true, MAX_SCHEDULE_TIMEOUT); |
Chris Wilson | ae4e46b | 2016-08-15 16:42:18 +0100 | [diff] [blame] | 1128 | if (ret < 0) |
| 1129 | return ret; |
| 1130 | |
| 1131 | return 0; |
| 1132 | } |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1133 | |
| 1134 | /** |
| 1135 | * dma_buf_begin_cpu_access - Must be called before accessing a dma_buf from the |
| 1136 | * cpu in the kernel context. Calls begin_cpu_access to allow exporter-specific |
| 1137 | * preparations. Coherency is only guaranteed in the specified range for the |
| 1138 | * specified access direction. |
Randy Dunlap | efb4df82 | 2012-04-17 17:03:30 -0700 | [diff] [blame] | 1139 | * @dmabuf: [in] buffer to prepare cpu access for. |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1140 | * @direction: [in] length of range for cpu access. |
| 1141 | * |
Daniel Vetter | 0959a16 | 2016-12-09 19:53:08 +0100 | [diff] [blame] | 1142 | * After the cpu access is complete the caller should call |
| 1143 | * dma_buf_end_cpu_access(). Only when cpu access is braketed by both calls is |
| 1144 | * it guaranteed to be coherent with other DMA access. |
| 1145 | * |
Daniel Vetter | de9114e | 2020-12-11 16:58:40 +0100 | [diff] [blame] | 1146 | * This function will also wait for any DMA transactions tracked through |
| 1147 | * implicit synchronization in &dma_buf.resv. For DMA transactions with explicit |
| 1148 | * synchronization this function will only ensure cache coherency, callers must |
| 1149 | * ensure synchronization with such DMA transactions on their own. |
| 1150 | * |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1151 | * Can return negative error values, returns 0 on success. |
| 1152 | */ |
Tiago Vignatti | 831e9da | 2015-12-22 19:36:45 -0200 | [diff] [blame] | 1153 | int dma_buf_begin_cpu_access(struct dma_buf *dmabuf, |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1154 | enum dma_data_direction direction) |
| 1155 | { |
| 1156 | int ret = 0; |
| 1157 | |
| 1158 | if (WARN_ON(!dmabuf)) |
| 1159 | return -EINVAL; |
| 1160 | |
Daniel Vetter | 8ccf0a2 | 2020-12-14 18:16:22 +0100 | [diff] [blame] | 1161 | might_lock(&dmabuf->resv->lock.base); |
| 1162 | |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1163 | if (dmabuf->ops->begin_cpu_access) |
Tiago Vignatti | 831e9da | 2015-12-22 19:36:45 -0200 | [diff] [blame] | 1164 | ret = dmabuf->ops->begin_cpu_access(dmabuf, direction); |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1165 | |
Chris Wilson | ae4e46b | 2016-08-15 16:42:18 +0100 | [diff] [blame] | 1166 | /* Ensure that all fences are waited upon - but we first allow |
| 1167 | * the native handler the chance to do so more efficiently if it |
| 1168 | * chooses. A double invocation here will be reasonably cheap no-op. |
| 1169 | */ |
| 1170 | if (ret == 0) |
| 1171 | ret = __dma_buf_begin_cpu_access(dmabuf, direction); |
| 1172 | |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1173 | return ret; |
| 1174 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 1175 | EXPORT_SYMBOL_NS_GPL(dma_buf_begin_cpu_access, DMA_BUF); |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1176 | |
| 1177 | /** |
| 1178 | * dma_buf_end_cpu_access - Must be called after accessing a dma_buf from the |
| 1179 | * cpu in the kernel context. Calls end_cpu_access to allow exporter-specific |
| 1180 | * actions. Coherency is only guaranteed in the specified range for the |
| 1181 | * specified access direction. |
Randy Dunlap | efb4df82 | 2012-04-17 17:03:30 -0700 | [diff] [blame] | 1182 | * @dmabuf: [in] buffer to complete cpu access for. |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1183 | * @direction: [in] length of range for cpu access. |
| 1184 | * |
Daniel Vetter | 0959a16 | 2016-12-09 19:53:08 +0100 | [diff] [blame] | 1185 | * This terminates CPU access started with dma_buf_begin_cpu_access(). |
| 1186 | * |
Daniel Vetter | 87e332d | 2016-03-21 08:24:22 +0100 | [diff] [blame] | 1187 | * Can return negative error values, returns 0 on success. |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1188 | */ |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 1189 | int dma_buf_end_cpu_access(struct dma_buf *dmabuf, |
| 1190 | enum dma_data_direction direction) |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1191 | { |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 1192 | int ret = 0; |
| 1193 | |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1194 | WARN_ON(!dmabuf); |
| 1195 | |
Daniel Vetter | 8ccf0a2 | 2020-12-14 18:16:22 +0100 | [diff] [blame] | 1196 | might_lock(&dmabuf->resv->lock.base); |
| 1197 | |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1198 | if (dmabuf->ops->end_cpu_access) |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 1199 | ret = dmabuf->ops->end_cpu_access(dmabuf, direction); |
| 1200 | |
| 1201 | return ret; |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1202 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 1203 | EXPORT_SYMBOL_NS_GPL(dma_buf_end_cpu_access, DMA_BUF); |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 1204 | |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 1205 | |
| 1206 | /** |
| 1207 | * dma_buf_mmap - Setup up a userspace mmap with the given vma |
Sumit Semwal | 12c4727 | 2012-05-23 15:27:40 +0530 | [diff] [blame] | 1208 | * @dmabuf: [in] buffer that should back the vma |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 1209 | * @vma: [in] vma for the mmap |
| 1210 | * @pgoff: [in] offset in pages where this mmap should start within the |
Jagan Teki | 5136629 | 2015-05-21 01:09:31 +0530 | [diff] [blame] | 1211 | * dma-buf buffer. |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 1212 | * |
| 1213 | * This function adjusts the passed in vma so that it points at the file of the |
Javier Martinez Canillas | ecf1dba | 2014-04-10 01:30:05 +0200 | [diff] [blame] | 1214 | * dma_buf operation. It also adjusts the starting pgoff and does bounds |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 1215 | * checking on the size of the vma. Then it calls the exporters mmap function to |
| 1216 | * set up the mapping. |
| 1217 | * |
| 1218 | * Can return negative error values, returns 0 on success. |
| 1219 | */ |
| 1220 | int dma_buf_mmap(struct dma_buf *dmabuf, struct vm_area_struct *vma, |
| 1221 | unsigned long pgoff) |
| 1222 | { |
| 1223 | if (WARN_ON(!dmabuf || !vma)) |
| 1224 | return -EINVAL; |
| 1225 | |
Andrew F. Davis | e3a9d6c | 2019-03-29 11:52:01 -0500 | [diff] [blame] | 1226 | /* check if buffer supports mmap */ |
| 1227 | if (!dmabuf->ops->mmap) |
| 1228 | return -EINVAL; |
| 1229 | |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 1230 | /* check for offset overflow */ |
Muhammad Falak R Wani | b02da6f | 2016-05-23 17:08:42 +0530 | [diff] [blame] | 1231 | if (pgoff + vma_pages(vma) < pgoff) |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 1232 | return -EOVERFLOW; |
| 1233 | |
| 1234 | /* check for overflowing the buffer's size */ |
Muhammad Falak R Wani | b02da6f | 2016-05-23 17:08:42 +0530 | [diff] [blame] | 1235 | if (pgoff + vma_pages(vma) > |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 1236 | dmabuf->size >> PAGE_SHIFT) |
| 1237 | return -EINVAL; |
| 1238 | |
| 1239 | /* readjust the vma */ |
Christian König | 295992f | 2020-09-14 15:09:33 +0200 | [diff] [blame] | 1240 | vma_set_file(vma, dmabuf->file); |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 1241 | vma->vm_pgoff = pgoff; |
| 1242 | |
Christian König | 1527f92 | 2020-10-09 15:08:55 +0200 | [diff] [blame] | 1243 | return dmabuf->ops->mmap(dmabuf, vma); |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 1244 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 1245 | EXPORT_SYMBOL_NS_GPL(dma_buf_mmap, DMA_BUF); |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 1246 | |
| 1247 | /** |
Sumit Semwal | 12c4727 | 2012-05-23 15:27:40 +0530 | [diff] [blame] | 1248 | * dma_buf_vmap - Create virtual mapping for the buffer object into kernel |
| 1249 | * address space. Same restrictions as for vmap and friends apply. |
| 1250 | * @dmabuf: [in] buffer to vmap |
Thomas Zimmermann | 6619ccf | 2020-09-25 13:55:59 +0200 | [diff] [blame] | 1251 | * @map: [out] returns the vmap pointer |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 1252 | * |
| 1253 | * This call may fail due to lack of virtual mapping address space. |
| 1254 | * These calls are optional in drivers. The intended use for them |
| 1255 | * is for mapping objects linear in kernel space for high use objects. |
Daniel Vetter | de9114e | 2020-12-11 16:58:40 +0100 | [diff] [blame] | 1256 | * |
| 1257 | * To ensure coherency users must call dma_buf_begin_cpu_access() and |
| 1258 | * dma_buf_end_cpu_access() around any cpu access performed through this |
| 1259 | * mapping. |
Colin Cross | fee0c54 | 2013-12-20 16:43:50 -0800 | [diff] [blame] | 1260 | * |
Thomas Zimmermann | 6619ccf | 2020-09-25 13:55:59 +0200 | [diff] [blame] | 1261 | * Returns 0 on success, or a negative errno code otherwise. |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 1262 | */ |
Thomas Zimmermann | 6619ccf | 2020-09-25 13:55:59 +0200 | [diff] [blame] | 1263 | int dma_buf_vmap(struct dma_buf *dmabuf, struct dma_buf_map *map) |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 1264 | { |
Thomas Zimmermann | 6619ccf | 2020-09-25 13:55:59 +0200 | [diff] [blame] | 1265 | struct dma_buf_map ptr; |
| 1266 | int ret = 0; |
| 1267 | |
| 1268 | dma_buf_map_clear(map); |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 1269 | |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 1270 | if (WARN_ON(!dmabuf)) |
Thomas Zimmermann | 6619ccf | 2020-09-25 13:55:59 +0200 | [diff] [blame] | 1271 | return -EINVAL; |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 1272 | |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 1273 | if (!dmabuf->ops->vmap) |
Thomas Zimmermann | 6619ccf | 2020-09-25 13:55:59 +0200 | [diff] [blame] | 1274 | return -EINVAL; |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 1275 | |
| 1276 | mutex_lock(&dmabuf->lock); |
| 1277 | if (dmabuf->vmapping_counter) { |
| 1278 | dmabuf->vmapping_counter++; |
Thomas Zimmermann | 01fd30d | 2020-09-25 13:55:58 +0200 | [diff] [blame] | 1279 | BUG_ON(dma_buf_map_is_null(&dmabuf->vmap_ptr)); |
Thomas Zimmermann | 6619ccf | 2020-09-25 13:55:59 +0200 | [diff] [blame] | 1280 | *map = dmabuf->vmap_ptr; |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 1281 | goto out_unlock; |
| 1282 | } |
| 1283 | |
Thomas Zimmermann | 01fd30d | 2020-09-25 13:55:58 +0200 | [diff] [blame] | 1284 | BUG_ON(dma_buf_map_is_set(&dmabuf->vmap_ptr)); |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 1285 | |
Thomas Zimmermann | 6619ccf | 2020-09-25 13:55:59 +0200 | [diff] [blame] | 1286 | ret = dmabuf->ops->vmap(dmabuf, &ptr); |
| 1287 | if (WARN_ON_ONCE(ret)) |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 1288 | goto out_unlock; |
| 1289 | |
Thomas Zimmermann | 6619ccf | 2020-09-25 13:55:59 +0200 | [diff] [blame] | 1290 | dmabuf->vmap_ptr = ptr; |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 1291 | dmabuf->vmapping_counter = 1; |
| 1292 | |
Thomas Zimmermann | 6619ccf | 2020-09-25 13:55:59 +0200 | [diff] [blame] | 1293 | *map = dmabuf->vmap_ptr; |
| 1294 | |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 1295 | out_unlock: |
| 1296 | mutex_unlock(&dmabuf->lock); |
Thomas Zimmermann | 6619ccf | 2020-09-25 13:55:59 +0200 | [diff] [blame] | 1297 | return ret; |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 1298 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 1299 | EXPORT_SYMBOL_NS_GPL(dma_buf_vmap, DMA_BUF); |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 1300 | |
| 1301 | /** |
| 1302 | * dma_buf_vunmap - Unmap a vmap obtained by dma_buf_vmap. |
Sumit Semwal | 12c4727 | 2012-05-23 15:27:40 +0530 | [diff] [blame] | 1303 | * @dmabuf: [in] buffer to vunmap |
Thomas Zimmermann | 20e76f1 | 2020-09-25 13:56:00 +0200 | [diff] [blame] | 1304 | * @map: [in] vmap pointer to vunmap |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 1305 | */ |
Thomas Zimmermann | 20e76f1 | 2020-09-25 13:56:00 +0200 | [diff] [blame] | 1306 | void dma_buf_vunmap(struct dma_buf *dmabuf, struct dma_buf_map *map) |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 1307 | { |
| 1308 | if (WARN_ON(!dmabuf)) |
| 1309 | return; |
| 1310 | |
Thomas Zimmermann | 01fd30d | 2020-09-25 13:55:58 +0200 | [diff] [blame] | 1311 | BUG_ON(dma_buf_map_is_null(&dmabuf->vmap_ptr)); |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 1312 | BUG_ON(dmabuf->vmapping_counter == 0); |
Thomas Zimmermann | 20e76f1 | 2020-09-25 13:56:00 +0200 | [diff] [blame] | 1313 | BUG_ON(!dma_buf_map_is_equal(&dmabuf->vmap_ptr, map)); |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 1314 | |
| 1315 | mutex_lock(&dmabuf->lock); |
| 1316 | if (--dmabuf->vmapping_counter == 0) { |
| 1317 | if (dmabuf->ops->vunmap) |
Thomas Zimmermann | 20e76f1 | 2020-09-25 13:56:00 +0200 | [diff] [blame] | 1318 | dmabuf->ops->vunmap(dmabuf, map); |
Thomas Zimmermann | 01fd30d | 2020-09-25 13:55:58 +0200 | [diff] [blame] | 1319 | dma_buf_map_clear(&dmabuf->vmap_ptr); |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 1320 | } |
| 1321 | mutex_unlock(&dmabuf->lock); |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 1322 | } |
Greg Kroah-Hartman | 16b0314 | 2021-10-10 14:46:28 +0200 | [diff] [blame] | 1323 | EXPORT_SYMBOL_NS_GPL(dma_buf_vunmap, DMA_BUF); |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1324 | |
| 1325 | #ifdef CONFIG_DEBUG_FS |
Mathias Krause | eb0b947 | 2016-06-19 14:31:29 +0200 | [diff] [blame] | 1326 | static int dma_buf_debug_show(struct seq_file *s, void *unused) |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1327 | { |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1328 | struct dma_buf *buf_obj; |
| 1329 | struct dma_buf_attachment *attach_obj; |
Christian König | 63639d0 | 2021-09-23 10:28:42 +0200 | [diff] [blame] | 1330 | int count = 0, attach_count; |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1331 | size_t size = 0; |
Christian König | 680753d | 2021-05-06 15:00:31 +0200 | [diff] [blame] | 1332 | int ret; |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1333 | |
| 1334 | ret = mutex_lock_interruptible(&db_list.lock); |
| 1335 | |
| 1336 | if (ret) |
| 1337 | return ret; |
| 1338 | |
Sumit Semwal | c0b00a5 | 2014-02-03 15:09:12 +0530 | [diff] [blame] | 1339 | seq_puts(s, "\nDma-buf Objects:\n"); |
Greg Hackmann | ed63bb1 | 2019-06-13 15:34:06 -0700 | [diff] [blame] | 1340 | seq_printf(s, "%-8s\t%-8s\t%-8s\t%-8s\texp_name\t%-8s\n", |
| 1341 | "size", "flags", "mode", "count", "ino"); |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1342 | |
| 1343 | list_for_each_entry(buf_obj, &db_list.head, list_node) { |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1344 | |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 1345 | ret = dma_resv_lock_interruptible(buf_obj->resv, NULL); |
| 1346 | if (ret) |
Christian König | f45f57c | 2019-10-18 16:30:19 +0200 | [diff] [blame] | 1347 | goto error_unlock; |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1348 | |
Guangming Cao | 8c0fd12 | 2021-10-08 15:54:20 +0800 | [diff] [blame] | 1349 | |
| 1350 | spin_lock(&buf_obj->name_lock); |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 1351 | seq_printf(s, "%08zu\t%08x\t%08x\t%08ld\t%s\t%08lu\t%s\n", |
Sumit Semwal | c0b00a5 | 2014-02-03 15:09:12 +0530 | [diff] [blame] | 1352 | buf_obj->size, |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1353 | buf_obj->file->f_flags, buf_obj->file->f_mode, |
Al Viro | a1f6dba | 2014-08-20 11:05:50 -0400 | [diff] [blame] | 1354 | file_count(buf_obj->file), |
Greg Hackmann | ed63bb1 | 2019-06-13 15:34:06 -0700 | [diff] [blame] | 1355 | buf_obj->exp_name, |
Greg Hackmann | bb2bb90 | 2019-06-13 15:34:07 -0700 | [diff] [blame] | 1356 | file_inode(buf_obj->file)->i_ino, |
| 1357 | buf_obj->name ?: ""); |
Guangming Cao | 8c0fd12 | 2021-10-08 15:54:20 +0800 | [diff] [blame] | 1358 | spin_unlock(&buf_obj->name_lock); |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1359 | |
Christian König | a25efb3 | 2021-09-23 13:57:42 +0200 | [diff] [blame] | 1360 | dma_resv_describe(buf_obj->resv, s); |
Russell King | 5eb2c72 | 2017-03-31 11:00:42 +0100 | [diff] [blame] | 1361 | |
Sumit Semwal | c0b00a5 | 2014-02-03 15:09:12 +0530 | [diff] [blame] | 1362 | seq_puts(s, "\tAttached Devices:\n"); |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1363 | attach_count = 0; |
| 1364 | |
| 1365 | list_for_each_entry(attach_obj, &buf_obj->attachments, node) { |
Markus Elfring | 9eddb41 | 2017-05-08 10:32:44 +0200 | [diff] [blame] | 1366 | seq_printf(s, "\t%s\n", dev_name(attach_obj->dev)); |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1367 | attach_count++; |
| 1368 | } |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 1369 | dma_resv_unlock(buf_obj->resv); |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1370 | |
Sumit Semwal | c0b00a5 | 2014-02-03 15:09:12 +0530 | [diff] [blame] | 1371 | seq_printf(s, "Total %d devices attached\n\n", |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1372 | attach_count); |
| 1373 | |
| 1374 | count++; |
| 1375 | size += buf_obj->size; |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1376 | } |
| 1377 | |
| 1378 | seq_printf(s, "\nTotal %d objects, %zu bytes\n", count, size); |
| 1379 | |
| 1380 | mutex_unlock(&db_list.lock); |
| 1381 | return 0; |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 1382 | |
Christian König | f45f57c | 2019-10-18 16:30:19 +0200 | [diff] [blame] | 1383 | error_unlock: |
Christian König | 15fd552 | 2018-07-03 16:42:26 +0200 | [diff] [blame] | 1384 | mutex_unlock(&db_list.lock); |
| 1385 | return ret; |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1386 | } |
| 1387 | |
Yangtao Li | 2674305 | 2018-11-30 11:11:01 -0500 | [diff] [blame] | 1388 | DEFINE_SHOW_ATTRIBUTE(dma_buf_debug); |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1389 | |
| 1390 | static struct dentry *dma_buf_debugfs_dir; |
| 1391 | |
| 1392 | static int dma_buf_init_debugfs(void) |
| 1393 | { |
Mathias Krause | bd3e220 | 2016-06-19 14:31:31 +0200 | [diff] [blame] | 1394 | struct dentry *d; |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1395 | int err = 0; |
Jagan Teki | 5136629 | 2015-05-21 01:09:31 +0530 | [diff] [blame] | 1396 | |
Mathias Krause | bd3e220 | 2016-06-19 14:31:31 +0200 | [diff] [blame] | 1397 | d = debugfs_create_dir("dma_buf", NULL); |
| 1398 | if (IS_ERR(d)) |
| 1399 | return PTR_ERR(d); |
Jagan Teki | 5136629 | 2015-05-21 01:09:31 +0530 | [diff] [blame] | 1400 | |
Mathias Krause | bd3e220 | 2016-06-19 14:31:31 +0200 | [diff] [blame] | 1401 | dma_buf_debugfs_dir = d; |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1402 | |
Mathias Krause | bd3e220 | 2016-06-19 14:31:31 +0200 | [diff] [blame] | 1403 | d = debugfs_create_file("bufinfo", S_IRUGO, dma_buf_debugfs_dir, |
| 1404 | NULL, &dma_buf_debug_fops); |
| 1405 | if (IS_ERR(d)) { |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1406 | pr_debug("dma_buf: debugfs: failed to create node bufinfo\n"); |
Mathias Krause | b747999 | 2016-06-19 14:31:30 +0200 | [diff] [blame] | 1407 | debugfs_remove_recursive(dma_buf_debugfs_dir); |
| 1408 | dma_buf_debugfs_dir = NULL; |
Mathias Krause | bd3e220 | 2016-06-19 14:31:31 +0200 | [diff] [blame] | 1409 | err = PTR_ERR(d); |
Mathias Krause | b747999 | 2016-06-19 14:31:30 +0200 | [diff] [blame] | 1410 | } |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1411 | |
| 1412 | return err; |
| 1413 | } |
| 1414 | |
| 1415 | static void dma_buf_uninit_debugfs(void) |
| 1416 | { |
Vasyl Gomonovych | 298b6a8 | 2017-11-22 16:22:41 +0100 | [diff] [blame] | 1417 | debugfs_remove_recursive(dma_buf_debugfs_dir); |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1418 | } |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1419 | #else |
| 1420 | static inline int dma_buf_init_debugfs(void) |
| 1421 | { |
| 1422 | return 0; |
| 1423 | } |
| 1424 | static inline void dma_buf_uninit_debugfs(void) |
| 1425 | { |
| 1426 | } |
| 1427 | #endif |
| 1428 | |
| 1429 | static int __init dma_buf_init(void) |
| 1430 | { |
Hridya Valsaraju | bdb8d06 | 2021-06-03 14:47:51 -0700 | [diff] [blame] | 1431 | int ret; |
| 1432 | |
| 1433 | ret = dma_buf_init_sysfs_statistics(); |
| 1434 | if (ret) |
| 1435 | return ret; |
| 1436 | |
Greg Hackmann | ed63bb1 | 2019-06-13 15:34:06 -0700 | [diff] [blame] | 1437 | dma_buf_mnt = kern_mount(&dma_buf_fs_type); |
| 1438 | if (IS_ERR(dma_buf_mnt)) |
| 1439 | return PTR_ERR(dma_buf_mnt); |
| 1440 | |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1441 | mutex_init(&db_list.lock); |
| 1442 | INIT_LIST_HEAD(&db_list.head); |
| 1443 | dma_buf_init_debugfs(); |
| 1444 | return 0; |
| 1445 | } |
| 1446 | subsys_initcall(dma_buf_init); |
| 1447 | |
| 1448 | static void __exit dma_buf_deinit(void) |
| 1449 | { |
| 1450 | dma_buf_uninit_debugfs(); |
Greg Hackmann | ed63bb1 | 2019-06-13 15:34:06 -0700 | [diff] [blame] | 1451 | kern_unmount(dma_buf_mnt); |
Hridya Valsaraju | bdb8d06 | 2021-06-03 14:47:51 -0700 | [diff] [blame] | 1452 | dma_buf_uninit_sysfs_statistics(); |
Sumit Semwal | b89e3563 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 1453 | } |
| 1454 | __exitcall(dma_buf_deinit); |