Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1 | /* |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 2 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 3 | * drivers/gpu/ion/ion.c |
| 4 | * |
| 5 | * Copyright (C) 2011 Google, Inc. |
Liam Mark | cc2d4bd | 2013-01-16 10:14:40 -0800 | [diff] [blame] | 6 | * Copyright (c) 2011-2013, The Linux Foundation. All rights reserved. |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 7 | * |
| 8 | * This software is licensed under the terms of the GNU General Public |
| 9 | * License version 2, as published by the Free Software Foundation, and |
| 10 | * may be copied, distributed, and modified under those terms. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | */ |
| 18 | |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 19 | #include <linux/module.h> |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 20 | #include <linux/device.h> |
| 21 | #include <linux/file.h> |
| 22 | #include <linux/fs.h> |
| 23 | #include <linux/anon_inodes.h> |
| 24 | #include <linux/ion.h> |
| 25 | #include <linux/list.h> |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 26 | #include <linux/memblock.h> |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 27 | #include <linux/miscdevice.h> |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 28 | #include <linux/mm.h> |
| 29 | #include <linux/mm_types.h> |
| 30 | #include <linux/rbtree.h> |
| 31 | #include <linux/sched.h> |
| 32 | #include <linux/slab.h> |
| 33 | #include <linux/seq_file.h> |
| 34 | #include <linux/uaccess.h> |
| 35 | #include <linux/debugfs.h> |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 36 | #include <linux/dma-buf.h> |
Mitchel Humpherys | d88b8eb | 2012-09-04 17:00:29 -0700 | [diff] [blame] | 37 | #include <linux/msm_ion.h> |
Liam Mark | cc2d4bd | 2013-01-16 10:14:40 -0800 | [diff] [blame] | 38 | #include <trace/events/kmem.h> |
| 39 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 40 | |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 41 | #include <mach/iommu_domains.h> |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 42 | #include "ion_priv.h" |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 43 | |
| 44 | /** |
| 45 | * struct ion_device - the metadata of the ion device node |
| 46 | * @dev: the actual misc device |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 47 | * @buffers: an rb tree of all the existing buffers |
| 48 | * @buffer_lock: lock protecting the tree of buffers |
| 49 | * @lock: rwsem protecting the tree of heaps and clients |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 50 | * @heaps: list of all the heaps in the system |
| 51 | * @user_clients: list of all the clients created from userspace |
| 52 | */ |
| 53 | struct ion_device { |
| 54 | struct miscdevice dev; |
| 55 | struct rb_root buffers; |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 56 | struct mutex buffer_lock; |
| 57 | struct rw_semaphore lock; |
Rebecca Schultz Zavin | 47b9888 | 2012-11-15 10:36:10 -0800 | [diff] [blame] | 58 | struct plist_head heaps; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 59 | long (*custom_ioctl) (struct ion_client *client, unsigned int cmd, |
| 60 | unsigned long arg); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 61 | struct rb_root clients; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 62 | struct dentry *debug_root; |
| 63 | }; |
| 64 | |
| 65 | /** |
| 66 | * struct ion_client - a process/hw block local address space |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 67 | * @node: node in the tree of all clients |
| 68 | * @dev: backpointer to ion device |
| 69 | * @handles: an rb tree of all the handles in this client |
| 70 | * @lock: lock protecting the tree of handles |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 71 | * @heap_type_mask: mask of all supported heap types |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 72 | * @name: used for debugging |
| 73 | * @task: used for debugging |
| 74 | * |
| 75 | * A client represents a list of buffers this client may access. |
| 76 | * The mutex stored here is used to protect both handles tree |
| 77 | * as well as the handles themselves, and should be held while modifying either. |
| 78 | */ |
| 79 | struct ion_client { |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 80 | struct rb_node node; |
| 81 | struct ion_device *dev; |
| 82 | struct rb_root handles; |
| 83 | struct mutex lock; |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 84 | unsigned int heap_type_mask; |
Olav Haugan | 63e5f3b | 2012-01-11 16:42:37 -0800 | [diff] [blame] | 85 | char *name; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 86 | struct task_struct *task; |
| 87 | pid_t pid; |
| 88 | struct dentry *debug_root; |
| 89 | }; |
| 90 | |
| 91 | /** |
| 92 | * ion_handle - a client local reference to a buffer |
| 93 | * @ref: reference count |
| 94 | * @client: back pointer to the client the buffer resides in |
| 95 | * @buffer: pointer to the buffer |
| 96 | * @node: node in the client's handle rbtree |
| 97 | * @kmap_cnt: count of times this client has mapped to kernel |
| 98 | * @dmap_cnt: count of times this client has mapped for dma |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 99 | * |
| 100 | * Modifications to node, map_cnt or mapping should be protected by the |
| 101 | * lock in the client. Other fields are never changed after initialization. |
| 102 | */ |
| 103 | struct ion_handle { |
| 104 | struct kref ref; |
| 105 | struct ion_client *client; |
| 106 | struct ion_buffer *buffer; |
| 107 | struct rb_node node; |
| 108 | unsigned int kmap_cnt; |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 109 | unsigned int iommu_map_cnt; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 110 | }; |
| 111 | |
Rebecca Schultz Zavin | f858ba4 | 2012-09-21 11:46:06 -0700 | [diff] [blame] | 112 | bool ion_buffer_fault_user_mappings(struct ion_buffer *buffer) |
| 113 | { |
| 114 | return ((buffer->flags & ION_FLAG_CACHED) && |
| 115 | !(buffer->flags & ION_FLAG_CACHED_NEEDS_SYNC)); |
| 116 | } |
| 117 | |
Rebecca Schultz Zavin | 943facc | 2012-08-06 21:37:23 -0700 | [diff] [blame] | 118 | bool ion_buffer_cached(struct ion_buffer *buffer) |
| 119 | { |
| 120 | return !!(buffer->flags & ION_FLAG_CACHED); |
| 121 | } |
| 122 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 123 | /* this function should only be called while dev->lock is held */ |
| 124 | static void ion_buffer_add(struct ion_device *dev, |
| 125 | struct ion_buffer *buffer) |
| 126 | { |
| 127 | struct rb_node **p = &dev->buffers.rb_node; |
| 128 | struct rb_node *parent = NULL; |
| 129 | struct ion_buffer *entry; |
| 130 | |
| 131 | while (*p) { |
| 132 | parent = *p; |
| 133 | entry = rb_entry(parent, struct ion_buffer, node); |
| 134 | |
| 135 | if (buffer < entry) { |
| 136 | p = &(*p)->rb_left; |
| 137 | } else if (buffer > entry) { |
| 138 | p = &(*p)->rb_right; |
| 139 | } else { |
| 140 | pr_err("%s: buffer already found.", __func__); |
| 141 | BUG(); |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | rb_link_node(&buffer->node, parent, p); |
| 146 | rb_insert_color(&buffer->node, &dev->buffers); |
| 147 | } |
| 148 | |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 149 | static int ion_buffer_alloc_dirty(struct ion_buffer *buffer); |
| 150 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 151 | /* this function should only be called while dev->lock is held */ |
| 152 | static struct ion_buffer *ion_buffer_create(struct ion_heap *heap, |
| 153 | struct ion_device *dev, |
| 154 | unsigned long len, |
| 155 | unsigned long align, |
| 156 | unsigned long flags) |
| 157 | { |
| 158 | struct ion_buffer *buffer; |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 159 | struct sg_table *table; |
Rebecca Schultz Zavin | f3f59ed | 2012-06-07 14:51:21 -0700 | [diff] [blame] | 160 | struct scatterlist *sg; |
| 161 | int i, ret; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 162 | |
| 163 | buffer = kzalloc(sizeof(struct ion_buffer), GFP_KERNEL); |
| 164 | if (!buffer) |
| 165 | return ERR_PTR(-ENOMEM); |
| 166 | |
| 167 | buffer->heap = heap; |
Rebecca Schultz Zavin | f858ba4 | 2012-09-21 11:46:06 -0700 | [diff] [blame] | 168 | buffer->flags = flags; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 169 | kref_init(&buffer->ref); |
| 170 | |
| 171 | ret = heap->ops->allocate(heap, buffer, len, align, flags); |
| 172 | if (ret) { |
| 173 | kfree(buffer); |
| 174 | return ERR_PTR(ret); |
| 175 | } |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 176 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 177 | buffer->dev = dev; |
| 178 | buffer->size = len; |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 179 | |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 180 | table = heap->ops->map_dma(heap, buffer); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 181 | if (IS_ERR_OR_NULL(table)) { |
| 182 | heap->ops->free(buffer); |
| 183 | kfree(buffer); |
| 184 | return ERR_PTR(PTR_ERR(table)); |
| 185 | } |
| 186 | buffer->sg_table = table; |
Rebecca Schultz Zavin | f858ba4 | 2012-09-21 11:46:06 -0700 | [diff] [blame] | 187 | if (ion_buffer_fault_user_mappings(buffer)) { |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 188 | for_each_sg(buffer->sg_table->sgl, sg, buffer->sg_table->nents, |
| 189 | i) { |
| 190 | if (sg_dma_len(sg) == PAGE_SIZE) |
| 191 | continue; |
Rebecca Schultz Zavin | f858ba4 | 2012-09-21 11:46:06 -0700 | [diff] [blame] | 192 | pr_err("%s: cached mappings that will be faulted in " |
| 193 | "must have pagewise sg_lists\n", __func__); |
Rebecca Schultz Zavin | 7aea56a | 2012-09-10 16:12:01 -0700 | [diff] [blame] | 194 | ret = -EINVAL; |
| 195 | goto err; |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 196 | } |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 197 | |
Rebecca Schultz Zavin | 7aea56a | 2012-09-10 16:12:01 -0700 | [diff] [blame] | 198 | ret = ion_buffer_alloc_dirty(buffer); |
| 199 | if (ret) |
| 200 | goto err; |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | buffer->dev = dev; |
| 204 | buffer->size = len; |
| 205 | INIT_LIST_HEAD(&buffer->vmas); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 206 | mutex_init(&buffer->lock); |
Rebecca Schultz Zavin | f3f59ed | 2012-06-07 14:51:21 -0700 | [diff] [blame] | 207 | /* this will set up dma addresses for the sglist -- it is not |
| 208 | technically correct as per the dma api -- a specific |
| 209 | device isn't really taking ownership here. However, in practice on |
| 210 | our systems the only dma_address space is physical addresses. |
| 211 | Additionally, we can't afford the overhead of invalidating every |
| 212 | allocation via dma_map_sg. The implicit contract here is that |
| 213 | memory comming from the heaps is ready for dma, ie if it has a |
| 214 | cached mapping that mapping has been invalidated */ |
Laura Abbott | 6c13b982 | 2013-03-29 18:29:03 -0700 | [diff] [blame] | 215 | for_each_sg(buffer->sg_table->sgl, sg, buffer->sg_table->nents, i) { |
| 216 | if (sg_dma_address(sg) == 0) |
| 217 | sg_dma_address(sg) = sg_phys(sg); |
| 218 | } |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 219 | mutex_lock(&dev->buffer_lock); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 220 | ion_buffer_add(dev, buffer); |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 221 | mutex_unlock(&dev->buffer_lock); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 222 | return buffer; |
Rebecca Schultz Zavin | 7aea56a | 2012-09-10 16:12:01 -0700 | [diff] [blame] | 223 | |
| 224 | err: |
| 225 | heap->ops->unmap_dma(heap, buffer); |
| 226 | heap->ops->free(buffer); |
| 227 | kfree(buffer); |
| 228 | return ERR_PTR(ret); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 229 | } |
| 230 | |
Laura Abbott | 9361930 | 2012-10-11 11:51:40 -0700 | [diff] [blame] | 231 | static void ion_delayed_unsecure(struct ion_buffer *buffer) |
| 232 | { |
| 233 | if (buffer->heap->ops->unsecure_buffer) |
| 234 | buffer->heap->ops->unsecure_buffer(buffer, 1); |
| 235 | } |
| 236 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 237 | static void ion_buffer_destroy(struct kref *kref) |
| 238 | { |
| 239 | struct ion_buffer *buffer = container_of(kref, struct ion_buffer, ref); |
| 240 | struct ion_device *dev = buffer->dev; |
| 241 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 242 | if (WARN_ON(buffer->kmap_cnt > 0)) |
| 243 | buffer->heap->ops->unmap_kernel(buffer->heap, buffer); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 244 | buffer->heap->ops->unmap_dma(buffer->heap, buffer); |
| 245 | |
Laura Abbott | 9361930 | 2012-10-11 11:51:40 -0700 | [diff] [blame] | 246 | ion_delayed_unsecure(buffer); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 247 | buffer->heap->ops->free(buffer); |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 248 | mutex_lock(&dev->buffer_lock); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 249 | rb_erase(&buffer->node, &dev->buffers); |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 250 | mutex_unlock(&dev->buffer_lock); |
Rebecca Schultz Zavin | 7aea56a | 2012-09-10 16:12:01 -0700 | [diff] [blame] | 251 | if (buffer->flags & ION_FLAG_CACHED) |
| 252 | kfree(buffer->dirty); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 253 | kfree(buffer); |
| 254 | } |
| 255 | |
| 256 | static void ion_buffer_get(struct ion_buffer *buffer) |
| 257 | { |
| 258 | kref_get(&buffer->ref); |
| 259 | } |
| 260 | |
| 261 | static int ion_buffer_put(struct ion_buffer *buffer) |
| 262 | { |
| 263 | return kref_put(&buffer->ref, ion_buffer_destroy); |
| 264 | } |
| 265 | |
| 266 | static struct ion_handle *ion_handle_create(struct ion_client *client, |
| 267 | struct ion_buffer *buffer) |
| 268 | { |
| 269 | struct ion_handle *handle; |
| 270 | |
| 271 | handle = kzalloc(sizeof(struct ion_handle), GFP_KERNEL); |
| 272 | if (!handle) |
| 273 | return ERR_PTR(-ENOMEM); |
| 274 | kref_init(&handle->ref); |
| 275 | rb_init_node(&handle->node); |
| 276 | handle->client = client; |
| 277 | ion_buffer_get(buffer); |
| 278 | handle->buffer = buffer; |
| 279 | |
| 280 | return handle; |
| 281 | } |
| 282 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 283 | static void ion_handle_kmap_put(struct ion_handle *); |
| 284 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 285 | static void ion_handle_destroy(struct kref *kref) |
| 286 | { |
| 287 | struct ion_handle *handle = container_of(kref, struct ion_handle, ref); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 288 | struct ion_client *client = handle->client; |
| 289 | struct ion_buffer *buffer = handle->buffer; |
| 290 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 291 | mutex_lock(&buffer->lock); |
| 292 | while (handle->kmap_cnt) |
| 293 | ion_handle_kmap_put(handle); |
| 294 | mutex_unlock(&buffer->lock); |
| 295 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 296 | if (!RB_EMPTY_NODE(&handle->node)) |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 297 | rb_erase(&handle->node, &client->handles); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 298 | |
| 299 | ion_buffer_put(buffer); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 300 | kfree(handle); |
| 301 | } |
| 302 | |
| 303 | struct ion_buffer *ion_handle_buffer(struct ion_handle *handle) |
| 304 | { |
| 305 | return handle->buffer; |
| 306 | } |
| 307 | |
| 308 | static void ion_handle_get(struct ion_handle *handle) |
| 309 | { |
| 310 | kref_get(&handle->ref); |
| 311 | } |
| 312 | |
| 313 | static int ion_handle_put(struct ion_handle *handle) |
| 314 | { |
| 315 | return kref_put(&handle->ref, ion_handle_destroy); |
| 316 | } |
| 317 | |
| 318 | static struct ion_handle *ion_handle_lookup(struct ion_client *client, |
| 319 | struct ion_buffer *buffer) |
| 320 | { |
| 321 | struct rb_node *n; |
| 322 | |
| 323 | for (n = rb_first(&client->handles); n; n = rb_next(n)) { |
| 324 | struct ion_handle *handle = rb_entry(n, struct ion_handle, |
| 325 | node); |
| 326 | if (handle->buffer == buffer) |
| 327 | return handle; |
| 328 | } |
| 329 | return NULL; |
| 330 | } |
| 331 | |
| 332 | static bool ion_handle_validate(struct ion_client *client, struct ion_handle *handle) |
| 333 | { |
| 334 | struct rb_node *n = client->handles.rb_node; |
| 335 | |
| 336 | while (n) { |
| 337 | struct ion_handle *handle_node = rb_entry(n, struct ion_handle, |
| 338 | node); |
| 339 | if (handle < handle_node) |
| 340 | n = n->rb_left; |
| 341 | else if (handle > handle_node) |
| 342 | n = n->rb_right; |
| 343 | else |
| 344 | return true; |
| 345 | } |
| 346 | return false; |
| 347 | } |
| 348 | |
| 349 | static void ion_handle_add(struct ion_client *client, struct ion_handle *handle) |
| 350 | { |
| 351 | struct rb_node **p = &client->handles.rb_node; |
| 352 | struct rb_node *parent = NULL; |
| 353 | struct ion_handle *entry; |
| 354 | |
| 355 | while (*p) { |
| 356 | parent = *p; |
| 357 | entry = rb_entry(parent, struct ion_handle, node); |
| 358 | |
| 359 | if (handle < entry) |
| 360 | p = &(*p)->rb_left; |
| 361 | else if (handle > entry) |
| 362 | p = &(*p)->rb_right; |
| 363 | else |
| 364 | WARN(1, "%s: buffer already found.", __func__); |
| 365 | } |
| 366 | |
| 367 | rb_link_node(&handle->node, parent, p); |
| 368 | rb_insert_color(&handle->node, &client->handles); |
| 369 | } |
| 370 | |
| 371 | struct ion_handle *ion_alloc(struct ion_client *client, size_t len, |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 372 | size_t align, unsigned int heap_id_mask, |
Hanumant Singh | 7d72bad | 2012-08-29 18:39:44 -0700 | [diff] [blame] | 373 | unsigned int flags) |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 374 | { |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 375 | struct ion_handle *handle; |
| 376 | struct ion_device *dev = client->dev; |
| 377 | struct ion_buffer *buffer = NULL; |
Rebecca Schultz Zavin | 47b9888 | 2012-11-15 10:36:10 -0800 | [diff] [blame] | 378 | struct ion_heap *heap; |
Adrian Alexei | 9253859 | 2013-03-27 10:53:43 -0700 | [diff] [blame] | 379 | unsigned long secure_allocation = flags & ION_FLAG_SECURE; |
Olav Haugan | 35e2f2f | 2012-01-11 17:31:47 -0800 | [diff] [blame] | 380 | const unsigned int MAX_DBG_STR_LEN = 64; |
| 381 | char dbg_str[MAX_DBG_STR_LEN]; |
| 382 | unsigned int dbg_str_idx = 0; |
| 383 | |
| 384 | dbg_str[0] = '\0'; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 385 | |
Mitchel Humpherys | 485650f | 2013-03-15 16:06:07 -0700 | [diff] [blame] | 386 | /* |
| 387 | * For now, we don't want to fault in pages individually since |
| 388 | * clients are already doing manual cache maintenance. In |
| 389 | * other words, the implicit caching infrastructure is in |
| 390 | * place (in code) but should not be used. |
| 391 | */ |
| 392 | flags |= ION_FLAG_CACHED_NEEDS_SYNC; |
| 393 | |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 394 | pr_debug("%s: len %d align %d heap_id_mask %u flags %x\n", __func__, |
| 395 | len, align, heap_id_mask, flags); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 396 | /* |
| 397 | * traverse the list of heaps available in this system in priority |
| 398 | * order. If the heap type is supported by the client, and matches the |
| 399 | * request of the caller allocate from it. Repeat until allocate has |
| 400 | * succeeded or all heaps have been tried |
| 401 | */ |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 402 | if (WARN_ON(!len)) |
| 403 | return ERR_PTR(-EINVAL); |
| 404 | |
| 405 | len = PAGE_ALIGN(len); |
| 406 | |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 407 | down_read(&dev->lock); |
Rebecca Schultz Zavin | 47b9888 | 2012-11-15 10:36:10 -0800 | [diff] [blame] | 408 | plist_for_each_entry(heap, &dev->heaps, node) { |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 409 | /* if the client doesn't support this heap type */ |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 410 | if (!((1 << heap->type) & client->heap_type_mask)) |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 411 | continue; |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 412 | /* if the caller didn't specify this heap id */ |
| 413 | if (!((1 << heap->id) & heap_id_mask)) |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 414 | continue; |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 415 | /* Do not allow un-secure heap if secure is specified */ |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 416 | if (secure_allocation && |
Laura Abbott | 4afbd8b | 2013-02-15 09:21:33 -0800 | [diff] [blame] | 417 | !ion_heap_allow_secure_allocation(heap->type)) |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 418 | continue; |
Liam Mark | cc2d4bd | 2013-01-16 10:14:40 -0800 | [diff] [blame] | 419 | trace_ion_alloc_buffer_start(client->name, heap->name, len, |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 420 | heap_id_mask, flags); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 421 | buffer = ion_buffer_create(heap, dev, len, align, flags); |
Liam Mark | cc2d4bd | 2013-01-16 10:14:40 -0800 | [diff] [blame] | 422 | trace_ion_alloc_buffer_end(client->name, heap->name, len, |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 423 | heap_id_mask, flags); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 424 | if (!IS_ERR_OR_NULL(buffer)) |
| 425 | break; |
Liam Mark | cc2d4bd | 2013-01-16 10:14:40 -0800 | [diff] [blame] | 426 | |
| 427 | trace_ion_alloc_buffer_fallback(client->name, heap->name, len, |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 428 | heap_id_mask, flags, |
| 429 | PTR_ERR(buffer)); |
Olav Haugan | 35e2f2f | 2012-01-11 17:31:47 -0800 | [diff] [blame] | 430 | if (dbg_str_idx < MAX_DBG_STR_LEN) { |
| 431 | unsigned int len_left = MAX_DBG_STR_LEN-dbg_str_idx-1; |
| 432 | int ret_value = snprintf(&dbg_str[dbg_str_idx], |
| 433 | len_left, "%s ", heap->name); |
| 434 | if (ret_value >= len_left) { |
| 435 | /* overflow */ |
| 436 | dbg_str[MAX_DBG_STR_LEN-1] = '\0'; |
| 437 | dbg_str_idx = MAX_DBG_STR_LEN; |
| 438 | } else if (ret_value >= 0) { |
| 439 | dbg_str_idx += ret_value; |
| 440 | } else { |
| 441 | /* error */ |
| 442 | dbg_str[MAX_DBG_STR_LEN-1] = '\0'; |
| 443 | } |
| 444 | } |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 445 | } |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 446 | up_read(&dev->lock); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 447 | |
Liam Mark | cc2d4bd | 2013-01-16 10:14:40 -0800 | [diff] [blame] | 448 | if (buffer == NULL) { |
| 449 | trace_ion_alloc_buffer_fail(client->name, dbg_str, len, |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 450 | heap_id_mask, flags, -ENODEV); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 451 | return ERR_PTR(-ENODEV); |
Liam Mark | cc2d4bd | 2013-01-16 10:14:40 -0800 | [diff] [blame] | 452 | } |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 453 | |
| 454 | if (IS_ERR(buffer)) { |
Liam Mark | cc2d4bd | 2013-01-16 10:14:40 -0800 | [diff] [blame] | 455 | trace_ion_alloc_buffer_fail(client->name, dbg_str, len, |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 456 | heap_id_mask, flags, |
| 457 | PTR_ERR(buffer)); |
Olav Haugan | 35e2f2f | 2012-01-11 17:31:47 -0800 | [diff] [blame] | 458 | pr_debug("ION is unable to allocate 0x%x bytes (alignment: " |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 459 | "0x%x) from heap(s) %sfor client %s\n", |
| 460 | len, align, dbg_str, client->name); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 461 | return ERR_PTR(PTR_ERR(buffer)); |
Olav Haugan | 35e2f2f | 2012-01-11 17:31:47 -0800 | [diff] [blame] | 462 | } |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 463 | |
| 464 | handle = ion_handle_create(client, buffer); |
| 465 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 466 | /* |
| 467 | * ion_buffer_create will create a buffer with a ref_cnt of 1, |
| 468 | * and ion_handle_create will take a second reference, drop one here |
| 469 | */ |
| 470 | ion_buffer_put(buffer); |
| 471 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 472 | if (!IS_ERR(handle)) { |
| 473 | mutex_lock(&client->lock); |
| 474 | ion_handle_add(client, handle); |
| 475 | mutex_unlock(&client->lock); |
| 476 | } |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 477 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 478 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 479 | return handle; |
| 480 | } |
Olav Haugan | bd2b692 | 2012-01-25 09:28:55 -0800 | [diff] [blame] | 481 | EXPORT_SYMBOL(ion_alloc); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 482 | |
| 483 | void ion_free(struct ion_client *client, struct ion_handle *handle) |
| 484 | { |
| 485 | bool valid_handle; |
| 486 | |
| 487 | BUG_ON(client != handle->client); |
| 488 | |
| 489 | mutex_lock(&client->lock); |
| 490 | valid_handle = ion_handle_validate(client, handle); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 491 | if (!valid_handle) { |
Laura Abbott | ec149ff | 2012-01-26 13:33:11 -0800 | [diff] [blame] | 492 | mutex_unlock(&client->lock); |
Olav Haugan | 6ede567 | 2012-04-19 10:20:22 -0700 | [diff] [blame] | 493 | WARN(1, "%s: invalid handle passed to free.\n", __func__); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 494 | return; |
| 495 | } |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 496 | ion_handle_put(handle); |
Rebecca Schultz Zavin | aad11cb | 2012-08-20 15:41:11 -0700 | [diff] [blame] | 497 | mutex_unlock(&client->lock); |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 498 | } |
Olav Haugan | bd2b692 | 2012-01-25 09:28:55 -0800 | [diff] [blame] | 499 | EXPORT_SYMBOL(ion_free); |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 500 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 501 | int ion_phys(struct ion_client *client, struct ion_handle *handle, |
| 502 | ion_phys_addr_t *addr, size_t *len) |
| 503 | { |
| 504 | struct ion_buffer *buffer; |
| 505 | int ret; |
| 506 | |
| 507 | mutex_lock(&client->lock); |
| 508 | if (!ion_handle_validate(client, handle)) { |
| 509 | mutex_unlock(&client->lock); |
| 510 | return -EINVAL; |
| 511 | } |
| 512 | |
| 513 | buffer = handle->buffer; |
| 514 | |
| 515 | if (!buffer->heap->ops->phys) { |
| 516 | pr_err("%s: ion_phys is not implemented by this heap.\n", |
| 517 | __func__); |
| 518 | mutex_unlock(&client->lock); |
| 519 | return -ENODEV; |
| 520 | } |
| 521 | mutex_unlock(&client->lock); |
| 522 | ret = buffer->heap->ops->phys(buffer->heap, buffer, addr, len); |
| 523 | return ret; |
| 524 | } |
Olav Haugan | bd2b692 | 2012-01-25 09:28:55 -0800 | [diff] [blame] | 525 | EXPORT_SYMBOL(ion_phys); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 526 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 527 | static void *ion_buffer_kmap_get(struct ion_buffer *buffer) |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 528 | { |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 529 | void *vaddr; |
| 530 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 531 | if (buffer->kmap_cnt) { |
| 532 | buffer->kmap_cnt++; |
| 533 | return buffer->vaddr; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 534 | } |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 535 | vaddr = buffer->heap->ops->map_kernel(buffer->heap, buffer); |
| 536 | if (IS_ERR_OR_NULL(vaddr)) |
| 537 | return vaddr; |
| 538 | buffer->vaddr = vaddr; |
| 539 | buffer->kmap_cnt++; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 540 | return vaddr; |
| 541 | } |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 542 | |
| 543 | static void *ion_handle_kmap_get(struct ion_handle *handle) |
| 544 | { |
| 545 | struct ion_buffer *buffer = handle->buffer; |
| 546 | void *vaddr; |
| 547 | |
| 548 | if (handle->kmap_cnt) { |
| 549 | handle->kmap_cnt++; |
| 550 | return buffer->vaddr; |
| 551 | } |
| 552 | vaddr = ion_buffer_kmap_get(buffer); |
| 553 | if (IS_ERR_OR_NULL(vaddr)) |
| 554 | return vaddr; |
| 555 | handle->kmap_cnt++; |
| 556 | return vaddr; |
| 557 | } |
| 558 | |
| 559 | static void ion_buffer_kmap_put(struct ion_buffer *buffer) |
| 560 | { |
| 561 | buffer->kmap_cnt--; |
| 562 | if (!buffer->kmap_cnt) { |
| 563 | buffer->heap->ops->unmap_kernel(buffer->heap, buffer); |
| 564 | buffer->vaddr = NULL; |
| 565 | } |
| 566 | } |
| 567 | |
| 568 | static void ion_handle_kmap_put(struct ion_handle *handle) |
| 569 | { |
| 570 | struct ion_buffer *buffer = handle->buffer; |
| 571 | |
| 572 | handle->kmap_cnt--; |
| 573 | if (!handle->kmap_cnt) |
| 574 | ion_buffer_kmap_put(buffer); |
| 575 | } |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 576 | |
Mitchel Humpherys | 911b4b7 | 2012-09-12 14:42:50 -0700 | [diff] [blame] | 577 | void *ion_map_kernel(struct ion_client *client, struct ion_handle *handle) |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 578 | { |
| 579 | struct ion_buffer *buffer; |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 580 | void *vaddr; |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 581 | |
| 582 | mutex_lock(&client->lock); |
| 583 | if (!ion_handle_validate(client, handle)) { |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 584 | pr_err("%s: invalid handle passed to map_kernel.\n", |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 585 | __func__); |
Rebecca Schultz Zavin | e6ee124 | 2011-06-30 12:19:55 -0700 | [diff] [blame] | 586 | mutex_unlock(&client->lock); |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 587 | return ERR_PTR(-EINVAL); |
| 588 | } |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 589 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 590 | buffer = handle->buffer; |
| 591 | |
| 592 | if (!handle->buffer->heap->ops->map_kernel) { |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 593 | pr_err("%s: map_kernel is not implemented by this heap.\n", |
| 594 | __func__); |
Rebecca Schultz Zavin | e6ee124 | 2011-06-30 12:19:55 -0700 | [diff] [blame] | 595 | mutex_unlock(&client->lock); |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 596 | return ERR_PTR(-ENODEV); |
| 597 | } |
Laura Abbott | 894fd58 | 2011-08-19 13:33:56 -0700 | [diff] [blame] | 598 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 599 | mutex_lock(&buffer->lock); |
| 600 | vaddr = ion_handle_kmap_get(handle); |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 601 | mutex_unlock(&buffer->lock); |
| 602 | mutex_unlock(&client->lock); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 603 | return vaddr; |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 604 | } |
Olav Haugan | bd453a9 | 2012-07-05 14:21:34 -0700 | [diff] [blame] | 605 | EXPORT_SYMBOL(ion_map_kernel); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 606 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 607 | void ion_unmap_kernel(struct ion_client *client, struct ion_handle *handle) |
| 608 | { |
| 609 | struct ion_buffer *buffer; |
| 610 | |
| 611 | mutex_lock(&client->lock); |
| 612 | buffer = handle->buffer; |
| 613 | mutex_lock(&buffer->lock); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 614 | ion_handle_kmap_put(handle); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 615 | mutex_unlock(&buffer->lock); |
| 616 | mutex_unlock(&client->lock); |
| 617 | } |
Olav Haugan | bd453a9 | 2012-07-05 14:21:34 -0700 | [diff] [blame] | 618 | EXPORT_SYMBOL(ion_unmap_kernel); |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 619 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 620 | static int ion_debug_client_show(struct seq_file *s, void *unused) |
| 621 | { |
| 622 | struct ion_client *client = s->private; |
| 623 | struct rb_node *n; |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 624 | |
Olav Haugan | 854c9e1 | 2012-05-16 16:34:28 -0700 | [diff] [blame] | 625 | seq_printf(s, "%16.16s: %16.16s : %16.16s : %12.12s : %12.12s : %s\n", |
| 626 | "heap_name", "size_in_bytes", "handle refcount", |
| 627 | "buffer", "physical", "[domain,partition] - virt"); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 628 | |
| 629 | mutex_lock(&client->lock); |
| 630 | for (n = rb_first(&client->handles); n; n = rb_next(n)) { |
| 631 | struct ion_handle *handle = rb_entry(n, struct ion_handle, |
| 632 | node); |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 633 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 634 | enum ion_heap_type type = handle->buffer->heap->type; |
| 635 | |
Olav Haugan | 854c9e1 | 2012-05-16 16:34:28 -0700 | [diff] [blame] | 636 | seq_printf(s, "%16.16s: %16x : %16d : %12p", |
Laura Abbott | 68c8064 | 2011-10-21 17:32:27 -0700 | [diff] [blame] | 637 | handle->buffer->heap->name, |
| 638 | handle->buffer->size, |
| 639 | atomic_read(&handle->ref.refcount), |
| 640 | handle->buffer); |
Olav Haugan | 854c9e1 | 2012-05-16 16:34:28 -0700 | [diff] [blame] | 641 | |
| 642 | if (type == ION_HEAP_TYPE_SYSTEM_CONTIG || |
| 643 | type == ION_HEAP_TYPE_CARVEOUT || |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 644 | type == (enum ion_heap_type) ION_HEAP_TYPE_CP) |
Laura Abbott | 1135c9e | 2013-03-13 15:33:40 -0700 | [diff] [blame] | 645 | seq_printf(s, " : %12pa", &handle->buffer->priv_phys); |
Olav Haugan | 854c9e1 | 2012-05-16 16:34:28 -0700 | [diff] [blame] | 646 | else |
| 647 | seq_printf(s, " : %12s", "N/A"); |
| 648 | |
Olav Haugan | 854c9e1 | 2012-05-16 16:34:28 -0700 | [diff] [blame] | 649 | seq_printf(s, "\n"); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 650 | } |
| 651 | mutex_unlock(&client->lock); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 652 | return 0; |
| 653 | } |
| 654 | |
| 655 | static int ion_debug_client_open(struct inode *inode, struct file *file) |
| 656 | { |
| 657 | return single_open(file, ion_debug_client_show, inode->i_private); |
| 658 | } |
| 659 | |
| 660 | static const struct file_operations debug_client_fops = { |
| 661 | .open = ion_debug_client_open, |
| 662 | .read = seq_read, |
| 663 | .llseek = seq_lseek, |
| 664 | .release = single_release, |
| 665 | }; |
| 666 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 667 | struct ion_client *ion_client_create(struct ion_device *dev, |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 668 | unsigned int heap_type_mask, |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 669 | const char *name) |
| 670 | { |
| 671 | struct ion_client *client; |
| 672 | struct task_struct *task; |
| 673 | struct rb_node **p; |
| 674 | struct rb_node *parent = NULL; |
| 675 | struct ion_client *entry; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 676 | pid_t pid; |
Olav Haugan | e8a3197 | 2012-05-16 13:11:41 -0700 | [diff] [blame] | 677 | unsigned int name_len; |
| 678 | |
| 679 | if (!name) { |
| 680 | pr_err("%s: Name cannot be null\n", __func__); |
| 681 | return ERR_PTR(-EINVAL); |
| 682 | } |
| 683 | name_len = strnlen(name, 64); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 684 | |
| 685 | get_task_struct(current->group_leader); |
| 686 | task_lock(current->group_leader); |
| 687 | pid = task_pid_nr(current->group_leader); |
| 688 | /* don't bother to store task struct for kernel threads, |
| 689 | they can't be killed anyway */ |
| 690 | if (current->group_leader->flags & PF_KTHREAD) { |
| 691 | put_task_struct(current->group_leader); |
| 692 | task = NULL; |
| 693 | } else { |
| 694 | task = current->group_leader; |
| 695 | } |
| 696 | task_unlock(current->group_leader); |
| 697 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 698 | client = kzalloc(sizeof(struct ion_client), GFP_KERNEL); |
| 699 | if (!client) { |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 700 | if (task) |
| 701 | put_task_struct(current->group_leader); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 702 | return ERR_PTR(-ENOMEM); |
| 703 | } |
| 704 | |
| 705 | client->dev = dev; |
| 706 | client->handles = RB_ROOT; |
| 707 | mutex_init(&client->lock); |
Olav Haugan | 63e5f3b | 2012-01-11 16:42:37 -0800 | [diff] [blame] | 708 | |
Olav Haugan | 6625c7d1 | 2012-01-24 13:50:43 -0800 | [diff] [blame] | 709 | client->name = kzalloc(name_len+1, GFP_KERNEL); |
Olav Haugan | 63e5f3b | 2012-01-11 16:42:37 -0800 | [diff] [blame] | 710 | if (!client->name) { |
| 711 | put_task_struct(current->group_leader); |
| 712 | kfree(client); |
| 713 | return ERR_PTR(-ENOMEM); |
| 714 | } else { |
Olav Haugan | 6625c7d1 | 2012-01-24 13:50:43 -0800 | [diff] [blame] | 715 | strlcpy(client->name, name, name_len+1); |
Olav Haugan | 63e5f3b | 2012-01-11 16:42:37 -0800 | [diff] [blame] | 716 | } |
| 717 | |
Rebecca Schultz Zavin | 2536d60 | 2012-12-11 11:45:59 -0800 | [diff] [blame^] | 718 | client->heap_type_mask = heap_type_mask; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 719 | client->task = task; |
| 720 | client->pid = pid; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 721 | |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 722 | down_write(&dev->lock); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 723 | p = &dev->clients.rb_node; |
| 724 | while (*p) { |
| 725 | parent = *p; |
| 726 | entry = rb_entry(parent, struct ion_client, node); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 727 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 728 | if (client < entry) |
| 729 | p = &(*p)->rb_left; |
| 730 | else if (client > entry) |
| 731 | p = &(*p)->rb_right; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 732 | } |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 733 | rb_link_node(&client->node, parent, p); |
| 734 | rb_insert_color(&client->node, &dev->clients); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 735 | |
Laura Abbott | eed8603 | 2011-12-05 15:32:36 -0800 | [diff] [blame] | 736 | |
| 737 | client->debug_root = debugfs_create_file(name, 0664, |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 738 | dev->debug_root, client, |
| 739 | &debug_client_fops); |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 740 | up_write(&dev->lock); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 741 | |
| 742 | return client; |
| 743 | } |
| 744 | |
Mitchel Humpherys | a75e4eb | 2012-12-14 16:12:23 -0800 | [diff] [blame] | 745 | /** |
| 746 | * ion_mark_dangling_buffers_locked() - Mark dangling buffers |
| 747 | * @dev: the ion device whose buffers will be searched |
| 748 | * |
| 749 | * Sets marked=1 for all known buffers associated with `dev' that no |
| 750 | * longer have a handle pointing to them. dev->lock should be held |
| 751 | * across a call to this function (and should only be unlocked after |
| 752 | * checking for marked buffers). |
| 753 | */ |
| 754 | static void ion_mark_dangling_buffers_locked(struct ion_device *dev) |
| 755 | { |
| 756 | struct rb_node *n, *n2; |
| 757 | /* mark all buffers as 1 */ |
| 758 | for (n = rb_first(&dev->buffers); n; n = rb_next(n)) { |
| 759 | struct ion_buffer *buf = rb_entry(n, struct ion_buffer, |
| 760 | node); |
| 761 | |
| 762 | buf->marked = 1; |
| 763 | } |
| 764 | |
| 765 | /* now see which buffers we can access */ |
| 766 | for (n = rb_first(&dev->clients); n; n = rb_next(n)) { |
| 767 | struct ion_client *client = rb_entry(n, struct ion_client, |
| 768 | node); |
| 769 | |
| 770 | mutex_lock(&client->lock); |
| 771 | for (n2 = rb_first(&client->handles); n2; n2 = rb_next(n2)) { |
| 772 | struct ion_handle *handle |
| 773 | = rb_entry(n2, struct ion_handle, node); |
| 774 | |
| 775 | handle->buffer->marked = 0; |
| 776 | |
| 777 | } |
| 778 | mutex_unlock(&client->lock); |
| 779 | |
| 780 | } |
| 781 | } |
| 782 | |
| 783 | #ifdef CONFIG_ION_LEAK_CHECK |
| 784 | static u32 ion_debug_check_leaks_on_destroy; |
| 785 | |
| 786 | static int ion_check_for_and_print_leaks(struct ion_device *dev) |
| 787 | { |
| 788 | struct rb_node *n; |
| 789 | int num_leaks = 0; |
| 790 | |
| 791 | if (!ion_debug_check_leaks_on_destroy) |
| 792 | return 0; |
| 793 | |
| 794 | /* check for leaked buffers (those that no longer have a |
| 795 | * handle pointing to them) */ |
| 796 | ion_mark_dangling_buffers_locked(dev); |
| 797 | |
| 798 | /* Anyone still marked as a 1 means a leaked handle somewhere */ |
| 799 | for (n = rb_first(&dev->buffers); n; n = rb_next(n)) { |
| 800 | struct ion_buffer *buf = rb_entry(n, struct ion_buffer, |
| 801 | node); |
| 802 | |
| 803 | if (buf->marked == 1) { |
| 804 | pr_info("Leaked ion buffer at %p\n", buf); |
| 805 | num_leaks++; |
| 806 | } |
| 807 | } |
| 808 | return num_leaks; |
| 809 | } |
| 810 | static void setup_ion_leak_check(struct dentry *debug_root) |
| 811 | { |
| 812 | debugfs_create_bool("check_leaks_on_destroy", 0664, debug_root, |
| 813 | &ion_debug_check_leaks_on_destroy); |
| 814 | } |
| 815 | #else |
| 816 | static int ion_check_for_and_print_leaks(struct ion_device *dev) |
| 817 | { |
| 818 | return 0; |
| 819 | } |
| 820 | static void setup_ion_leak_check(struct dentry *debug_root) |
| 821 | { |
| 822 | } |
| 823 | #endif |
| 824 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 825 | void ion_client_destroy(struct ion_client *client) |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 826 | { |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 827 | struct ion_device *dev = client->dev; |
| 828 | struct rb_node *n; |
Mitchel Humpherys | a75e4eb | 2012-12-14 16:12:23 -0800 | [diff] [blame] | 829 | int num_leaks; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 830 | |
| 831 | pr_debug("%s: %d\n", __func__, __LINE__); |
| 832 | while ((n = rb_first(&client->handles))) { |
| 833 | struct ion_handle *handle = rb_entry(n, struct ion_handle, |
| 834 | node); |
| 835 | ion_handle_destroy(&handle->ref); |
| 836 | } |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 837 | down_write(&dev->lock); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 838 | if (client->task) |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 839 | put_task_struct(client->task); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 840 | rb_erase(&client->node, &dev->clients); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 841 | debugfs_remove_recursive(client->debug_root); |
Mitchel Humpherys | a75e4eb | 2012-12-14 16:12:23 -0800 | [diff] [blame] | 842 | |
| 843 | num_leaks = ion_check_for_and_print_leaks(dev); |
| 844 | |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 845 | up_write(&dev->lock); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 846 | |
Mitchel Humpherys | a75e4eb | 2012-12-14 16:12:23 -0800 | [diff] [blame] | 847 | if (num_leaks) { |
| 848 | struct task_struct *current_task = current; |
| 849 | char current_task_name[TASK_COMM_LEN]; |
| 850 | get_task_comm(current_task_name, current_task); |
| 851 | WARN(1, "%s: Detected %d leaked ion buffer%s.\n", |
| 852 | __func__, num_leaks, num_leaks == 1 ? "" : "s"); |
| 853 | pr_info("task name at time of leak: %s, pid: %d\n", |
| 854 | current_task_name, current_task->pid); |
| 855 | } |
| 856 | |
Olav Haugan | 63e5f3b | 2012-01-11 16:42:37 -0800 | [diff] [blame] | 857 | kfree(client->name); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 858 | kfree(client); |
| 859 | } |
Olav Haugan | bd453a9 | 2012-07-05 14:21:34 -0700 | [diff] [blame] | 860 | EXPORT_SYMBOL(ion_client_destroy); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 861 | |
Laura Abbott | 273dd8e | 2011-10-12 14:26:33 -0700 | [diff] [blame] | 862 | int ion_handle_get_flags(struct ion_client *client, struct ion_handle *handle, |
| 863 | unsigned long *flags) |
Rebecca Schultz Zavin | 46d7133 | 2012-05-07 16:06:32 -0700 | [diff] [blame] | 864 | { |
| 865 | struct ion_buffer *buffer; |
Rebecca Schultz Zavin | 46d7133 | 2012-05-07 16:06:32 -0700 | [diff] [blame] | 866 | |
| 867 | mutex_lock(&client->lock); |
| 868 | if (!ion_handle_validate(client, handle)) { |
Laura Abbott | 273dd8e | 2011-10-12 14:26:33 -0700 | [diff] [blame] | 869 | pr_err("%s: invalid handle passed to %s.\n", |
| 870 | __func__, __func__); |
Rebecca Schultz Zavin | 46d7133 | 2012-05-07 16:06:32 -0700 | [diff] [blame] | 871 | mutex_unlock(&client->lock); |
Rebecca Schultz Zavin | 043a614 | 2012-02-01 11:09:46 -0800 | [diff] [blame] | 872 | return -EINVAL; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 873 | } |
Laura Abbott | 273dd8e | 2011-10-12 14:26:33 -0700 | [diff] [blame] | 874 | buffer = handle->buffer; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 875 | mutex_lock(&buffer->lock); |
Laura Abbott | 273dd8e | 2011-10-12 14:26:33 -0700 | [diff] [blame] | 876 | *flags = buffer->flags; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 877 | mutex_unlock(&buffer->lock); |
Laura Abbott | 273dd8e | 2011-10-12 14:26:33 -0700 | [diff] [blame] | 878 | mutex_unlock(&client->lock); |
Rebecca Schultz Zavin | 043a614 | 2012-02-01 11:09:46 -0800 | [diff] [blame] | 879 | |
Laura Abbott | 273dd8e | 2011-10-12 14:26:33 -0700 | [diff] [blame] | 880 | return 0; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 881 | } |
Laura Abbott | 273dd8e | 2011-10-12 14:26:33 -0700 | [diff] [blame] | 882 | EXPORT_SYMBOL(ion_handle_get_flags); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 883 | |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 884 | int ion_handle_get_size(struct ion_client *client, struct ion_handle *handle, |
| 885 | unsigned long *size) |
Rebecca Schultz Zavin | 043a614 | 2012-02-01 11:09:46 -0800 | [diff] [blame] | 886 | { |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 887 | struct ion_buffer *buffer; |
Rebecca Schultz Zavin | 043a614 | 2012-02-01 11:09:46 -0800 | [diff] [blame] | 888 | |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 889 | mutex_lock(&client->lock); |
| 890 | if (!ion_handle_validate(client, handle)) { |
| 891 | pr_err("%s: invalid handle passed to %s.\n", |
| 892 | __func__, __func__); |
| 893 | mutex_unlock(&client->lock); |
| 894 | return -EINVAL; |
Rebecca Schultz Zavin | be4a1ee | 2012-04-26 20:44:10 -0700 | [diff] [blame] | 895 | } |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 896 | buffer = handle->buffer; |
Rebecca Schultz Zavin | be4a1ee | 2012-04-26 20:44:10 -0700 | [diff] [blame] | 897 | mutex_lock(&buffer->lock); |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 898 | *size = buffer->size; |
Rebecca Schultz Zavin | be4a1ee | 2012-04-26 20:44:10 -0700 | [diff] [blame] | 899 | mutex_unlock(&buffer->lock); |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 900 | mutex_unlock(&client->lock); |
| 901 | |
| 902 | return 0; |
| 903 | } |
| 904 | EXPORT_SYMBOL(ion_handle_get_size); |
| 905 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 906 | struct sg_table *ion_sg_table(struct ion_client *client, |
| 907 | struct ion_handle *handle) |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 908 | { |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 909 | struct ion_buffer *buffer; |
| 910 | struct sg_table *table; |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 911 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 912 | mutex_lock(&client->lock); |
| 913 | if (!ion_handle_validate(client, handle)) { |
| 914 | pr_err("%s: invalid handle passed to map_dma.\n", |
| 915 | __func__); |
| 916 | mutex_unlock(&client->lock); |
| 917 | return ERR_PTR(-EINVAL); |
| 918 | } |
| 919 | buffer = handle->buffer; |
| 920 | table = buffer->sg_table; |
| 921 | mutex_unlock(&client->lock); |
| 922 | return table; |
| 923 | } |
Olav Haugan | bd453a9 | 2012-07-05 14:21:34 -0700 | [diff] [blame] | 924 | EXPORT_SYMBOL(ion_sg_table); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 925 | |
Mitchel Humpherys | 0432d69 | 2013-01-08 17:03:10 -0800 | [diff] [blame] | 926 | struct sg_table *ion_create_chunked_sg_table(phys_addr_t buffer_base, |
| 927 | size_t chunk_size, size_t total_size) |
| 928 | { |
| 929 | struct sg_table *table; |
| 930 | int i, n_chunks, ret; |
| 931 | struct scatterlist *sg; |
| 932 | |
| 933 | table = kzalloc(sizeof(struct sg_table), GFP_KERNEL); |
| 934 | if (!table) |
| 935 | return ERR_PTR(-ENOMEM); |
| 936 | |
| 937 | n_chunks = DIV_ROUND_UP(total_size, chunk_size); |
| 938 | pr_debug("creating sg_table with %d chunks\n", n_chunks); |
| 939 | |
| 940 | ret = sg_alloc_table(table, n_chunks, GFP_KERNEL); |
| 941 | if (ret) |
| 942 | goto err0; |
| 943 | |
| 944 | for_each_sg(table->sgl, sg, table->nents, i) { |
| 945 | dma_addr_t addr = buffer_base + i * chunk_size; |
| 946 | sg_dma_address(sg) = addr; |
Olav Haugan | bbdc30a | 2013-03-30 06:48:35 -0700 | [diff] [blame] | 947 | sg_dma_len(sg) = chunk_size; |
Mitchel Humpherys | 0432d69 | 2013-01-08 17:03:10 -0800 | [diff] [blame] | 948 | } |
| 949 | |
| 950 | return table; |
| 951 | err0: |
| 952 | kfree(table); |
| 953 | return ERR_PTR(ret); |
| 954 | } |
| 955 | |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 956 | static void ion_buffer_sync_for_device(struct ion_buffer *buffer, |
| 957 | struct device *dev, |
| 958 | enum dma_data_direction direction); |
| 959 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 960 | static struct sg_table *ion_map_dma_buf(struct dma_buf_attachment *attachment, |
| 961 | enum dma_data_direction direction) |
| 962 | { |
| 963 | struct dma_buf *dmabuf = attachment->dmabuf; |
| 964 | struct ion_buffer *buffer = dmabuf->priv; |
| 965 | |
Rebecca Schultz Zavin | f441922 | 2012-06-26 13:17:34 -0700 | [diff] [blame] | 966 | ion_buffer_sync_for_device(buffer, attachment->dev, direction); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 967 | return buffer->sg_table; |
| 968 | } |
| 969 | |
| 970 | static void ion_unmap_dma_buf(struct dma_buf_attachment *attachment, |
| 971 | struct sg_table *table, |
| 972 | enum dma_data_direction direction) |
| 973 | { |
Rebecca Schultz Zavin | 043a614 | 2012-02-01 11:09:46 -0800 | [diff] [blame] | 974 | } |
| 975 | |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 976 | static int ion_buffer_alloc_dirty(struct ion_buffer *buffer) |
| 977 | { |
| 978 | unsigned long pages = buffer->sg_table->nents; |
| 979 | unsigned long length = (pages + BITS_PER_LONG - 1)/BITS_PER_LONG; |
| 980 | |
| 981 | buffer->dirty = kzalloc(length * sizeof(unsigned long), GFP_KERNEL); |
| 982 | if (!buffer->dirty) |
| 983 | return -ENOMEM; |
| 984 | return 0; |
| 985 | } |
| 986 | |
| 987 | struct ion_vma_list { |
| 988 | struct list_head list; |
| 989 | struct vm_area_struct *vma; |
| 990 | }; |
| 991 | |
| 992 | static void ion_buffer_sync_for_device(struct ion_buffer *buffer, |
| 993 | struct device *dev, |
| 994 | enum dma_data_direction dir) |
| 995 | { |
| 996 | struct scatterlist *sg; |
| 997 | int i; |
| 998 | struct ion_vma_list *vma_list; |
| 999 | |
| 1000 | pr_debug("%s: syncing for device %s\n", __func__, |
| 1001 | dev ? dev_name(dev) : "null"); |
Rebecca Schultz Zavin | f441922 | 2012-06-26 13:17:34 -0700 | [diff] [blame] | 1002 | |
Rebecca Schultz Zavin | f858ba4 | 2012-09-21 11:46:06 -0700 | [diff] [blame] | 1003 | if (!ion_buffer_fault_user_mappings(buffer)) |
Rebecca Schultz Zavin | f441922 | 2012-06-26 13:17:34 -0700 | [diff] [blame] | 1004 | return; |
| 1005 | |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 1006 | mutex_lock(&buffer->lock); |
| 1007 | for_each_sg(buffer->sg_table->sgl, sg, buffer->sg_table->nents, i) { |
| 1008 | if (!test_bit(i, buffer->dirty)) |
| 1009 | continue; |
| 1010 | dma_sync_sg_for_device(dev, sg, 1, dir); |
| 1011 | clear_bit(i, buffer->dirty); |
| 1012 | } |
| 1013 | list_for_each_entry(vma_list, &buffer->vmas, list) { |
| 1014 | struct vm_area_struct *vma = vma_list->vma; |
| 1015 | |
| 1016 | zap_page_range(vma, vma->vm_start, vma->vm_end - vma->vm_start, |
| 1017 | NULL); |
| 1018 | } |
| 1019 | mutex_unlock(&buffer->lock); |
| 1020 | } |
| 1021 | |
| 1022 | int ion_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf) |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1023 | { |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1024 | struct ion_buffer *buffer = vma->vm_private_data; |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 1025 | struct scatterlist *sg; |
| 1026 | int i; |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1027 | |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 1028 | mutex_lock(&buffer->lock); |
| 1029 | set_bit(vmf->pgoff, buffer->dirty); |
| 1030 | |
| 1031 | for_each_sg(buffer->sg_table->sgl, sg, buffer->sg_table->nents, i) { |
| 1032 | if (i != vmf->pgoff) |
| 1033 | continue; |
| 1034 | dma_sync_sg_for_cpu(NULL, sg, 1, DMA_BIDIRECTIONAL); |
| 1035 | vm_insert_page(vma, (unsigned long)vmf->virtual_address, |
| 1036 | sg_page(sg)); |
| 1037 | break; |
| 1038 | } |
| 1039 | mutex_unlock(&buffer->lock); |
| 1040 | return VM_FAULT_NOPAGE; |
| 1041 | } |
| 1042 | |
| 1043 | static void ion_vm_open(struct vm_area_struct *vma) |
| 1044 | { |
| 1045 | struct ion_buffer *buffer = vma->vm_private_data; |
| 1046 | struct ion_vma_list *vma_list; |
| 1047 | |
| 1048 | vma_list = kmalloc(sizeof(struct ion_vma_list), GFP_KERNEL); |
| 1049 | if (!vma_list) |
| 1050 | return; |
| 1051 | vma_list->vma = vma; |
| 1052 | mutex_lock(&buffer->lock); |
| 1053 | list_add(&vma_list->list, &buffer->vmas); |
| 1054 | mutex_unlock(&buffer->lock); |
| 1055 | pr_debug("%s: adding %p\n", __func__, vma); |
| 1056 | } |
| 1057 | |
| 1058 | static void ion_vm_close(struct vm_area_struct *vma) |
| 1059 | { |
| 1060 | struct ion_buffer *buffer = vma->vm_private_data; |
| 1061 | struct ion_vma_list *vma_list, *tmp; |
| 1062 | |
| 1063 | pr_debug("%s\n", __func__); |
| 1064 | mutex_lock(&buffer->lock); |
| 1065 | list_for_each_entry_safe(vma_list, tmp, &buffer->vmas, list) { |
| 1066 | if (vma_list->vma != vma) |
| 1067 | continue; |
| 1068 | list_del(&vma_list->list); |
| 1069 | kfree(vma_list); |
| 1070 | pr_debug("%s: deleting %p\n", __func__, vma); |
| 1071 | break; |
| 1072 | } |
| 1073 | mutex_unlock(&buffer->lock); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1074 | |
Laura Abbott | a683509 | 2011-11-14 15:27:02 -0800 | [diff] [blame] | 1075 | if (buffer->heap->ops->unmap_user) |
| 1076 | buffer->heap->ops->unmap_user(buffer->heap, buffer); |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1077 | } |
| 1078 | |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 1079 | struct vm_operations_struct ion_vma_ops = { |
| 1080 | .open = ion_vm_open, |
| 1081 | .close = ion_vm_close, |
| 1082 | .fault = ion_vm_fault, |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1083 | }; |
| 1084 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1085 | static int ion_mmap(struct dma_buf *dmabuf, struct vm_area_struct *vma) |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1086 | { |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1087 | struct ion_buffer *buffer = dmabuf->priv; |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 1088 | int ret = 0; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1089 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1090 | if (!buffer->heap->ops->map_user) { |
| 1091 | pr_err("%s: this heap does not define a method for mapping " |
| 1092 | "to userspace\n", __func__); |
Rebecca Schultz Zavin | 043a614 | 2012-02-01 11:09:46 -0800 | [diff] [blame] | 1093 | return -EINVAL; |
| 1094 | } |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1095 | |
Rebecca Schultz Zavin | f858ba4 | 2012-09-21 11:46:06 -0700 | [diff] [blame] | 1096 | if (ion_buffer_fault_user_mappings(buffer)) { |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 1097 | vma->vm_private_data = buffer; |
| 1098 | vma->vm_ops = &ion_vma_ops; |
Mitchel Humpherys | 7ce0fe4 | 2013-01-10 11:30:26 -0800 | [diff] [blame] | 1099 | vma->vm_flags |= VM_MIXEDMAP; |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 1100 | ion_vm_open(vma); |
Rebecca Schultz Zavin | 3edb900 | 2012-09-19 23:31:05 -0700 | [diff] [blame] | 1101 | return 0; |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 1102 | } |
Laura Abbott | e8bc7aa | 2011-12-09 14:49:33 -0800 | [diff] [blame] | 1103 | |
Rebecca Schultz Zavin | 3edb900 | 2012-09-19 23:31:05 -0700 | [diff] [blame] | 1104 | if (!(buffer->flags & ION_FLAG_CACHED)) |
| 1105 | vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot); |
| 1106 | |
| 1107 | mutex_lock(&buffer->lock); |
| 1108 | /* now map it to userspace */ |
| 1109 | ret = buffer->heap->ops->map_user(buffer->heap, buffer, vma); |
| 1110 | mutex_unlock(&buffer->lock); |
| 1111 | |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 1112 | if (ret) |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1113 | pr_err("%s: failure mapping buffer to userspace\n", |
| 1114 | __func__); |
Rebecca Schultz Zavin | b179067 | 2012-06-14 15:08:53 -0700 | [diff] [blame] | 1115 | |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1116 | return ret; |
Rebecca Schultz Zavin | 043a614 | 2012-02-01 11:09:46 -0800 | [diff] [blame] | 1117 | } |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1118 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1119 | static void ion_dma_buf_release(struct dma_buf *dmabuf) |
| 1120 | { |
| 1121 | struct ion_buffer *buffer = dmabuf->priv; |
| 1122 | ion_buffer_put(buffer); |
| 1123 | } |
| 1124 | |
| 1125 | static void *ion_dma_buf_kmap(struct dma_buf *dmabuf, unsigned long offset) |
| 1126 | { |
| 1127 | struct ion_buffer *buffer = dmabuf->priv; |
| 1128 | return buffer->vaddr + offset; |
| 1129 | } |
| 1130 | |
| 1131 | static void ion_dma_buf_kunmap(struct dma_buf *dmabuf, unsigned long offset, |
| 1132 | void *ptr) |
| 1133 | { |
| 1134 | return; |
| 1135 | } |
| 1136 | |
| 1137 | static int ion_dma_buf_begin_cpu_access(struct dma_buf *dmabuf, size_t start, |
| 1138 | size_t len, |
| 1139 | enum dma_data_direction direction) |
| 1140 | { |
| 1141 | struct ion_buffer *buffer = dmabuf->priv; |
| 1142 | void *vaddr; |
| 1143 | |
| 1144 | if (!buffer->heap->ops->map_kernel) { |
| 1145 | pr_err("%s: map kernel is not implemented by this heap.\n", |
| 1146 | __func__); |
| 1147 | return -ENODEV; |
| 1148 | } |
| 1149 | |
| 1150 | mutex_lock(&buffer->lock); |
| 1151 | vaddr = ion_buffer_kmap_get(buffer); |
| 1152 | mutex_unlock(&buffer->lock); |
| 1153 | if (IS_ERR(vaddr)) |
| 1154 | return PTR_ERR(vaddr); |
| 1155 | if (!vaddr) |
| 1156 | return -ENOMEM; |
| 1157 | return 0; |
| 1158 | } |
| 1159 | |
| 1160 | static void ion_dma_buf_end_cpu_access(struct dma_buf *dmabuf, size_t start, |
| 1161 | size_t len, |
| 1162 | enum dma_data_direction direction) |
| 1163 | { |
| 1164 | struct ion_buffer *buffer = dmabuf->priv; |
| 1165 | |
| 1166 | mutex_lock(&buffer->lock); |
| 1167 | ion_buffer_kmap_put(buffer); |
| 1168 | mutex_unlock(&buffer->lock); |
| 1169 | } |
| 1170 | |
| 1171 | struct dma_buf_ops dma_buf_ops = { |
| 1172 | .map_dma_buf = ion_map_dma_buf, |
| 1173 | .unmap_dma_buf = ion_unmap_dma_buf, |
| 1174 | .mmap = ion_mmap, |
| 1175 | .release = ion_dma_buf_release, |
| 1176 | .begin_cpu_access = ion_dma_buf_begin_cpu_access, |
| 1177 | .end_cpu_access = ion_dma_buf_end_cpu_access, |
| 1178 | .kmap_atomic = ion_dma_buf_kmap, |
| 1179 | .kunmap_atomic = ion_dma_buf_kunmap, |
| 1180 | .kmap = ion_dma_buf_kmap, |
| 1181 | .kunmap = ion_dma_buf_kunmap, |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1182 | }; |
| 1183 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1184 | int ion_share_dma_buf(struct ion_client *client, struct ion_handle *handle) |
| 1185 | { |
| 1186 | struct ion_buffer *buffer; |
| 1187 | struct dma_buf *dmabuf; |
| 1188 | bool valid_handle; |
| 1189 | int fd; |
| 1190 | |
| 1191 | mutex_lock(&client->lock); |
| 1192 | valid_handle = ion_handle_validate(client, handle); |
| 1193 | mutex_unlock(&client->lock); |
| 1194 | if (!valid_handle) { |
Olav Haugan | 0df5994 | 2012-07-05 14:27:30 -0700 | [diff] [blame] | 1195 | WARN(1, "%s: invalid handle passed to share.\n", __func__); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1196 | return -EINVAL; |
| 1197 | } |
| 1198 | |
| 1199 | buffer = handle->buffer; |
| 1200 | ion_buffer_get(buffer); |
| 1201 | dmabuf = dma_buf_export(buffer, &dma_buf_ops, buffer->size, O_RDWR); |
| 1202 | if (IS_ERR(dmabuf)) { |
| 1203 | ion_buffer_put(buffer); |
| 1204 | return PTR_ERR(dmabuf); |
| 1205 | } |
| 1206 | fd = dma_buf_fd(dmabuf, O_CLOEXEC); |
Laura Abbott | c2641f7 | 2012-08-01 18:06:18 -0700 | [diff] [blame] | 1207 | if (fd < 0) |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1208 | dma_buf_put(dmabuf); |
Laura Abbott | c2641f7 | 2012-08-01 18:06:18 -0700 | [diff] [blame] | 1209 | |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1210 | return fd; |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1211 | } |
Olav Haugan | bd453a9 | 2012-07-05 14:21:34 -0700 | [diff] [blame] | 1212 | EXPORT_SYMBOL(ion_share_dma_buf); |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1213 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1214 | struct ion_handle *ion_import_dma_buf(struct ion_client *client, int fd) |
| 1215 | { |
| 1216 | struct dma_buf *dmabuf; |
| 1217 | struct ion_buffer *buffer; |
| 1218 | struct ion_handle *handle; |
| 1219 | |
| 1220 | dmabuf = dma_buf_get(fd); |
| 1221 | if (IS_ERR_OR_NULL(dmabuf)) |
| 1222 | return ERR_PTR(PTR_ERR(dmabuf)); |
| 1223 | /* if this memory came from ion */ |
| 1224 | |
| 1225 | if (dmabuf->ops != &dma_buf_ops) { |
| 1226 | pr_err("%s: can not import dmabuf from another exporter\n", |
| 1227 | __func__); |
| 1228 | dma_buf_put(dmabuf); |
| 1229 | return ERR_PTR(-EINVAL); |
| 1230 | } |
| 1231 | buffer = dmabuf->priv; |
| 1232 | |
| 1233 | mutex_lock(&client->lock); |
| 1234 | /* if a handle exists for this buffer just take a reference to it */ |
| 1235 | handle = ion_handle_lookup(client, buffer); |
| 1236 | if (!IS_ERR_OR_NULL(handle)) { |
| 1237 | ion_handle_get(handle); |
| 1238 | goto end; |
| 1239 | } |
| 1240 | handle = ion_handle_create(client, buffer); |
| 1241 | if (IS_ERR_OR_NULL(handle)) |
| 1242 | goto end; |
| 1243 | ion_handle_add(client, handle); |
| 1244 | end: |
| 1245 | mutex_unlock(&client->lock); |
| 1246 | dma_buf_put(dmabuf); |
| 1247 | return handle; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1248 | } |
Olav Haugan | bd453a9 | 2012-07-05 14:21:34 -0700 | [diff] [blame] | 1249 | EXPORT_SYMBOL(ion_import_dma_buf); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1250 | |
Rebecca Schultz Zavin | f441922 | 2012-06-26 13:17:34 -0700 | [diff] [blame] | 1251 | static int ion_sync_for_device(struct ion_client *client, int fd) |
| 1252 | { |
| 1253 | struct dma_buf *dmabuf; |
| 1254 | struct ion_buffer *buffer; |
| 1255 | |
| 1256 | dmabuf = dma_buf_get(fd); |
| 1257 | if (IS_ERR_OR_NULL(dmabuf)) |
| 1258 | return PTR_ERR(dmabuf); |
| 1259 | |
| 1260 | /* if this memory came from ion */ |
| 1261 | if (dmabuf->ops != &dma_buf_ops) { |
| 1262 | pr_err("%s: can not sync dmabuf from another exporter\n", |
| 1263 | __func__); |
| 1264 | dma_buf_put(dmabuf); |
| 1265 | return -EINVAL; |
| 1266 | } |
| 1267 | buffer = dmabuf->priv; |
Rebecca Schultz Zavin | 3edb900 | 2012-09-19 23:31:05 -0700 | [diff] [blame] | 1268 | |
| 1269 | dma_sync_sg_for_device(NULL, buffer->sg_table->sgl, |
| 1270 | buffer->sg_table->nents, DMA_BIDIRECTIONAL); |
Rebecca Schultz Zavin | f441922 | 2012-06-26 13:17:34 -0700 | [diff] [blame] | 1271 | dma_buf_put(dmabuf); |
| 1272 | return 0; |
| 1273 | } |
| 1274 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1275 | static long ion_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
| 1276 | { |
| 1277 | struct ion_client *client = filp->private_data; |
| 1278 | |
| 1279 | switch (cmd) { |
| 1280 | case ION_IOC_ALLOC: |
| 1281 | { |
| 1282 | struct ion_allocation_data data; |
| 1283 | |
| 1284 | if (copy_from_user(&data, (void __user *)arg, sizeof(data))) |
| 1285 | return -EFAULT; |
| 1286 | data.handle = ion_alloc(client, data.len, data.align, |
Hanumant Singh | 7d72bad | 2012-08-29 18:39:44 -0700 | [diff] [blame] | 1287 | data.heap_mask, data.flags); |
KyongHo Cho | 9ae7e01 | 2011-09-07 11:27:07 +0900 | [diff] [blame] | 1288 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1289 | if (IS_ERR(data.handle)) |
| 1290 | return PTR_ERR(data.handle); |
KyongHo Cho | 9ae7e01 | 2011-09-07 11:27:07 +0900 | [diff] [blame] | 1291 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1292 | if (copy_to_user((void __user *)arg, &data, sizeof(data))) { |
| 1293 | ion_free(client, data.handle); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1294 | return -EFAULT; |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1295 | } |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1296 | break; |
| 1297 | } |
| 1298 | case ION_IOC_FREE: |
| 1299 | { |
| 1300 | struct ion_handle_data data; |
| 1301 | bool valid; |
| 1302 | |
| 1303 | if (copy_from_user(&data, (void __user *)arg, |
| 1304 | sizeof(struct ion_handle_data))) |
| 1305 | return -EFAULT; |
| 1306 | mutex_lock(&client->lock); |
| 1307 | valid = ion_handle_validate(client, data.handle); |
| 1308 | mutex_unlock(&client->lock); |
| 1309 | if (!valid) |
| 1310 | return -EINVAL; |
| 1311 | ion_free(client, data.handle); |
| 1312 | break; |
| 1313 | } |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1314 | case ION_IOC_MAP: |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1315 | case ION_IOC_SHARE: |
| 1316 | { |
| 1317 | struct ion_fd_data data; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1318 | if (copy_from_user(&data, (void __user *)arg, sizeof(data))) |
| 1319 | return -EFAULT; |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1320 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1321 | data.fd = ion_share_dma_buf(client, data.handle); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1322 | if (copy_to_user((void __user *)arg, &data, sizeof(data))) |
| 1323 | return -EFAULT; |
Olav Haugan | c2d2cf5 | 2012-05-15 14:40:11 -0700 | [diff] [blame] | 1324 | if (data.fd < 0) |
| 1325 | return data.fd; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1326 | break; |
| 1327 | } |
| 1328 | case ION_IOC_IMPORT: |
| 1329 | { |
| 1330 | struct ion_fd_data data; |
Olav Haugan | c2d2cf5 | 2012-05-15 14:40:11 -0700 | [diff] [blame] | 1331 | int ret = 0; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1332 | if (copy_from_user(&data, (void __user *)arg, |
| 1333 | sizeof(struct ion_fd_data))) |
| 1334 | return -EFAULT; |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1335 | data.handle = ion_import_dma_buf(client, data.fd); |
Olav Haugan | 865e97f | 2012-05-15 14:40:11 -0700 | [diff] [blame] | 1336 | if (IS_ERR(data.handle)) { |
| 1337 | ret = PTR_ERR(data.handle); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1338 | data.handle = NULL; |
Olav Haugan | 865e97f | 2012-05-15 14:40:11 -0700 | [diff] [blame] | 1339 | } |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1340 | if (copy_to_user((void __user *)arg, &data, |
| 1341 | sizeof(struct ion_fd_data))) |
| 1342 | return -EFAULT; |
Olav Haugan | c2d2cf5 | 2012-05-15 14:40:11 -0700 | [diff] [blame] | 1343 | if (ret < 0) |
| 1344 | return ret; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1345 | break; |
| 1346 | } |
Rebecca Schultz Zavin | f441922 | 2012-06-26 13:17:34 -0700 | [diff] [blame] | 1347 | case ION_IOC_SYNC: |
| 1348 | { |
| 1349 | struct ion_fd_data data; |
| 1350 | if (copy_from_user(&data, (void __user *)arg, |
| 1351 | sizeof(struct ion_fd_data))) |
| 1352 | return -EFAULT; |
| 1353 | ion_sync_for_device(client, data.fd); |
| 1354 | break; |
| 1355 | } |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1356 | case ION_IOC_CUSTOM: |
| 1357 | { |
| 1358 | struct ion_device *dev = client->dev; |
| 1359 | struct ion_custom_data data; |
| 1360 | |
| 1361 | if (!dev->custom_ioctl) |
| 1362 | return -ENOTTY; |
| 1363 | if (copy_from_user(&data, (void __user *)arg, |
| 1364 | sizeof(struct ion_custom_data))) |
| 1365 | return -EFAULT; |
| 1366 | return dev->custom_ioctl(client, data.cmd, data.arg); |
| 1367 | } |
Laura Abbott | abcb6f7 | 2011-10-04 16:26:49 -0700 | [diff] [blame] | 1368 | case ION_IOC_CLEAN_CACHES: |
Mitchel Humpherys | d88b8eb | 2012-09-04 17:00:29 -0700 | [diff] [blame] | 1369 | return client->dev->custom_ioctl(client, |
| 1370 | ION_IOC_CLEAN_CACHES, arg); |
Laura Abbott | abcb6f7 | 2011-10-04 16:26:49 -0700 | [diff] [blame] | 1371 | case ION_IOC_INV_CACHES: |
Mitchel Humpherys | d88b8eb | 2012-09-04 17:00:29 -0700 | [diff] [blame] | 1372 | return client->dev->custom_ioctl(client, |
| 1373 | ION_IOC_INV_CACHES, arg); |
Laura Abbott | abcb6f7 | 2011-10-04 16:26:49 -0700 | [diff] [blame] | 1374 | case ION_IOC_CLEAN_INV_CACHES: |
Mitchel Humpherys | d88b8eb | 2012-09-04 17:00:29 -0700 | [diff] [blame] | 1375 | return client->dev->custom_ioctl(client, |
| 1376 | ION_IOC_CLEAN_INV_CACHES, arg); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1377 | default: |
| 1378 | return -ENOTTY; |
| 1379 | } |
| 1380 | return 0; |
| 1381 | } |
| 1382 | |
| 1383 | static int ion_release(struct inode *inode, struct file *file) |
| 1384 | { |
| 1385 | struct ion_client *client = file->private_data; |
| 1386 | |
| 1387 | pr_debug("%s: %d\n", __func__, __LINE__); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1388 | ion_client_destroy(client); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1389 | return 0; |
| 1390 | } |
| 1391 | |
| 1392 | static int ion_open(struct inode *inode, struct file *file) |
| 1393 | { |
| 1394 | struct miscdevice *miscdev = file->private_data; |
| 1395 | struct ion_device *dev = container_of(miscdev, struct ion_device, dev); |
| 1396 | struct ion_client *client; |
Laura Abbott | eed8603 | 2011-12-05 15:32:36 -0800 | [diff] [blame] | 1397 | char debug_name[64]; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1398 | |
| 1399 | pr_debug("%s: %d\n", __func__, __LINE__); |
Laura Abbott | eed8603 | 2011-12-05 15:32:36 -0800 | [diff] [blame] | 1400 | snprintf(debug_name, 64, "%u", task_pid_nr(current->group_leader)); |
| 1401 | client = ion_client_create(dev, -1, debug_name); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1402 | if (IS_ERR_OR_NULL(client)) |
| 1403 | return PTR_ERR(client); |
| 1404 | file->private_data = client; |
| 1405 | |
| 1406 | return 0; |
| 1407 | } |
| 1408 | |
| 1409 | static const struct file_operations ion_fops = { |
| 1410 | .owner = THIS_MODULE, |
| 1411 | .open = ion_open, |
| 1412 | .release = ion_release, |
| 1413 | .unlocked_ioctl = ion_ioctl, |
| 1414 | }; |
| 1415 | |
| 1416 | static size_t ion_debug_heap_total(struct ion_client *client, |
Laura Abbott | 3647ac3 | 2011-10-31 14:09:53 -0700 | [diff] [blame] | 1417 | enum ion_heap_ids id) |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1418 | { |
| 1419 | size_t size = 0; |
| 1420 | struct rb_node *n; |
| 1421 | |
| 1422 | mutex_lock(&client->lock); |
| 1423 | for (n = rb_first(&client->handles); n; n = rb_next(n)) { |
| 1424 | struct ion_handle *handle = rb_entry(n, |
| 1425 | struct ion_handle, |
| 1426 | node); |
Laura Abbott | 3647ac3 | 2011-10-31 14:09:53 -0700 | [diff] [blame] | 1427 | if (handle->buffer->heap->id == id) |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1428 | size += handle->buffer->size; |
| 1429 | } |
| 1430 | mutex_unlock(&client->lock); |
| 1431 | return size; |
| 1432 | } |
| 1433 | |
Olav Haugan | 0671b9a | 2012-05-25 11:58:56 -0700 | [diff] [blame] | 1434 | /** |
| 1435 | * Searches through a clients handles to find if the buffer is owned |
| 1436 | * by this client. Used for debug output. |
| 1437 | * @param client pointer to candidate owner of buffer |
| 1438 | * @param buf pointer to buffer that we are trying to find the owner of |
| 1439 | * @return 1 if found, 0 otherwise |
| 1440 | */ |
| 1441 | static int ion_debug_find_buffer_owner(const struct ion_client *client, |
| 1442 | const struct ion_buffer *buf) |
| 1443 | { |
| 1444 | struct rb_node *n; |
| 1445 | |
| 1446 | for (n = rb_first(&client->handles); n; n = rb_next(n)) { |
| 1447 | const struct ion_handle *handle = rb_entry(n, |
| 1448 | const struct ion_handle, |
| 1449 | node); |
| 1450 | if (handle->buffer == buf) |
| 1451 | return 1; |
| 1452 | } |
| 1453 | return 0; |
| 1454 | } |
| 1455 | |
| 1456 | /** |
| 1457 | * Adds mem_map_data pointer to the tree of mem_map |
| 1458 | * Used for debug output. |
| 1459 | * @param mem_map The mem_map tree |
| 1460 | * @param data The new data to add to the tree |
| 1461 | */ |
| 1462 | static void ion_debug_mem_map_add(struct rb_root *mem_map, |
| 1463 | struct mem_map_data *data) |
| 1464 | { |
| 1465 | struct rb_node **p = &mem_map->rb_node; |
| 1466 | struct rb_node *parent = NULL; |
| 1467 | struct mem_map_data *entry; |
| 1468 | |
| 1469 | while (*p) { |
| 1470 | parent = *p; |
| 1471 | entry = rb_entry(parent, struct mem_map_data, node); |
| 1472 | |
| 1473 | if (data->addr < entry->addr) { |
| 1474 | p = &(*p)->rb_left; |
| 1475 | } else if (data->addr > entry->addr) { |
| 1476 | p = &(*p)->rb_right; |
| 1477 | } else { |
| 1478 | pr_err("%s: mem_map_data already found.", __func__); |
| 1479 | BUG(); |
| 1480 | } |
| 1481 | } |
| 1482 | rb_link_node(&data->node, parent, p); |
| 1483 | rb_insert_color(&data->node, mem_map); |
| 1484 | } |
| 1485 | |
| 1486 | /** |
| 1487 | * Search for an owner of a buffer by iterating over all ION clients. |
| 1488 | * @param dev ion device containing pointers to all the clients. |
| 1489 | * @param buffer pointer to buffer we are trying to find the owner of. |
| 1490 | * @return name of owner. |
| 1491 | */ |
| 1492 | const char *ion_debug_locate_owner(const struct ion_device *dev, |
| 1493 | const struct ion_buffer *buffer) |
| 1494 | { |
| 1495 | struct rb_node *j; |
| 1496 | const char *client_name = NULL; |
| 1497 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1498 | for (j = rb_first(&dev->clients); j && !client_name; |
Olav Haugan | 0671b9a | 2012-05-25 11:58:56 -0700 | [diff] [blame] | 1499 | j = rb_next(j)) { |
| 1500 | struct ion_client *client = rb_entry(j, struct ion_client, |
| 1501 | node); |
| 1502 | if (ion_debug_find_buffer_owner(client, buffer)) |
| 1503 | client_name = client->name; |
| 1504 | } |
| 1505 | return client_name; |
| 1506 | } |
| 1507 | |
| 1508 | /** |
| 1509 | * Create a mem_map of the heap. |
| 1510 | * @param s seq_file to log error message to. |
| 1511 | * @param heap The heap to create mem_map for. |
| 1512 | * @param mem_map The mem map to be created. |
| 1513 | */ |
| 1514 | void ion_debug_mem_map_create(struct seq_file *s, struct ion_heap *heap, |
| 1515 | struct rb_root *mem_map) |
| 1516 | { |
| 1517 | struct ion_device *dev = heap->dev; |
| 1518 | struct rb_node *n; |
Chintan Pandya | daf7562 | 2013-01-29 19:40:01 +0530 | [diff] [blame] | 1519 | size_t size; |
| 1520 | |
| 1521 | if (!heap->ops->phys) |
| 1522 | return; |
Olav Haugan | 0671b9a | 2012-05-25 11:58:56 -0700 | [diff] [blame] | 1523 | |
| 1524 | for (n = rb_first(&dev->buffers); n; n = rb_next(n)) { |
| 1525 | struct ion_buffer *buffer = |
| 1526 | rb_entry(n, struct ion_buffer, node); |
| 1527 | if (buffer->heap->id == heap->id) { |
| 1528 | struct mem_map_data *data = |
| 1529 | kzalloc(sizeof(*data), GFP_KERNEL); |
| 1530 | if (!data) { |
| 1531 | seq_printf(s, "ERROR: out of memory. " |
| 1532 | "Part of memory map will not be logged\n"); |
| 1533 | break; |
| 1534 | } |
Chintan Pandya | daf7562 | 2013-01-29 19:40:01 +0530 | [diff] [blame] | 1535 | |
| 1536 | buffer->heap->ops->phys(buffer->heap, buffer, |
| 1537 | &(data->addr), &size); |
| 1538 | data->size = (unsigned long) size; |
| 1539 | data->addr_end = data->addr + data->size - 1; |
Olav Haugan | 0671b9a | 2012-05-25 11:58:56 -0700 | [diff] [blame] | 1540 | data->client_name = ion_debug_locate_owner(dev, buffer); |
| 1541 | ion_debug_mem_map_add(mem_map, data); |
| 1542 | } |
| 1543 | } |
| 1544 | } |
| 1545 | |
| 1546 | /** |
| 1547 | * Free the memory allocated by ion_debug_mem_map_create |
| 1548 | * @param mem_map The mem map to free. |
| 1549 | */ |
| 1550 | static void ion_debug_mem_map_destroy(struct rb_root *mem_map) |
| 1551 | { |
| 1552 | if (mem_map) { |
| 1553 | struct rb_node *n; |
| 1554 | while ((n = rb_first(mem_map)) != 0) { |
| 1555 | struct mem_map_data *data = |
| 1556 | rb_entry(n, struct mem_map_data, node); |
| 1557 | rb_erase(&data->node, mem_map); |
| 1558 | kfree(data); |
| 1559 | } |
| 1560 | } |
| 1561 | } |
| 1562 | |
| 1563 | /** |
| 1564 | * Print heap debug information. |
| 1565 | * @param s seq_file to log message to. |
| 1566 | * @param heap pointer to heap that we will print debug information for. |
| 1567 | */ |
| 1568 | static void ion_heap_print_debug(struct seq_file *s, struct ion_heap *heap) |
| 1569 | { |
| 1570 | if (heap->ops->print_debug) { |
| 1571 | struct rb_root mem_map = RB_ROOT; |
| 1572 | ion_debug_mem_map_create(s, heap, &mem_map); |
| 1573 | heap->ops->print_debug(heap, s, &mem_map); |
| 1574 | ion_debug_mem_map_destroy(&mem_map); |
| 1575 | } |
| 1576 | } |
| 1577 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1578 | static int ion_debug_heap_show(struct seq_file *s, void *unused) |
| 1579 | { |
| 1580 | struct ion_heap *heap = s->private; |
| 1581 | struct ion_device *dev = heap->dev; |
| 1582 | struct rb_node *n; |
| 1583 | |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 1584 | mutex_lock(&dev->buffer_lock); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1585 | seq_printf(s, "%16.s %16.s %16.s\n", "client", "pid", "size"); |
Rebecca Schultz Zavin | 043a614 | 2012-02-01 11:09:46 -0800 | [diff] [blame] | 1586 | |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1587 | for (n = rb_first(&dev->clients); n; n = rb_next(n)) { |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1588 | struct ion_client *client = rb_entry(n, struct ion_client, |
| 1589 | node); |
Laura Abbott | 3647ac3 | 2011-10-31 14:09:53 -0700 | [diff] [blame] | 1590 | size_t size = ion_debug_heap_total(client, heap->id); |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1591 | if (!size) |
| 1592 | continue; |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1593 | if (client->task) { |
| 1594 | char task_comm[TASK_COMM_LEN]; |
| 1595 | |
| 1596 | get_task_comm(task_comm, client->task); |
| 1597 | seq_printf(s, "%16.s %16u %16u\n", task_comm, |
| 1598 | client->pid, size); |
| 1599 | } else { |
| 1600 | seq_printf(s, "%16.s %16u %16u\n", client->name, |
| 1601 | client->pid, size); |
| 1602 | } |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1603 | } |
Olav Haugan | 0671b9a | 2012-05-25 11:58:56 -0700 | [diff] [blame] | 1604 | ion_heap_print_debug(s, heap); |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 1605 | mutex_unlock(&dev->buffer_lock); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1606 | return 0; |
| 1607 | } |
| 1608 | |
| 1609 | static int ion_debug_heap_open(struct inode *inode, struct file *file) |
| 1610 | { |
| 1611 | return single_open(file, ion_debug_heap_show, inode->i_private); |
| 1612 | } |
| 1613 | |
| 1614 | static const struct file_operations debug_heap_fops = { |
| 1615 | .open = ion_debug_heap_open, |
| 1616 | .read = seq_read, |
| 1617 | .llseek = seq_lseek, |
| 1618 | .release = single_release, |
| 1619 | }; |
| 1620 | |
| 1621 | void ion_device_add_heap(struct ion_device *dev, struct ion_heap *heap) |
| 1622 | { |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1623 | if (!heap->ops->allocate || !heap->ops->free || !heap->ops->map_dma || |
| 1624 | !heap->ops->unmap_dma) |
| 1625 | pr_err("%s: can not add heap with invalid ops struct.\n", |
| 1626 | __func__); |
| 1627 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1628 | heap->dev = dev; |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 1629 | down_write(&dev->lock); |
Rebecca Schultz Zavin | 47b9888 | 2012-11-15 10:36:10 -0800 | [diff] [blame] | 1630 | /* use negative heap->id to reverse the priority -- when traversing |
| 1631 | the list later attempt higher id numbers first */ |
| 1632 | plist_node_init(&heap->node, -heap->id); |
| 1633 | plist_add(&heap->node, &dev->heaps); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1634 | debugfs_create_file(heap->name, 0664, dev->debug_root, heap, |
| 1635 | &debug_heap_fops); |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 1636 | up_write(&dev->lock); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1637 | } |
| 1638 | |
Laura Abbott | 9361930 | 2012-10-11 11:51:40 -0700 | [diff] [blame] | 1639 | int ion_secure_handle(struct ion_client *client, struct ion_handle *handle, |
| 1640 | int version, void *data, int flags) |
| 1641 | { |
| 1642 | int ret = -EINVAL; |
| 1643 | struct ion_heap *heap; |
| 1644 | struct ion_buffer *buffer; |
| 1645 | |
| 1646 | mutex_lock(&client->lock); |
| 1647 | if (!ion_handle_validate(client, handle)) { |
| 1648 | WARN(1, "%s: invalid handle passed to secure.\n", __func__); |
| 1649 | goto out_unlock; |
| 1650 | } |
| 1651 | |
| 1652 | buffer = handle->buffer; |
| 1653 | heap = buffer->heap; |
| 1654 | |
Laura Abbott | 4afbd8b | 2013-02-15 09:21:33 -0800 | [diff] [blame] | 1655 | if (!ion_heap_allow_handle_secure(heap->type)) { |
Laura Abbott | 9361930 | 2012-10-11 11:51:40 -0700 | [diff] [blame] | 1656 | pr_err("%s: cannot secure buffer from non secure heap\n", |
| 1657 | __func__); |
| 1658 | goto out_unlock; |
| 1659 | } |
| 1660 | |
| 1661 | BUG_ON(!buffer->heap->ops->secure_buffer); |
| 1662 | /* |
| 1663 | * Protect the handle via the client lock to ensure we aren't |
| 1664 | * racing with free |
| 1665 | */ |
| 1666 | ret = buffer->heap->ops->secure_buffer(buffer, version, data, flags); |
| 1667 | |
| 1668 | out_unlock: |
| 1669 | mutex_unlock(&client->lock); |
| 1670 | return ret; |
| 1671 | } |
| 1672 | |
| 1673 | int ion_unsecure_handle(struct ion_client *client, struct ion_handle *handle) |
| 1674 | { |
| 1675 | int ret = -EINVAL; |
| 1676 | struct ion_heap *heap; |
| 1677 | struct ion_buffer *buffer; |
| 1678 | |
| 1679 | mutex_lock(&client->lock); |
| 1680 | if (!ion_handle_validate(client, handle)) { |
| 1681 | WARN(1, "%s: invalid handle passed to secure.\n", __func__); |
| 1682 | goto out_unlock; |
| 1683 | } |
| 1684 | |
| 1685 | buffer = handle->buffer; |
| 1686 | heap = buffer->heap; |
| 1687 | |
Laura Abbott | 4afbd8b | 2013-02-15 09:21:33 -0800 | [diff] [blame] | 1688 | if (!ion_heap_allow_handle_secure(heap->type)) { |
Laura Abbott | 9361930 | 2012-10-11 11:51:40 -0700 | [diff] [blame] | 1689 | pr_err("%s: cannot secure buffer from non secure heap\n", |
| 1690 | __func__); |
| 1691 | goto out_unlock; |
| 1692 | } |
| 1693 | |
| 1694 | BUG_ON(!buffer->heap->ops->unsecure_buffer); |
| 1695 | /* |
| 1696 | * Protect the handle via the client lock to ensure we aren't |
| 1697 | * racing with free |
| 1698 | */ |
| 1699 | ret = buffer->heap->ops->unsecure_buffer(buffer, 0); |
| 1700 | |
| 1701 | out_unlock: |
| 1702 | mutex_unlock(&client->lock); |
| 1703 | return ret; |
| 1704 | } |
| 1705 | |
Laura Abbott | 7e44648 | 2012-06-13 15:59:39 -0700 | [diff] [blame] | 1706 | int ion_secure_heap(struct ion_device *dev, int heap_id, int version, |
| 1707 | void *data) |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1708 | { |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1709 | int ret_val = 0; |
Rebecca Schultz Zavin | 47b9888 | 2012-11-15 10:36:10 -0800 | [diff] [blame] | 1710 | struct ion_heap *heap; |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1711 | |
| 1712 | /* |
| 1713 | * traverse the list of heaps available in this system |
| 1714 | * and find the heap that is specified. |
| 1715 | */ |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 1716 | down_write(&dev->lock); |
Rebecca Schultz Zavin | 47b9888 | 2012-11-15 10:36:10 -0800 | [diff] [blame] | 1717 | plist_for_each_entry(heap, &dev->heaps, node) { |
Laura Abbott | 4afbd8b | 2013-02-15 09:21:33 -0800 | [diff] [blame] | 1718 | if (!ion_heap_allow_heap_secure(heap->type)) |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1719 | continue; |
| 1720 | if (ION_HEAP(heap->id) != heap_id) |
| 1721 | continue; |
| 1722 | if (heap->ops->secure_heap) |
Laura Abbott | 7e44648 | 2012-06-13 15:59:39 -0700 | [diff] [blame] | 1723 | ret_val = heap->ops->secure_heap(heap, version, data); |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1724 | else |
| 1725 | ret_val = -EINVAL; |
| 1726 | break; |
| 1727 | } |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 1728 | up_write(&dev->lock); |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1729 | return ret_val; |
| 1730 | } |
Olav Haugan | bd453a9 | 2012-07-05 14:21:34 -0700 | [diff] [blame] | 1731 | EXPORT_SYMBOL(ion_secure_heap); |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1732 | |
Laura Abbott | 7e44648 | 2012-06-13 15:59:39 -0700 | [diff] [blame] | 1733 | int ion_unsecure_heap(struct ion_device *dev, int heap_id, int version, |
| 1734 | void *data) |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1735 | { |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1736 | int ret_val = 0; |
Rebecca Schultz Zavin | 47b9888 | 2012-11-15 10:36:10 -0800 | [diff] [blame] | 1737 | struct ion_heap *heap; |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1738 | |
| 1739 | /* |
| 1740 | * traverse the list of heaps available in this system |
| 1741 | * and find the heap that is specified. |
| 1742 | */ |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 1743 | down_write(&dev->lock); |
Rebecca Schultz Zavin | 47b9888 | 2012-11-15 10:36:10 -0800 | [diff] [blame] | 1744 | plist_for_each_entry(heap, &dev->heaps, node) { |
Laura Abbott | 4afbd8b | 2013-02-15 09:21:33 -0800 | [diff] [blame] | 1745 | if (!ion_heap_allow_heap_secure(heap->type)) |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1746 | continue; |
| 1747 | if (ION_HEAP(heap->id) != heap_id) |
| 1748 | continue; |
| 1749 | if (heap->ops->secure_heap) |
Laura Abbott | 7e44648 | 2012-06-13 15:59:39 -0700 | [diff] [blame] | 1750 | ret_val = heap->ops->unsecure_heap(heap, version, data); |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1751 | else |
| 1752 | ret_val = -EINVAL; |
| 1753 | break; |
| 1754 | } |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 1755 | up_write(&dev->lock); |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1756 | return ret_val; |
| 1757 | } |
Olav Haugan | bd453a9 | 2012-07-05 14:21:34 -0700 | [diff] [blame] | 1758 | EXPORT_SYMBOL(ion_unsecure_heap); |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 1759 | |
Laura Abbott | 404f824 | 2011-10-31 14:22:53 -0700 | [diff] [blame] | 1760 | static int ion_debug_leak_show(struct seq_file *s, void *unused) |
| 1761 | { |
| 1762 | struct ion_device *dev = s->private; |
| 1763 | struct rb_node *n; |
Laura Abbott | 404f824 | 2011-10-31 14:22:53 -0700 | [diff] [blame] | 1764 | |
Laura Abbott | 404f824 | 2011-10-31 14:22:53 -0700 | [diff] [blame] | 1765 | seq_printf(s, "%16.s %16.s %16.s %16.s\n", "buffer", "heap", "size", |
| 1766 | "ref cnt"); |
Mitchel Humpherys | a75e4eb | 2012-12-14 16:12:23 -0800 | [diff] [blame] | 1767 | |
Mitchel Humpherys | a75e4eb | 2012-12-14 16:12:23 -0800 | [diff] [blame] | 1768 | ion_mark_dangling_buffers_locked(dev); |
Laura Abbott | 404f824 | 2011-10-31 14:22:53 -0700 | [diff] [blame] | 1769 | |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 1770 | down_write(&dev->lock); |
Mitchel Humpherys | a75e4eb | 2012-12-14 16:12:23 -0800 | [diff] [blame] | 1771 | /* Anyone still marked as a 1 means a leaked handle somewhere */ |
Laura Abbott | 404f824 | 2011-10-31 14:22:53 -0700 | [diff] [blame] | 1772 | for (n = rb_first(&dev->buffers); n; n = rb_next(n)) { |
| 1773 | struct ion_buffer *buf = rb_entry(n, struct ion_buffer, |
| 1774 | node); |
| 1775 | |
| 1776 | if (buf->marked == 1) |
| 1777 | seq_printf(s, "%16.x %16.s %16.x %16.d\n", |
| 1778 | (int)buf, buf->heap->name, buf->size, |
| 1779 | atomic_read(&buf->ref.refcount)); |
| 1780 | } |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 1781 | up_write(&dev->lock); |
Laura Abbott | 404f824 | 2011-10-31 14:22:53 -0700 | [diff] [blame] | 1782 | return 0; |
| 1783 | } |
| 1784 | |
| 1785 | static int ion_debug_leak_open(struct inode *inode, struct file *file) |
| 1786 | { |
| 1787 | return single_open(file, ion_debug_leak_show, inode->i_private); |
| 1788 | } |
| 1789 | |
| 1790 | static const struct file_operations debug_leak_fops = { |
| 1791 | .open = ion_debug_leak_open, |
| 1792 | .read = seq_read, |
| 1793 | .llseek = seq_lseek, |
| 1794 | .release = single_release, |
| 1795 | }; |
| 1796 | |
| 1797 | |
| 1798 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1799 | struct ion_device *ion_device_create(long (*custom_ioctl) |
| 1800 | (struct ion_client *client, |
| 1801 | unsigned int cmd, |
| 1802 | unsigned long arg)) |
| 1803 | { |
| 1804 | struct ion_device *idev; |
| 1805 | int ret; |
| 1806 | |
| 1807 | idev = kzalloc(sizeof(struct ion_device), GFP_KERNEL); |
| 1808 | if (!idev) |
| 1809 | return ERR_PTR(-ENOMEM); |
| 1810 | |
| 1811 | idev->dev.minor = MISC_DYNAMIC_MINOR; |
| 1812 | idev->dev.name = "ion"; |
| 1813 | idev->dev.fops = &ion_fops; |
| 1814 | idev->dev.parent = NULL; |
| 1815 | ret = misc_register(&idev->dev); |
| 1816 | if (ret) { |
| 1817 | pr_err("ion: failed to register misc device.\n"); |
| 1818 | return ERR_PTR(ret); |
| 1819 | } |
| 1820 | |
| 1821 | idev->debug_root = debugfs_create_dir("ion", NULL); |
| 1822 | if (IS_ERR_OR_NULL(idev->debug_root)) |
| 1823 | pr_err("ion: failed to create debug files.\n"); |
| 1824 | |
| 1825 | idev->custom_ioctl = custom_ioctl; |
| 1826 | idev->buffers = RB_ROOT; |
Rebecca Schultz Zavin | 52421e2 | 2012-10-11 12:46:05 -0700 | [diff] [blame] | 1827 | mutex_init(&idev->buffer_lock); |
| 1828 | init_rwsem(&idev->lock); |
Rebecca Schultz Zavin | 47b9888 | 2012-11-15 10:36:10 -0800 | [diff] [blame] | 1829 | plist_head_init(&idev->heaps); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1830 | idev->clients = RB_ROOT; |
Laura Abbott | 404f824 | 2011-10-31 14:22:53 -0700 | [diff] [blame] | 1831 | debugfs_create_file("check_leaked_fds", 0664, idev->debug_root, idev, |
| 1832 | &debug_leak_fops); |
Mitchel Humpherys | a75e4eb | 2012-12-14 16:12:23 -0800 | [diff] [blame] | 1833 | |
| 1834 | setup_ion_leak_check(idev->debug_root); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1835 | return idev; |
| 1836 | } |
| 1837 | |
| 1838 | void ion_device_destroy(struct ion_device *dev) |
| 1839 | { |
| 1840 | misc_deregister(&dev->dev); |
| 1841 | /* XXX need to free the heaps and clients ? */ |
| 1842 | kfree(dev); |
| 1843 | } |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1844 | |
| 1845 | void __init ion_reserve(struct ion_platform_data *data) |
| 1846 | { |
Rebecca Schultz Zavin | fbce151 | 2012-11-15 10:31:02 -0800 | [diff] [blame] | 1847 | int i; |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1848 | |
| 1849 | for (i = 0; i < data->nr; i++) { |
| 1850 | if (data->heaps[i].size == 0) |
| 1851 | continue; |
Rebecca Schultz Zavin | fbce151 | 2012-11-15 10:31:02 -0800 | [diff] [blame] | 1852 | |
| 1853 | if (data->heaps[i].base == 0) { |
| 1854 | phys_addr_t paddr; |
| 1855 | paddr = memblock_alloc_base(data->heaps[i].size, |
| 1856 | data->heaps[i].align, |
| 1857 | MEMBLOCK_ALLOC_ANYWHERE); |
| 1858 | if (!paddr) { |
| 1859 | pr_err("%s: error allocating memblock for " |
| 1860 | "heap %d\n", |
| 1861 | __func__, i); |
| 1862 | continue; |
| 1863 | } |
| 1864 | data->heaps[i].base = paddr; |
| 1865 | } else { |
| 1866 | int ret = memblock_reserve(data->heaps[i].base, |
| 1867 | data->heaps[i].size); |
| 1868 | if (ret) |
| 1869 | pr_err("memblock reserve of %x@%pa failed\n", |
| 1870 | data->heaps[i].size, |
| 1871 | &data->heaps[i].base); |
| 1872 | } |
| 1873 | pr_info("%s: %s reserved base %pa size %d\n", __func__, |
| 1874 | data->heaps[i].name, |
| 1875 | &data->heaps[i].base, |
| 1876 | data->heaps[i].size); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame] | 1877 | } |
| 1878 | } |