2 * helper functions for vmalloc video4linux capture buffers
4 * The functions expect the hardware being able to scatter gather
5 * (i.e. the buffers are not linear in physical memory, but fragmented
6 * into PAGE_SIZE chunks). They also assume the driver does not need
7 * to touch the video data.
9 * (c) 2007 Mauro Carvalho Chehab, <mchehab@infradead.org>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2
16 #include <linux/init.h>
17 #include <linux/module.h>
18 #include <linux/moduleparam.h>
19 #include <linux/slab.h>
20 #include <linux/interrupt.h>
22 #include <linux/pci.h>
23 #include <linux/vmalloc.h>
24 #include <linux/pagemap.h>
26 #include <asm/pgtable.h>
28 #include <media/videobuf-vmalloc.h>
30 #define MAGIC_DMABUF 0x17760309
31 #define MAGIC_VMAL_MEM 0x18221223
33 #define MAGIC_CHECK(is,should) if (unlikely((is) != (should))) \
34 { printk(KERN_ERR "magic mismatch: %x (expected %x)\n",is,should); BUG(); }
37 module_param(debug
, int, 0644);
39 MODULE_DESCRIPTION("helper module to manage video4linux vmalloc buffers");
40 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
41 MODULE_LICENSE("GPL");
43 #define dprintk(level, fmt, arg...) if (debug >= level) \
44 printk(KERN_DEBUG "vbuf-vmalloc: " fmt , ## arg)
47 /***************************************************************************/
50 videobuf_vm_open(struct vm_area_struct
*vma
)
52 struct videobuf_mapping
*map
= vma
->vm_private_data
;
54 dprintk(2,"vm_open %p [count=%u,vma=%08lx-%08lx]\n",map
,
55 map
->count
,vma
->vm_start
,vma
->vm_end
);
60 static void videobuf_vm_close(struct vm_area_struct
*vma
)
62 struct videobuf_mapping
*map
= vma
->vm_private_data
;
63 struct videobuf_queue
*q
= map
->q
;
66 dprintk(2,"vm_close %p [count=%u,vma=%08lx-%08lx]\n", map
,
67 map
->count
, vma
->vm_start
, vma
->vm_end
);
70 if (0 == map
->count
) {
71 struct videobuf_vmalloc_memory
*mem
;
73 dprintk(1, "munmap %p q=%p\n", map
, q
);
74 mutex_lock(&q
->vb_lock
);
76 /* We need first to cancel streams, before unmapping */
78 videobuf_queue_cancel(q
);
80 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
81 if (NULL
== q
->bufs
[i
])
84 if (q
->bufs
[i
]->map
!= map
)
87 mem
= q
->bufs
[i
]->priv
;
89 /* This callback is called only if kernel has
90 allocated memory and this memory is mmapped.
91 In this case, memory should be freed,
92 in order to do memory unmap.
95 MAGIC_CHECK(mem
->magic
, MAGIC_VMAL_MEM
);
97 /* vfree is not atomic - can't be
98 called with IRQ's disabled
100 dprintk(1, "%s: buf[%d] freeing (%p)\n",
101 __func__
, i
, mem
->vmalloc
);
107 q
->bufs
[i
]->map
= NULL
;
108 q
->bufs
[i
]->baddr
= 0;
113 mutex_unlock(&q
->vb_lock
);
119 static const struct vm_operations_struct videobuf_vm_ops
=
121 .open
= videobuf_vm_open
,
122 .close
= videobuf_vm_close
,
125 /* ---------------------------------------------------------------------
126 * vmalloc handlers for the generic methods
129 /* Allocated area consists on 3 parts:
131 struct <driver>_buffer (cx88_buffer, saa7134_buf, ...)
132 struct videobuf_dma_sg_memory
135 static void *__videobuf_alloc(size_t size
)
137 struct videobuf_vmalloc_memory
*mem
;
138 struct videobuf_buffer
*vb
;
140 vb
= kzalloc(size
+sizeof(*mem
),GFP_KERNEL
);
144 mem
= vb
->priv
= ((char *)vb
)+size
;
145 mem
->magic
=MAGIC_VMAL_MEM
;
147 dprintk(1,"%s: allocated at %p(%ld+%ld) & %p(%ld)\n",
148 __func__
,vb
,(long)sizeof(*vb
),(long)size
-sizeof(*vb
),
149 mem
,(long)sizeof(*mem
));
154 static int __videobuf_iolock (struct videobuf_queue
* q
,
155 struct videobuf_buffer
*vb
,
156 struct v4l2_framebuffer
*fbuf
)
158 struct videobuf_vmalloc_memory
*mem
= vb
->priv
;
163 MAGIC_CHECK(mem
->magic
, MAGIC_VMAL_MEM
);
165 switch (vb
->memory
) {
166 case V4L2_MEMORY_MMAP
:
167 dprintk(1, "%s memory method MMAP\n", __func__
);
169 /* All handling should be done by __videobuf_mmap_mapper() */
171 printk(KERN_ERR
"memory is not alloced/mmapped.\n");
175 case V4L2_MEMORY_USERPTR
:
176 pages
= PAGE_ALIGN(vb
->size
);
178 dprintk(1, "%s memory method USERPTR\n", __func__
);
182 printk(KERN_ERR
"USERPTR is currently not supported\n");
187 /* The only USERPTR currently supported is the one needed for
191 mem
->vmalloc
= vmalloc_user(pages
);
193 printk(KERN_ERR
"vmalloc (%d pages) failed\n", pages
);
196 dprintk(1, "vmalloc is at addr %p (%d pages)\n",
197 mem
->vmalloc
, pages
);
201 /* Kernel userptr is used also by read() method. In this case,
202 there's no need to remap, since data will be copied to user
207 /* FIXME: to properly support USERPTR, remap should occur.
208 The code below won't work, since mem->vma = NULL
210 /* Try to remap memory */
211 rc
= remap_vmalloc_range(mem
->vma
, (void *)vb
->baddr
, 0);
213 printk(KERN_ERR
"mmap: remap failed with error %d. ", rc
);
219 case V4L2_MEMORY_OVERLAY
:
221 dprintk(1, "%s memory method OVERLAY/unknown\n", __func__
);
223 /* Currently, doesn't support V4L2_MEMORY_OVERLAY */
224 printk(KERN_ERR
"Memory method currently unsupported.\n");
231 static int __videobuf_sync(struct videobuf_queue
*q
,
232 struct videobuf_buffer
*buf
)
237 static int __videobuf_mmap_free(struct videobuf_queue
*q
)
241 dprintk(1, "%s\n", __func__
);
242 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
252 static int __videobuf_mmap_mapper(struct videobuf_queue
*q
,
253 struct vm_area_struct
*vma
)
255 struct videobuf_vmalloc_memory
*mem
;
256 struct videobuf_mapping
*map
;
259 unsigned long offset
= vma
->vm_pgoff
<< PAGE_SHIFT
;
261 dprintk(1, "%s\n", __func__
);
262 if (!(vma
->vm_flags
& VM_WRITE
) || !(vma
->vm_flags
& VM_SHARED
))
265 /* look for first buffer to map */
266 for (first
= 0; first
< VIDEO_MAX_FRAME
; first
++) {
267 if (NULL
== q
->bufs
[first
])
270 if (V4L2_MEMORY_MMAP
!= q
->bufs
[first
]->memory
)
272 if (q
->bufs
[first
]->boff
== offset
)
275 if (VIDEO_MAX_FRAME
== first
) {
276 dprintk(1,"mmap app bug: offset invalid [offset=0x%lx]\n",
277 (vma
->vm_pgoff
<< PAGE_SHIFT
));
281 /* create mapping + update buffer list */
282 map
= kzalloc(sizeof(struct videobuf_mapping
), GFP_KERNEL
);
286 q
->bufs
[first
]->map
= map
;
287 map
->start
= vma
->vm_start
;
288 map
->end
= vma
->vm_end
;
291 q
->bufs
[first
]->baddr
= vma
->vm_start
;
293 mem
= q
->bufs
[first
]->priv
;
295 MAGIC_CHECK(mem
->magic
, MAGIC_VMAL_MEM
);
297 pages
= PAGE_ALIGN(vma
->vm_end
- vma
->vm_start
);
298 mem
->vmalloc
= vmalloc_user(pages
);
300 printk(KERN_ERR
"vmalloc (%d pages) failed\n", pages
);
303 dprintk(1, "vmalloc is at addr %p (%d pages)\n",
304 mem
->vmalloc
, pages
);
306 /* Try to remap memory */
307 retval
= remap_vmalloc_range(vma
, mem
->vmalloc
, 0);
309 printk(KERN_ERR
"mmap: remap failed with error %d. ", retval
);
314 vma
->vm_ops
= &videobuf_vm_ops
;
315 vma
->vm_flags
|= VM_DONTEXPAND
| VM_RESERVED
;
316 vma
->vm_private_data
= map
;
318 dprintk(1,"mmap %p: q=%p %08lx-%08lx (%lx) pgoff %08lx buf %d\n",
319 map
, q
, vma
->vm_start
, vma
->vm_end
,
320 (long int) q
->bufs
[first
]->bsize
,
321 vma
->vm_pgoff
, first
);
323 videobuf_vm_open(vma
);
333 static int __videobuf_copy_to_user ( struct videobuf_queue
*q
,
334 char __user
*data
, size_t count
,
337 struct videobuf_vmalloc_memory
*mem
=q
->read_buf
->priv
;
339 MAGIC_CHECK(mem
->magic
,MAGIC_VMAL_MEM
);
341 BUG_ON (!mem
->vmalloc
);
343 /* copy to userspace */
344 if (count
> q
->read_buf
->size
- q
->read_off
)
345 count
= q
->read_buf
->size
- q
->read_off
;
347 if (copy_to_user(data
, mem
->vmalloc
+q
->read_off
, count
))
353 static int __videobuf_copy_stream ( struct videobuf_queue
*q
,
354 char __user
*data
, size_t count
, size_t pos
,
355 int vbihack
, int nonblocking
)
358 struct videobuf_vmalloc_memory
*mem
=q
->read_buf
->priv
;
360 MAGIC_CHECK(mem
->magic
,MAGIC_VMAL_MEM
);
363 /* dirty, undocumented hack -- pass the frame counter
364 * within the last four bytes of each vbi data block.
365 * We need that one to maintain backward compatibility
366 * to all vbi decoding software out there ... */
367 fc
= (unsigned int*)mem
->vmalloc
;
368 fc
+= (q
->read_buf
->size
>>2) -1;
369 *fc
= q
->read_buf
->field_count
>> 1;
370 dprintk(1,"vbihack: %d\n",*fc
);
373 /* copy stuff using the common method */
374 count
= __videobuf_copy_to_user (q
,data
,count
,nonblocking
);
376 if ( (count
==-EFAULT
) && (0 == pos
) )
382 static struct videobuf_qtype_ops qops
= {
383 .magic
= MAGIC_QTYPE_OPS
,
385 .alloc
= __videobuf_alloc
,
386 .iolock
= __videobuf_iolock
,
387 .sync
= __videobuf_sync
,
388 .mmap_free
= __videobuf_mmap_free
,
389 .mmap_mapper
= __videobuf_mmap_mapper
,
390 .video_copy_to_user
= __videobuf_copy_to_user
,
391 .copy_stream
= __videobuf_copy_stream
,
392 .vmalloc
= videobuf_to_vmalloc
,
395 void videobuf_queue_vmalloc_init(struct videobuf_queue
* q
,
396 const struct videobuf_queue_ops
*ops
,
399 enum v4l2_buf_type type
,
400 enum v4l2_field field
,
404 videobuf_queue_core_init(q
, ops
, dev
, irqlock
, type
, field
, msize
,
408 EXPORT_SYMBOL_GPL(videobuf_queue_vmalloc_init
);
410 void *videobuf_to_vmalloc (struct videobuf_buffer
*buf
)
412 struct videobuf_vmalloc_memory
*mem
=buf
->priv
;
414 MAGIC_CHECK(mem
->magic
,MAGIC_VMAL_MEM
);
418 EXPORT_SYMBOL_GPL(videobuf_to_vmalloc
);
420 void videobuf_vmalloc_free (struct videobuf_buffer
*buf
)
422 struct videobuf_vmalloc_memory
*mem
= buf
->priv
;
424 /* mmapped memory can't be freed here, otherwise mmapped region
425 would be released, while still needed. In this case, the memory
426 release should happen inside videobuf_vm_close().
427 So, it should free memory only if the memory were allocated for
430 if ((buf
->memory
!= V4L2_MEMORY_USERPTR
) || buf
->baddr
)
436 MAGIC_CHECK(mem
->magic
, MAGIC_VMAL_MEM
);
443 EXPORT_SYMBOL_GPL(videobuf_vmalloc_free
);