blob: 1cd322e939c70520e9e915575590bf516c0e46ee [file] [log] [blame]
Marek Szyprowski004cc372010-12-09 10:20:47 -03001/*
2 * videobuf2-memops.c - generic memory handling routines for videobuf2
3 *
4 * Copyright (C) 2010 Samsung Electronics
5 *
Pawel Osciak95072082011-03-13 15:23:32 -03006 * Author: Pawel Osciak <pawel@osciak.com>
Marek Szyprowski004cc372010-12-09 10:20:47 -03007 * Marek Szyprowski <m.szyprowski@samsung.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation.
12 */
13
14#include <linux/slab.h>
15#include <linux/module.h>
16#include <linux/dma-mapping.h>
17#include <linux/vmalloc.h>
18#include <linux/mm.h>
19#include <linux/sched.h>
20#include <linux/file.h>
Marek Szyprowski004cc372010-12-09 10:20:47 -030021
Junghak Sungc1399902015-09-22 10:30:29 -030022#include <media/videobuf2-v4l2.h>
Marek Szyprowski004cc372010-12-09 10:20:47 -030023#include <media/videobuf2-memops.h>
24
25/**
Jan Kara21fb0cb2015-07-13 11:55:46 -030026 * vb2_create_framevec() - map virtual addresses to pfns
27 * @start: Virtual user address where we start mapping
28 * @length: Length of a range to map
29 * @write: Should we map for writing into the area
30 *
31 * This function allocates and fills in a vector with pfns corresponding to
32 * virtual address range passed in arguments. If pfns have corresponding pages,
33 * page references are also grabbed to pin pages in memory. The function
34 * returns pointer to the vector on success and error pointer in case of
35 * failure. Returned vector needs to be freed via vb2_destroy_pfnvec().
36 */
37struct frame_vector *vb2_create_framevec(unsigned long start,
38 unsigned long length,
39 bool write)
40{
41 int ret;
42 unsigned long first, last;
43 unsigned long nr;
44 struct frame_vector *vec;
Lorenzo Stoakes7f23b352016-10-13 01:20:15 +010045 unsigned int flags = FOLL_FORCE;
46
47 if (write)
48 flags |= FOLL_WRITE;
Jan Kara21fb0cb2015-07-13 11:55:46 -030049
50 first = start >> PAGE_SHIFT;
51 last = (start + length - 1) >> PAGE_SHIFT;
52 nr = last - first + 1;
53 vec = frame_vector_create(nr);
54 if (!vec)
55 return ERR_PTR(-ENOMEM);
Lorenzo Stoakes7f23b352016-10-13 01:20:15 +010056 ret = get_vaddr_frames(start & PAGE_MASK, nr, flags, vec);
Jan Kara21fb0cb2015-07-13 11:55:46 -030057 if (ret < 0)
58 goto out_destroy;
59 /* We accept only complete set of PFNs */
60 if (ret != nr) {
61 ret = -EFAULT;
62 goto out_release;
63 }
64 return vec;
65out_release:
66 put_vaddr_frames(vec);
67out_destroy:
68 frame_vector_destroy(vec);
69 return ERR_PTR(ret);
70}
71EXPORT_SYMBOL(vb2_create_framevec);
72
73/**
74 * vb2_destroy_framevec() - release vector of mapped pfns
75 * @vec: vector of pfns / pages to release
76 *
77 * This releases references to all pages in the vector @vec (if corresponding
78 * pfns are backed by pages) and frees the passed vector.
79 */
80void vb2_destroy_framevec(struct frame_vector *vec)
81{
82 put_vaddr_frames(vec);
83 frame_vector_destroy(vec);
84}
85EXPORT_SYMBOL(vb2_destroy_framevec);
86
87/**
Marek Szyprowski004cc372010-12-09 10:20:47 -030088 * vb2_common_vm_open() - increase refcount of the vma
89 * @vma: virtual memory region for the mapping
90 *
91 * This function adds another user to the provided vma. It expects
92 * struct vb2_vmarea_handler pointer in vma->vm_private_data.
93 */
94static void vb2_common_vm_open(struct vm_area_struct *vma)
95{
96 struct vb2_vmarea_handler *h = vma->vm_private_data;
97
Uwe Kleine-König7f116b32011-06-01 17:19:22 -030098 pr_debug("%s: %p, refcount: %d, vma: %08lx-%08lx\n",
Marek Szyprowski004cc372010-12-09 10:20:47 -030099 __func__, h, atomic_read(h->refcount), vma->vm_start,
100 vma->vm_end);
101
102 atomic_inc(h->refcount);
103}
104
105/**
106 * vb2_common_vm_close() - decrease refcount of the vma
107 * @vma: virtual memory region for the mapping
108 *
109 * This function releases the user from the provided vma. It expects
110 * struct vb2_vmarea_handler pointer in vma->vm_private_data.
111 */
112static void vb2_common_vm_close(struct vm_area_struct *vma)
113{
114 struct vb2_vmarea_handler *h = vma->vm_private_data;
115
Uwe Kleine-König7f116b32011-06-01 17:19:22 -0300116 pr_debug("%s: %p, refcount: %d, vma: %08lx-%08lx\n",
Marek Szyprowski004cc372010-12-09 10:20:47 -0300117 __func__, h, atomic_read(h->refcount), vma->vm_start,
118 vma->vm_end);
119
120 h->put(h->arg);
121}
122
123/**
124 * vb2_common_vm_ops - common vm_ops used for tracking refcount of mmaped
125 * video buffers
126 */
127const struct vm_operations_struct vb2_common_vm_ops = {
128 .open = vb2_common_vm_open,
129 .close = vb2_common_vm_close,
130};
131EXPORT_SYMBOL_GPL(vb2_common_vm_ops);
132
133MODULE_DESCRIPTION("common memory handling routines for videobuf2");
Pawel Osciak95072082011-03-13 15:23:32 -0300134MODULE_AUTHOR("Pawel Osciak <pawel@osciak.com>");
Marek Szyprowski004cc372010-12-09 10:20:47 -0300135MODULE_LICENSE("GPL");