]> rtime.felk.cvut.cz Git - sojka/nv-tegra/linux-3.10.git/blob - drivers/video/tegra/nvmap/nvmap_handle.c
2b37c35d09183d61ad9218e37eeb5269493082b6
[sojka/nv-tegra/linux-3.10.git] / drivers / video / tegra / nvmap / nvmap_handle.c
1 /*
2  * drivers/video/tegra/nvmap/nvmap_handle.c
3  *
4  * Handle allocation and freeing routines for nvmap
5  *
6  * Copyright (c) 2009-2014, NVIDIA CORPORATION. All rights reserved.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
16  * more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21  */
22
23 #define pr_fmt(fmt)     "%s: " fmt, __func__
24
25 #include <linux/err.h>
26 #include <linux/io.h>
27 #include <linux/kernel.h>
28 #include <linux/list.h>
29 #include <linux/mm.h>
30 #include <linux/rbtree.h>
31 #include <linux/dma-buf.h>
32 #include <linux/moduleparam.h>
33 #include <linux/nvmap.h>
34 #include <linux/tegra-soc.h>
35
36 #include <asm/pgtable.h>
37
38 #include <trace/events/nvmap.h>
39
40 #include "nvmap_priv.h"
41 #include "nvmap_ioctl.h"
42
43 bool zero_memory;
44
45 static int zero_memory_set(const char *arg, const struct kernel_param *kp)
46 {
47         param_set_bool(arg, kp);
48         nvmap_page_pool_clear();
49         return 0;
50 }
51
52 static struct kernel_param_ops zero_memory_ops = {
53         .get = param_get_bool,
54         .set = zero_memory_set,
55 };
56
57 module_param_cb(zero_memory, &zero_memory_ops, &zero_memory, 0644);
58
59 u32 nvmap_max_handle_count;
60
61 /* handles may be arbitrarily large (16+MiB), and any handle allocated from
62  * the kernel (i.e., not a carveout handle) includes its array of pages. to
63  * preserve kmalloc space, if the array of pages exceeds PAGELIST_VMALLOC_MIN,
64  * the array is allocated using vmalloc. */
65 #define PAGELIST_VMALLOC_MIN    (PAGE_SIZE)
66
67 void *nvmap_altalloc(size_t len)
68 {
69         if (len > PAGELIST_VMALLOC_MIN)
70                 return vmalloc(len);
71         else
72                 return kmalloc(len, GFP_KERNEL);
73 }
74
75 void nvmap_altfree(void *ptr, size_t len)
76 {
77         if (!ptr)
78                 return;
79
80         if (len > PAGELIST_VMALLOC_MIN)
81                 vfree(ptr);
82         else
83                 kfree(ptr);
84 }
85
86 void _nvmap_handle_free(struct nvmap_handle *h)
87 {
88         unsigned int i, nr_page, page_index = 0;
89 #if defined(CONFIG_NVMAP_PAGE_POOLS) && \
90         !defined(CONFIG_NVMAP_FORCE_ZEROED_USER_PAGES)
91         struct nvmap_page_pool *pool;
92 #endif
93
94         if (h->nvhost_priv)
95                 h->nvhost_priv_delete(h->nvhost_priv);
96
97         if (nvmap_handle_remove(nvmap_dev, h) != 0)
98                 return;
99
100         if (!h->alloc)
101                 goto out;
102
103         nvmap_stats_inc(NS_RELEASE, h->size);
104         nvmap_stats_dec(NS_TOTAL, PAGE_ALIGN(h->orig_size));
105         if (!h->heap_pgalloc) {
106                 nvmap_heap_free(h->carveout);
107                 goto out;
108         }
109
110         nr_page = DIV_ROUND_UP(h->size, PAGE_SIZE);
111
112         BUG_ON(h->size & ~PAGE_MASK);
113         BUG_ON(!h->pgalloc.pages);
114
115 #ifdef NVMAP_LAZY_VFREE
116         if (h->vaddr)
117                 vm_unmap_ram(h->vaddr, h->size >> PAGE_SHIFT);
118 #endif
119
120         for (i = 0; i < nr_page; i++)
121                 h->pgalloc.pages[i] = nvmap_to_page(h->pgalloc.pages[i]);
122
123 #if defined(CONFIG_NVMAP_PAGE_POOLS) && \
124         !defined(CONFIG_NVMAP_FORCE_ZEROED_USER_PAGES)
125         if (!zero_memory) {
126                 pool = &nvmap_dev->pool;
127
128                 nvmap_page_pool_lock(pool);
129                 page_index = __nvmap_page_pool_fill_lots_locked(pool,
130                                                 h->pgalloc.pages, nr_page);
131                 nvmap_page_pool_unlock(pool);
132         }
133 #endif
134
135         for (i = page_index; i < nr_page; i++)
136                 __free_page(h->pgalloc.pages[i]);
137
138         nvmap_altfree(h->pgalloc.pages, nr_page * sizeof(struct page *));
139
140 out:
141         kfree(h);
142 }
143
144 static struct page *nvmap_alloc_pages_exact(gfp_t gfp, size_t size)
145 {
146         struct page *page, *p, *e;
147         unsigned int order;
148
149         size = PAGE_ALIGN(size);
150         order = get_order(size);
151         page = alloc_pages(gfp, order);
152
153         if (!page)
154                 return NULL;
155
156         split_page(page, order);
157         e = page + (1 << order);
158         for (p = page + (size >> PAGE_SHIFT); p < e; p++)
159                 __free_page(p);
160
161         return page;
162 }
163
164 static int handle_page_alloc(struct nvmap_client *client,
165                              struct nvmap_handle *h, bool contiguous)
166 {
167         size_t size = PAGE_ALIGN(h->size);
168         unsigned int nr_page = size >> PAGE_SHIFT;
169         pgprot_t prot;
170         unsigned int i = 0, page_index = 0;
171         struct page **pages;
172 #ifdef CONFIG_NVMAP_PAGE_POOLS
173         struct nvmap_page_pool *pool = NULL;
174 #endif
175         gfp_t gfp = GFP_NVMAP;
176
177         if (zero_memory)
178                 gfp |= __GFP_ZERO;
179
180         pages = nvmap_altalloc(nr_page * sizeof(*pages));
181         if (!pages)
182                 return -ENOMEM;
183
184         prot = nvmap_pgprot(h, PG_PROT_KERNEL);
185
186         if (contiguous) {
187                 struct page *page;
188                 page = nvmap_alloc_pages_exact(gfp, size);
189                 if (!page)
190                         goto fail;
191
192                 for (i = 0; i < nr_page; i++)
193                         pages[i] = nth_page(page, i);
194
195         } else {
196 #ifdef CONFIG_NVMAP_PAGE_POOLS
197                 pool = &nvmap_dev->pool;
198
199                 /*
200                  * Get as many pages from the pools as possible.
201                  */
202                 nvmap_page_pool_lock(pool);
203                 page_index = __nvmap_page_pool_alloc_lots_locked(pool, pages,
204                                                                  nr_page);
205                 nvmap_page_pool_unlock(pool);
206 #endif
207                 for (i = page_index; i < nr_page; i++) {
208                         pages[i] = nvmap_alloc_pages_exact(gfp, PAGE_SIZE);
209                         if (!pages[i])
210                                 goto fail;
211                 }
212         }
213
214         /*
215          * Make sure any data in the caches is cleaned out before
216          * passing these pages to userspace. otherwise, It can lead to
217          * corruption in pages that get mapped as something other than WB in
218          * userspace and leaked kernel data structures.
219          *
220          * FIXME: For ARMv7 we don't have __clean_dcache_page() so we continue
221          * to use the flush cache version.
222          */
223 #ifdef ARM64
224         nvmap_clean_cache(pages, nr_page);
225 #else
226         nvmap_flush_cache(pages, nr_page);
227 #endif
228
229         h->size = size;
230         h->pgalloc.pages = pages;
231         h->pgalloc.contig = contiguous;
232         atomic_set(&h->pgalloc.ndirty, 0);
233         return 0;
234
235 fail:
236         while (i--)
237                 __free_page(pages[i]);
238         nvmap_altfree(pages, nr_page * sizeof(*pages));
239         wmb();
240         return -ENOMEM;
241 }
242
243 static void alloc_handle(struct nvmap_client *client,
244                          struct nvmap_handle *h, unsigned int type)
245 {
246         unsigned int carveout_mask = NVMAP_HEAP_CARVEOUT_MASK;
247         unsigned int iovmm_mask = NVMAP_HEAP_IOVMM;
248
249         BUG_ON(type & (type - 1));
250
251 #ifdef CONFIG_NVMAP_CONVERT_CARVEOUT_TO_IOVMM
252         /* Convert generic carveout requests to iovmm requests. */
253         carveout_mask &= ~NVMAP_HEAP_CARVEOUT_GENERIC;
254         iovmm_mask |= NVMAP_HEAP_CARVEOUT_GENERIC;
255 #endif
256
257         if (type & carveout_mask) {
258                 struct nvmap_heap_block *b;
259
260                 b = nvmap_carveout_alloc(client, h, type);
261                 if (b) {
262                         h->heap_type = type;
263                         h->heap_pgalloc = false;
264                         /* barrier to ensure all handle alloc data
265                          * is visible before alloc is seen by other
266                          * processors.
267                          */
268                         mb();
269                         h->alloc = true;
270                 }
271         } else if (type & iovmm_mask) {
272                 int ret;
273
274                 ret = handle_page_alloc(client, h,
275                         h->userflags & NVMAP_HANDLE_PHYS_CONTIG);
276                 if (ret)
277                         return;
278                 h->heap_type = NVMAP_HEAP_IOVMM;
279                 h->heap_pgalloc = true;
280                 mb();
281                 h->alloc = true;
282         }
283 }
284
285 /* small allocations will try to allocate from generic OS memory before
286  * any of the limited heaps, to increase the effective memory for graphics
287  * allocations, and to reduce fragmentation of the graphics heaps with
288  * sub-page splinters */
289 static const unsigned int heap_policy_small[] = {
290         NVMAP_HEAP_CARVEOUT_VPR,
291         NVMAP_HEAP_CARVEOUT_IRAM,
292         NVMAP_HEAP_CARVEOUT_MASK,
293         NVMAP_HEAP_IOVMM,
294         0,
295 };
296
297 static const unsigned int heap_policy_large[] = {
298         NVMAP_HEAP_CARVEOUT_VPR,
299         NVMAP_HEAP_CARVEOUT_IRAM,
300         NVMAP_HEAP_IOVMM,
301         NVMAP_HEAP_CARVEOUT_MASK,
302         0,
303 };
304
305 int nvmap_alloc_handle(struct nvmap_client *client,
306                        struct nvmap_handle *h, unsigned int heap_mask,
307                        size_t align,
308                        u8 kind,
309                        unsigned int flags)
310 {
311         const unsigned int *alloc_policy;
312         int nr_page;
313         int err = -ENOMEM;
314
315         h = nvmap_handle_get(h);
316
317         if (!h)
318                 return -EINVAL;
319
320         if (h->alloc) {
321                 nvmap_handle_put(h);
322                 return -EEXIST;
323         }
324
325         nvmap_stats_inc(NS_TOTAL, PAGE_ALIGN(h->orig_size));
326         nvmap_stats_inc(NS_ALLOC, PAGE_ALIGN(h->size));
327         trace_nvmap_alloc_handle(client, h,
328                 h->size, heap_mask, align, flags,
329                 nvmap_stats_read(NS_TOTAL),
330                 nvmap_stats_read(NS_ALLOC));
331         h->userflags = flags;
332         nr_page = ((h->size + PAGE_SIZE - 1) >> PAGE_SHIFT);
333         h->flags = (flags & NVMAP_HANDLE_CACHE_FLAG);
334         h->align = max_t(size_t, align, L1_CACHE_BYTES);
335         h->kind = kind;
336
337         /* convert iovmm requests to generic carveout. */
338         if (heap_mask & NVMAP_HEAP_IOVMM) {
339                 heap_mask = (heap_mask & ~NVMAP_HEAP_IOVMM) |
340                             NVMAP_HEAP_CARVEOUT_GENERIC;
341         }
342
343         if (!heap_mask) {
344                 err = -EINVAL;
345                 goto out;
346         }
347
348         alloc_policy = (nr_page == 1) ? heap_policy_small : heap_policy_large;
349
350         while (!h->alloc && *alloc_policy) {
351                 unsigned int heap_type;
352
353                 heap_type = *alloc_policy++;
354                 heap_type &= heap_mask;
355
356                 if (!heap_type)
357                         continue;
358
359                 heap_mask &= ~heap_type;
360
361                 while (heap_type && !h->alloc) {
362                         unsigned int heap;
363
364                         /* iterate possible heaps MSB-to-LSB, since higher-
365                          * priority carveouts will have higher usage masks */
366                         heap = 1 << __fls(heap_type);
367                         alloc_handle(client, h, heap);
368                         heap_type &= ~heap;
369                 }
370         }
371
372 out:
373         if (h->alloc) {
374                 if (client->kernel_client)
375                         nvmap_stats_inc(NS_KALLOC, h->size);
376                 else
377                         nvmap_stats_inc(NS_UALLOC, h->size);
378         } else {
379                 nvmap_stats_dec(NS_TOTAL, PAGE_ALIGN(h->orig_size));
380                 nvmap_stats_dec(NS_ALLOC, PAGE_ALIGN(h->orig_size));
381         }
382
383         err = (h->alloc) ? 0 : err;
384         nvmap_handle_put(h);
385         return err;
386 }
387
388 void nvmap_free_handle(struct nvmap_client *client,
389                        struct nvmap_handle *handle)
390 {
391         struct nvmap_handle_ref *ref;
392         struct nvmap_handle *h;
393         int pins;
394
395         nvmap_ref_lock(client);
396
397         ref = __nvmap_validate_locked(client, handle);
398         if (!ref) {
399                 nvmap_ref_unlock(client);
400                 return;
401         }
402
403         trace_nvmap_free_handle(client, handle);
404         BUG_ON(!ref->handle);
405         h = ref->handle;
406
407         if (atomic_dec_return(&ref->dupes)) {
408                 nvmap_ref_unlock(client);
409                 goto out;
410         }
411
412         smp_rmb();
413         pins = atomic_read(&ref->pin);
414         rb_erase(&ref->node, &client->handle_refs);
415         client->handle_count--;
416         atomic_dec(&ref->handle->share_count);
417
418         nvmap_ref_unlock(client);
419
420         if (pins)
421                 pr_debug("%s freeing pinned handle %p\n",
422                             current->group_leader->comm, h);
423
424         while (atomic_read(&ref->pin))
425                 __nvmap_unpin(ref);
426
427         if (h->owner == client)
428                 h->owner = NULL;
429
430         dma_buf_put(ref->handle->dmabuf);
431         kfree(ref);
432
433 out:
434         BUG_ON(!atomic_read(&h->ref));
435         nvmap_handle_put(h);
436 }
437 EXPORT_SYMBOL(nvmap_free_handle);
438
439 void nvmap_free_handle_user_id(struct nvmap_client *client,
440                                unsigned long user_id)
441 {
442         nvmap_free_handle(client, unmarshal_user_id(user_id));
443 }
444
445 static void add_handle_ref(struct nvmap_client *client,
446                            struct nvmap_handle_ref *ref)
447 {
448         struct rb_node **p, *parent = NULL;
449
450         nvmap_ref_lock(client);
451         p = &client->handle_refs.rb_node;
452         while (*p) {
453                 struct nvmap_handle_ref *node;
454                 parent = *p;
455                 node = rb_entry(parent, struct nvmap_handle_ref, node);
456                 if (ref->handle > node->handle)
457                         p = &parent->rb_right;
458                 else
459                         p = &parent->rb_left;
460         }
461         rb_link_node(&ref->node, parent, p);
462         rb_insert_color(&ref->node, &client->handle_refs);
463         client->handle_count++;
464         if (client->handle_count > nvmap_max_handle_count)
465                 nvmap_max_handle_count = client->handle_count;
466         atomic_inc(&ref->handle->share_count);
467         nvmap_ref_unlock(client);
468 }
469
470 struct nvmap_handle_ref *nvmap_create_handle(struct nvmap_client *client,
471                                              size_t size)
472 {
473         void *err = ERR_PTR(-ENOMEM);
474         struct nvmap_handle *h;
475         struct nvmap_handle_ref *ref = NULL;
476
477         if (!client)
478                 return ERR_PTR(-EINVAL);
479
480         if (!size)
481                 return ERR_PTR(-EINVAL);
482
483         h = kzalloc(sizeof(*h), GFP_KERNEL);
484         if (!h)
485                 return ERR_PTR(-ENOMEM);
486
487         ref = kzalloc(sizeof(*ref), GFP_KERNEL);
488         if (!ref)
489                 goto ref_alloc_fail;
490
491         atomic_set(&h->ref, 1);
492         atomic_set(&h->pin, 0);
493         h->owner = client;
494         BUG_ON(!h->owner);
495         h->size = h->orig_size = size;
496         h->flags = NVMAP_HANDLE_WRITE_COMBINE;
497         mutex_init(&h->lock);
498         INIT_LIST_HEAD(&h->vmas);
499
500         /*
501          * This takes out 1 ref on the dambuf. This corresponds to the
502          * handle_ref that gets automatically made by nvmap_create_handle().
503          */
504         h->dmabuf = __nvmap_make_dmabuf(client, h);
505         if (IS_ERR(h->dmabuf)) {
506                 err = h->dmabuf;
507                 goto make_dmabuf_fail;
508         }
509
510         /*
511          * Pre-attach nvmap to this new dmabuf. This gets unattached during the
512          * dma_buf_release() operation.
513          */
514         h->attachment = dma_buf_attach(h->dmabuf, nvmap_dev->dev_user.parent);
515         if (IS_ERR(h->attachment)) {
516                 err = h->attachment;
517                 goto dma_buf_attach_fail;
518         }
519
520         nvmap_handle_add(nvmap_dev, h);
521
522         /*
523          * Major assumption here: the dma_buf object that the handle contains
524          * is created with a ref count of 1.
525          */
526         atomic_set(&ref->dupes, 1);
527         ref->handle = h;
528         atomic_set(&ref->pin, 0);
529         add_handle_ref(client, ref);
530         trace_nvmap_create_handle(client, client->name, h, size, ref);
531         return ref;
532
533 dma_buf_attach_fail:
534         dma_buf_put(h->dmabuf);
535 make_dmabuf_fail:
536         kfree(ref);
537 ref_alloc_fail:
538         kfree(h);
539         return err;
540 }
541
542 struct nvmap_handle_ref *nvmap_duplicate_handle(struct nvmap_client *client,
543                                         struct nvmap_handle *h, bool skip_val)
544 {
545         struct nvmap_handle_ref *ref = NULL;
546
547         BUG_ON(!client);
548         /* on success, the reference count for the handle should be
549          * incremented, so the success paths will not call nvmap_handle_put */
550         h = nvmap_validate_get(h);
551
552         if (!h) {
553                 pr_debug("%s duplicate handle failed\n",
554                             current->group_leader->comm);
555                 return ERR_PTR(-EPERM);
556         }
557
558         if (!h->alloc) {
559                 pr_err("%s duplicating unallocated handle\n",
560                         current->group_leader->comm);
561                 nvmap_handle_put(h);
562                 return ERR_PTR(-EINVAL);
563         }
564
565         nvmap_ref_lock(client);
566         ref = __nvmap_validate_locked(client, h);
567
568         if (ref) {
569                 /* handle already duplicated in client; just increment
570                  * the reference count rather than re-duplicating it */
571                 atomic_inc(&ref->dupes);
572                 nvmap_ref_unlock(client);
573                 return ref;
574         }
575
576         nvmap_ref_unlock(client);
577
578         ref = kzalloc(sizeof(*ref), GFP_KERNEL);
579         if (!ref) {
580                 nvmap_handle_put(h);
581                 return ERR_PTR(-ENOMEM);
582         }
583
584         atomic_set(&ref->dupes, 1);
585         ref->handle = h;
586         atomic_set(&ref->pin, 0);
587         add_handle_ref(client, ref);
588
589         /*
590          * Ref counting on the dma_bufs follows the creation and destruction of
591          * nvmap_handle_refs. That is every time a handle_ref is made the
592          * dma_buf ref count goes up and everytime a handle_ref is destroyed
593          * the dma_buf ref count goes down.
594          */
595         get_dma_buf(h->dmabuf);
596
597         trace_nvmap_duplicate_handle(client, h, ref);
598         return ref;
599 }
600
601 struct nvmap_handle_ref *nvmap_create_handle_from_fd(
602                         struct nvmap_client *client, int fd)
603 {
604         struct nvmap_handle *handle;
605         struct nvmap_handle_ref *ref;
606
607         BUG_ON(!client);
608
609         handle = nvmap_get_id_from_dmabuf_fd(client, fd);
610         if (IS_ERR(handle))
611                 return ERR_CAST(handle);
612         ref = nvmap_duplicate_handle(client, handle, 1);
613         return ref;
614 }
615
616 struct nvmap_handle *nvmap_duplicate_handle_id_ex(struct nvmap_client *client,
617                                                         struct nvmap_handle *h)
618 {
619         struct nvmap_handle_ref *ref = nvmap_duplicate_handle(client, h, 0);
620
621         if (IS_ERR(ref))
622                 return 0;
623
624         return __nvmap_ref_to_id(ref);
625 }
626 EXPORT_SYMBOL(nvmap_duplicate_handle_id_ex);
627
628 int nvmap_get_page_list_info(struct nvmap_client *client,
629                                 struct nvmap_handle *handle, u32 *size,
630                                 u32 *flags, u32 *nr_page, bool *contig)
631 {
632         struct nvmap_handle *h;
633
634         BUG_ON(!size || !flags || !nr_page || !contig);
635         BUG_ON(!client);
636
637         *size = 0;
638         *flags = 0;
639         *nr_page = 0;
640
641         h = nvmap_handle_get(handle);
642
643         if (!h) {
644                 pr_err("%s query invalid handle %p\n",
645                         current->group_leader->comm, handle);
646                 return -EINVAL;
647         }
648
649         if (!h->alloc || !h->heap_pgalloc) {
650                 pr_err("%s query unallocated handle %p\n",
651                         current->group_leader->comm, handle);
652                 nvmap_handle_put(h);
653                 return -EINVAL;
654         }
655
656         *flags = h->flags;
657         *size = h->orig_size;
658         *nr_page = PAGE_ALIGN(h->size) >> PAGE_SHIFT;
659         *contig = h->pgalloc.contig;
660
661         nvmap_handle_put(h);
662         return 0;
663 }
664 EXPORT_SYMBOL(nvmap_get_page_list_info);
665
666 int nvmap_acquire_page_list(struct nvmap_client *client,
667                         struct nvmap_handle *handle, struct page **pages,
668                         u32 nr_page)
669 {
670         struct nvmap_handle *h;
671         struct nvmap_handle_ref *ref;
672         int idx;
673         phys_addr_t dummy;
674
675         BUG_ON(!client);
676
677         h = nvmap_handle_get(handle);
678
679         if (!h) {
680                 pr_err("%s query invalid handle %p\n",
681                           current->group_leader->comm, handle);
682                 return -EINVAL;
683         }
684
685         if (!h->alloc || !h->heap_pgalloc) {
686                 pr_err("%s query unallocated handle %p\n",
687                           current->group_leader->comm, handle);
688                 nvmap_handle_put(h);
689                 return -EINVAL;
690         }
691
692         BUG_ON(nr_page != PAGE_ALIGN(h->size) >> PAGE_SHIFT);
693
694         for (idx = 0; idx < nr_page; idx++)
695                 pages[idx] = h->pgalloc.pages[idx];
696
697         nvmap_ref_lock(client);
698         ref = __nvmap_validate_locked(client, h);
699         if (ref)
700                 __nvmap_pin(ref, &dummy);
701         nvmap_ref_unlock(client);
702
703         return 0;
704 }
705 EXPORT_SYMBOL(nvmap_acquire_page_list);
706
707 int nvmap_release_page_list(struct nvmap_client *client,
708                                 struct nvmap_handle *handle)
709 {
710         struct nvmap_handle_ref *ref;
711         struct nvmap_handle *h = NULL;
712
713         BUG_ON(!client);
714
715         nvmap_ref_lock(client);
716
717         ref = __nvmap_validate_locked(client, handle);
718         if (ref)
719                 __nvmap_unpin(ref);
720
721         nvmap_ref_unlock(client);
722
723         if (ref)
724                 h = ref->handle;
725         if (h)
726                 nvmap_handle_put(h);
727
728         return 0;
729 }
730 EXPORT_SYMBOL(nvmap_release_page_list);
731
732 int __nvmap_get_handle_param(struct nvmap_client *client,
733                              struct nvmap_handle *h, u32 param, u64 *result)
734 {
735         int err = 0;
736
737         if (WARN_ON(!virt_addr_valid(h)))
738                 return -EINVAL;
739
740         switch (param) {
741         case NVMAP_HANDLE_PARAM_SIZE:
742                 *result = h->orig_size;
743                 break;
744         case NVMAP_HANDLE_PARAM_ALIGNMENT:
745                 *result = h->align;
746                 break;
747         case NVMAP_HANDLE_PARAM_BASE:
748                 if (!h->alloc || !atomic_read(&h->pin))
749                         *result = -EINVAL;
750                 else if (!h->heap_pgalloc) {
751                         mutex_lock(&h->lock);
752                         *result = h->carveout->base;
753                         mutex_unlock(&h->lock);
754                 } else if (h->attachment->priv)
755                         *result = sg_dma_address(
756                                 ((struct sg_table *)h->attachment->priv)->sgl);
757                 else
758                         *result = -EINVAL;
759                 break;
760         case NVMAP_HANDLE_PARAM_HEAP:
761                 if (!h->alloc)
762                         *result = 0;
763                 else if (!h->heap_pgalloc) {
764                         mutex_lock(&h->lock);
765                         *result = nvmap_carveout_usage(client, h->carveout);
766                         mutex_unlock(&h->lock);
767                 } else
768                         *result = NVMAP_HEAP_IOVMM;
769                 break;
770         case NVMAP_HANDLE_PARAM_KIND:
771                 *result = h->kind;
772                 break;
773         case NVMAP_HANDLE_PARAM_COMPR:
774                 /* ignored, to be removed */
775                 break;
776         default:
777                 err = -EINVAL;
778                 break;
779         }
780         return err;
781 }
782
783 int nvmap_get_handle_param(struct nvmap_client *client,
784                            struct nvmap_handle_ref *ref, u32 param, u64 *result)
785 {
786         if (WARN_ON(!virt_addr_valid(ref)) ||
787             WARN_ON(!virt_addr_valid(client)) ||
788             WARN_ON(!result))
789                 return -EINVAL;
790
791         return __nvmap_get_handle_param(client, ref->handle, param, result);
792 }