Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Framework for buffer objects that can be shared across devices/subsystems. |
| 3 | * |
| 4 | * Copyright(C) 2011 Linaro Limited. All rights reserved. |
| 5 | * Author: Sumit Semwal <sumit.semwal@ti.com> |
| 6 | * |
| 7 | * Many thanks to linaro-mm-sig list, and specially |
| 8 | * Arnd Bergmann <arnd@arndb.de>, Rob Clark <rob@ti.com> and |
| 9 | * Daniel Vetter <daniel@ffwll.ch> for their support in creation and |
| 10 | * refining of this idea. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify it |
| 13 | * under the terms of the GNU General Public License version 2 as published by |
| 14 | * the Free Software Foundation. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 17 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 19 | * more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along with |
| 22 | * this program. If not, see <http://www.gnu.org/licenses/>. |
| 23 | */ |
| 24 | |
| 25 | #include <linux/fs.h> |
| 26 | #include <linux/slab.h> |
| 27 | #include <linux/dma-buf.h> |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 28 | #include <linux/fence.h> |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 29 | #include <linux/anon_inodes.h> |
| 30 | #include <linux/export.h> |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 31 | #include <linux/debugfs.h> |
Sumit Semwal | 9abdffe | 2015-05-05 14:56:15 +0530 | [diff] [blame] | 32 | #include <linux/module.h> |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 33 | #include <linux/seq_file.h> |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 34 | #include <linux/poll.h> |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 35 | #include <linux/reservation.h> |
Muhammad Falak R Wani | b02da6f | 2016-05-23 17:08:42 +0530 | [diff] [blame] | 36 | #include <linux/mm.h> |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 37 | |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 38 | #include <uapi/linux/dma-buf.h> |
| 39 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 40 | static inline int is_dma_buf_file(struct file *); |
| 41 | |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 42 | struct dma_buf_list { |
| 43 | struct list_head head; |
| 44 | struct mutex lock; |
| 45 | }; |
| 46 | |
| 47 | static struct dma_buf_list db_list; |
| 48 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 49 | static int dma_buf_release(struct inode *inode, struct file *file) |
| 50 | { |
| 51 | struct dma_buf *dmabuf; |
| 52 | |
| 53 | if (!is_dma_buf_file(file)) |
| 54 | return -EINVAL; |
| 55 | |
| 56 | dmabuf = file->private_data; |
| 57 | |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 58 | BUG_ON(dmabuf->vmapping_counter); |
| 59 | |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 60 | /* |
| 61 | * Any fences that a dma-buf poll can wait on should be signaled |
| 62 | * before releasing dma-buf. This is the responsibility of each |
| 63 | * driver that uses the reservation objects. |
| 64 | * |
| 65 | * If you hit this BUG() it means someone dropped their ref to the |
| 66 | * dma-buf while still having pending operation to the buffer. |
| 67 | */ |
| 68 | BUG_ON(dmabuf->cb_shared.active || dmabuf->cb_excl.active); |
| 69 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 70 | dmabuf->ops->release(dmabuf); |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 71 | |
| 72 | mutex_lock(&db_list.lock); |
| 73 | list_del(&dmabuf->list_node); |
| 74 | mutex_unlock(&db_list.lock); |
| 75 | |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 76 | if (dmabuf->resv == (struct reservation_object *)&dmabuf[1]) |
| 77 | reservation_object_fini(dmabuf->resv); |
| 78 | |
Sumit Semwal | 9abdffe | 2015-05-05 14:56:15 +0530 | [diff] [blame] | 79 | module_put(dmabuf->owner); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 80 | kfree(dmabuf); |
| 81 | return 0; |
| 82 | } |
| 83 | |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 84 | static int dma_buf_mmap_internal(struct file *file, struct vm_area_struct *vma) |
| 85 | { |
| 86 | struct dma_buf *dmabuf; |
| 87 | |
| 88 | if (!is_dma_buf_file(file)) |
| 89 | return -EINVAL; |
| 90 | |
| 91 | dmabuf = file->private_data; |
| 92 | |
| 93 | /* check for overflowing the buffer's size */ |
Muhammad Falak R Wani | b02da6f | 2016-05-23 17:08:42 +0530 | [diff] [blame] | 94 | if (vma->vm_pgoff + vma_pages(vma) > |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 95 | dmabuf->size >> PAGE_SHIFT) |
| 96 | return -EINVAL; |
| 97 | |
| 98 | return dmabuf->ops->mmap(dmabuf, vma); |
| 99 | } |
| 100 | |
Christopher James Halse Rogers | 19e8697 | 2013-09-10 11:36:45 +0530 | [diff] [blame] | 101 | static loff_t dma_buf_llseek(struct file *file, loff_t offset, int whence) |
| 102 | { |
| 103 | struct dma_buf *dmabuf; |
| 104 | loff_t base; |
| 105 | |
| 106 | if (!is_dma_buf_file(file)) |
| 107 | return -EBADF; |
| 108 | |
| 109 | dmabuf = file->private_data; |
| 110 | |
| 111 | /* only support discovering the end of the buffer, |
| 112 | but also allow SEEK_SET to maintain the idiomatic |
| 113 | SEEK_END(0), SEEK_CUR(0) pattern */ |
| 114 | if (whence == SEEK_END) |
| 115 | base = dmabuf->size; |
| 116 | else if (whence == SEEK_SET) |
| 117 | base = 0; |
| 118 | else |
| 119 | return -EINVAL; |
| 120 | |
| 121 | if (offset != 0) |
| 122 | return -EINVAL; |
| 123 | |
| 124 | return base + offset; |
| 125 | } |
| 126 | |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 127 | static void dma_buf_poll_cb(struct fence *fence, struct fence_cb *cb) |
| 128 | { |
| 129 | struct dma_buf_poll_cb_t *dcb = (struct dma_buf_poll_cb_t *)cb; |
| 130 | unsigned long flags; |
| 131 | |
| 132 | spin_lock_irqsave(&dcb->poll->lock, flags); |
| 133 | wake_up_locked_poll(dcb->poll, dcb->active); |
| 134 | dcb->active = 0; |
| 135 | spin_unlock_irqrestore(&dcb->poll->lock, flags); |
| 136 | } |
| 137 | |
| 138 | static unsigned int dma_buf_poll(struct file *file, poll_table *poll) |
| 139 | { |
| 140 | struct dma_buf *dmabuf; |
| 141 | struct reservation_object *resv; |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 142 | struct reservation_object_list *fobj; |
| 143 | struct fence *fence_excl; |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 144 | unsigned long events; |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 145 | unsigned shared_count, seq; |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 146 | |
| 147 | dmabuf = file->private_data; |
| 148 | if (!dmabuf || !dmabuf->resv) |
| 149 | return POLLERR; |
| 150 | |
| 151 | resv = dmabuf->resv; |
| 152 | |
| 153 | poll_wait(file, &dmabuf->poll, poll); |
| 154 | |
| 155 | events = poll_requested_events(poll) & (POLLIN | POLLOUT); |
| 156 | if (!events) |
| 157 | return 0; |
| 158 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 159 | retry: |
| 160 | seq = read_seqcount_begin(&resv->seq); |
| 161 | rcu_read_lock(); |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 162 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 163 | fobj = rcu_dereference(resv->fence); |
| 164 | if (fobj) |
| 165 | shared_count = fobj->shared_count; |
| 166 | else |
| 167 | shared_count = 0; |
| 168 | fence_excl = rcu_dereference(resv->fence_excl); |
| 169 | if (read_seqcount_retry(&resv->seq, seq)) { |
| 170 | rcu_read_unlock(); |
| 171 | goto retry; |
| 172 | } |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 173 | |
| 174 | if (fence_excl && (!(events & POLLOUT) || shared_count == 0)) { |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 175 | struct dma_buf_poll_cb_t *dcb = &dmabuf->cb_excl; |
| 176 | unsigned long pevents = POLLIN; |
| 177 | |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 178 | if (shared_count == 0) |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 179 | pevents |= POLLOUT; |
| 180 | |
| 181 | spin_lock_irq(&dmabuf->poll.lock); |
| 182 | if (dcb->active) { |
| 183 | dcb->active |= pevents; |
| 184 | events &= ~pevents; |
| 185 | } else |
| 186 | dcb->active = pevents; |
| 187 | spin_unlock_irq(&dmabuf->poll.lock); |
| 188 | |
| 189 | if (events & pevents) { |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 190 | if (!fence_get_rcu(fence_excl)) { |
| 191 | /* force a recheck */ |
| 192 | events &= ~pevents; |
| 193 | dma_buf_poll_cb(NULL, &dcb->cb); |
| 194 | } else if (!fence_add_callback(fence_excl, &dcb->cb, |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 195 | dma_buf_poll_cb)) { |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 196 | events &= ~pevents; |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 197 | fence_put(fence_excl); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 198 | } else { |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 199 | /* |
| 200 | * No callback queued, wake up any additional |
| 201 | * waiters. |
| 202 | */ |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 203 | fence_put(fence_excl); |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 204 | dma_buf_poll_cb(NULL, &dcb->cb); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 205 | } |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 206 | } |
| 207 | } |
| 208 | |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 209 | if ((events & POLLOUT) && shared_count > 0) { |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 210 | struct dma_buf_poll_cb_t *dcb = &dmabuf->cb_shared; |
| 211 | int i; |
| 212 | |
| 213 | /* Only queue a new callback if no event has fired yet */ |
| 214 | spin_lock_irq(&dmabuf->poll.lock); |
| 215 | if (dcb->active) |
| 216 | events &= ~POLLOUT; |
| 217 | else |
| 218 | dcb->active = POLLOUT; |
| 219 | spin_unlock_irq(&dmabuf->poll.lock); |
| 220 | |
| 221 | if (!(events & POLLOUT)) |
| 222 | goto out; |
| 223 | |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 224 | for (i = 0; i < shared_count; ++i) { |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 225 | struct fence *fence = rcu_dereference(fobj->shared[i]); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 226 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 227 | if (!fence_get_rcu(fence)) { |
| 228 | /* |
| 229 | * fence refcount dropped to zero, this means |
| 230 | * that fobj has been freed |
| 231 | * |
| 232 | * call dma_buf_poll_cb and force a recheck! |
| 233 | */ |
| 234 | events &= ~POLLOUT; |
| 235 | dma_buf_poll_cb(NULL, &dcb->cb); |
| 236 | break; |
| 237 | } |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 238 | if (!fence_add_callback(fence, &dcb->cb, |
| 239 | dma_buf_poll_cb)) { |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 240 | fence_put(fence); |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 241 | events &= ~POLLOUT; |
| 242 | break; |
| 243 | } |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 244 | fence_put(fence); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 245 | } |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 246 | |
| 247 | /* No callback queued, wake up any additional waiters. */ |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 248 | if (i == shared_count) |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 249 | dma_buf_poll_cb(NULL, &dcb->cb); |
| 250 | } |
| 251 | |
| 252 | out: |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 253 | rcu_read_unlock(); |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 254 | return events; |
| 255 | } |
| 256 | |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 257 | static long dma_buf_ioctl(struct file *file, |
| 258 | unsigned int cmd, unsigned long arg) |
| 259 | { |
| 260 | struct dma_buf *dmabuf; |
| 261 | struct dma_buf_sync sync; |
| 262 | enum dma_data_direction direction; |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 263 | int ret; |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 264 | |
| 265 | dmabuf = file->private_data; |
| 266 | |
| 267 | switch (cmd) { |
| 268 | case DMA_BUF_IOCTL_SYNC: |
| 269 | if (copy_from_user(&sync, (void __user *) arg, sizeof(sync))) |
| 270 | return -EFAULT; |
| 271 | |
| 272 | if (sync.flags & ~DMA_BUF_SYNC_VALID_FLAGS_MASK) |
| 273 | return -EINVAL; |
| 274 | |
| 275 | switch (sync.flags & DMA_BUF_SYNC_RW) { |
| 276 | case DMA_BUF_SYNC_READ: |
| 277 | direction = DMA_FROM_DEVICE; |
| 278 | break; |
| 279 | case DMA_BUF_SYNC_WRITE: |
| 280 | direction = DMA_TO_DEVICE; |
| 281 | break; |
| 282 | case DMA_BUF_SYNC_RW: |
| 283 | direction = DMA_BIDIRECTIONAL; |
| 284 | break; |
| 285 | default: |
| 286 | return -EINVAL; |
| 287 | } |
| 288 | |
| 289 | if (sync.flags & DMA_BUF_SYNC_END) |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 290 | ret = dma_buf_end_cpu_access(dmabuf, direction); |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 291 | else |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 292 | ret = dma_buf_begin_cpu_access(dmabuf, direction); |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 293 | |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 294 | return ret; |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 295 | default: |
| 296 | return -ENOTTY; |
| 297 | } |
| 298 | } |
| 299 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 300 | static const struct file_operations dma_buf_fops = { |
| 301 | .release = dma_buf_release, |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 302 | .mmap = dma_buf_mmap_internal, |
Christopher James Halse Rogers | 19e8697 | 2013-09-10 11:36:45 +0530 | [diff] [blame] | 303 | .llseek = dma_buf_llseek, |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 304 | .poll = dma_buf_poll, |
Daniel Vetter | c11e391 | 2016-02-11 20:04:51 -0200 | [diff] [blame] | 305 | .unlocked_ioctl = dma_buf_ioctl, |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 306 | }; |
| 307 | |
| 308 | /* |
| 309 | * is_dma_buf_file - Check if struct file* is associated with dma_buf |
| 310 | */ |
| 311 | static inline int is_dma_buf_file(struct file *file) |
| 312 | { |
| 313 | return file->f_op == &dma_buf_fops; |
| 314 | } |
| 315 | |
| 316 | /** |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 317 | * 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] | 318 | * with this buffer, so it can be exported. |
| 319 | * Also connect the allocator specific data and ops to the buffer. |
Sumit Semwal | 78df969 | 2013-03-22 18:22:16 +0530 | [diff] [blame] | 320 | * Additionally, provide a name string for exporter; useful in debugging. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 321 | * |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 322 | * @exp_info: [in] holds all the export related information provided |
| 323 | * by the exporter. see struct dma_buf_export_info |
| 324 | * for further details. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 325 | * |
| 326 | * Returns, on success, a newly created dma_buf object, which wraps the |
| 327 | * supplied private data and operations for dma_buf_ops. On either missing |
| 328 | * ops, or error in allocating struct dma_buf, will return negative error. |
| 329 | * |
| 330 | */ |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 331 | 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] | 332 | { |
| 333 | struct dma_buf *dmabuf; |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 334 | struct reservation_object *resv = exp_info->resv; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 335 | struct file *file; |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 336 | size_t alloc_size = sizeof(struct dma_buf); |
Jagan Teki | 5136629 | 2015-05-21 01:09:31 +0530 | [diff] [blame] | 337 | |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 338 | if (!exp_info->resv) |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 339 | alloc_size += sizeof(struct reservation_object); |
| 340 | else |
| 341 | /* prevent &dma_buf[1] == dma_buf->resv */ |
| 342 | alloc_size += 1; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 343 | |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 344 | if (WARN_ON(!exp_info->priv |
| 345 | || !exp_info->ops |
| 346 | || !exp_info->ops->map_dma_buf |
| 347 | || !exp_info->ops->unmap_dma_buf |
| 348 | || !exp_info->ops->release |
| 349 | || !exp_info->ops->kmap_atomic |
| 350 | || !exp_info->ops->kmap |
| 351 | || !exp_info->ops->mmap)) { |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 352 | return ERR_PTR(-EINVAL); |
| 353 | } |
| 354 | |
Sumit Semwal | 9abdffe | 2015-05-05 14:56:15 +0530 | [diff] [blame] | 355 | if (!try_module_get(exp_info->owner)) |
| 356 | return ERR_PTR(-ENOENT); |
| 357 | |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 358 | dmabuf = kzalloc(alloc_size, GFP_KERNEL); |
Sumit Semwal | 9abdffe | 2015-05-05 14:56:15 +0530 | [diff] [blame] | 359 | if (!dmabuf) { |
| 360 | module_put(exp_info->owner); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 361 | return ERR_PTR(-ENOMEM); |
Sumit Semwal | 9abdffe | 2015-05-05 14:56:15 +0530 | [diff] [blame] | 362 | } |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 363 | |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 364 | dmabuf->priv = exp_info->priv; |
| 365 | dmabuf->ops = exp_info->ops; |
| 366 | dmabuf->size = exp_info->size; |
| 367 | dmabuf->exp_name = exp_info->exp_name; |
Sumit Semwal | 9abdffe | 2015-05-05 14:56:15 +0530 | [diff] [blame] | 368 | dmabuf->owner = exp_info->owner; |
Maarten Lankhorst | 9b495a5 | 2014-07-01 12:57:43 +0200 | [diff] [blame] | 369 | init_waitqueue_head(&dmabuf->poll); |
| 370 | dmabuf->cb_excl.poll = dmabuf->cb_shared.poll = &dmabuf->poll; |
| 371 | dmabuf->cb_excl.active = dmabuf->cb_shared.active = 0; |
| 372 | |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 373 | if (!resv) { |
| 374 | resv = (struct reservation_object *)&dmabuf[1]; |
| 375 | reservation_object_init(resv); |
| 376 | } |
| 377 | dmabuf->resv = resv; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 378 | |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 379 | file = anon_inode_getfile("dmabuf", &dma_buf_fops, dmabuf, |
| 380 | exp_info->flags); |
Tuomas Tynkkynen | 9022e24 | 2013-08-27 16:30:38 +0300 | [diff] [blame] | 381 | if (IS_ERR(file)) { |
| 382 | kfree(dmabuf); |
| 383 | return ERR_CAST(file); |
| 384 | } |
Christopher James Halse Rogers | 19e8697 | 2013-09-10 11:36:45 +0530 | [diff] [blame] | 385 | |
| 386 | file->f_mode |= FMODE_LSEEK; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 387 | dmabuf->file = file; |
| 388 | |
| 389 | mutex_init(&dmabuf->lock); |
| 390 | INIT_LIST_HEAD(&dmabuf->attachments); |
| 391 | |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 392 | mutex_lock(&db_list.lock); |
| 393 | list_add(&dmabuf->list_node, &db_list.head); |
| 394 | mutex_unlock(&db_list.lock); |
| 395 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 396 | return dmabuf; |
| 397 | } |
Sumit Semwal | d8fbe34 | 2015-01-23 12:53:43 +0530 | [diff] [blame] | 398 | EXPORT_SYMBOL_GPL(dma_buf_export); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 399 | |
| 400 | /** |
| 401 | * dma_buf_fd - returns a file descriptor for the given dma_buf |
| 402 | * @dmabuf: [in] pointer to dma_buf for which fd is required. |
Dave Airlie | 55c1c4c | 2012-03-16 10:34:02 +0000 | [diff] [blame] | 403 | * @flags: [in] flags to give to fd |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 404 | * |
| 405 | * On success, returns an associated 'fd'. Else, returns error. |
| 406 | */ |
Dave Airlie | 55c1c4c | 2012-03-16 10:34:02 +0000 | [diff] [blame] | 407 | int dma_buf_fd(struct dma_buf *dmabuf, int flags) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 408 | { |
Borislav Petkov | f5e097f | 2012-12-11 16:05:26 +0100 | [diff] [blame] | 409 | int fd; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 410 | |
| 411 | if (!dmabuf || !dmabuf->file) |
| 412 | return -EINVAL; |
| 413 | |
Borislav Petkov | f5e097f | 2012-12-11 16:05:26 +0100 | [diff] [blame] | 414 | fd = get_unused_fd_flags(flags); |
| 415 | if (fd < 0) |
| 416 | return fd; |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 417 | |
| 418 | fd_install(fd, dmabuf->file); |
| 419 | |
| 420 | return fd; |
| 421 | } |
| 422 | EXPORT_SYMBOL_GPL(dma_buf_fd); |
| 423 | |
| 424 | /** |
| 425 | * dma_buf_get - returns the dma_buf structure related to an fd |
| 426 | * @fd: [in] fd associated with the dma_buf to be returned |
| 427 | * |
| 428 | * On success, returns the dma_buf structure associated with an fd; uses |
| 429 | * file's refcounting done by fget to increase refcount. returns ERR_PTR |
| 430 | * otherwise. |
| 431 | */ |
| 432 | struct dma_buf *dma_buf_get(int fd) |
| 433 | { |
| 434 | struct file *file; |
| 435 | |
| 436 | file = fget(fd); |
| 437 | |
| 438 | if (!file) |
| 439 | return ERR_PTR(-EBADF); |
| 440 | |
| 441 | if (!is_dma_buf_file(file)) { |
| 442 | fput(file); |
| 443 | return ERR_PTR(-EINVAL); |
| 444 | } |
| 445 | |
| 446 | return file->private_data; |
| 447 | } |
| 448 | EXPORT_SYMBOL_GPL(dma_buf_get); |
| 449 | |
| 450 | /** |
| 451 | * dma_buf_put - decreases refcount of the buffer |
| 452 | * @dmabuf: [in] buffer to reduce refcount of |
| 453 | * |
| 454 | * Uses file's refcounting done implicitly by fput() |
| 455 | */ |
| 456 | void dma_buf_put(struct dma_buf *dmabuf) |
| 457 | { |
| 458 | if (WARN_ON(!dmabuf || !dmabuf->file)) |
| 459 | return; |
| 460 | |
| 461 | fput(dmabuf->file); |
| 462 | } |
| 463 | EXPORT_SYMBOL_GPL(dma_buf_put); |
| 464 | |
| 465 | /** |
| 466 | * dma_buf_attach - Add the device to dma_buf's attachments list; optionally, |
| 467 | * calls attach() of dma_buf_ops to allow device-specific attach functionality |
| 468 | * @dmabuf: [in] buffer to attach device to. |
| 469 | * @dev: [in] device to be attached. |
| 470 | * |
Colin Cross | fee0c54 | 2013-12-20 16:43:50 -0800 | [diff] [blame] | 471 | * Returns struct dma_buf_attachment * for this attachment; returns ERR_PTR on |
| 472 | * error. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 473 | */ |
| 474 | struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf, |
| 475 | struct device *dev) |
| 476 | { |
| 477 | struct dma_buf_attachment *attach; |
| 478 | int ret; |
| 479 | |
Laurent Pinchart | d1aa06a | 2012-01-26 12:27:23 +0100 | [diff] [blame] | 480 | if (WARN_ON(!dmabuf || !dev)) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 481 | return ERR_PTR(-EINVAL); |
| 482 | |
| 483 | attach = kzalloc(sizeof(struct dma_buf_attachment), GFP_KERNEL); |
| 484 | if (attach == NULL) |
Laurent Pinchart | a9fbc3b | 2012-01-26 12:27:24 +0100 | [diff] [blame] | 485 | return ERR_PTR(-ENOMEM); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 486 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 487 | attach->dev = dev; |
| 488 | attach->dmabuf = dmabuf; |
Laurent Pinchart | 2ed9201 | 2012-01-26 12:27:25 +0100 | [diff] [blame] | 489 | |
| 490 | mutex_lock(&dmabuf->lock); |
| 491 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 492 | if (dmabuf->ops->attach) { |
| 493 | ret = dmabuf->ops->attach(dmabuf, dev, attach); |
| 494 | if (ret) |
| 495 | goto err_attach; |
| 496 | } |
| 497 | list_add(&attach->node, &dmabuf->attachments); |
| 498 | |
| 499 | mutex_unlock(&dmabuf->lock); |
| 500 | return attach; |
| 501 | |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 502 | err_attach: |
| 503 | kfree(attach); |
| 504 | mutex_unlock(&dmabuf->lock); |
| 505 | return ERR_PTR(ret); |
| 506 | } |
| 507 | EXPORT_SYMBOL_GPL(dma_buf_attach); |
| 508 | |
| 509 | /** |
| 510 | * dma_buf_detach - Remove the given attachment from dmabuf's attachments list; |
| 511 | * optionally calls detach() of dma_buf_ops for device-specific detach |
| 512 | * @dmabuf: [in] buffer to detach from. |
| 513 | * @attach: [in] attachment to be detached; is free'd after this call. |
| 514 | * |
| 515 | */ |
| 516 | void dma_buf_detach(struct dma_buf *dmabuf, struct dma_buf_attachment *attach) |
| 517 | { |
Laurent Pinchart | d1aa06a | 2012-01-26 12:27:23 +0100 | [diff] [blame] | 518 | if (WARN_ON(!dmabuf || !attach)) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 519 | return; |
| 520 | |
| 521 | mutex_lock(&dmabuf->lock); |
| 522 | list_del(&attach->node); |
| 523 | if (dmabuf->ops->detach) |
| 524 | dmabuf->ops->detach(dmabuf, attach); |
| 525 | |
| 526 | mutex_unlock(&dmabuf->lock); |
| 527 | kfree(attach); |
| 528 | } |
| 529 | EXPORT_SYMBOL_GPL(dma_buf_detach); |
| 530 | |
| 531 | /** |
| 532 | * dma_buf_map_attachment - Returns the scatterlist table of the attachment; |
| 533 | * mapped into _device_ address space. Is a wrapper for map_dma_buf() of the |
| 534 | * dma_buf_ops. |
| 535 | * @attach: [in] attachment whose scatterlist is to be returned |
| 536 | * @direction: [in] direction of DMA transfer |
| 537 | * |
Colin Cross | fee0c54 | 2013-12-20 16:43:50 -0800 | [diff] [blame] | 538 | * Returns sg_table containing the scatterlist to be returned; returns ERR_PTR |
| 539 | * on error. |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 540 | */ |
| 541 | struct sg_table *dma_buf_map_attachment(struct dma_buf_attachment *attach, |
| 542 | enum dma_data_direction direction) |
| 543 | { |
| 544 | struct sg_table *sg_table = ERR_PTR(-EINVAL); |
| 545 | |
| 546 | might_sleep(); |
| 547 | |
Laurent Pinchart | d1aa06a | 2012-01-26 12:27:23 +0100 | [diff] [blame] | 548 | if (WARN_ON(!attach || !attach->dmabuf)) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 549 | return ERR_PTR(-EINVAL); |
| 550 | |
Laurent Pinchart | d1aa06a | 2012-01-26 12:27:23 +0100 | [diff] [blame] | 551 | sg_table = attach->dmabuf->ops->map_dma_buf(attach, direction); |
Colin Cross | fee0c54 | 2013-12-20 16:43:50 -0800 | [diff] [blame] | 552 | if (!sg_table) |
| 553 | sg_table = ERR_PTR(-ENOMEM); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 554 | |
| 555 | return sg_table; |
| 556 | } |
| 557 | EXPORT_SYMBOL_GPL(dma_buf_map_attachment); |
| 558 | |
| 559 | /** |
| 560 | * dma_buf_unmap_attachment - unmaps and decreases usecount of the buffer;might |
| 561 | * deallocate the scatterlist associated. Is a wrapper for unmap_dma_buf() of |
| 562 | * dma_buf_ops. |
| 563 | * @attach: [in] attachment to unmap buffer from |
| 564 | * @sg_table: [in] scatterlist info of the buffer to unmap |
Sumit Semwal | 33ea2dc | 2012-01-27 15:09:27 +0530 | [diff] [blame] | 565 | * @direction: [in] direction of DMA transfer |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 566 | * |
| 567 | */ |
| 568 | void dma_buf_unmap_attachment(struct dma_buf_attachment *attach, |
Sumit Semwal | 33ea2dc | 2012-01-27 15:09:27 +0530 | [diff] [blame] | 569 | struct sg_table *sg_table, |
| 570 | enum dma_data_direction direction) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 571 | { |
Rob Clark | b6fa0cd | 2012-09-28 09:29:43 +0200 | [diff] [blame] | 572 | might_sleep(); |
| 573 | |
Laurent Pinchart | d1aa06a | 2012-01-26 12:27:23 +0100 | [diff] [blame] | 574 | if (WARN_ON(!attach || !attach->dmabuf || !sg_table)) |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 575 | return; |
| 576 | |
Sumit Semwal | 33ea2dc | 2012-01-27 15:09:27 +0530 | [diff] [blame] | 577 | attach->dmabuf->ops->unmap_dma_buf(attach, sg_table, |
| 578 | direction); |
Sumit Semwal | d15bd7e | 2011-12-26 14:53:15 +0530 | [diff] [blame] | 579 | } |
| 580 | EXPORT_SYMBOL_GPL(dma_buf_unmap_attachment); |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 581 | |
| 582 | |
| 583 | /** |
| 584 | * dma_buf_begin_cpu_access - Must be called before accessing a dma_buf from the |
| 585 | * cpu in the kernel context. Calls begin_cpu_access to allow exporter-specific |
| 586 | * preparations. Coherency is only guaranteed in the specified range for the |
| 587 | * specified access direction. |
Randy Dunlap | efb4df82 | 2012-04-17 17:03:30 -0700 | [diff] [blame] | 588 | * @dmabuf: [in] buffer to prepare cpu access for. |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 589 | * @direction: [in] length of range for cpu access. |
| 590 | * |
| 591 | * Can return negative error values, returns 0 on success. |
| 592 | */ |
Tiago Vignatti | 831e9da | 2015-12-22 19:36:45 -0200 | [diff] [blame] | 593 | int dma_buf_begin_cpu_access(struct dma_buf *dmabuf, |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 594 | enum dma_data_direction direction) |
| 595 | { |
| 596 | int ret = 0; |
| 597 | |
| 598 | if (WARN_ON(!dmabuf)) |
| 599 | return -EINVAL; |
| 600 | |
| 601 | if (dmabuf->ops->begin_cpu_access) |
Tiago Vignatti | 831e9da | 2015-12-22 19:36:45 -0200 | [diff] [blame] | 602 | ret = dmabuf->ops->begin_cpu_access(dmabuf, direction); |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 603 | |
| 604 | return ret; |
| 605 | } |
| 606 | EXPORT_SYMBOL_GPL(dma_buf_begin_cpu_access); |
| 607 | |
| 608 | /** |
| 609 | * dma_buf_end_cpu_access - Must be called after accessing a dma_buf from the |
| 610 | * cpu in the kernel context. Calls end_cpu_access to allow exporter-specific |
| 611 | * actions. Coherency is only guaranteed in the specified range for the |
| 612 | * specified access direction. |
Randy Dunlap | efb4df82 | 2012-04-17 17:03:30 -0700 | [diff] [blame] | 613 | * @dmabuf: [in] buffer to complete cpu access for. |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 614 | * @direction: [in] length of range for cpu access. |
| 615 | * |
Daniel Vetter | 87e332d | 2016-03-21 08:24:22 +0100 | [diff] [blame] | 616 | * Can return negative error values, returns 0 on success. |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 617 | */ |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 618 | int dma_buf_end_cpu_access(struct dma_buf *dmabuf, |
| 619 | enum dma_data_direction direction) |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 620 | { |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 621 | int ret = 0; |
| 622 | |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 623 | WARN_ON(!dmabuf); |
| 624 | |
| 625 | if (dmabuf->ops->end_cpu_access) |
Chris Wilson | 18b862d | 2016-03-18 20:02:39 +0000 | [diff] [blame] | 626 | ret = dmabuf->ops->end_cpu_access(dmabuf, direction); |
| 627 | |
| 628 | return ret; |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 629 | } |
| 630 | EXPORT_SYMBOL_GPL(dma_buf_end_cpu_access); |
| 631 | |
| 632 | /** |
| 633 | * dma_buf_kmap_atomic - Map a page of the buffer object into kernel address |
| 634 | * space. The same restrictions as for kmap_atomic and friends apply. |
Randy Dunlap | efb4df82 | 2012-04-17 17:03:30 -0700 | [diff] [blame] | 635 | * @dmabuf: [in] buffer to map page from. |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 636 | * @page_num: [in] page in PAGE_SIZE units to map. |
| 637 | * |
| 638 | * This call must always succeed, any necessary preparations that might fail |
| 639 | * need to be done in begin_cpu_access. |
| 640 | */ |
| 641 | void *dma_buf_kmap_atomic(struct dma_buf *dmabuf, unsigned long page_num) |
| 642 | { |
| 643 | WARN_ON(!dmabuf); |
| 644 | |
| 645 | return dmabuf->ops->kmap_atomic(dmabuf, page_num); |
| 646 | } |
| 647 | EXPORT_SYMBOL_GPL(dma_buf_kmap_atomic); |
| 648 | |
| 649 | /** |
| 650 | * dma_buf_kunmap_atomic - Unmap a page obtained by dma_buf_kmap_atomic. |
Randy Dunlap | efb4df82 | 2012-04-17 17:03:30 -0700 | [diff] [blame] | 651 | * @dmabuf: [in] buffer to unmap page from. |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 652 | * @page_num: [in] page in PAGE_SIZE units to unmap. |
| 653 | * @vaddr: [in] kernel space pointer obtained from dma_buf_kmap_atomic. |
| 654 | * |
| 655 | * This call must always succeed. |
| 656 | */ |
| 657 | void dma_buf_kunmap_atomic(struct dma_buf *dmabuf, unsigned long page_num, |
| 658 | void *vaddr) |
| 659 | { |
| 660 | WARN_ON(!dmabuf); |
| 661 | |
| 662 | if (dmabuf->ops->kunmap_atomic) |
| 663 | dmabuf->ops->kunmap_atomic(dmabuf, page_num, vaddr); |
| 664 | } |
| 665 | EXPORT_SYMBOL_GPL(dma_buf_kunmap_atomic); |
| 666 | |
| 667 | /** |
| 668 | * dma_buf_kmap - Map a page of the buffer object into kernel address space. The |
| 669 | * same restrictions as for kmap and friends apply. |
Randy Dunlap | efb4df82 | 2012-04-17 17:03:30 -0700 | [diff] [blame] | 670 | * @dmabuf: [in] buffer to map page from. |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 671 | * @page_num: [in] page in PAGE_SIZE units to map. |
| 672 | * |
| 673 | * This call must always succeed, any necessary preparations that might fail |
| 674 | * need to be done in begin_cpu_access. |
| 675 | */ |
| 676 | void *dma_buf_kmap(struct dma_buf *dmabuf, unsigned long page_num) |
| 677 | { |
| 678 | WARN_ON(!dmabuf); |
| 679 | |
| 680 | return dmabuf->ops->kmap(dmabuf, page_num); |
| 681 | } |
| 682 | EXPORT_SYMBOL_GPL(dma_buf_kmap); |
| 683 | |
| 684 | /** |
| 685 | * dma_buf_kunmap - Unmap a page obtained by dma_buf_kmap. |
Randy Dunlap | efb4df82 | 2012-04-17 17:03:30 -0700 | [diff] [blame] | 686 | * @dmabuf: [in] buffer to unmap page from. |
Daniel Vetter | fc13020 | 2012-03-20 00:02:37 +0100 | [diff] [blame] | 687 | * @page_num: [in] page in PAGE_SIZE units to unmap. |
| 688 | * @vaddr: [in] kernel space pointer obtained from dma_buf_kmap. |
| 689 | * |
| 690 | * This call must always succeed. |
| 691 | */ |
| 692 | void dma_buf_kunmap(struct dma_buf *dmabuf, unsigned long page_num, |
| 693 | void *vaddr) |
| 694 | { |
| 695 | WARN_ON(!dmabuf); |
| 696 | |
| 697 | if (dmabuf->ops->kunmap) |
| 698 | dmabuf->ops->kunmap(dmabuf, page_num, vaddr); |
| 699 | } |
| 700 | EXPORT_SYMBOL_GPL(dma_buf_kunmap); |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 701 | |
| 702 | |
| 703 | /** |
| 704 | * dma_buf_mmap - Setup up a userspace mmap with the given vma |
Sumit Semwal | 12c4727 | 2012-05-23 15:27:40 +0530 | [diff] [blame] | 705 | * @dmabuf: [in] buffer that should back the vma |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 706 | * @vma: [in] vma for the mmap |
| 707 | * @pgoff: [in] offset in pages where this mmap should start within the |
Jagan Teki | 5136629 | 2015-05-21 01:09:31 +0530 | [diff] [blame] | 708 | * dma-buf buffer. |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 709 | * |
| 710 | * 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] | 711 | * dma_buf operation. It also adjusts the starting pgoff and does bounds |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 712 | * checking on the size of the vma. Then it calls the exporters mmap function to |
| 713 | * set up the mapping. |
| 714 | * |
| 715 | * Can return negative error values, returns 0 on success. |
| 716 | */ |
| 717 | int dma_buf_mmap(struct dma_buf *dmabuf, struct vm_area_struct *vma, |
| 718 | unsigned long pgoff) |
| 719 | { |
John Sheu | 495c10c | 2013-02-11 17:50:24 -0800 | [diff] [blame] | 720 | struct file *oldfile; |
| 721 | int ret; |
| 722 | |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 723 | if (WARN_ON(!dmabuf || !vma)) |
| 724 | return -EINVAL; |
| 725 | |
| 726 | /* check for offset overflow */ |
Muhammad Falak R Wani | b02da6f | 2016-05-23 17:08:42 +0530 | [diff] [blame] | 727 | if (pgoff + vma_pages(vma) < pgoff) |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 728 | return -EOVERFLOW; |
| 729 | |
| 730 | /* check for overflowing the buffer's size */ |
Muhammad Falak R Wani | b02da6f | 2016-05-23 17:08:42 +0530 | [diff] [blame] | 731 | if (pgoff + vma_pages(vma) > |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 732 | dmabuf->size >> PAGE_SHIFT) |
| 733 | return -EINVAL; |
| 734 | |
| 735 | /* readjust the vma */ |
John Sheu | 495c10c | 2013-02-11 17:50:24 -0800 | [diff] [blame] | 736 | get_file(dmabuf->file); |
| 737 | oldfile = vma->vm_file; |
| 738 | vma->vm_file = dmabuf->file; |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 739 | vma->vm_pgoff = pgoff; |
| 740 | |
John Sheu | 495c10c | 2013-02-11 17:50:24 -0800 | [diff] [blame] | 741 | ret = dmabuf->ops->mmap(dmabuf, vma); |
| 742 | if (ret) { |
| 743 | /* restore old parameters on failure */ |
| 744 | vma->vm_file = oldfile; |
| 745 | fput(dmabuf->file); |
| 746 | } else { |
| 747 | if (oldfile) |
| 748 | fput(oldfile); |
| 749 | } |
| 750 | return ret; |
| 751 | |
Daniel Vetter | 4c78513 | 2012-04-24 14:38:52 +0530 | [diff] [blame] | 752 | } |
| 753 | EXPORT_SYMBOL_GPL(dma_buf_mmap); |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 754 | |
| 755 | /** |
Sumit Semwal | 12c4727 | 2012-05-23 15:27:40 +0530 | [diff] [blame] | 756 | * dma_buf_vmap - Create virtual mapping for the buffer object into kernel |
| 757 | * address space. Same restrictions as for vmap and friends apply. |
| 758 | * @dmabuf: [in] buffer to vmap |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 759 | * |
| 760 | * This call may fail due to lack of virtual mapping address space. |
| 761 | * These calls are optional in drivers. The intended use for them |
| 762 | * is for mapping objects linear in kernel space for high use objects. |
| 763 | * Please attempt to use kmap/kunmap before thinking about these interfaces. |
Colin Cross | fee0c54 | 2013-12-20 16:43:50 -0800 | [diff] [blame] | 764 | * |
| 765 | * Returns NULL on error. |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 766 | */ |
| 767 | void *dma_buf_vmap(struct dma_buf *dmabuf) |
| 768 | { |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 769 | void *ptr; |
| 770 | |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 771 | if (WARN_ON(!dmabuf)) |
| 772 | return NULL; |
| 773 | |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 774 | if (!dmabuf->ops->vmap) |
| 775 | return NULL; |
| 776 | |
| 777 | mutex_lock(&dmabuf->lock); |
| 778 | if (dmabuf->vmapping_counter) { |
| 779 | dmabuf->vmapping_counter++; |
| 780 | BUG_ON(!dmabuf->vmap_ptr); |
| 781 | ptr = dmabuf->vmap_ptr; |
| 782 | goto out_unlock; |
| 783 | } |
| 784 | |
| 785 | BUG_ON(dmabuf->vmap_ptr); |
| 786 | |
| 787 | ptr = dmabuf->ops->vmap(dmabuf); |
Colin Cross | fee0c54 | 2013-12-20 16:43:50 -0800 | [diff] [blame] | 788 | if (WARN_ON_ONCE(IS_ERR(ptr))) |
| 789 | ptr = NULL; |
| 790 | if (!ptr) |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 791 | goto out_unlock; |
| 792 | |
| 793 | dmabuf->vmap_ptr = ptr; |
| 794 | dmabuf->vmapping_counter = 1; |
| 795 | |
| 796 | out_unlock: |
| 797 | mutex_unlock(&dmabuf->lock); |
| 798 | return ptr; |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 799 | } |
| 800 | EXPORT_SYMBOL_GPL(dma_buf_vmap); |
| 801 | |
| 802 | /** |
| 803 | * dma_buf_vunmap - Unmap a vmap obtained by dma_buf_vmap. |
Sumit Semwal | 12c4727 | 2012-05-23 15:27:40 +0530 | [diff] [blame] | 804 | * @dmabuf: [in] buffer to vunmap |
Randy Dunlap | 6e7b4a5 | 2012-06-09 15:02:59 -0700 | [diff] [blame] | 805 | * @vaddr: [in] vmap to vunmap |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 806 | */ |
| 807 | void dma_buf_vunmap(struct dma_buf *dmabuf, void *vaddr) |
| 808 | { |
| 809 | if (WARN_ON(!dmabuf)) |
| 810 | return; |
| 811 | |
Daniel Vetter | f00b4da | 2012-12-20 14:14:23 +0100 | [diff] [blame] | 812 | BUG_ON(!dmabuf->vmap_ptr); |
| 813 | BUG_ON(dmabuf->vmapping_counter == 0); |
| 814 | BUG_ON(dmabuf->vmap_ptr != vaddr); |
| 815 | |
| 816 | mutex_lock(&dmabuf->lock); |
| 817 | if (--dmabuf->vmapping_counter == 0) { |
| 818 | if (dmabuf->ops->vunmap) |
| 819 | dmabuf->ops->vunmap(dmabuf, vaddr); |
| 820 | dmabuf->vmap_ptr = NULL; |
| 821 | } |
| 822 | mutex_unlock(&dmabuf->lock); |
Dave Airlie | 98f86c9 | 2012-05-20 12:33:56 +0530 | [diff] [blame] | 823 | } |
| 824 | EXPORT_SYMBOL_GPL(dma_buf_vunmap); |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 825 | |
| 826 | #ifdef CONFIG_DEBUG_FS |
Mathias Krause | eb0b947 | 2016-06-19 14:31:29 +0200 | [diff] [blame] | 827 | static int dma_buf_debug_show(struct seq_file *s, void *unused) |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 828 | { |
| 829 | int ret; |
| 830 | struct dma_buf *buf_obj; |
| 831 | struct dma_buf_attachment *attach_obj; |
| 832 | int count = 0, attach_count; |
| 833 | size_t size = 0; |
| 834 | |
| 835 | ret = mutex_lock_interruptible(&db_list.lock); |
| 836 | |
| 837 | if (ret) |
| 838 | return ret; |
| 839 | |
Sumit Semwal | c0b00a5 | 2014-02-03 15:09:12 +0530 | [diff] [blame] | 840 | seq_puts(s, "\nDma-buf Objects:\n"); |
| 841 | seq_puts(s, "size\tflags\tmode\tcount\texp_name\n"); |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 842 | |
| 843 | list_for_each_entry(buf_obj, &db_list.head, list_node) { |
| 844 | ret = mutex_lock_interruptible(&buf_obj->lock); |
| 845 | |
| 846 | if (ret) { |
Sumit Semwal | c0b00a5 | 2014-02-03 15:09:12 +0530 | [diff] [blame] | 847 | seq_puts(s, |
| 848 | "\tERROR locking buffer object: skipping\n"); |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 849 | continue; |
| 850 | } |
| 851 | |
Sumit Semwal | c0b00a5 | 2014-02-03 15:09:12 +0530 | [diff] [blame] | 852 | seq_printf(s, "%08zu\t%08x\t%08x\t%08ld\t%s\n", |
| 853 | buf_obj->size, |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 854 | buf_obj->file->f_flags, buf_obj->file->f_mode, |
Al Viro | a1f6dba | 2014-08-20 11:05:50 -0400 | [diff] [blame] | 855 | file_count(buf_obj->file), |
Sumit Semwal | c0b00a5 | 2014-02-03 15:09:12 +0530 | [diff] [blame] | 856 | buf_obj->exp_name); |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 857 | |
Sumit Semwal | c0b00a5 | 2014-02-03 15:09:12 +0530 | [diff] [blame] | 858 | seq_puts(s, "\tAttached Devices:\n"); |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 859 | attach_count = 0; |
| 860 | |
| 861 | list_for_each_entry(attach_obj, &buf_obj->attachments, node) { |
Sumit Semwal | c0b00a5 | 2014-02-03 15:09:12 +0530 | [diff] [blame] | 862 | seq_puts(s, "\t"); |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 863 | |
Sumit Semwal | c0b00a5 | 2014-02-03 15:09:12 +0530 | [diff] [blame] | 864 | seq_printf(s, "%s\n", dev_name(attach_obj->dev)); |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 865 | attach_count++; |
| 866 | } |
| 867 | |
Sumit Semwal | c0b00a5 | 2014-02-03 15:09:12 +0530 | [diff] [blame] | 868 | seq_printf(s, "Total %d devices attached\n\n", |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 869 | attach_count); |
| 870 | |
| 871 | count++; |
| 872 | size += buf_obj->size; |
| 873 | mutex_unlock(&buf_obj->lock); |
| 874 | } |
| 875 | |
| 876 | seq_printf(s, "\nTotal %d objects, %zu bytes\n", count, size); |
| 877 | |
| 878 | mutex_unlock(&db_list.lock); |
| 879 | return 0; |
| 880 | } |
| 881 | |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 882 | static int dma_buf_debug_open(struct inode *inode, struct file *file) |
| 883 | { |
Mathias Krause | eb0b947 | 2016-06-19 14:31:29 +0200 | [diff] [blame] | 884 | return single_open(file, dma_buf_debug_show, NULL); |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 885 | } |
| 886 | |
| 887 | static const struct file_operations dma_buf_debug_fops = { |
| 888 | .open = dma_buf_debug_open, |
| 889 | .read = seq_read, |
| 890 | .llseek = seq_lseek, |
| 891 | .release = single_release, |
| 892 | }; |
| 893 | |
| 894 | static struct dentry *dma_buf_debugfs_dir; |
| 895 | |
| 896 | static int dma_buf_init_debugfs(void) |
| 897 | { |
| 898 | int err = 0; |
Jagan Teki | 5136629 | 2015-05-21 01:09:31 +0530 | [diff] [blame] | 899 | |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 900 | dma_buf_debugfs_dir = debugfs_create_dir("dma_buf", NULL); |
Jagan Teki | 5136629 | 2015-05-21 01:09:31 +0530 | [diff] [blame] | 901 | |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 902 | if (IS_ERR(dma_buf_debugfs_dir)) { |
| 903 | err = PTR_ERR(dma_buf_debugfs_dir); |
| 904 | dma_buf_debugfs_dir = NULL; |
| 905 | return err; |
| 906 | } |
| 907 | |
Mathias Krause | eb0b947 | 2016-06-19 14:31:29 +0200 | [diff] [blame] | 908 | err = dma_buf_debugfs_create_file("bufinfo", NULL); |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 909 | |
Mathias Krause | b747999 | 2016-06-19 14:31:30 +0200 | [diff] [blame^] | 910 | if (err) { |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 911 | pr_debug("dma_buf: debugfs: failed to create node bufinfo\n"); |
Mathias Krause | b747999 | 2016-06-19 14:31:30 +0200 | [diff] [blame^] | 912 | debugfs_remove_recursive(dma_buf_debugfs_dir); |
| 913 | dma_buf_debugfs_dir = NULL; |
| 914 | } |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 915 | |
| 916 | return err; |
| 917 | } |
| 918 | |
| 919 | static void dma_buf_uninit_debugfs(void) |
| 920 | { |
| 921 | if (dma_buf_debugfs_dir) |
| 922 | debugfs_remove_recursive(dma_buf_debugfs_dir); |
| 923 | } |
| 924 | |
| 925 | int dma_buf_debugfs_create_file(const char *name, |
| 926 | int (*write)(struct seq_file *)) |
| 927 | { |
| 928 | struct dentry *d; |
| 929 | |
| 930 | d = debugfs_create_file(name, S_IRUGO, dma_buf_debugfs_dir, |
| 931 | write, &dma_buf_debug_fops); |
| 932 | |
Sachin Kamat | 28ce420 | 2013-07-15 15:51:22 +0530 | [diff] [blame] | 933 | return PTR_ERR_OR_ZERO(d); |
Sumit Semwal | b89e356 | 2013-04-04 11:44:37 +0530 | [diff] [blame] | 934 | } |
| 935 | #else |
| 936 | static inline int dma_buf_init_debugfs(void) |
| 937 | { |
| 938 | return 0; |
| 939 | } |
| 940 | static inline void dma_buf_uninit_debugfs(void) |
| 941 | { |
| 942 | } |
| 943 | #endif |
| 944 | |
| 945 | static int __init dma_buf_init(void) |
| 946 | { |
| 947 | mutex_init(&db_list.lock); |
| 948 | INIT_LIST_HEAD(&db_list.head); |
| 949 | dma_buf_init_debugfs(); |
| 950 | return 0; |
| 951 | } |
| 952 | subsys_initcall(dma_buf_init); |
| 953 | |
| 954 | static void __exit dma_buf_deinit(void) |
| 955 | { |
| 956 | dma_buf_uninit_debugfs(); |
| 957 | } |
| 958 | __exitcall(dma_buf_deinit); |