blob: ddb8f4b46c03bacea044ec9395adefdcee69350d [file] [log] [blame]
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -03001/*
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03002 * helper functions for SG DMA video4linux capture buffers
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -03003 *
Magnus Damm5d6aaf52008-07-16 21:27:49 -03004 * The functions expect the hardware being able to scatter gather
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -03005 * (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.
8 *
9 * (c) 2007 Mauro Carvalho Chehab, <mchehab@infradead.org>
10 *
11 * Highly based on video-buf written originally by:
12 * (c) 2001,02 Gerd Knorr <kraxel@bytesex.org>
13 * (c) 2006 Mauro Carvalho Chehab, <mchehab@infradead.org>
14 * (c) 2006 Ted Walther and John Sokol
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2
19 */
20
21#include <linux/init.h>
22#include <linux/module.h>
23#include <linux/moduleparam.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040024#include <linux/sched.h>
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030025#include <linux/slab.h>
26#include <linux/interrupt.h>
27
Guennadi Liakhovetski07051352008-04-22 14:42:13 -030028#include <linux/dma-mapping.h>
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030029#include <linux/vmalloc.h>
30#include <linux/pagemap.h>
Ralf Baechle11763602007-10-23 20:42:11 +020031#include <linux/scatterlist.h>
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030032#include <asm/page.h>
33#include <asm/pgtable.h>
34
35#include <media/videobuf-dma-sg.h>
36
37#define MAGIC_DMABUF 0x19721112
38#define MAGIC_SG_MEM 0x17890714
39
Pawel Osciak7a022642010-03-17 04:01:04 -030040#define MAGIC_CHECK(is, should) \
41 if (unlikely((is) != (should))) { \
42 printk(KERN_ERR "magic mismatch: %x (expected %x)\n", \
43 is, should); \
44 BUG(); \
45 }
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030046
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030047static int debug;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030048module_param(debug, int, 0644);
49
Guennadi Liakhovetski07051352008-04-22 14:42:13 -030050MODULE_DESCRIPTION("helper module to manage video4linux dma sg buffers");
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030051MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
52MODULE_LICENSE("GPL");
53
Pawel Osciak7a022642010-03-17 04:01:04 -030054#define dprintk(level, fmt, arg...) \
55 if (debug >= level) \
56 printk(KERN_DEBUG "vbuf-sg: " fmt , ## arg)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030057
58/* --------------------------------------------------------------------- */
59
Laurent Pinchart71817722010-05-11 10:36:32 -030060/*
61 * Return a scatterlist for some page-aligned vmalloc()'ed memory
62 * block (NULL on errors). Memory for the scatterlist is allocated
63 * using kmalloc. The caller must free the memory.
64 */
65static struct scatterlist *videobuf_vmalloc_to_sg(unsigned char *virt,
66 int nr_pages)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030067{
68 struct scatterlist *sglist;
69 struct page *pg;
70 int i;
71
Joe Perches101b25b2010-11-05 00:07:39 -030072 sglist = vzalloc(nr_pages * sizeof(*sglist));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030073 if (NULL == sglist)
74 return NULL;
Jens Axboe45711f12007-10-22 21:19:53 +020075 sg_init_table(sglist, nr_pages);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030076 for (i = 0; i < nr_pages; i++, virt += PAGE_SIZE) {
77 pg = vmalloc_to_page(virt);
78 if (NULL == pg)
79 goto err;
80 BUG_ON(PageHighMem(pg));
Jens Axboe642f1492007-10-24 11:20:47 +020081 sg_set_page(&sglist[i], pg, PAGE_SIZE, 0);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030082 }
83 return sglist;
84
Pawel Osciak7a022642010-03-17 04:01:04 -030085err:
Cohen David.A1010ed12009-05-11 11:00:20 -030086 vfree(sglist);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030087 return NULL;
88}
89
Laurent Pinchart71817722010-05-11 10:36:32 -030090/*
91 * Return a scatterlist for a an array of userpages (NULL on errors).
92 * Memory for the scatterlist is allocated using kmalloc. The caller
93 * must free the memory.
94 */
95static struct scatterlist *videobuf_pages_to_sg(struct page **pages,
Hans Verkuil2fc11532010-09-07 06:10:45 -030096 int nr_pages, int offset, size_t size)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -030097{
98 struct scatterlist *sglist;
Christophe Jailleta47cacb2008-07-04 06:33:22 -030099 int i;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300100
101 if (NULL == pages[0])
102 return NULL;
Cohen David.A1010ed12009-05-11 11:00:20 -0300103 sglist = vmalloc(nr_pages * sizeof(*sglist));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300104 if (NULL == sglist)
105 return NULL;
Jens Axboe45711f12007-10-22 21:19:53 +0200106 sg_init_table(sglist, nr_pages);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300107
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300108 if (PageHighMem(pages[0]))
109 /* DMA to highmem pages might not work */
110 goto highmem;
Jens Axboe642f1492007-10-24 11:20:47 +0200111 sg_set_page(&sglist[0], pages[0], PAGE_SIZE - offset, offset);
Hans Verkuil2fc11532010-09-07 06:10:45 -0300112 size -= PAGE_SIZE - offset;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300113 for (i = 1; i < nr_pages; i++) {
114 if (NULL == pages[i])
115 goto nopage;
116 if (PageHighMem(pages[i]))
117 goto highmem;
Mauro Carvalho Chehab1bede752010-10-07 09:31:33 -0300118 sg_set_page(&sglist[i], pages[i], min_t(size_t, PAGE_SIZE, size), 0);
119 size -= min_t(size_t, PAGE_SIZE, size);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300120 }
121 return sglist;
122
Pawel Osciak7a022642010-03-17 04:01:04 -0300123nopage:
124 dprintk(2, "sgl: oops - no page\n");
Cohen David.A1010ed12009-05-11 11:00:20 -0300125 vfree(sglist);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300126 return NULL;
127
Pawel Osciak7a022642010-03-17 04:01:04 -0300128highmem:
129 dprintk(2, "sgl: oops - highmem page\n");
Cohen David.A1010ed12009-05-11 11:00:20 -0300130 vfree(sglist);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300131 return NULL;
132}
133
134/* --------------------------------------------------------------------- */
135
Pawel Osciak7a022642010-03-17 04:01:04 -0300136struct videobuf_dmabuf *videobuf_to_dma(struct videobuf_buffer *buf)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300137{
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300138 struct videobuf_dma_sg_memory *mem = buf->priv;
139 BUG_ON(!mem);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300140
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300141 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300142
143 return &mem->dma;
144}
Pawel Osciak7a022642010-03-17 04:01:04 -0300145EXPORT_SYMBOL_GPL(videobuf_to_dma);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300146
147void videobuf_dma_init(struct videobuf_dmabuf *dma)
148{
Pawel Osciak7a022642010-03-17 04:01:04 -0300149 memset(dma, 0, sizeof(*dma));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300150 dma->magic = MAGIC_DMABUF;
151}
Pawel Osciak7a022642010-03-17 04:01:04 -0300152EXPORT_SYMBOL_GPL(videobuf_dma_init);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300153
Maxim Levitsky99001322007-09-27 20:34:09 -0300154static int videobuf_dma_init_user_locked(struct videobuf_dmabuf *dma,
155 int direction, unsigned long data, unsigned long size)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300156{
Pawel Osciak7a022642010-03-17 04:01:04 -0300157 unsigned long first, last;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300158 int err, rw = 0;
159
160 dma->direction = direction;
161 switch (dma->direction) {
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300162 case DMA_FROM_DEVICE:
163 rw = READ;
164 break;
165 case DMA_TO_DEVICE:
166 rw = WRITE;
167 break;
168 default:
169 BUG();
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300170 }
171
172 first = (data & PAGE_MASK) >> PAGE_SHIFT;
173 last = ((data+size-1) & PAGE_MASK) >> PAGE_SHIFT;
Hans Verkuil2fc11532010-09-07 06:10:45 -0300174 dma->offset = data & ~PAGE_MASK;
175 dma->size = size;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300176 dma->nr_pages = last-first+1;
Pawel Osciak7a022642010-03-17 04:01:04 -0300177 dma->pages = kmalloc(dma->nr_pages * sizeof(struct page *), GFP_KERNEL);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300178 if (NULL == dma->pages)
179 return -ENOMEM;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300180
Pawel Osciak7a022642010-03-17 04:01:04 -0300181 dprintk(1, "init user [0x%lx+0x%lx => %d pages]\n",
182 data, size, dma->nr_pages);
183
184 err = get_user_pages(current, current->mm,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300185 data & PAGE_MASK, dma->nr_pages,
186 rw == READ, 1, /* force */
187 dma->pages, NULL);
Maxim Levitsky99001322007-09-27 20:34:09 -0300188
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300189 if (err != dma->nr_pages) {
190 dma->nr_pages = (err >= 0) ? err : 0;
Pawel Osciak7a022642010-03-17 04:01:04 -0300191 dprintk(1, "get_user_pages: err=%d [%d]\n", err, dma->nr_pages);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300192 return err < 0 ? err : -EINVAL;
193 }
194 return 0;
195}
196
Maxim Levitsky99001322007-09-27 20:34:09 -0300197int videobuf_dma_init_user(struct videobuf_dmabuf *dma, int direction,
198 unsigned long data, unsigned long size)
199{
200 int ret;
Pawel Osciak7a022642010-03-17 04:01:04 -0300201
Maxim Levitsky99001322007-09-27 20:34:09 -0300202 down_read(&current->mm->mmap_sem);
203 ret = videobuf_dma_init_user_locked(dma, direction, data, size);
204 up_read(&current->mm->mmap_sem);
205
206 return ret;
207}
Pawel Osciak7a022642010-03-17 04:01:04 -0300208EXPORT_SYMBOL_GPL(videobuf_dma_init_user);
Maxim Levitsky99001322007-09-27 20:34:09 -0300209
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300210int videobuf_dma_init_kernel(struct videobuf_dmabuf *dma, int direction,
211 int nr_pages)
212{
Pawel Osciak7a022642010-03-17 04:01:04 -0300213 dprintk(1, "init kernel [%d pages]\n", nr_pages);
214
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300215 dma->direction = direction;
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300216 dma->vaddr = vmalloc_32(nr_pages << PAGE_SHIFT);
217 if (NULL == dma->vaddr) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300218 dprintk(1, "vmalloc_32(%d pages) failed\n", nr_pages);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300219 return -ENOMEM;
220 }
Pawel Osciak7a022642010-03-17 04:01:04 -0300221
222 dprintk(1, "vmalloc is at addr 0x%08lx, size=%d\n",
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300223 (unsigned long)dma->vaddr,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300224 nr_pages << PAGE_SHIFT);
Pawel Osciak7a022642010-03-17 04:01:04 -0300225
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300226 memset(dma->vaddr, 0, nr_pages << PAGE_SHIFT);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300227 dma->nr_pages = nr_pages;
Pawel Osciak7a022642010-03-17 04:01:04 -0300228
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300229 return 0;
230}
Pawel Osciak7a022642010-03-17 04:01:04 -0300231EXPORT_SYMBOL_GPL(videobuf_dma_init_kernel);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300232
233int videobuf_dma_init_overlay(struct videobuf_dmabuf *dma, int direction,
234 dma_addr_t addr, int nr_pages)
235{
Pawel Osciak7a022642010-03-17 04:01:04 -0300236 dprintk(1, "init overlay [%d pages @ bus 0x%lx]\n",
237 nr_pages, (unsigned long)addr);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300238 dma->direction = direction;
Pawel Osciak7a022642010-03-17 04:01:04 -0300239
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300240 if (0 == addr)
241 return -EINVAL;
242
243 dma->bus_addr = addr;
244 dma->nr_pages = nr_pages;
Pawel Osciak7a022642010-03-17 04:01:04 -0300245
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300246 return 0;
247}
Pawel Osciak7a022642010-03-17 04:01:04 -0300248EXPORT_SYMBOL_GPL(videobuf_dma_init_overlay);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300249
Laurent Pinchart95268402010-05-11 10:36:30 -0300250int videobuf_dma_map(struct device *dev, struct videobuf_dmabuf *dma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300251{
Pawel Osciak7a022642010-03-17 04:01:04 -0300252 MAGIC_CHECK(dma->magic, MAGIC_DMABUF);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300253 BUG_ON(0 == dma->nr_pages);
254
255 if (dma->pages) {
256 dma->sglist = videobuf_pages_to_sg(dma->pages, dma->nr_pages,
Hans Verkuil2fc11532010-09-07 06:10:45 -0300257 dma->offset, dma->size);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300258 }
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300259 if (dma->vaddr) {
260 dma->sglist = videobuf_vmalloc_to_sg(dma->vaddr,
Pawel Osciak7a022642010-03-17 04:01:04 -0300261 dma->nr_pages);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300262 }
263 if (dma->bus_addr) {
Cohen David.A1010ed12009-05-11 11:00:20 -0300264 dma->sglist = vmalloc(sizeof(*dma->sglist));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300265 if (NULL != dma->sglist) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300266 dma->sglen = 1;
267 sg_dma_address(&dma->sglist[0]) = dma->bus_addr
268 & PAGE_MASK;
269 dma->sglist[0].offset = dma->bus_addr & ~PAGE_MASK;
270 sg_dma_len(&dma->sglist[0]) = dma->nr_pages * PAGE_SIZE;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300271 }
272 }
273 if (NULL == dma->sglist) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300274 dprintk(1, "scatterlist is NULL\n");
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300275 return -ENOMEM;
276 }
277 if (!dma->bus_addr) {
Laurent Pinchart95268402010-05-11 10:36:30 -0300278 dma->sglen = dma_map_sg(dev, dma->sglist,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300279 dma->nr_pages, dma->direction);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300280 if (0 == dma->sglen) {
281 printk(KERN_WARNING
Pawel Osciak7a022642010-03-17 04:01:04 -0300282 "%s: videobuf_map_sg failed\n", __func__);
Cohen David.A1010ed12009-05-11 11:00:20 -0300283 vfree(dma->sglist);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300284 dma->sglist = NULL;
285 dma->sglen = 0;
Figo.zhang92051b22009-06-10 23:17:27 -0300286 return -ENOMEM;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300287 }
288 }
Pawel Osciak7a022642010-03-17 04:01:04 -0300289
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300290 return 0;
291}
Pawel Osciak7a022642010-03-17 04:01:04 -0300292EXPORT_SYMBOL_GPL(videobuf_dma_map);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300293
Laurent Pinchart95268402010-05-11 10:36:30 -0300294int videobuf_dma_unmap(struct device *dev, struct videobuf_dmabuf *dma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300295{
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300296 MAGIC_CHECK(dma->magic, MAGIC_DMABUF);
Pawel Osciak7a022642010-03-17 04:01:04 -0300297
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300298 if (!dma->sglen)
299 return 0;
300
Laurent Pinchart95268402010-05-11 10:36:30 -0300301 dma_unmap_sg(dev, dma->sglist, dma->sglen, dma->direction);
Mauro Carvalho Chehab5ddff432007-10-08 11:43:49 -0300302
Cohen David.A1010ed12009-05-11 11:00:20 -0300303 vfree(dma->sglist);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300304 dma->sglist = NULL;
305 dma->sglen = 0;
Pawel Osciak7a022642010-03-17 04:01:04 -0300306
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300307 return 0;
308}
Pawel Osciak7a022642010-03-17 04:01:04 -0300309EXPORT_SYMBOL_GPL(videobuf_dma_unmap);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300310
311int videobuf_dma_free(struct videobuf_dmabuf *dma)
312{
Pawel Osciak7a022642010-03-17 04:01:04 -0300313 int i;
314 MAGIC_CHECK(dma->magic, MAGIC_DMABUF);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300315 BUG_ON(dma->sglen);
316
317 if (dma->pages) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300318 for (i = 0; i < dma->nr_pages; i++)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300319 page_cache_release(dma->pages[i]);
320 kfree(dma->pages);
321 dma->pages = NULL;
322 }
323
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300324 vfree(dma->vaddr);
325 dma->vaddr = NULL;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300326
Pawel Osciak7a022642010-03-17 04:01:04 -0300327 if (dma->bus_addr)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300328 dma->bus_addr = 0;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300329 dma->direction = DMA_NONE;
Pawel Osciak7a022642010-03-17 04:01:04 -0300330
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300331 return 0;
332}
Pawel Osciak7a022642010-03-17 04:01:04 -0300333EXPORT_SYMBOL_GPL(videobuf_dma_free);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300334
335/* --------------------------------------------------------------------- */
336
Pawel Osciak7a022642010-03-17 04:01:04 -0300337static void videobuf_vm_open(struct vm_area_struct *vma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300338{
339 struct videobuf_mapping *map = vma->vm_private_data;
340
Pawel Osciak7a022642010-03-17 04:01:04 -0300341 dprintk(2, "vm_open %p [count=%d,vma=%08lx-%08lx]\n", map,
342 map->count, vma->vm_start, vma->vm_end);
343
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300344 map->count++;
345}
346
Pawel Osciak7a022642010-03-17 04:01:04 -0300347static void videobuf_vm_close(struct vm_area_struct *vma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300348{
349 struct videobuf_mapping *map = vma->vm_private_data;
350 struct videobuf_queue *q = map->q;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300351 struct videobuf_dma_sg_memory *mem;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300352 int i;
353
Pawel Osciak7a022642010-03-17 04:01:04 -0300354 dprintk(2, "vm_close %p [count=%d,vma=%08lx-%08lx]\n", map,
355 map->count, vma->vm_start, vma->vm_end);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300356
357 map->count--;
358 if (0 == map->count) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300359 dprintk(1, "munmap %p q=%p\n", map, q);
Hans Verkuil97397682010-09-20 17:24:30 -0300360 videobuf_queue_lock(q);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300361 for (i = 0; i < VIDEO_MAX_FRAME; i++) {
362 if (NULL == q->bufs[i])
363 continue;
Pawel Osciak7a022642010-03-17 04:01:04 -0300364 mem = q->bufs[i]->priv;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300365 if (!mem)
366 continue;
367
Pawel Osciak7a022642010-03-17 04:01:04 -0300368 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300369
Mauro Carvalho Chehab851c0c92007-09-27 18:25:44 -0300370 if (q->bufs[i]->map != map)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300371 continue;
Mauro Carvalho Chehab851c0c92007-09-27 18:25:44 -0300372 q->bufs[i]->map = NULL;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300373 q->bufs[i]->baddr = 0;
Pawel Osciak7a022642010-03-17 04:01:04 -0300374 q->ops->buf_release(q, q->bufs[i]);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300375 }
Hans Verkuil97397682010-09-20 17:24:30 -0300376 videobuf_queue_unlock(q);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300377 kfree(map);
378 }
379 return;
380}
381
382/*
383 * Get a anonymous page for the mapping. Make sure we can DMA to that
384 * memory location with 32bit PCI devices (i.e. don't use highmem for
385 * now ...). Bounce buffers don't work very well for the data rates
386 * video capture has.
387 */
Pawel Osciak7a022642010-03-17 04:01:04 -0300388static int videobuf_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300389{
390 struct page *page;
391
Pawel Osciak7a022642010-03-17 04:01:04 -0300392 dprintk(3, "fault: fault @ %08lx [vma %08lx-%08lx]\n",
393 (unsigned long)vmf->virtual_address,
394 vma->vm_start, vma->vm_end);
395
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300396 page = alloc_page(GFP_USER | __GFP_DMA32);
397 if (!page)
Nick Piggin105354a2007-12-07 17:57:38 -0300398 return VM_FAULT_OOM;
Guennadi Liakhovetskic0cd5012009-01-03 18:20:04 -0300399 clear_user_highpage(page, (unsigned long)vmf->virtual_address);
Nick Piggin105354a2007-12-07 17:57:38 -0300400 vmf->page = page;
Pawel Osciak7a022642010-03-17 04:01:04 -0300401
Nick Piggin105354a2007-12-07 17:57:38 -0300402 return 0;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300403}
404
Pawel Osciak7a022642010-03-17 04:01:04 -0300405static const struct vm_operations_struct videobuf_vm_ops = {
406 .open = videobuf_vm_open,
407 .close = videobuf_vm_close,
408 .fault = videobuf_vm_fault,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300409};
410
411/* ---------------------------------------------------------------------
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300412 * SG handlers for the generic methods
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300413 */
414
415/* Allocated area consists on 3 parts:
416 struct video_buffer
417 struct <driver>_buffer (cx88_buffer, saa7134_buf, ...)
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300418 struct videobuf_dma_sg_memory
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300419 */
420
Pawel Osciak33c38282010-05-11 10:36:28 -0300421static struct videobuf_buffer *__videobuf_alloc_vb(size_t size)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300422{
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300423 struct videobuf_dma_sg_memory *mem;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300424 struct videobuf_buffer *vb;
425
Pawel Osciak7a022642010-03-17 04:01:04 -0300426 vb = kzalloc(size + sizeof(*mem), GFP_KERNEL);
Pawel Osciakbee527f2010-02-22 13:10:06 -0300427 if (!vb)
428 return vb;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300429
Pawel Osciak7a022642010-03-17 04:01:04 -0300430 mem = vb->priv = ((char *)vb) + size;
431 mem->magic = MAGIC_SG_MEM;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300432
433 videobuf_dma_init(&mem->dma);
434
Pawel Osciak7a022642010-03-17 04:01:04 -0300435 dprintk(1, "%s: allocated at %p(%ld+%ld) & %p(%ld)\n",
436 __func__, vb, (long)sizeof(*vb), (long)size - sizeof(*vb),
437 mem, (long)sizeof(*mem));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300438
439 return vb;
440}
441
Hans Verkuil037c75e2010-03-28 08:18:37 -0300442static void *__videobuf_to_vaddr(struct videobuf_buffer *buf)
Mauro Carvalho Chehab59d34482008-04-13 15:10:00 -0300443{
444 struct videobuf_dma_sg_memory *mem = buf->priv;
445 BUG_ON(!mem);
446
447 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
448
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300449 return mem->dma.vaddr;
Mauro Carvalho Chehab59d34482008-04-13 15:10:00 -0300450}
451
Pawel Osciak7a022642010-03-17 04:01:04 -0300452static int __videobuf_iolock(struct videobuf_queue *q,
453 struct videobuf_buffer *vb,
454 struct v4l2_framebuffer *fbuf)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300455{
Pawel Osciak7a022642010-03-17 04:01:04 -0300456 int err, pages;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300457 dma_addr_t bus;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300458 struct videobuf_dma_sg_memory *mem = vb->priv;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300459 BUG_ON(!mem);
460
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300461 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300462
463 switch (vb->memory) {
464 case V4L2_MEMORY_MMAP:
465 case V4L2_MEMORY_USERPTR:
466 if (0 == vb->baddr) {
467 /* no userspace addr -- kernel bounce buffer */
468 pages = PAGE_ALIGN(vb->size) >> PAGE_SHIFT;
Pawel Osciak7a022642010-03-17 04:01:04 -0300469 err = videobuf_dma_init_kernel(&mem->dma,
470 DMA_FROM_DEVICE,
471 pages);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300472 if (0 != err)
473 return err;
Maxim Levitsky99001322007-09-27 20:34:09 -0300474 } else if (vb->memory == V4L2_MEMORY_USERPTR) {
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300475 /* dma directly to userspace */
Pawel Osciak7a022642010-03-17 04:01:04 -0300476 err = videobuf_dma_init_user(&mem->dma,
477 DMA_FROM_DEVICE,
478 vb->baddr, vb->bsize);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300479 if (0 != err)
480 return err;
Maxim Levitsky99001322007-09-27 20:34:09 -0300481 } else {
482 /* NOTE: HACK: videobuf_iolock on V4L2_MEMORY_MMAP
483 buffers can only be called from videobuf_qbuf
484 we take current->mm->mmap_sem there, to prevent
485 locking inversion, so don't take it here */
486
487 err = videobuf_dma_init_user_locked(&mem->dma,
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300488 DMA_FROM_DEVICE,
Maxim Levitsky99001322007-09-27 20:34:09 -0300489 vb->baddr, vb->bsize);
490 if (0 != err)
491 return err;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300492 }
493 break;
494 case V4L2_MEMORY_OVERLAY:
495 if (NULL == fbuf)
496 return -EINVAL;
497 /* FIXME: need sanity checks for vb->boff */
498 /*
499 * Using a double cast to avoid compiler warnings when
500 * building for PAE. Compiler doesn't like direct casting
501 * of a 32 bit ptr to 64 bit integer.
502 */
503 bus = (dma_addr_t)(unsigned long)fbuf->base + vb->boff;
504 pages = PAGE_ALIGN(vb->size) >> PAGE_SHIFT;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300505 err = videobuf_dma_init_overlay(&mem->dma, DMA_FROM_DEVICE,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300506 bus, pages);
507 if (0 != err)
508 return err;
509 break;
510 default:
511 BUG();
512 }
Laurent Pinchart95268402010-05-11 10:36:30 -0300513 err = videobuf_dma_map(q->dev, &mem->dma);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300514 if (0 != err)
515 return err;
516
517 return 0;
518}
519
520static int __videobuf_sync(struct videobuf_queue *q,
521 struct videobuf_buffer *buf)
522{
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300523 struct videobuf_dma_sg_memory *mem = buf->priv;
Mauro Carvalho Chehab97f81052010-05-05 16:23:09 -0300524 BUG_ON(!mem || !mem->dma.sglen);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300525
Mauro Carvalho Chehab97f81052010-05-05 16:23:09 -0300526 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
527 MAGIC_CHECK(mem->dma.magic, MAGIC_DMABUF);
528
529 dma_sync_sg_for_cpu(q->dev, mem->dma.sglist,
Arnout Vandecappellefc7f8fd2010-03-17 19:53:04 -0300530 mem->dma.sglen, mem->dma.direction);
Mauro Carvalho Chehab97f81052010-05-05 16:23:09 -0300531
532 return 0;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300533}
534
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300535static int __videobuf_mmap_mapper(struct videobuf_queue *q,
Hans Verkuil0b62b732010-03-28 09:09:05 -0300536 struct videobuf_buffer *buf,
537 struct vm_area_struct *vma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300538{
Hans Verkuil0b62b732010-03-28 09:09:05 -0300539 struct videobuf_dma_sg_memory *mem = buf->priv;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300540 struct videobuf_mapping *map;
Mauro Carvalho Chehab474675a2010-04-25 11:23:52 -0300541 unsigned int first, last, size = 0, i;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300542 int retval;
543
544 retval = -EINVAL;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300545
Hans Verkuil0b62b732010-03-28 09:09:05 -0300546 BUG_ON(!mem);
547 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
548
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300549 /* look for first buffer to map */
550 for (first = 0; first < VIDEO_MAX_FRAME; first++) {
Hans Verkuil0b62b732010-03-28 09:09:05 -0300551 if (buf == q->bufs[first]) {
552 size = PAGE_ALIGN(q->bufs[first]->bsize);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300553 break;
Hans Verkuil0b62b732010-03-28 09:09:05 -0300554 }
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300555 }
Hans Verkuil0b62b732010-03-28 09:09:05 -0300556
557 /* paranoia, should never happen since buf is always valid. */
Mauro Carvalho Chehab474675a2010-04-25 11:23:52 -0300558 if (!size) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300559 dprintk(1, "mmap app bug: offset invalid [offset=0x%lx]\n",
Hans Verkuil0b62b732010-03-28 09:09:05 -0300560 (vma->vm_pgoff << PAGE_SHIFT));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300561 goto done;
562 }
563
Hans Verkuil0b62b732010-03-28 09:09:05 -0300564 last = first;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300565
566 /* create mapping + update buffer list */
567 retval = -ENOMEM;
Pawel Osciak7a022642010-03-17 04:01:04 -0300568 map = kmalloc(sizeof(struct videobuf_mapping), GFP_KERNEL);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300569 if (NULL == map)
570 goto done;
Brandon Philipsce540932008-04-02 18:10:59 -0300571
572 size = 0;
573 for (i = first; i <= last; i++) {
574 if (NULL == q->bufs[i])
575 continue;
Mauro Carvalho Chehab851c0c92007-09-27 18:25:44 -0300576 q->bufs[i]->map = map;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300577 q->bufs[i]->baddr = vma->vm_start + size;
Tuukka Toivonen7cbefad2009-07-23 10:56:25 -0300578 size += PAGE_ALIGN(q->bufs[i]->bsize);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300579 }
Brandon Philipsce540932008-04-02 18:10:59 -0300580
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300581 map->count = 1;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300582 map->q = q;
583 vma->vm_ops = &videobuf_vm_ops;
584 vma->vm_flags |= VM_DONTEXPAND | VM_RESERVED;
585 vma->vm_flags &= ~VM_IO; /* using shared anonymous pages */
586 vma->vm_private_data = map;
Pawel Osciak7a022642010-03-17 04:01:04 -0300587 dprintk(1, "mmap %p: q=%p %08lx-%08lx pgoff %08lx bufs %d-%d\n",
588 map, q, vma->vm_start, vma->vm_end, vma->vm_pgoff, first, last);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300589 retval = 0;
590
Pawel Osciak7a022642010-03-17 04:01:04 -0300591done:
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300592 return retval;
593}
594
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300595static struct videobuf_qtype_ops sg_ops = {
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300596 .magic = MAGIC_QTYPE_OPS,
597
Pawel Osciak33c38282010-05-11 10:36:28 -0300598 .alloc_vb = __videobuf_alloc_vb,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300599 .iolock = __videobuf_iolock,
600 .sync = __videobuf_sync,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300601 .mmap_mapper = __videobuf_mmap_mapper,
Hans Verkuil037c75e2010-03-28 08:18:37 -0300602 .vaddr = __videobuf_to_vaddr,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300603};
604
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300605void *videobuf_sg_alloc(size_t size)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300606{
607 struct videobuf_queue q;
608
609 /* Required to make generic handler to call __videobuf_alloc */
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300610 q.int_ops = &sg_ops;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300611
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300612 q.msize = size;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300613
Pawel Osciak33c38282010-05-11 10:36:28 -0300614 return videobuf_alloc_vb(&q);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300615}
Pawel Osciak7a022642010-03-17 04:01:04 -0300616EXPORT_SYMBOL_GPL(videobuf_sg_alloc);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300617
Pawel Osciak7a022642010-03-17 04:01:04 -0300618void videobuf_queue_sg_init(struct videobuf_queue *q,
Jonathan Corbet38a54f32009-11-17 19:43:41 -0300619 const struct videobuf_queue_ops *ops,
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300620 struct device *dev,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300621 spinlock_t *irqlock,
622 enum v4l2_buf_type type,
623 enum v4l2_field field,
624 unsigned int msize,
Hans Verkuil08bff032010-09-20 17:39:46 -0300625 void *priv,
626 struct mutex *ext_lock)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300627{
Mauro Carvalho Chehabd4cae5a2007-10-08 12:20:02 -0300628 videobuf_queue_core_init(q, ops, dev, irqlock, type, field, msize,
Hans Verkuil08bff032010-09-20 17:39:46 -0300629 priv, &sg_ops, ext_lock);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300630}
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300631EXPORT_SYMBOL_GPL(videobuf_queue_sg_init);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300632