blob: 3ff15f1c9d702219b33a43e3df0e9eb07fab93e6 [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;
Newson Edouard45f239a2011-04-19 11:54:54 -0300111 sg_set_page(&sglist[0], pages[0],
112 min_t(size_t, PAGE_SIZE - offset, size), offset);
113 size -= min_t(size_t, PAGE_SIZE - offset, size);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300114 for (i = 1; i < nr_pages; i++) {
115 if (NULL == pages[i])
116 goto nopage;
117 if (PageHighMem(pages[i]))
118 goto highmem;
Mauro Carvalho Chehab1bede752010-10-07 09:31:33 -0300119 sg_set_page(&sglist[i], pages[i], min_t(size_t, PAGE_SIZE, size), 0);
120 size -= min_t(size_t, PAGE_SIZE, size);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300121 }
122 return sglist;
123
Pawel Osciak7a022642010-03-17 04:01:04 -0300124nopage:
125 dprintk(2, "sgl: oops - no page\n");
Cohen David.A1010ed12009-05-11 11:00:20 -0300126 vfree(sglist);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300127 return NULL;
128
Pawel Osciak7a022642010-03-17 04:01:04 -0300129highmem:
130 dprintk(2, "sgl: oops - highmem page\n");
Cohen David.A1010ed12009-05-11 11:00:20 -0300131 vfree(sglist);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300132 return NULL;
133}
134
135/* --------------------------------------------------------------------- */
136
Pawel Osciak7a022642010-03-17 04:01:04 -0300137struct videobuf_dmabuf *videobuf_to_dma(struct videobuf_buffer *buf)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300138{
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300139 struct videobuf_dma_sg_memory *mem = buf->priv;
140 BUG_ON(!mem);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300141
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300142 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300143
144 return &mem->dma;
145}
Pawel Osciak7a022642010-03-17 04:01:04 -0300146EXPORT_SYMBOL_GPL(videobuf_to_dma);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300147
148void videobuf_dma_init(struct videobuf_dmabuf *dma)
149{
Pawel Osciak7a022642010-03-17 04:01:04 -0300150 memset(dma, 0, sizeof(*dma));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300151 dma->magic = MAGIC_DMABUF;
152}
Pawel Osciak7a022642010-03-17 04:01:04 -0300153EXPORT_SYMBOL_GPL(videobuf_dma_init);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300154
Maxim Levitsky99001322007-09-27 20:34:09 -0300155static int videobuf_dma_init_user_locked(struct videobuf_dmabuf *dma,
156 int direction, unsigned long data, unsigned long size)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300157{
Pawel Osciak7a022642010-03-17 04:01:04 -0300158 unsigned long first, last;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300159 int err, rw = 0;
160
161 dma->direction = direction;
162 switch (dma->direction) {
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300163 case DMA_FROM_DEVICE:
164 rw = READ;
165 break;
166 case DMA_TO_DEVICE:
167 rw = WRITE;
168 break;
169 default:
170 BUG();
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300171 }
172
173 first = (data & PAGE_MASK) >> PAGE_SHIFT;
174 last = ((data+size-1) & PAGE_MASK) >> PAGE_SHIFT;
Hans Verkuil2fc11532010-09-07 06:10:45 -0300175 dma->offset = data & ~PAGE_MASK;
176 dma->size = size;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300177 dma->nr_pages = last-first+1;
Pawel Osciak7a022642010-03-17 04:01:04 -0300178 dma->pages = kmalloc(dma->nr_pages * sizeof(struct page *), GFP_KERNEL);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300179 if (NULL == dma->pages)
180 return -ENOMEM;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300181
Pawel Osciak7a022642010-03-17 04:01:04 -0300182 dprintk(1, "init user [0x%lx+0x%lx => %d pages]\n",
183 data, size, dma->nr_pages);
184
185 err = get_user_pages(current, current->mm,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300186 data & PAGE_MASK, dma->nr_pages,
187 rw == READ, 1, /* force */
188 dma->pages, NULL);
Maxim Levitsky99001322007-09-27 20:34:09 -0300189
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300190 if (err != dma->nr_pages) {
191 dma->nr_pages = (err >= 0) ? err : 0;
Pawel Osciak7a022642010-03-17 04:01:04 -0300192 dprintk(1, "get_user_pages: err=%d [%d]\n", err, dma->nr_pages);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300193 return err < 0 ? err : -EINVAL;
194 }
195 return 0;
196}
197
Maxim Levitsky99001322007-09-27 20:34:09 -0300198int videobuf_dma_init_user(struct videobuf_dmabuf *dma, int direction,
199 unsigned long data, unsigned long size)
200{
201 int ret;
Pawel Osciak7a022642010-03-17 04:01:04 -0300202
Maxim Levitsky99001322007-09-27 20:34:09 -0300203 down_read(&current->mm->mmap_sem);
204 ret = videobuf_dma_init_user_locked(dma, direction, data, size);
205 up_read(&current->mm->mmap_sem);
206
207 return ret;
208}
Pawel Osciak7a022642010-03-17 04:01:04 -0300209EXPORT_SYMBOL_GPL(videobuf_dma_init_user);
Maxim Levitsky99001322007-09-27 20:34:09 -0300210
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300211int videobuf_dma_init_kernel(struct videobuf_dmabuf *dma, int direction,
212 int nr_pages)
213{
James Harper7b4eeed2014-06-12 06:53:38 -0300214 int i;
215
Pawel Osciak7a022642010-03-17 04:01:04 -0300216 dprintk(1, "init kernel [%d pages]\n", nr_pages);
217
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300218 dma->direction = direction;
James Harper7b4eeed2014-06-12 06:53:38 -0300219 dma->vaddr_pages = kcalloc(nr_pages, sizeof(*dma->vaddr_pages),
220 GFP_KERNEL);
221 if (!dma->vaddr_pages)
222 return -ENOMEM;
223
224 dma->dma_addr = kcalloc(nr_pages, sizeof(*dma->dma_addr), GFP_KERNEL);
225 if (!dma->dma_addr) {
226 kfree(dma->vaddr_pages);
227 return -ENOMEM;
228 }
229 for (i = 0; i < nr_pages; i++) {
230 void *addr;
231
232 addr = dma_alloc_coherent(dma->dev, PAGE_SIZE,
233 &(dma->dma_addr[i]), GFP_KERNEL);
234 if (addr == NULL)
235 goto out_free_pages;
236
237 dma->vaddr_pages[i] = virt_to_page(addr);
238 }
239 dma->vaddr = vmap(dma->vaddr_pages, nr_pages, VM_MAP | VM_IOREMAP,
240 PAGE_KERNEL);
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300241 if (NULL == dma->vaddr) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300242 dprintk(1, "vmalloc_32(%d pages) failed\n", nr_pages);
James Harper7b4eeed2014-06-12 06:53:38 -0300243 goto out_free_pages;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300244 }
Pawel Osciak7a022642010-03-17 04:01:04 -0300245
246 dprintk(1, "vmalloc is at addr 0x%08lx, size=%d\n",
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300247 (unsigned long)dma->vaddr,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300248 nr_pages << PAGE_SHIFT);
Pawel Osciak7a022642010-03-17 04:01:04 -0300249
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300250 memset(dma->vaddr, 0, nr_pages << PAGE_SHIFT);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300251 dma->nr_pages = nr_pages;
Pawel Osciak7a022642010-03-17 04:01:04 -0300252
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300253 return 0;
James Harper7b4eeed2014-06-12 06:53:38 -0300254out_free_pages:
255 while (i > 0) {
Dan Carpenter23d30902014-08-05 05:11:13 -0300256 void *addr;
257
James Harper7b4eeed2014-06-12 06:53:38 -0300258 i--;
Dan Carpenter23d30902014-08-05 05:11:13 -0300259 addr = page_address(dma->vaddr_pages[i]);
260 dma_free_coherent(dma->dev, PAGE_SIZE, addr, dma->dma_addr[i]);
James Harper7b4eeed2014-06-12 06:53:38 -0300261 }
262 kfree(dma->dma_addr);
263 dma->dma_addr = NULL;
264 kfree(dma->vaddr_pages);
265 dma->vaddr_pages = NULL;
266
267 return -ENOMEM;
268
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300269}
Pawel Osciak7a022642010-03-17 04:01:04 -0300270EXPORT_SYMBOL_GPL(videobuf_dma_init_kernel);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300271
272int videobuf_dma_init_overlay(struct videobuf_dmabuf *dma, int direction,
273 dma_addr_t addr, int nr_pages)
274{
Pawel Osciak7a022642010-03-17 04:01:04 -0300275 dprintk(1, "init overlay [%d pages @ bus 0x%lx]\n",
276 nr_pages, (unsigned long)addr);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300277 dma->direction = direction;
Pawel Osciak7a022642010-03-17 04:01:04 -0300278
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300279 if (0 == addr)
280 return -EINVAL;
281
282 dma->bus_addr = addr;
283 dma->nr_pages = nr_pages;
Pawel Osciak7a022642010-03-17 04:01:04 -0300284
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300285 return 0;
286}
Pawel Osciak7a022642010-03-17 04:01:04 -0300287EXPORT_SYMBOL_GPL(videobuf_dma_init_overlay);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300288
Laurent Pinchart95268402010-05-11 10:36:30 -0300289int videobuf_dma_map(struct device *dev, struct videobuf_dmabuf *dma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300290{
Pawel Osciak7a022642010-03-17 04:01:04 -0300291 MAGIC_CHECK(dma->magic, MAGIC_DMABUF);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300292 BUG_ON(0 == dma->nr_pages);
293
294 if (dma->pages) {
295 dma->sglist = videobuf_pages_to_sg(dma->pages, dma->nr_pages,
Hans Verkuil2fc11532010-09-07 06:10:45 -0300296 dma->offset, dma->size);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300297 }
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300298 if (dma->vaddr) {
299 dma->sglist = videobuf_vmalloc_to_sg(dma->vaddr,
Pawel Osciak7a022642010-03-17 04:01:04 -0300300 dma->nr_pages);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300301 }
302 if (dma->bus_addr) {
Cohen David.A1010ed12009-05-11 11:00:20 -0300303 dma->sglist = vmalloc(sizeof(*dma->sglist));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300304 if (NULL != dma->sglist) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300305 dma->sglen = 1;
306 sg_dma_address(&dma->sglist[0]) = dma->bus_addr
307 & PAGE_MASK;
308 dma->sglist[0].offset = dma->bus_addr & ~PAGE_MASK;
309 sg_dma_len(&dma->sglist[0]) = dma->nr_pages * PAGE_SIZE;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300310 }
311 }
312 if (NULL == dma->sglist) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300313 dprintk(1, "scatterlist is NULL\n");
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300314 return -ENOMEM;
315 }
316 if (!dma->bus_addr) {
Laurent Pinchart95268402010-05-11 10:36:30 -0300317 dma->sglen = dma_map_sg(dev, dma->sglist,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300318 dma->nr_pages, dma->direction);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300319 if (0 == dma->sglen) {
320 printk(KERN_WARNING
Pawel Osciak7a022642010-03-17 04:01:04 -0300321 "%s: videobuf_map_sg failed\n", __func__);
Cohen David.A1010ed12009-05-11 11:00:20 -0300322 vfree(dma->sglist);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300323 dma->sglist = NULL;
324 dma->sglen = 0;
Figo.zhang92051b22009-06-10 23:17:27 -0300325 return -ENOMEM;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300326 }
327 }
Pawel Osciak7a022642010-03-17 04:01:04 -0300328
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300329 return 0;
330}
Pawel Osciak7a022642010-03-17 04:01:04 -0300331EXPORT_SYMBOL_GPL(videobuf_dma_map);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300332
Laurent Pinchart95268402010-05-11 10:36:30 -0300333int videobuf_dma_unmap(struct device *dev, struct videobuf_dmabuf *dma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300334{
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300335 MAGIC_CHECK(dma->magic, MAGIC_DMABUF);
Pawel Osciak7a022642010-03-17 04:01:04 -0300336
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300337 if (!dma->sglen)
338 return 0;
339
Laurent Pinchart95268402010-05-11 10:36:30 -0300340 dma_unmap_sg(dev, dma->sglist, dma->sglen, dma->direction);
Mauro Carvalho Chehab5ddff432007-10-08 11:43:49 -0300341
Cohen David.A1010ed12009-05-11 11:00:20 -0300342 vfree(dma->sglist);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300343 dma->sglist = NULL;
344 dma->sglen = 0;
Pawel Osciak7a022642010-03-17 04:01:04 -0300345
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300346 return 0;
347}
Pawel Osciak7a022642010-03-17 04:01:04 -0300348EXPORT_SYMBOL_GPL(videobuf_dma_unmap);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300349
350int videobuf_dma_free(struct videobuf_dmabuf *dma)
351{
Pawel Osciak7a022642010-03-17 04:01:04 -0300352 int i;
353 MAGIC_CHECK(dma->magic, MAGIC_DMABUF);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300354 BUG_ON(dma->sglen);
355
356 if (dma->pages) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300357 for (i = 0; i < dma->nr_pages; i++)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300358 page_cache_release(dma->pages[i]);
359 kfree(dma->pages);
360 dma->pages = NULL;
361 }
362
James Harper7b4eeed2014-06-12 06:53:38 -0300363 if (dma->dma_addr) {
364 for (i = 0; i < dma->nr_pages; i++) {
365 void *addr;
366
367 addr = page_address(dma->vaddr_pages[i]);
368 dma_free_coherent(dma->dev, PAGE_SIZE, addr,
369 dma->dma_addr[i]);
370 }
371 kfree(dma->dma_addr);
372 dma->dma_addr = NULL;
373 kfree(dma->vaddr_pages);
374 dma->vaddr_pages = NULL;
375 vunmap(dma->vaddr);
376 dma->vaddr = NULL;
377 }
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300378
Pawel Osciak7a022642010-03-17 04:01:04 -0300379 if (dma->bus_addr)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300380 dma->bus_addr = 0;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300381 dma->direction = DMA_NONE;
Pawel Osciak7a022642010-03-17 04:01:04 -0300382
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300383 return 0;
384}
Pawel Osciak7a022642010-03-17 04:01:04 -0300385EXPORT_SYMBOL_GPL(videobuf_dma_free);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300386
387/* --------------------------------------------------------------------- */
388
Pawel Osciak7a022642010-03-17 04:01:04 -0300389static void videobuf_vm_open(struct vm_area_struct *vma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300390{
391 struct videobuf_mapping *map = vma->vm_private_data;
392
Pawel Osciak7a022642010-03-17 04:01:04 -0300393 dprintk(2, "vm_open %p [count=%d,vma=%08lx-%08lx]\n", map,
394 map->count, vma->vm_start, vma->vm_end);
395
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300396 map->count++;
397}
398
Pawel Osciak7a022642010-03-17 04:01:04 -0300399static void videobuf_vm_close(struct vm_area_struct *vma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300400{
401 struct videobuf_mapping *map = vma->vm_private_data;
402 struct videobuf_queue *q = map->q;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300403 struct videobuf_dma_sg_memory *mem;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300404 int i;
405
Pawel Osciak7a022642010-03-17 04:01:04 -0300406 dprintk(2, "vm_close %p [count=%d,vma=%08lx-%08lx]\n", map,
407 map->count, vma->vm_start, vma->vm_end);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300408
Hans Verkuilcca36e22014-01-03 08:10:49 -0300409 map->count--;
410 if (0 == map->count) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300411 dprintk(1, "munmap %p q=%p\n", map, q);
Hans Verkuilcca36e22014-01-03 08:10:49 -0300412 videobuf_queue_lock(q);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300413 for (i = 0; i < VIDEO_MAX_FRAME; i++) {
414 if (NULL == q->bufs[i])
415 continue;
Pawel Osciak7a022642010-03-17 04:01:04 -0300416 mem = q->bufs[i]->priv;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300417 if (!mem)
418 continue;
419
Pawel Osciak7a022642010-03-17 04:01:04 -0300420 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300421
Mauro Carvalho Chehab851c0c92007-09-27 18:25:44 -0300422 if (q->bufs[i]->map != map)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300423 continue;
Mauro Carvalho Chehab851c0c92007-09-27 18:25:44 -0300424 q->bufs[i]->map = NULL;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300425 q->bufs[i]->baddr = 0;
Pawel Osciak7a022642010-03-17 04:01:04 -0300426 q->ops->buf_release(q, q->bufs[i]);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300427 }
Hans Verkuilcca36e22014-01-03 08:10:49 -0300428 videobuf_queue_unlock(q);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300429 kfree(map);
430 }
431 return;
432}
433
434/*
435 * Get a anonymous page for the mapping. Make sure we can DMA to that
436 * memory location with 32bit PCI devices (i.e. don't use highmem for
437 * now ...). Bounce buffers don't work very well for the data rates
438 * video capture has.
439 */
Pawel Osciak7a022642010-03-17 04:01:04 -0300440static int videobuf_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300441{
442 struct page *page;
443
Pawel Osciak7a022642010-03-17 04:01:04 -0300444 dprintk(3, "fault: fault @ %08lx [vma %08lx-%08lx]\n",
445 (unsigned long)vmf->virtual_address,
446 vma->vm_start, vma->vm_end);
447
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300448 page = alloc_page(GFP_USER | __GFP_DMA32);
449 if (!page)
Nick Piggin105354a2007-12-07 17:57:38 -0300450 return VM_FAULT_OOM;
Guennadi Liakhovetskic0cd5012009-01-03 18:20:04 -0300451 clear_user_highpage(page, (unsigned long)vmf->virtual_address);
Nick Piggin105354a2007-12-07 17:57:38 -0300452 vmf->page = page;
Pawel Osciak7a022642010-03-17 04:01:04 -0300453
Nick Piggin105354a2007-12-07 17:57:38 -0300454 return 0;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300455}
456
Pawel Osciak7a022642010-03-17 04:01:04 -0300457static const struct vm_operations_struct videobuf_vm_ops = {
458 .open = videobuf_vm_open,
459 .close = videobuf_vm_close,
460 .fault = videobuf_vm_fault,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300461};
462
463/* ---------------------------------------------------------------------
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300464 * SG handlers for the generic methods
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300465 */
466
467/* Allocated area consists on 3 parts:
468 struct video_buffer
469 struct <driver>_buffer (cx88_buffer, saa7134_buf, ...)
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300470 struct videobuf_dma_sg_memory
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300471 */
472
Pawel Osciak33c38282010-05-11 10:36:28 -0300473static struct videobuf_buffer *__videobuf_alloc_vb(size_t size)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300474{
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300475 struct videobuf_dma_sg_memory *mem;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300476 struct videobuf_buffer *vb;
477
Pawel Osciak7a022642010-03-17 04:01:04 -0300478 vb = kzalloc(size + sizeof(*mem), GFP_KERNEL);
Pawel Osciakbee527f2010-02-22 13:10:06 -0300479 if (!vb)
480 return vb;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300481
Pawel Osciak7a022642010-03-17 04:01:04 -0300482 mem = vb->priv = ((char *)vb) + size;
483 mem->magic = MAGIC_SG_MEM;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300484
485 videobuf_dma_init(&mem->dma);
486
Pawel Osciak7a022642010-03-17 04:01:04 -0300487 dprintk(1, "%s: allocated at %p(%ld+%ld) & %p(%ld)\n",
488 __func__, vb, (long)sizeof(*vb), (long)size - sizeof(*vb),
489 mem, (long)sizeof(*mem));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300490
491 return vb;
492}
493
Hans Verkuil037c75e2010-03-28 08:18:37 -0300494static void *__videobuf_to_vaddr(struct videobuf_buffer *buf)
Mauro Carvalho Chehab59d34482008-04-13 15:10:00 -0300495{
496 struct videobuf_dma_sg_memory *mem = buf->priv;
497 BUG_ON(!mem);
498
499 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
500
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300501 return mem->dma.vaddr;
Mauro Carvalho Chehab59d34482008-04-13 15:10:00 -0300502}
503
Pawel Osciak7a022642010-03-17 04:01:04 -0300504static int __videobuf_iolock(struct videobuf_queue *q,
505 struct videobuf_buffer *vb,
506 struct v4l2_framebuffer *fbuf)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300507{
Pawel Osciak7a022642010-03-17 04:01:04 -0300508 int err, pages;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300509 dma_addr_t bus;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300510 struct videobuf_dma_sg_memory *mem = vb->priv;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300511 BUG_ON(!mem);
512
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300513 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300514
James Harper7b4eeed2014-06-12 06:53:38 -0300515 if (!mem->dma.dev)
516 mem->dma.dev = q->dev;
517 else
518 WARN_ON(mem->dma.dev != q->dev);
519
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300520 switch (vb->memory) {
521 case V4L2_MEMORY_MMAP:
522 case V4L2_MEMORY_USERPTR:
523 if (0 == vb->baddr) {
524 /* no userspace addr -- kernel bounce buffer */
525 pages = PAGE_ALIGN(vb->size) >> PAGE_SHIFT;
Pawel Osciak7a022642010-03-17 04:01:04 -0300526 err = videobuf_dma_init_kernel(&mem->dma,
527 DMA_FROM_DEVICE,
528 pages);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300529 if (0 != err)
530 return err;
Maxim Levitsky99001322007-09-27 20:34:09 -0300531 } else if (vb->memory == V4L2_MEMORY_USERPTR) {
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300532 /* dma directly to userspace */
Pawel Osciak7a022642010-03-17 04:01:04 -0300533 err = videobuf_dma_init_user(&mem->dma,
534 DMA_FROM_DEVICE,
535 vb->baddr, vb->bsize);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300536 if (0 != err)
537 return err;
Maxim Levitsky99001322007-09-27 20:34:09 -0300538 } else {
539 /* NOTE: HACK: videobuf_iolock on V4L2_MEMORY_MMAP
540 buffers can only be called from videobuf_qbuf
541 we take current->mm->mmap_sem there, to prevent
542 locking inversion, so don't take it here */
543
544 err = videobuf_dma_init_user_locked(&mem->dma,
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300545 DMA_FROM_DEVICE,
Maxim Levitsky99001322007-09-27 20:34:09 -0300546 vb->baddr, vb->bsize);
547 if (0 != err)
548 return err;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300549 }
550 break;
551 case V4L2_MEMORY_OVERLAY:
552 if (NULL == fbuf)
553 return -EINVAL;
554 /* FIXME: need sanity checks for vb->boff */
555 /*
556 * Using a double cast to avoid compiler warnings when
557 * building for PAE. Compiler doesn't like direct casting
558 * of a 32 bit ptr to 64 bit integer.
559 */
560 bus = (dma_addr_t)(unsigned long)fbuf->base + vb->boff;
561 pages = PAGE_ALIGN(vb->size) >> PAGE_SHIFT;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300562 err = videobuf_dma_init_overlay(&mem->dma, DMA_FROM_DEVICE,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300563 bus, pages);
564 if (0 != err)
565 return err;
566 break;
567 default:
568 BUG();
569 }
Laurent Pinchart95268402010-05-11 10:36:30 -0300570 err = videobuf_dma_map(q->dev, &mem->dma);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300571 if (0 != err)
572 return err;
573
574 return 0;
575}
576
577static int __videobuf_sync(struct videobuf_queue *q,
578 struct videobuf_buffer *buf)
579{
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300580 struct videobuf_dma_sg_memory *mem = buf->priv;
Mauro Carvalho Chehab97f81052010-05-05 16:23:09 -0300581 BUG_ON(!mem || !mem->dma.sglen);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300582
Mauro Carvalho Chehab97f81052010-05-05 16:23:09 -0300583 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
584 MAGIC_CHECK(mem->dma.magic, MAGIC_DMABUF);
585
586 dma_sync_sg_for_cpu(q->dev, mem->dma.sglist,
Arnout Vandecappellefc7f8fd2010-03-17 19:53:04 -0300587 mem->dma.sglen, mem->dma.direction);
Mauro Carvalho Chehab97f81052010-05-05 16:23:09 -0300588
589 return 0;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300590}
591
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300592static int __videobuf_mmap_mapper(struct videobuf_queue *q,
Hans Verkuil0b62b732010-03-28 09:09:05 -0300593 struct videobuf_buffer *buf,
594 struct vm_area_struct *vma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300595{
Hans Verkuil0b62b732010-03-28 09:09:05 -0300596 struct videobuf_dma_sg_memory *mem = buf->priv;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300597 struct videobuf_mapping *map;
Mauro Carvalho Chehab474675a2010-04-25 11:23:52 -0300598 unsigned int first, last, size = 0, i;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300599 int retval;
600
601 retval = -EINVAL;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300602
Hans Verkuil0b62b732010-03-28 09:09:05 -0300603 BUG_ON(!mem);
604 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
605
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300606 /* look for first buffer to map */
607 for (first = 0; first < VIDEO_MAX_FRAME; first++) {
Hans Verkuil0b62b732010-03-28 09:09:05 -0300608 if (buf == q->bufs[first]) {
609 size = PAGE_ALIGN(q->bufs[first]->bsize);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300610 break;
Hans Verkuil0b62b732010-03-28 09:09:05 -0300611 }
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300612 }
Hans Verkuil0b62b732010-03-28 09:09:05 -0300613
614 /* paranoia, should never happen since buf is always valid. */
Mauro Carvalho Chehab474675a2010-04-25 11:23:52 -0300615 if (!size) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300616 dprintk(1, "mmap app bug: offset invalid [offset=0x%lx]\n",
Hans Verkuil0b62b732010-03-28 09:09:05 -0300617 (vma->vm_pgoff << PAGE_SHIFT));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300618 goto done;
619 }
620
Hans Verkuil0b62b732010-03-28 09:09:05 -0300621 last = first;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300622
623 /* create mapping + update buffer list */
624 retval = -ENOMEM;
Pawel Osciak7a022642010-03-17 04:01:04 -0300625 map = kmalloc(sizeof(struct videobuf_mapping), GFP_KERNEL);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300626 if (NULL == map)
627 goto done;
Brandon Philipsce540932008-04-02 18:10:59 -0300628
629 size = 0;
630 for (i = first; i <= last; i++) {
631 if (NULL == q->bufs[i])
632 continue;
Mauro Carvalho Chehab851c0c92007-09-27 18:25:44 -0300633 q->bufs[i]->map = map;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300634 q->bufs[i]->baddr = vma->vm_start + size;
Tuukka Toivonen7cbefad2009-07-23 10:56:25 -0300635 size += PAGE_ALIGN(q->bufs[i]->bsize);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300636 }
Brandon Philipsce540932008-04-02 18:10:59 -0300637
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300638 map->count = 1;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300639 map->q = q;
640 vma->vm_ops = &videobuf_vm_ops;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -0700641 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300642 vma->vm_flags &= ~VM_IO; /* using shared anonymous pages */
643 vma->vm_private_data = map;
Pawel Osciak7a022642010-03-17 04:01:04 -0300644 dprintk(1, "mmap %p: q=%p %08lx-%08lx pgoff %08lx bufs %d-%d\n",
645 map, q, vma->vm_start, vma->vm_end, vma->vm_pgoff, first, last);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300646 retval = 0;
647
Pawel Osciak7a022642010-03-17 04:01:04 -0300648done:
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300649 return retval;
650}
651
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300652static struct videobuf_qtype_ops sg_ops = {
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300653 .magic = MAGIC_QTYPE_OPS,
654
Pawel Osciak33c38282010-05-11 10:36:28 -0300655 .alloc_vb = __videobuf_alloc_vb,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300656 .iolock = __videobuf_iolock,
657 .sync = __videobuf_sync,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300658 .mmap_mapper = __videobuf_mmap_mapper,
Hans Verkuil037c75e2010-03-28 08:18:37 -0300659 .vaddr = __videobuf_to_vaddr,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300660};
661
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300662void *videobuf_sg_alloc(size_t size)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300663{
664 struct videobuf_queue q;
665
666 /* Required to make generic handler to call __videobuf_alloc */
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300667 q.int_ops = &sg_ops;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300668
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300669 q.msize = size;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300670
Pawel Osciak33c38282010-05-11 10:36:28 -0300671 return videobuf_alloc_vb(&q);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300672}
Pawel Osciak7a022642010-03-17 04:01:04 -0300673EXPORT_SYMBOL_GPL(videobuf_sg_alloc);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300674
Pawel Osciak7a022642010-03-17 04:01:04 -0300675void videobuf_queue_sg_init(struct videobuf_queue *q,
Jonathan Corbet38a54f32009-11-17 19:43:41 -0300676 const struct videobuf_queue_ops *ops,
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300677 struct device *dev,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300678 spinlock_t *irqlock,
679 enum v4l2_buf_type type,
680 enum v4l2_field field,
681 unsigned int msize,
Hans Verkuil08bff032010-09-20 17:39:46 -0300682 void *priv,
683 struct mutex *ext_lock)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300684{
Mauro Carvalho Chehabd4cae5a2007-10-08 12:20:02 -0300685 videobuf_queue_core_init(q, ops, dev, irqlock, type, field, msize,
Hans Verkuil08bff032010-09-20 17:39:46 -0300686 priv, &sg_ops, ext_lock);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300687}
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300688EXPORT_SYMBOL_GPL(videobuf_queue_sg_init);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300689