1c872bdfddf600b322165389690b99646473e67d
[deliverable/linux.git] / drivers / staging / android / ion / ion.c
1 /*
2 *
3 * drivers/staging/android/ion/ion.c
4 *
5 * Copyright (C) 2011 Google, Inc.
6 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
18 #include <linux/device.h>
19 #include <linux/err.h>
20 #include <linux/file.h>
21 #include <linux/freezer.h>
22 #include <linux/fs.h>
23 #include <linux/anon_inodes.h>
24 #include <linux/kthread.h>
25 #include <linux/list.h>
26 #include <linux/memblock.h>
27 #include <linux/miscdevice.h>
28 #include <linux/export.h>
29 #include <linux/mm.h>
30 #include <linux/mm_types.h>
31 #include <linux/rbtree.h>
32 #include <linux/slab.h>
33 #include <linux/seq_file.h>
34 #include <linux/uaccess.h>
35 #include <linux/vmalloc.h>
36 #include <linux/debugfs.h>
37 #include <linux/dma-buf.h>
38 #include <linux/idr.h>
39
40 #include "ion.h"
41 #include "ion_priv.h"
42 #include "compat_ion.h"
43
44 /**
45 * struct ion_device - the metadata of the ion device node
46 * @dev: the actual misc device
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
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;
56 struct mutex buffer_lock;
57 struct rw_semaphore lock;
58 struct plist_head heaps;
59 long (*custom_ioctl)(struct ion_client *client, unsigned int cmd,
60 unsigned long arg);
61 struct rb_root clients;
62 struct dentry *debug_root;
63 struct dentry *heaps_debug_root;
64 struct dentry *clients_debug_root;
65 };
66
67 /**
68 * struct ion_client - a process/hw block local address space
69 * @node: node in the tree of all clients
70 * @dev: backpointer to ion device
71 * @handles: an rb tree of all the handles in this client
72 * @idr: an idr space for allocating handle ids
73 * @lock: lock protecting the tree of handles
74 * @name: used for debugging
75 * @display_name: used for debugging (unique version of @name)
76 * @display_serial: used for debugging (to make display_name unique)
77 * @task: used for debugging
78 *
79 * A client represents a list of buffers this client may access.
80 * The mutex stored here is used to protect both handles tree
81 * as well as the handles themselves, and should be held while modifying either.
82 */
83 struct ion_client {
84 struct rb_node node;
85 struct ion_device *dev;
86 struct rb_root handles;
87 struct idr idr;
88 struct mutex lock;
89 const char *name;
90 char *display_name;
91 int display_serial;
92 struct task_struct *task;
93 pid_t pid;
94 struct dentry *debug_root;
95 };
96
97 /**
98 * ion_handle - a client local reference to a buffer
99 * @ref: reference count
100 * @client: back pointer to the client the buffer resides in
101 * @buffer: pointer to the buffer
102 * @node: node in the client's handle rbtree
103 * @kmap_cnt: count of times this client has mapped to kernel
104 * @id: client-unique id allocated by client->idr
105 *
106 * Modifications to node, map_cnt or mapping should be protected by the
107 * lock in the client. Other fields are never changed after initialization.
108 */
109 struct ion_handle {
110 struct kref ref;
111 struct ion_client *client;
112 struct ion_buffer *buffer;
113 struct rb_node node;
114 unsigned int kmap_cnt;
115 int id;
116 };
117
118 bool ion_buffer_fault_user_mappings(struct ion_buffer *buffer)
119 {
120 return (buffer->flags & ION_FLAG_CACHED) &&
121 !(buffer->flags & ION_FLAG_CACHED_NEEDS_SYNC);
122 }
123
124 bool ion_buffer_cached(struct ion_buffer *buffer)
125 {
126 return !!(buffer->flags & ION_FLAG_CACHED);
127 }
128
129 static inline struct page *ion_buffer_page(struct page *page)
130 {
131 return (struct page *)((unsigned long)page & ~(1UL));
132 }
133
134 static inline bool ion_buffer_page_is_dirty(struct page *page)
135 {
136 return !!((unsigned long)page & 1UL);
137 }
138
139 static inline void ion_buffer_page_dirty(struct page **page)
140 {
141 *page = (struct page *)((unsigned long)(*page) | 1UL);
142 }
143
144 static inline void ion_buffer_page_clean(struct page **page)
145 {
146 *page = (struct page *)((unsigned long)(*page) & ~(1UL));
147 }
148
149 /* this function should only be called while dev->lock is held */
150 static void ion_buffer_add(struct ion_device *dev,
151 struct ion_buffer *buffer)
152 {
153 struct rb_node **p = &dev->buffers.rb_node;
154 struct rb_node *parent = NULL;
155 struct ion_buffer *entry;
156
157 while (*p) {
158 parent = *p;
159 entry = rb_entry(parent, struct ion_buffer, node);
160
161 if (buffer < entry) {
162 p = &(*p)->rb_left;
163 } else if (buffer > entry) {
164 p = &(*p)->rb_right;
165 } else {
166 pr_err("%s: buffer already found.", __func__);
167 BUG();
168 }
169 }
170
171 rb_link_node(&buffer->node, parent, p);
172 rb_insert_color(&buffer->node, &dev->buffers);
173 }
174
175 /* this function should only be called while dev->lock is held */
176 static struct ion_buffer *ion_buffer_create(struct ion_heap *heap,
177 struct ion_device *dev,
178 unsigned long len,
179 unsigned long align,
180 unsigned long flags)
181 {
182 struct ion_buffer *buffer;
183 struct sg_table *table;
184 struct scatterlist *sg;
185 int i, ret;
186
187 buffer = kzalloc(sizeof(struct ion_buffer), GFP_KERNEL);
188 if (!buffer)
189 return ERR_PTR(-ENOMEM);
190
191 buffer->heap = heap;
192 buffer->flags = flags;
193 kref_init(&buffer->ref);
194
195 ret = heap->ops->allocate(heap, buffer, len, align, flags);
196
197 if (ret) {
198 if (!(heap->flags & ION_HEAP_FLAG_DEFER_FREE))
199 goto err2;
200
201 ion_heap_freelist_drain(heap, 0);
202 ret = heap->ops->allocate(heap, buffer, len, align,
203 flags);
204 if (ret)
205 goto err2;
206 }
207
208 buffer->dev = dev;
209 buffer->size = len;
210
211 table = heap->ops->map_dma(heap, buffer);
212 if (WARN_ONCE(table == NULL,
213 "heap->ops->map_dma should return ERR_PTR on error"))
214 table = ERR_PTR(-EINVAL);
215 if (IS_ERR(table)) {
216 ret = -EINVAL;
217 goto err1;
218 }
219
220 buffer->sg_table = table;
221 if (ion_buffer_fault_user_mappings(buffer)) {
222 int num_pages = PAGE_ALIGN(buffer->size) / PAGE_SIZE;
223 struct scatterlist *sg;
224 int i, j, k = 0;
225
226 buffer->pages = vmalloc(sizeof(struct page *) * num_pages);
227 if (!buffer->pages) {
228 ret = -ENOMEM;
229 goto err;
230 }
231
232 for_each_sg(table->sgl, sg, table->nents, i) {
233 struct page *page = sg_page(sg);
234
235 for (j = 0; j < sg->length / PAGE_SIZE; j++)
236 buffer->pages[k++] = page++;
237 }
238 }
239
240 buffer->dev = dev;
241 buffer->size = len;
242 INIT_LIST_HEAD(&buffer->vmas);
243 mutex_init(&buffer->lock);
244 /*
245 * this will set up dma addresses for the sglist -- it is not
246 * technically correct as per the dma api -- a specific
247 * device isn't really taking ownership here. However, in practice on
248 * our systems the only dma_address space is physical addresses.
249 * Additionally, we can't afford the overhead of invalidating every
250 * allocation via dma_map_sg. The implicit contract here is that
251 * memory coming from the heaps is ready for dma, ie if it has a
252 * cached mapping that mapping has been invalidated
253 */
254 for_each_sg(buffer->sg_table->sgl, sg, buffer->sg_table->nents, i) {
255 sg_dma_address(sg) = sg_phys(sg);
256 sg_dma_len(sg) = sg->length;
257 }
258 mutex_lock(&dev->buffer_lock);
259 ion_buffer_add(dev, buffer);
260 mutex_unlock(&dev->buffer_lock);
261 return buffer;
262
263 err:
264 heap->ops->unmap_dma(heap, buffer);
265 err1:
266 heap->ops->free(buffer);
267 err2:
268 kfree(buffer);
269 return ERR_PTR(ret);
270 }
271
272 void ion_buffer_destroy(struct ion_buffer *buffer)
273 {
274 if (WARN_ON(buffer->kmap_cnt > 0))
275 buffer->heap->ops->unmap_kernel(buffer->heap, buffer);
276 buffer->heap->ops->unmap_dma(buffer->heap, buffer);
277 buffer->heap->ops->free(buffer);
278 vfree(buffer->pages);
279 kfree(buffer);
280 }
281
282 static void _ion_buffer_destroy(struct kref *kref)
283 {
284 struct ion_buffer *buffer = container_of(kref, struct ion_buffer, ref);
285 struct ion_heap *heap = buffer->heap;
286 struct ion_device *dev = buffer->dev;
287
288 mutex_lock(&dev->buffer_lock);
289 rb_erase(&buffer->node, &dev->buffers);
290 mutex_unlock(&dev->buffer_lock);
291
292 if (heap->flags & ION_HEAP_FLAG_DEFER_FREE)
293 ion_heap_freelist_add(heap, buffer);
294 else
295 ion_buffer_destroy(buffer);
296 }
297
298 static void ion_buffer_get(struct ion_buffer *buffer)
299 {
300 kref_get(&buffer->ref);
301 }
302
303 static int ion_buffer_put(struct ion_buffer *buffer)
304 {
305 return kref_put(&buffer->ref, _ion_buffer_destroy);
306 }
307
308 static void ion_buffer_add_to_handle(struct ion_buffer *buffer)
309 {
310 mutex_lock(&buffer->lock);
311 buffer->handle_count++;
312 mutex_unlock(&buffer->lock);
313 }
314
315 static void ion_buffer_remove_from_handle(struct ion_buffer *buffer)
316 {
317 /*
318 * when a buffer is removed from a handle, if it is not in
319 * any other handles, copy the taskcomm and the pid of the
320 * process it's being removed from into the buffer. At this
321 * point there will be no way to track what processes this buffer is
322 * being used by, it only exists as a dma_buf file descriptor.
323 * The taskcomm and pid can provide a debug hint as to where this fd
324 * is in the system
325 */
326 mutex_lock(&buffer->lock);
327 buffer->handle_count--;
328 BUG_ON(buffer->handle_count < 0);
329 if (!buffer->handle_count) {
330 struct task_struct *task;
331
332 task = current->group_leader;
333 get_task_comm(buffer->task_comm, task);
334 buffer->pid = task_pid_nr(task);
335 }
336 mutex_unlock(&buffer->lock);
337 }
338
339 static struct ion_handle *ion_handle_create(struct ion_client *client,
340 struct ion_buffer *buffer)
341 {
342 struct ion_handle *handle;
343
344 handle = kzalloc(sizeof(struct ion_handle), GFP_KERNEL);
345 if (!handle)
346 return ERR_PTR(-ENOMEM);
347 kref_init(&handle->ref);
348 RB_CLEAR_NODE(&handle->node);
349 handle->client = client;
350 ion_buffer_get(buffer);
351 ion_buffer_add_to_handle(buffer);
352 handle->buffer = buffer;
353
354 return handle;
355 }
356
357 static void ion_handle_kmap_put(struct ion_handle *);
358
359 static void ion_handle_destroy(struct kref *kref)
360 {
361 struct ion_handle *handle = container_of(kref, struct ion_handle, ref);
362 struct ion_client *client = handle->client;
363 struct ion_buffer *buffer = handle->buffer;
364
365 mutex_lock(&buffer->lock);
366 while (handle->kmap_cnt)
367 ion_handle_kmap_put(handle);
368 mutex_unlock(&buffer->lock);
369
370 idr_remove(&client->idr, handle->id);
371 if (!RB_EMPTY_NODE(&handle->node))
372 rb_erase(&handle->node, &client->handles);
373
374 ion_buffer_remove_from_handle(buffer);
375 ion_buffer_put(buffer);
376
377 kfree(handle);
378 }
379
380 struct ion_buffer *ion_handle_buffer(struct ion_handle *handle)
381 {
382 return handle->buffer;
383 }
384
385 static void ion_handle_get(struct ion_handle *handle)
386 {
387 kref_get(&handle->ref);
388 }
389
390 static int ion_handle_put_nolock(struct ion_handle *handle)
391 {
392 int ret;
393
394 ret = kref_put(&handle->ref, ion_handle_destroy);
395
396 return ret;
397 }
398
399 int ion_handle_put(struct ion_handle *handle)
400 {
401 struct ion_client *client = handle->client;
402 int ret;
403
404 mutex_lock(&client->lock);
405 ret = ion_handle_put_nolock(handle);
406 mutex_unlock(&client->lock);
407
408 return ret;
409 }
410
411 static struct ion_handle *ion_handle_lookup(struct ion_client *client,
412 struct ion_buffer *buffer)
413 {
414 struct rb_node *n = client->handles.rb_node;
415
416 while (n) {
417 struct ion_handle *entry = rb_entry(n, struct ion_handle, node);
418
419 if (buffer < entry->buffer)
420 n = n->rb_left;
421 else if (buffer > entry->buffer)
422 n = n->rb_right;
423 else
424 return entry;
425 }
426 return ERR_PTR(-EINVAL);
427 }
428
429 static struct ion_handle *ion_handle_get_by_id_nolock(struct ion_client *client,
430 int id)
431 {
432 struct ion_handle *handle;
433
434 handle = idr_find(&client->idr, id);
435 if (handle)
436 ion_handle_get(handle);
437
438 return handle ? handle : ERR_PTR(-EINVAL);
439 }
440
441 struct ion_handle *ion_handle_get_by_id(struct ion_client *client,
442 int id)
443 {
444 struct ion_handle *handle;
445
446 mutex_lock(&client->lock);
447 handle = ion_handle_get_by_id_nolock(client, id);
448 mutex_unlock(&client->lock);
449
450 return handle;
451 }
452
453 static bool ion_handle_validate(struct ion_client *client,
454 struct ion_handle *handle)
455 {
456 WARN_ON(!mutex_is_locked(&client->lock));
457 return idr_find(&client->idr, handle->id) == handle;
458 }
459
460 static int ion_handle_add(struct ion_client *client, struct ion_handle *handle)
461 {
462 int id;
463 struct rb_node **p = &client->handles.rb_node;
464 struct rb_node *parent = NULL;
465 struct ion_handle *entry;
466
467 id = idr_alloc(&client->idr, handle, 1, 0, GFP_KERNEL);
468 if (id < 0)
469 return id;
470
471 handle->id = id;
472
473 while (*p) {
474 parent = *p;
475 entry = rb_entry(parent, struct ion_handle, node);
476
477 if (handle->buffer < entry->buffer)
478 p = &(*p)->rb_left;
479 else if (handle->buffer > entry->buffer)
480 p = &(*p)->rb_right;
481 else
482 WARN(1, "%s: buffer already found.", __func__);
483 }
484
485 rb_link_node(&handle->node, parent, p);
486 rb_insert_color(&handle->node, &client->handles);
487
488 return 0;
489 }
490
491 struct ion_handle *ion_alloc(struct ion_client *client, size_t len,
492 size_t align, unsigned int heap_id_mask,
493 unsigned int flags)
494 {
495 struct ion_handle *handle;
496 struct ion_device *dev = client->dev;
497 struct ion_buffer *buffer = NULL;
498 struct ion_heap *heap;
499 int ret;
500
501 pr_debug("%s: len %zu align %zu heap_id_mask %u flags %x\n", __func__,
502 len, align, heap_id_mask, flags);
503 /*
504 * traverse the list of heaps available in this system in priority
505 * order. If the heap type is supported by the client, and matches the
506 * request of the caller allocate from it. Repeat until allocate has
507 * succeeded or all heaps have been tried
508 */
509 len = PAGE_ALIGN(len);
510
511 if (!len)
512 return ERR_PTR(-EINVAL);
513
514 down_read(&dev->lock);
515 plist_for_each_entry(heap, &dev->heaps, node) {
516 /* if the caller didn't specify this heap id */
517 if (!((1 << heap->id) & heap_id_mask))
518 continue;
519 buffer = ion_buffer_create(heap, dev, len, align, flags);
520 if (!IS_ERR(buffer))
521 break;
522 }
523 up_read(&dev->lock);
524
525 if (buffer == NULL)
526 return ERR_PTR(-ENODEV);
527
528 if (IS_ERR(buffer))
529 return ERR_CAST(buffer);
530
531 handle = ion_handle_create(client, buffer);
532
533 /*
534 * ion_buffer_create will create a buffer with a ref_cnt of 1,
535 * and ion_handle_create will take a second reference, drop one here
536 */
537 ion_buffer_put(buffer);
538
539 if (IS_ERR(handle))
540 return handle;
541
542 mutex_lock(&client->lock);
543 ret = ion_handle_add(client, handle);
544 mutex_unlock(&client->lock);
545 if (ret) {
546 ion_handle_put(handle);
547 handle = ERR_PTR(ret);
548 }
549
550 return handle;
551 }
552 EXPORT_SYMBOL(ion_alloc);
553
554 static void ion_free_nolock(struct ion_client *client, struct ion_handle *handle)
555 {
556 bool valid_handle;
557
558 BUG_ON(client != handle->client);
559
560 valid_handle = ion_handle_validate(client, handle);
561
562 if (!valid_handle) {
563 WARN(1, "%s: invalid handle passed to free.\n", __func__);
564 return;
565 }
566 ion_handle_put_nolock(handle);
567 }
568
569 void ion_free(struct ion_client *client, struct ion_handle *handle)
570 {
571 BUG_ON(client != handle->client);
572
573 mutex_lock(&client->lock);
574 ion_free_nolock(client, handle);
575 mutex_unlock(&client->lock);
576 }
577 EXPORT_SYMBOL(ion_free);
578
579 int ion_phys(struct ion_client *client, struct ion_handle *handle,
580 ion_phys_addr_t *addr, size_t *len)
581 {
582 struct ion_buffer *buffer;
583 int ret;
584
585 mutex_lock(&client->lock);
586 if (!ion_handle_validate(client, handle)) {
587 mutex_unlock(&client->lock);
588 return -EINVAL;
589 }
590
591 buffer = handle->buffer;
592
593 if (!buffer->heap->ops->phys) {
594 pr_err("%s: ion_phys is not implemented by this heap (name=%s, type=%d).\n",
595 __func__, buffer->heap->name, buffer->heap->type);
596 mutex_unlock(&client->lock);
597 return -ENODEV;
598 }
599 mutex_unlock(&client->lock);
600 ret = buffer->heap->ops->phys(buffer->heap, buffer, addr, len);
601 return ret;
602 }
603 EXPORT_SYMBOL(ion_phys);
604
605 static void *ion_buffer_kmap_get(struct ion_buffer *buffer)
606 {
607 void *vaddr;
608
609 if (buffer->kmap_cnt) {
610 buffer->kmap_cnt++;
611 return buffer->vaddr;
612 }
613 vaddr = buffer->heap->ops->map_kernel(buffer->heap, buffer);
614 if (WARN_ONCE(vaddr == NULL,
615 "heap->ops->map_kernel should return ERR_PTR on error"))
616 return ERR_PTR(-EINVAL);
617 if (IS_ERR(vaddr))
618 return vaddr;
619 buffer->vaddr = vaddr;
620 buffer->kmap_cnt++;
621 return vaddr;
622 }
623
624 static void *ion_handle_kmap_get(struct ion_handle *handle)
625 {
626 struct ion_buffer *buffer = handle->buffer;
627 void *vaddr;
628
629 if (handle->kmap_cnt) {
630 handle->kmap_cnt++;
631 return buffer->vaddr;
632 }
633 vaddr = ion_buffer_kmap_get(buffer);
634 if (IS_ERR(vaddr))
635 return vaddr;
636 handle->kmap_cnt++;
637 return vaddr;
638 }
639
640 static void ion_buffer_kmap_put(struct ion_buffer *buffer)
641 {
642 buffer->kmap_cnt--;
643 if (!buffer->kmap_cnt) {
644 buffer->heap->ops->unmap_kernel(buffer->heap, buffer);
645 buffer->vaddr = NULL;
646 }
647 }
648
649 static void ion_handle_kmap_put(struct ion_handle *handle)
650 {
651 struct ion_buffer *buffer = handle->buffer;
652
653 if (!handle->kmap_cnt) {
654 WARN(1, "%s: Double unmap detected! bailing...\n", __func__);
655 return;
656 }
657 handle->kmap_cnt--;
658 if (!handle->kmap_cnt)
659 ion_buffer_kmap_put(buffer);
660 }
661
662 void *ion_map_kernel(struct ion_client *client, struct ion_handle *handle)
663 {
664 struct ion_buffer *buffer;
665 void *vaddr;
666
667 mutex_lock(&client->lock);
668 if (!ion_handle_validate(client, handle)) {
669 pr_err("%s: invalid handle passed to map_kernel.\n",
670 __func__);
671 mutex_unlock(&client->lock);
672 return ERR_PTR(-EINVAL);
673 }
674
675 buffer = handle->buffer;
676
677 if (!handle->buffer->heap->ops->map_kernel) {
678 pr_err("%s: map_kernel is not implemented by this heap.\n",
679 __func__);
680 mutex_unlock(&client->lock);
681 return ERR_PTR(-ENODEV);
682 }
683
684 mutex_lock(&buffer->lock);
685 vaddr = ion_handle_kmap_get(handle);
686 mutex_unlock(&buffer->lock);
687 mutex_unlock(&client->lock);
688 return vaddr;
689 }
690 EXPORT_SYMBOL(ion_map_kernel);
691
692 void ion_unmap_kernel(struct ion_client *client, struct ion_handle *handle)
693 {
694 struct ion_buffer *buffer;
695
696 mutex_lock(&client->lock);
697 buffer = handle->buffer;
698 mutex_lock(&buffer->lock);
699 ion_handle_kmap_put(handle);
700 mutex_unlock(&buffer->lock);
701 mutex_unlock(&client->lock);
702 }
703 EXPORT_SYMBOL(ion_unmap_kernel);
704
705 static struct mutex debugfs_mutex;
706 static struct rb_root *ion_root_client;
707 static int is_client_alive(struct ion_client *client)
708 {
709 struct rb_node *node;
710 struct ion_client *tmp;
711 struct ion_device *dev;
712
713 node = ion_root_client->rb_node;
714 dev = container_of(ion_root_client, struct ion_device, clients);
715
716 down_read(&dev->lock);
717 while (node) {
718 tmp = rb_entry(node, struct ion_client, node);
719 if (client < tmp) {
720 node = node->rb_left;
721 } else if (client > tmp) {
722 node = node->rb_right;
723 } else {
724 up_read(&dev->lock);
725 return 1;
726 }
727 }
728
729 up_read(&dev->lock);
730 return 0;
731 }
732
733 static int ion_debug_client_show(struct seq_file *s, void *unused)
734 {
735 struct ion_client *client = s->private;
736 struct rb_node *n;
737 size_t sizes[ION_NUM_HEAP_IDS] = {0};
738 const char *names[ION_NUM_HEAP_IDS] = {NULL};
739 int i;
740
741 mutex_lock(&debugfs_mutex);
742 if (!is_client_alive(client)) {
743 seq_printf(s, "ion_client 0x%p dead, can't dump its buffers\n",
744 client);
745 mutex_unlock(&debugfs_mutex);
746 return 0;
747 }
748
749 mutex_lock(&client->lock);
750 for (n = rb_first(&client->handles); n; n = rb_next(n)) {
751 struct ion_handle *handle = rb_entry(n, struct ion_handle,
752 node);
753 unsigned int id = handle->buffer->heap->id;
754
755 if (!names[id])
756 names[id] = handle->buffer->heap->name;
757 sizes[id] += handle->buffer->size;
758 }
759 mutex_unlock(&client->lock);
760 mutex_unlock(&debugfs_mutex);
761
762 seq_printf(s, "%16.16s: %16.16s\n", "heap_name", "size_in_bytes");
763 for (i = 0; i < ION_NUM_HEAP_IDS; i++) {
764 if (!names[i])
765 continue;
766 seq_printf(s, "%16.16s: %16zu\n", names[i], sizes[i]);
767 }
768 return 0;
769 }
770
771 static int ion_debug_client_open(struct inode *inode, struct file *file)
772 {
773 return single_open(file, ion_debug_client_show, inode->i_private);
774 }
775
776 static const struct file_operations debug_client_fops = {
777 .open = ion_debug_client_open,
778 .read = seq_read,
779 .llseek = seq_lseek,
780 .release = single_release,
781 };
782
783 static int ion_get_client_serial(const struct rb_root *root,
784 const unsigned char *name)
785 {
786 int serial = -1;
787 struct rb_node *node;
788
789 for (node = rb_first(root); node; node = rb_next(node)) {
790 struct ion_client *client = rb_entry(node, struct ion_client,
791 node);
792
793 if (strcmp(client->name, name))
794 continue;
795 serial = max(serial, client->display_serial);
796 }
797 return serial + 1;
798 }
799
800 struct ion_client *ion_client_create(struct ion_device *dev,
801 const char *name)
802 {
803 struct ion_client *client;
804 struct task_struct *task;
805 struct rb_node **p;
806 struct rb_node *parent = NULL;
807 struct ion_client *entry;
808 pid_t pid;
809
810 if (!name) {
811 pr_err("%s: Name cannot be null\n", __func__);
812 return ERR_PTR(-EINVAL);
813 }
814
815 get_task_struct(current->group_leader);
816 task_lock(current->group_leader);
817 pid = task_pid_nr(current->group_leader);
818 /*
819 * don't bother to store task struct for kernel threads,
820 * they can't be killed anyway
821 */
822 if (current->group_leader->flags & PF_KTHREAD) {
823 put_task_struct(current->group_leader);
824 task = NULL;
825 } else {
826 task = current->group_leader;
827 }
828 task_unlock(current->group_leader);
829
830 client = kzalloc(sizeof(struct ion_client), GFP_KERNEL);
831 if (!client)
832 goto err_put_task_struct;
833
834 client->dev = dev;
835 client->handles = RB_ROOT;
836 idr_init(&client->idr);
837 mutex_init(&client->lock);
838 client->task = task;
839 client->pid = pid;
840 client->name = kstrdup(name, GFP_KERNEL);
841 if (!client->name)
842 goto err_free_client;
843
844 down_write(&dev->lock);
845 client->display_serial = ion_get_client_serial(&dev->clients, name);
846 client->display_name = kasprintf(
847 GFP_KERNEL, "%s-%d", name, client->display_serial);
848 if (!client->display_name) {
849 up_write(&dev->lock);
850 goto err_free_client_name;
851 }
852 p = &dev->clients.rb_node;
853 while (*p) {
854 parent = *p;
855 entry = rb_entry(parent, struct ion_client, node);
856
857 if (client < entry)
858 p = &(*p)->rb_left;
859 else if (client > entry)
860 p = &(*p)->rb_right;
861 }
862 rb_link_node(&client->node, parent, p);
863 rb_insert_color(&client->node, &dev->clients);
864
865 client->debug_root = debugfs_create_file(client->display_name, 0664,
866 dev->clients_debug_root,
867 client, &debug_client_fops);
868 if (!client->debug_root) {
869 char buf[256], *path;
870
871 path = dentry_path(dev->clients_debug_root, buf, 256);
872 pr_err("Failed to create client debugfs at %s/%s\n",
873 path, client->display_name);
874 }
875
876 up_write(&dev->lock);
877
878 return client;
879
880 err_free_client_name:
881 kfree(client->name);
882 err_free_client:
883 kfree(client);
884 err_put_task_struct:
885 if (task)
886 put_task_struct(current->group_leader);
887 return ERR_PTR(-ENOMEM);
888 }
889 EXPORT_SYMBOL(ion_client_create);
890
891 void ion_client_destroy(struct ion_client *client)
892 {
893 struct ion_device *dev = client->dev;
894 struct rb_node *n;
895
896 pr_debug("%s: %d\n", __func__, __LINE__);
897 mutex_lock(&debugfs_mutex);
898 while ((n = rb_first(&client->handles))) {
899 struct ion_handle *handle = rb_entry(n, struct ion_handle,
900 node);
901 ion_handle_destroy(&handle->ref);
902 }
903
904 idr_destroy(&client->idr);
905
906 down_write(&dev->lock);
907 if (client->task)
908 put_task_struct(client->task);
909 rb_erase(&client->node, &dev->clients);
910 debugfs_remove_recursive(client->debug_root);
911 up_write(&dev->lock);
912
913 kfree(client->display_name);
914 kfree(client->name);
915 kfree(client);
916 mutex_unlock(&debugfs_mutex);
917 }
918 EXPORT_SYMBOL(ion_client_destroy);
919
920 struct sg_table *ion_sg_table(struct ion_client *client,
921 struct ion_handle *handle)
922 {
923 struct ion_buffer *buffer;
924 struct sg_table *table;
925
926 mutex_lock(&client->lock);
927 if (!ion_handle_validate(client, handle)) {
928 pr_err("%s: invalid handle passed to map_dma.\n",
929 __func__);
930 mutex_unlock(&client->lock);
931 return ERR_PTR(-EINVAL);
932 }
933 buffer = handle->buffer;
934 table = buffer->sg_table;
935 mutex_unlock(&client->lock);
936 return table;
937 }
938 EXPORT_SYMBOL(ion_sg_table);
939
940 static void ion_buffer_sync_for_device(struct ion_buffer *buffer,
941 struct device *dev,
942 enum dma_data_direction direction);
943
944 static struct sg_table *ion_map_dma_buf(struct dma_buf_attachment *attachment,
945 enum dma_data_direction direction)
946 {
947 struct dma_buf *dmabuf = attachment->dmabuf;
948 struct ion_buffer *buffer = dmabuf->priv;
949
950 ion_buffer_sync_for_device(buffer, attachment->dev, direction);
951 return buffer->sg_table;
952 }
953
954 static void ion_unmap_dma_buf(struct dma_buf_attachment *attachment,
955 struct sg_table *table,
956 enum dma_data_direction direction)
957 {
958 }
959
960 void ion_pages_sync_for_device(struct device *dev, struct page *page,
961 size_t size, enum dma_data_direction dir)
962 {
963 struct scatterlist sg;
964
965 sg_init_table(&sg, 1);
966 sg_set_page(&sg, page, size, 0);
967 /*
968 * This is not correct - sg_dma_address needs a dma_addr_t that is valid
969 * for the targeted device, but this works on the currently targeted
970 * hardware.
971 */
972 sg_dma_address(&sg) = page_to_phys(page);
973 dma_sync_sg_for_device(dev, &sg, 1, dir);
974 }
975
976 struct ion_vma_list {
977 struct list_head list;
978 struct vm_area_struct *vma;
979 };
980
981 static void ion_buffer_sync_for_device(struct ion_buffer *buffer,
982 struct device *dev,
983 enum dma_data_direction dir)
984 {
985 struct ion_vma_list *vma_list;
986 int pages = PAGE_ALIGN(buffer->size) / PAGE_SIZE;
987 int i;
988
989 pr_debug("%s: syncing for device %s\n", __func__,
990 dev ? dev_name(dev) : "null");
991
992 if (!ion_buffer_fault_user_mappings(buffer))
993 return;
994
995 mutex_lock(&buffer->lock);
996 for (i = 0; i < pages; i++) {
997 struct page *page = buffer->pages[i];
998
999 if (ion_buffer_page_is_dirty(page))
1000 ion_pages_sync_for_device(dev, ion_buffer_page(page),
1001 PAGE_SIZE, dir);
1002
1003 ion_buffer_page_clean(buffer->pages + i);
1004 }
1005 list_for_each_entry(vma_list, &buffer->vmas, list) {
1006 struct vm_area_struct *vma = vma_list->vma;
1007
1008 zap_page_range(vma, vma->vm_start, vma->vm_end - vma->vm_start,
1009 NULL);
1010 }
1011 mutex_unlock(&buffer->lock);
1012 }
1013
1014 static int ion_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1015 {
1016 struct ion_buffer *buffer = vma->vm_private_data;
1017 unsigned long pfn;
1018 int ret;
1019
1020 mutex_lock(&buffer->lock);
1021 ion_buffer_page_dirty(buffer->pages + vmf->pgoff);
1022 BUG_ON(!buffer->pages || !buffer->pages[vmf->pgoff]);
1023
1024 pfn = page_to_pfn(ion_buffer_page(buffer->pages[vmf->pgoff]));
1025 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
1026 mutex_unlock(&buffer->lock);
1027 if (ret)
1028 return VM_FAULT_ERROR;
1029
1030 return VM_FAULT_NOPAGE;
1031 }
1032
1033 static void ion_vm_open(struct vm_area_struct *vma)
1034 {
1035 struct ion_buffer *buffer = vma->vm_private_data;
1036 struct ion_vma_list *vma_list;
1037
1038 vma_list = kmalloc(sizeof(struct ion_vma_list), GFP_KERNEL);
1039 if (!vma_list)
1040 return;
1041 vma_list->vma = vma;
1042 mutex_lock(&buffer->lock);
1043 list_add(&vma_list->list, &buffer->vmas);
1044 mutex_unlock(&buffer->lock);
1045 pr_debug("%s: adding %p\n", __func__, vma);
1046 }
1047
1048 static void ion_vm_close(struct vm_area_struct *vma)
1049 {
1050 struct ion_buffer *buffer = vma->vm_private_data;
1051 struct ion_vma_list *vma_list, *tmp;
1052
1053 pr_debug("%s\n", __func__);
1054 mutex_lock(&buffer->lock);
1055 list_for_each_entry_safe(vma_list, tmp, &buffer->vmas, list) {
1056 if (vma_list->vma != vma)
1057 continue;
1058 list_del(&vma_list->list);
1059 kfree(vma_list);
1060 pr_debug("%s: deleting %p\n", __func__, vma);
1061 break;
1062 }
1063 mutex_unlock(&buffer->lock);
1064 }
1065
1066 static const struct vm_operations_struct ion_vma_ops = {
1067 .open = ion_vm_open,
1068 .close = ion_vm_close,
1069 .fault = ion_vm_fault,
1070 };
1071
1072 static int ion_mmap(struct dma_buf *dmabuf, struct vm_area_struct *vma)
1073 {
1074 struct ion_buffer *buffer = dmabuf->priv;
1075 int ret = 0;
1076
1077 if (!buffer->heap->ops->map_user) {
1078 pr_err("%s: this heap does not define a method for mapping to userspace\n",
1079 __func__);
1080 return -EINVAL;
1081 }
1082
1083 if (ion_buffer_fault_user_mappings(buffer)) {
1084 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND |
1085 VM_DONTDUMP;
1086 vma->vm_private_data = buffer;
1087 vma->vm_ops = &ion_vma_ops;
1088 ion_vm_open(vma);
1089 return 0;
1090 }
1091
1092 if (!(buffer->flags & ION_FLAG_CACHED))
1093 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
1094
1095 mutex_lock(&buffer->lock);
1096 /* now map it to userspace */
1097 ret = buffer->heap->ops->map_user(buffer->heap, buffer, vma);
1098 mutex_unlock(&buffer->lock);
1099
1100 if (ret)
1101 pr_err("%s: failure mapping buffer to userspace\n",
1102 __func__);
1103
1104 return ret;
1105 }
1106
1107 static void ion_dma_buf_release(struct dma_buf *dmabuf)
1108 {
1109 struct ion_buffer *buffer = dmabuf->priv;
1110
1111 ion_buffer_put(buffer);
1112 }
1113
1114 static void *ion_dma_buf_kmap(struct dma_buf *dmabuf, unsigned long offset)
1115 {
1116 struct ion_buffer *buffer = dmabuf->priv;
1117
1118 return buffer->vaddr + offset * PAGE_SIZE;
1119 }
1120
1121 static void ion_dma_buf_kunmap(struct dma_buf *dmabuf, unsigned long offset,
1122 void *ptr)
1123 {
1124 }
1125
1126 static int ion_dma_buf_begin_cpu_access(struct dma_buf *dmabuf, size_t start,
1127 size_t len,
1128 enum dma_data_direction direction)
1129 {
1130 struct ion_buffer *buffer = dmabuf->priv;
1131 void *vaddr;
1132
1133 if (!buffer->heap->ops->map_kernel) {
1134 pr_err("%s: map kernel is not implemented by this heap.\n",
1135 __func__);
1136 return -ENODEV;
1137 }
1138
1139 mutex_lock(&buffer->lock);
1140 vaddr = ion_buffer_kmap_get(buffer);
1141 mutex_unlock(&buffer->lock);
1142 return PTR_ERR_OR_ZERO(vaddr);
1143 }
1144
1145 static void ion_dma_buf_end_cpu_access(struct dma_buf *dmabuf, size_t start,
1146 size_t len,
1147 enum dma_data_direction direction)
1148 {
1149 struct ion_buffer *buffer = dmabuf->priv;
1150
1151 mutex_lock(&buffer->lock);
1152 ion_buffer_kmap_put(buffer);
1153 mutex_unlock(&buffer->lock);
1154 }
1155
1156 static struct dma_buf_ops dma_buf_ops = {
1157 .map_dma_buf = ion_map_dma_buf,
1158 .unmap_dma_buf = ion_unmap_dma_buf,
1159 .mmap = ion_mmap,
1160 .release = ion_dma_buf_release,
1161 .begin_cpu_access = ion_dma_buf_begin_cpu_access,
1162 .end_cpu_access = ion_dma_buf_end_cpu_access,
1163 .kmap_atomic = ion_dma_buf_kmap,
1164 .kunmap_atomic = ion_dma_buf_kunmap,
1165 .kmap = ion_dma_buf_kmap,
1166 .kunmap = ion_dma_buf_kunmap,
1167 };
1168
1169 struct dma_buf *ion_share_dma_buf(struct ion_client *client,
1170 struct ion_handle *handle)
1171 {
1172 DEFINE_DMA_BUF_EXPORT_INFO(exp_info);
1173 struct ion_buffer *buffer;
1174 struct dma_buf *dmabuf;
1175 bool valid_handle;
1176
1177 mutex_lock(&client->lock);
1178 valid_handle = ion_handle_validate(client, handle);
1179 if (!valid_handle) {
1180 WARN(1, "%s: invalid handle passed to share.\n", __func__);
1181 mutex_unlock(&client->lock);
1182 return ERR_PTR(-EINVAL);
1183 }
1184 buffer = handle->buffer;
1185 ion_buffer_get(buffer);
1186 mutex_unlock(&client->lock);
1187
1188 exp_info.ops = &dma_buf_ops;
1189 exp_info.size = buffer->size;
1190 exp_info.flags = O_RDWR;
1191 exp_info.priv = buffer;
1192
1193 dmabuf = dma_buf_export(&exp_info);
1194 if (IS_ERR(dmabuf)) {
1195 ion_buffer_put(buffer);
1196 return dmabuf;
1197 }
1198
1199 return dmabuf;
1200 }
1201 EXPORT_SYMBOL(ion_share_dma_buf);
1202
1203 int ion_share_dma_buf_fd(struct ion_client *client, struct ion_handle *handle)
1204 {
1205 struct dma_buf *dmabuf;
1206 int fd;
1207
1208 dmabuf = ion_share_dma_buf(client, handle);
1209 if (IS_ERR(dmabuf))
1210 return PTR_ERR(dmabuf);
1211
1212 fd = dma_buf_fd(dmabuf, O_CLOEXEC);
1213 if (fd < 0)
1214 dma_buf_put(dmabuf);
1215
1216 return fd;
1217 }
1218 EXPORT_SYMBOL(ion_share_dma_buf_fd);
1219
1220 struct ion_handle *ion_import_dma_buf(struct ion_client *client,
1221 struct dma_buf *dmabuf)
1222 {
1223 struct ion_buffer *buffer;
1224 struct ion_handle *handle;
1225 int ret;
1226
1227 /* if this memory came from ion */
1228
1229 if (dmabuf->ops != &dma_buf_ops) {
1230 pr_err("%s: can not import dmabuf from another exporter\n",
1231 __func__);
1232 return ERR_PTR(-EINVAL);
1233 }
1234 buffer = dmabuf->priv;
1235
1236 mutex_lock(&client->lock);
1237 /* if a handle exists for this buffer just take a reference to it */
1238 handle = ion_handle_lookup(client, buffer);
1239 if (!IS_ERR(handle)) {
1240 ion_handle_get(handle);
1241 mutex_unlock(&client->lock);
1242 goto end;
1243 }
1244
1245 handle = ion_handle_create(client, buffer);
1246 if (IS_ERR(handle)) {
1247 mutex_unlock(&client->lock);
1248 goto end;
1249 }
1250
1251 ret = ion_handle_add(client, handle);
1252 mutex_unlock(&client->lock);
1253 if (ret) {
1254 ion_handle_put(handle);
1255 handle = ERR_PTR(ret);
1256 }
1257
1258 end:
1259 return handle;
1260 }
1261 EXPORT_SYMBOL(ion_import_dma_buf);
1262
1263 struct ion_handle *ion_import_dma_buf_fd(struct ion_client *client, int fd)
1264 {
1265 struct dma_buf *dmabuf;
1266 struct ion_handle *handle;
1267
1268 dmabuf = dma_buf_get(fd);
1269 if (IS_ERR(dmabuf))
1270 return ERR_CAST(dmabuf);
1271
1272 handle = ion_import_dma_buf(client, dmabuf);
1273 dma_buf_put(dmabuf);
1274 return handle;
1275 }
1276 EXPORT_SYMBOL(ion_import_dma_buf_fd);
1277
1278 static int ion_sync_for_device(struct ion_client *client, int fd)
1279 {
1280 struct dma_buf *dmabuf;
1281 struct ion_buffer *buffer;
1282
1283 dmabuf = dma_buf_get(fd);
1284 if (IS_ERR(dmabuf))
1285 return PTR_ERR(dmabuf);
1286
1287 /* if this memory came from ion */
1288 if (dmabuf->ops != &dma_buf_ops) {
1289 pr_err("%s: can not sync dmabuf from another exporter\n",
1290 __func__);
1291 dma_buf_put(dmabuf);
1292 return -EINVAL;
1293 }
1294 buffer = dmabuf->priv;
1295
1296 dma_sync_sg_for_device(NULL, buffer->sg_table->sgl,
1297 buffer->sg_table->nents, DMA_BIDIRECTIONAL);
1298 dma_buf_put(dmabuf);
1299 return 0;
1300 }
1301
1302 /* fix up the cases where the ioctl direction bits are incorrect */
1303 static unsigned int ion_ioctl_dir(unsigned int cmd)
1304 {
1305 switch (cmd) {
1306 case ION_IOC_SYNC:
1307 case ION_IOC_FREE:
1308 case ION_IOC_CUSTOM:
1309 return _IOC_WRITE;
1310 default:
1311 return _IOC_DIR(cmd);
1312 }
1313 }
1314
1315 static long ion_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1316 {
1317 struct ion_client *client = filp->private_data;
1318 struct ion_device *dev = client->dev;
1319 struct ion_handle *cleanup_handle = NULL;
1320 int ret = 0;
1321 unsigned int dir;
1322
1323 union {
1324 struct ion_fd_data fd;
1325 struct ion_allocation_data allocation;
1326 struct ion_handle_data handle;
1327 struct ion_custom_data custom;
1328 } data;
1329
1330 dir = ion_ioctl_dir(cmd);
1331
1332 if (_IOC_SIZE(cmd) > sizeof(data))
1333 return -EINVAL;
1334
1335 if (dir & _IOC_WRITE)
1336 if (copy_from_user(&data, (void __user *)arg, _IOC_SIZE(cmd)))
1337 return -EFAULT;
1338
1339 switch (cmd) {
1340 case ION_IOC_ALLOC:
1341 {
1342 struct ion_handle *handle;
1343
1344 handle = ion_alloc(client, data.allocation.len,
1345 data.allocation.align,
1346 data.allocation.heap_id_mask,
1347 data.allocation.flags);
1348 if (IS_ERR(handle))
1349 return PTR_ERR(handle);
1350
1351 data.allocation.handle = handle->id;
1352
1353 cleanup_handle = handle;
1354 break;
1355 }
1356 case ION_IOC_FREE:
1357 {
1358 struct ion_handle *handle;
1359
1360 mutex_lock(&client->lock);
1361 handle = ion_handle_get_by_id_nolock(client, data.handle.handle);
1362 if (IS_ERR(handle)) {
1363 mutex_unlock(&client->lock);
1364 return PTR_ERR(handle);
1365 }
1366 ion_free_nolock(client, handle);
1367 ion_handle_put_nolock(handle);
1368 mutex_unlock(&client->lock);
1369 break;
1370 }
1371 case ION_IOC_SHARE:
1372 case ION_IOC_MAP:
1373 {
1374 struct ion_handle *handle;
1375
1376 handle = ion_handle_get_by_id(client, data.handle.handle);
1377 if (IS_ERR(handle))
1378 return PTR_ERR(handle);
1379 data.fd.fd = ion_share_dma_buf_fd(client, handle);
1380 ion_handle_put(handle);
1381 if (data.fd.fd < 0)
1382 ret = data.fd.fd;
1383 break;
1384 }
1385 case ION_IOC_IMPORT:
1386 {
1387 struct ion_handle *handle;
1388
1389 handle = ion_import_dma_buf_fd(client, data.fd.fd);
1390 if (IS_ERR(handle))
1391 ret = PTR_ERR(handle);
1392 else
1393 data.handle.handle = handle->id;
1394 break;
1395 }
1396 case ION_IOC_SYNC:
1397 {
1398 ret = ion_sync_for_device(client, data.fd.fd);
1399 break;
1400 }
1401 case ION_IOC_CUSTOM:
1402 {
1403 if (!dev->custom_ioctl)
1404 return -ENOTTY;
1405 ret = dev->custom_ioctl(client, data.custom.cmd,
1406 data.custom.arg);
1407 break;
1408 }
1409 default:
1410 return -ENOTTY;
1411 }
1412
1413 if (dir & _IOC_READ) {
1414 if (copy_to_user((void __user *)arg, &data, _IOC_SIZE(cmd))) {
1415 if (cleanup_handle)
1416 ion_free(client, cleanup_handle);
1417 return -EFAULT;
1418 }
1419 }
1420 return ret;
1421 }
1422
1423 static int ion_release(struct inode *inode, struct file *file)
1424 {
1425 struct ion_client *client = file->private_data;
1426
1427 pr_debug("%s: %d\n", __func__, __LINE__);
1428 ion_client_destroy(client);
1429 return 0;
1430 }
1431
1432 static int ion_open(struct inode *inode, struct file *file)
1433 {
1434 struct miscdevice *miscdev = file->private_data;
1435 struct ion_device *dev = container_of(miscdev, struct ion_device, dev);
1436 struct ion_client *client;
1437 char debug_name[64];
1438
1439 pr_debug("%s: %d\n", __func__, __LINE__);
1440 snprintf(debug_name, 64, "%u", task_pid_nr(current->group_leader));
1441 client = ion_client_create(dev, debug_name);
1442 if (IS_ERR(client))
1443 return PTR_ERR(client);
1444 file->private_data = client;
1445
1446 return 0;
1447 }
1448
1449 static const struct file_operations ion_fops = {
1450 .owner = THIS_MODULE,
1451 .open = ion_open,
1452 .release = ion_release,
1453 .unlocked_ioctl = ion_ioctl,
1454 .compat_ioctl = compat_ion_ioctl,
1455 };
1456
1457 static size_t ion_debug_heap_total(struct ion_client *client,
1458 unsigned int id)
1459 {
1460 size_t size = 0;
1461 struct rb_node *n;
1462
1463 mutex_lock(&client->lock);
1464 for (n = rb_first(&client->handles); n; n = rb_next(n)) {
1465 struct ion_handle *handle = rb_entry(n,
1466 struct ion_handle,
1467 node);
1468 if (handle->buffer->heap->id == id)
1469 size += handle->buffer->size;
1470 }
1471 mutex_unlock(&client->lock);
1472 return size;
1473 }
1474
1475 static int ion_debug_heap_show(struct seq_file *s, void *unused)
1476 {
1477 struct ion_heap *heap = s->private;
1478 struct ion_device *dev = heap->dev;
1479 struct rb_node *n;
1480 size_t total_size = 0;
1481 size_t total_orphaned_size = 0;
1482
1483 seq_printf(s, "%16s %16s %16s\n", "client", "pid", "size");
1484 seq_puts(s, "----------------------------------------------------\n");
1485
1486 mutex_lock(&debugfs_mutex);
1487 for (n = rb_first(&dev->clients); n; n = rb_next(n)) {
1488 struct ion_client *client = rb_entry(n, struct ion_client,
1489 node);
1490 size_t size = ion_debug_heap_total(client, heap->id);
1491
1492 if (!size)
1493 continue;
1494 if (client->task) {
1495 char task_comm[TASK_COMM_LEN];
1496
1497 get_task_comm(task_comm, client->task);
1498 seq_printf(s, "%16s %16u %16zu\n", task_comm,
1499 client->pid, size);
1500 } else {
1501 seq_printf(s, "%16s %16u %16zu\n", client->name,
1502 client->pid, size);
1503 }
1504 }
1505 mutex_unlock(&debugfs_mutex);
1506
1507 seq_puts(s, "----------------------------------------------------\n");
1508 seq_puts(s, "orphaned allocations (info is from last known client):\n");
1509 mutex_lock(&dev->buffer_lock);
1510 for (n = rb_first(&dev->buffers); n; n = rb_next(n)) {
1511 struct ion_buffer *buffer = rb_entry(n, struct ion_buffer,
1512 node);
1513 if (buffer->heap->id != heap->id)
1514 continue;
1515 total_size += buffer->size;
1516 if (!buffer->handle_count) {
1517 seq_printf(s, "%16s %16u %16zu %d %d\n",
1518 buffer->task_comm, buffer->pid,
1519 buffer->size, buffer->kmap_cnt,
1520 atomic_read(&buffer->ref.refcount));
1521 total_orphaned_size += buffer->size;
1522 }
1523 }
1524 mutex_unlock(&dev->buffer_lock);
1525 seq_puts(s, "----------------------------------------------------\n");
1526 seq_printf(s, "%16s %16zu\n", "total orphaned",
1527 total_orphaned_size);
1528 seq_printf(s, "%16s %16zu\n", "total ", total_size);
1529 if (heap->flags & ION_HEAP_FLAG_DEFER_FREE)
1530 seq_printf(s, "%16s %16zu\n", "deferred free",
1531 heap->free_list_size);
1532 seq_puts(s, "----------------------------------------------------\n");
1533
1534 if (heap->debug_show)
1535 heap->debug_show(heap, s, unused);
1536
1537 return 0;
1538 }
1539
1540 static int ion_debug_heap_open(struct inode *inode, struct file *file)
1541 {
1542 return single_open(file, ion_debug_heap_show, inode->i_private);
1543 }
1544
1545 static const struct file_operations debug_heap_fops = {
1546 .open = ion_debug_heap_open,
1547 .read = seq_read,
1548 .llseek = seq_lseek,
1549 .release = single_release,
1550 };
1551
1552 static int debug_shrink_set(void *data, u64 val)
1553 {
1554 struct ion_heap *heap = data;
1555 struct shrink_control sc;
1556 int objs;
1557
1558 sc.gfp_mask = GFP_HIGHUSER;
1559 sc.nr_to_scan = val;
1560
1561 if (!val) {
1562 objs = heap->shrinker.count_objects(&heap->shrinker, &sc);
1563 sc.nr_to_scan = objs;
1564 }
1565
1566 heap->shrinker.scan_objects(&heap->shrinker, &sc);
1567 return 0;
1568 }
1569
1570 static int debug_shrink_get(void *data, u64 *val)
1571 {
1572 struct ion_heap *heap = data;
1573 struct shrink_control sc;
1574 int objs;
1575
1576 sc.gfp_mask = GFP_HIGHUSER;
1577 sc.nr_to_scan = 0;
1578
1579 objs = heap->shrinker.count_objects(&heap->shrinker, &sc);
1580 *val = objs;
1581 return 0;
1582 }
1583
1584 DEFINE_SIMPLE_ATTRIBUTE(debug_shrink_fops, debug_shrink_get,
1585 debug_shrink_set, "%llu\n");
1586
1587 void ion_device_add_heap(struct ion_device *dev, struct ion_heap *heap)
1588 {
1589 struct dentry *debug_file;
1590
1591 if (!heap->ops->allocate || !heap->ops->free || !heap->ops->map_dma ||
1592 !heap->ops->unmap_dma)
1593 pr_err("%s: can not add heap with invalid ops struct.\n",
1594 __func__);
1595
1596 spin_lock_init(&heap->free_lock);
1597 heap->free_list_size = 0;
1598
1599 if (heap->flags & ION_HEAP_FLAG_DEFER_FREE)
1600 ion_heap_init_deferred_free(heap);
1601
1602 if ((heap->flags & ION_HEAP_FLAG_DEFER_FREE) || heap->ops->shrink)
1603 ion_heap_init_shrinker(heap);
1604
1605 heap->dev = dev;
1606 down_write(&dev->lock);
1607 /*
1608 * use negative heap->id to reverse the priority -- when traversing
1609 * the list later attempt higher id numbers first
1610 */
1611 plist_node_init(&heap->node, -heap->id);
1612 plist_add(&heap->node, &dev->heaps);
1613 debug_file = debugfs_create_file(heap->name, 0664,
1614 dev->heaps_debug_root, heap,
1615 &debug_heap_fops);
1616
1617 if (!debug_file) {
1618 char buf[256], *path;
1619
1620 path = dentry_path(dev->heaps_debug_root, buf, 256);
1621 pr_err("Failed to create heap debugfs at %s/%s\n",
1622 path, heap->name);
1623 }
1624
1625 if (heap->shrinker.count_objects && heap->shrinker.scan_objects) {
1626 char debug_name[64];
1627
1628 snprintf(debug_name, 64, "%s_shrink", heap->name);
1629 debug_file = debugfs_create_file(
1630 debug_name, 0644, dev->heaps_debug_root, heap,
1631 &debug_shrink_fops);
1632 if (!debug_file) {
1633 char buf[256], *path;
1634
1635 path = dentry_path(dev->heaps_debug_root, buf, 256);
1636 pr_err("Failed to create heap shrinker debugfs at %s/%s\n",
1637 path, debug_name);
1638 }
1639 }
1640
1641 up_write(&dev->lock);
1642 }
1643 EXPORT_SYMBOL(ion_device_add_heap);
1644
1645 struct ion_device *ion_device_create(long (*custom_ioctl)
1646 (struct ion_client *client,
1647 unsigned int cmd,
1648 unsigned long arg))
1649 {
1650 struct ion_device *idev;
1651 int ret;
1652
1653 idev = kzalloc(sizeof(struct ion_device), GFP_KERNEL);
1654 if (!idev)
1655 return ERR_PTR(-ENOMEM);
1656
1657 idev->dev.minor = MISC_DYNAMIC_MINOR;
1658 idev->dev.name = "ion";
1659 idev->dev.fops = &ion_fops;
1660 idev->dev.parent = NULL;
1661 ret = misc_register(&idev->dev);
1662 if (ret) {
1663 pr_err("ion: failed to register misc device.\n");
1664 kfree(idev);
1665 return ERR_PTR(ret);
1666 }
1667
1668 idev->debug_root = debugfs_create_dir("ion", NULL);
1669 if (!idev->debug_root) {
1670 pr_err("ion: failed to create debugfs root directory.\n");
1671 goto debugfs_done;
1672 }
1673 idev->heaps_debug_root = debugfs_create_dir("heaps", idev->debug_root);
1674 if (!idev->heaps_debug_root) {
1675 pr_err("ion: failed to create debugfs heaps directory.\n");
1676 goto debugfs_done;
1677 }
1678 idev->clients_debug_root = debugfs_create_dir("clients",
1679 idev->debug_root);
1680 if (!idev->clients_debug_root)
1681 pr_err("ion: failed to create debugfs clients directory.\n");
1682
1683 debugfs_done:
1684
1685 idev->custom_ioctl = custom_ioctl;
1686 idev->buffers = RB_ROOT;
1687 mutex_init(&idev->buffer_lock);
1688 init_rwsem(&idev->lock);
1689 plist_head_init(&idev->heaps);
1690 idev->clients = RB_ROOT;
1691 ion_root_client = &idev->clients;
1692 mutex_init(&debugfs_mutex);
1693 return idev;
1694 }
1695 EXPORT_SYMBOL(ion_device_create);
1696
1697 void ion_device_destroy(struct ion_device *dev)
1698 {
1699 misc_deregister(&dev->dev);
1700 debugfs_remove_recursive(dev->debug_root);
1701 /* XXX need to free the heaps and clients ? */
1702 kfree(dev);
1703 }
1704 EXPORT_SYMBOL(ion_device_destroy);
1705
1706 void __init ion_reserve(struct ion_platform_data *data)
1707 {
1708 int i;
1709
1710 for (i = 0; i < data->nr; i++) {
1711 if (data->heaps[i].size == 0)
1712 continue;
1713
1714 if (data->heaps[i].base == 0) {
1715 phys_addr_t paddr;
1716
1717 paddr = memblock_alloc_base(data->heaps[i].size,
1718 data->heaps[i].align,
1719 MEMBLOCK_ALLOC_ANYWHERE);
1720 if (!paddr) {
1721 pr_err("%s: error allocating memblock for heap %d\n",
1722 __func__, i);
1723 continue;
1724 }
1725 data->heaps[i].base = paddr;
1726 } else {
1727 int ret = memblock_reserve(data->heaps[i].base,
1728 data->heaps[i].size);
1729 if (ret)
1730 pr_err("memblock reserve of %zx@%lx failed\n",
1731 data->heaps[i].size,
1732 data->heaps[i].base);
1733 }
1734 pr_info("%s: %s reserved base %lx size %zu\n", __func__,
1735 data->heaps[i].name,
1736 data->heaps[i].base,
1737 data->heaps[i].size);
1738 }
1739 }
This page took 0.062868 seconds and 4 git commands to generate.