blob: 025822bc6941f7ad3ef0093ce888834a5818570e [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
Hans Verkuil861360a2014-12-23 09:46:27 -0300148static void videobuf_dma_init(struct videobuf_dmabuf *dma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300149{
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}
153
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;
Lorenzo Stoakes768ae302016-10-13 01:20:16 +0100159 unsigned int flags = FOLL_FORCE;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300160
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
Lorenzo Stoakes768ae302016-10-13 01:20:16 +0100182 if (rw == READ)
183 flags |= FOLL_WRITE;
184
Pawel Osciak7a022642010-03-17 04:01:04 -0300185 dprintk(1, "init user [0x%lx+0x%lx => %d pages]\n",
186 data, size, dma->nr_pages);
187
Dan Williams53dfce32018-02-23 14:05:54 -0800188 err = get_user_pages_longterm(data & PAGE_MASK, dma->nr_pages,
Lorenzo Stoakes768ae302016-10-13 01:20:16 +0100189 flags, dma->pages, NULL);
Maxim Levitsky99001322007-09-27 20:34:09 -0300190
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300191 if (err != dma->nr_pages) {
192 dma->nr_pages = (err >= 0) ? err : 0;
Dan Williams53dfce32018-02-23 14:05:54 -0800193 dprintk(1, "get_user_pages_longterm: err=%d [%d]\n", err,
194 dma->nr_pages);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300195 return err < 0 ? err : -EINVAL;
196 }
197 return 0;
198}
199
Hans Verkuil861360a2014-12-23 09:46:27 -0300200static int videobuf_dma_init_user(struct videobuf_dmabuf *dma, int direction,
Maxim Levitsky99001322007-09-27 20:34:09 -0300201 unsigned long data, unsigned long size)
202{
203 int ret;
Pawel Osciak7a022642010-03-17 04:01:04 -0300204
Maxim Levitsky99001322007-09-27 20:34:09 -0300205 down_read(&current->mm->mmap_sem);
206 ret = videobuf_dma_init_user_locked(dma, direction, data, size);
207 up_read(&current->mm->mmap_sem);
208
209 return ret;
210}
211
Hans Verkuil861360a2014-12-23 09:46:27 -0300212static int videobuf_dma_init_kernel(struct videobuf_dmabuf *dma, int direction,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300213 int nr_pages)
214{
James Harper7b4eeed2014-06-12 06:53:38 -0300215 int i;
216
Pawel Osciak7a022642010-03-17 04:01:04 -0300217 dprintk(1, "init kernel [%d pages]\n", nr_pages);
218
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300219 dma->direction = direction;
James Harper7b4eeed2014-06-12 06:53:38 -0300220 dma->vaddr_pages = kcalloc(nr_pages, sizeof(*dma->vaddr_pages),
221 GFP_KERNEL);
222 if (!dma->vaddr_pages)
223 return -ENOMEM;
224
225 dma->dma_addr = kcalloc(nr_pages, sizeof(*dma->dma_addr), GFP_KERNEL);
226 if (!dma->dma_addr) {
227 kfree(dma->vaddr_pages);
228 return -ENOMEM;
229 }
230 for (i = 0; i < nr_pages; i++) {
231 void *addr;
232
233 addr = dma_alloc_coherent(dma->dev, PAGE_SIZE,
234 &(dma->dma_addr[i]), GFP_KERNEL);
235 if (addr == NULL)
236 goto out_free_pages;
237
238 dma->vaddr_pages[i] = virt_to_page(addr);
239 }
240 dma->vaddr = vmap(dma->vaddr_pages, nr_pages, VM_MAP | VM_IOREMAP,
241 PAGE_KERNEL);
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300242 if (NULL == dma->vaddr) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300243 dprintk(1, "vmalloc_32(%d pages) failed\n", nr_pages);
James Harper7b4eeed2014-06-12 06:53:38 -0300244 goto out_free_pages;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300245 }
Pawel Osciak7a022642010-03-17 04:01:04 -0300246
247 dprintk(1, "vmalloc is at addr 0x%08lx, size=%d\n",
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300248 (unsigned long)dma->vaddr,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300249 nr_pages << PAGE_SHIFT);
Pawel Osciak7a022642010-03-17 04:01:04 -0300250
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300251 memset(dma->vaddr, 0, nr_pages << PAGE_SHIFT);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300252 dma->nr_pages = nr_pages;
Pawel Osciak7a022642010-03-17 04:01:04 -0300253
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300254 return 0;
James Harper7b4eeed2014-06-12 06:53:38 -0300255out_free_pages:
256 while (i > 0) {
Dan Carpenter23d30902014-08-05 05:11:13 -0300257 void *addr;
258
James Harper7b4eeed2014-06-12 06:53:38 -0300259 i--;
Dan Carpenter23d30902014-08-05 05:11:13 -0300260 addr = page_address(dma->vaddr_pages[i]);
261 dma_free_coherent(dma->dev, PAGE_SIZE, addr, dma->dma_addr[i]);
James Harper7b4eeed2014-06-12 06:53:38 -0300262 }
263 kfree(dma->dma_addr);
264 dma->dma_addr = NULL;
265 kfree(dma->vaddr_pages);
266 dma->vaddr_pages = NULL;
267
268 return -ENOMEM;
269
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300270}
271
Hans Verkuil861360a2014-12-23 09:46:27 -0300272static int videobuf_dma_init_overlay(struct videobuf_dmabuf *dma, int direction,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300273 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}
287
Hans Verkuil861360a2014-12-23 09:46:27 -0300288static int videobuf_dma_map(struct device *dev, struct videobuf_dmabuf *dma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300289{
Pawel Osciak7a022642010-03-17 04:01:04 -0300290 MAGIC_CHECK(dma->magic, MAGIC_DMABUF);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300291 BUG_ON(0 == dma->nr_pages);
292
293 if (dma->pages) {
294 dma->sglist = videobuf_pages_to_sg(dma->pages, dma->nr_pages,
Hans Verkuil2fc11532010-09-07 06:10:45 -0300295 dma->offset, dma->size);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300296 }
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300297 if (dma->vaddr) {
298 dma->sglist = videobuf_vmalloc_to_sg(dma->vaddr,
Pawel Osciak7a022642010-03-17 04:01:04 -0300299 dma->nr_pages);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300300 }
301 if (dma->bus_addr) {
Cohen David.A1010ed12009-05-11 11:00:20 -0300302 dma->sglist = vmalloc(sizeof(*dma->sglist));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300303 if (NULL != dma->sglist) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300304 dma->sglen = 1;
305 sg_dma_address(&dma->sglist[0]) = dma->bus_addr
306 & PAGE_MASK;
307 dma->sglist[0].offset = dma->bus_addr & ~PAGE_MASK;
308 sg_dma_len(&dma->sglist[0]) = dma->nr_pages * PAGE_SIZE;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300309 }
310 }
311 if (NULL == dma->sglist) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300312 dprintk(1, "scatterlist is NULL\n");
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300313 return -ENOMEM;
314 }
315 if (!dma->bus_addr) {
Laurent Pinchart95268402010-05-11 10:36:30 -0300316 dma->sglen = dma_map_sg(dev, dma->sglist,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300317 dma->nr_pages, dma->direction);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300318 if (0 == dma->sglen) {
319 printk(KERN_WARNING
Pawel Osciak7a022642010-03-17 04:01:04 -0300320 "%s: videobuf_map_sg failed\n", __func__);
Cohen David.A1010ed12009-05-11 11:00:20 -0300321 vfree(dma->sglist);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300322 dma->sglist = NULL;
323 dma->sglen = 0;
Figo.zhang92051b22009-06-10 23:17:27 -0300324 return -ENOMEM;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300325 }
326 }
Pawel Osciak7a022642010-03-17 04:01:04 -0300327
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300328 return 0;
329}
330
Laurent Pinchart95268402010-05-11 10:36:30 -0300331int videobuf_dma_unmap(struct device *dev, struct videobuf_dmabuf *dma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300332{
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300333 MAGIC_CHECK(dma->magic, MAGIC_DMABUF);
Pawel Osciak7a022642010-03-17 04:01:04 -0300334
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300335 if (!dma->sglen)
336 return 0;
337
Laurent Pinchart95268402010-05-11 10:36:30 -0300338 dma_unmap_sg(dev, dma->sglist, dma->sglen, dma->direction);
Mauro Carvalho Chehab5ddff432007-10-08 11:43:49 -0300339
Cohen David.A1010ed12009-05-11 11:00:20 -0300340 vfree(dma->sglist);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300341 dma->sglist = NULL;
342 dma->sglen = 0;
Pawel Osciak7a022642010-03-17 04:01:04 -0300343
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300344 return 0;
345}
Pawel Osciak7a022642010-03-17 04:01:04 -0300346EXPORT_SYMBOL_GPL(videobuf_dma_unmap);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300347
348int videobuf_dma_free(struct videobuf_dmabuf *dma)
349{
Pawel Osciak7a022642010-03-17 04:01:04 -0300350 int i;
351 MAGIC_CHECK(dma->magic, MAGIC_DMABUF);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300352 BUG_ON(dma->sglen);
353
354 if (dma->pages) {
John Hubbard7ae7ae42020-01-30 22:12:50 -0800355 for (i = 0; i < dma->nr_pages; i++) {
356 if (dma->direction == DMA_FROM_DEVICE)
357 set_page_dirty_lock(dma->pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300358 put_page(dma->pages[i]);
John Hubbard7ae7ae42020-01-30 22:12:50 -0800359 }
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300360 kfree(dma->pages);
361 dma->pages = NULL;
362 }
363
James Harper7b4eeed2014-06-12 06:53:38 -0300364 if (dma->dma_addr) {
365 for (i = 0; i < dma->nr_pages; i++) {
366 void *addr;
367
368 addr = page_address(dma->vaddr_pages[i]);
369 dma_free_coherent(dma->dev, PAGE_SIZE, addr,
370 dma->dma_addr[i]);
371 }
372 kfree(dma->dma_addr);
373 dma->dma_addr = NULL;
374 kfree(dma->vaddr_pages);
375 dma->vaddr_pages = NULL;
376 vunmap(dma->vaddr);
377 dma->vaddr = NULL;
378 }
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300379
Pawel Osciak7a022642010-03-17 04:01:04 -0300380 if (dma->bus_addr)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300381 dma->bus_addr = 0;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300382 dma->direction = DMA_NONE;
Pawel Osciak7a022642010-03-17 04:01:04 -0300383
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300384 return 0;
385}
Pawel Osciak7a022642010-03-17 04:01:04 -0300386EXPORT_SYMBOL_GPL(videobuf_dma_free);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300387
388/* --------------------------------------------------------------------- */
389
Pawel Osciak7a022642010-03-17 04:01:04 -0300390static void videobuf_vm_open(struct vm_area_struct *vma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300391{
392 struct videobuf_mapping *map = vma->vm_private_data;
393
Pawel Osciak7a022642010-03-17 04:01:04 -0300394 dprintk(2, "vm_open %p [count=%d,vma=%08lx-%08lx]\n", map,
395 map->count, vma->vm_start, vma->vm_end);
396
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300397 map->count++;
398}
399
Pawel Osciak7a022642010-03-17 04:01:04 -0300400static void videobuf_vm_close(struct vm_area_struct *vma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300401{
402 struct videobuf_mapping *map = vma->vm_private_data;
403 struct videobuf_queue *q = map->q;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300404 struct videobuf_dma_sg_memory *mem;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300405 int i;
406
Pawel Osciak7a022642010-03-17 04:01:04 -0300407 dprintk(2, "vm_close %p [count=%d,vma=%08lx-%08lx]\n", map,
408 map->count, vma->vm_start, vma->vm_end);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300409
Hans Verkuilcca36e22014-01-03 08:10:49 -0300410 map->count--;
411 if (0 == map->count) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300412 dprintk(1, "munmap %p q=%p\n", map, q);
Hans Verkuilcca36e22014-01-03 08:10:49 -0300413 videobuf_queue_lock(q);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300414 for (i = 0; i < VIDEO_MAX_FRAME; i++) {
415 if (NULL == q->bufs[i])
416 continue;
Pawel Osciak7a022642010-03-17 04:01:04 -0300417 mem = q->bufs[i]->priv;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300418 if (!mem)
419 continue;
420
Pawel Osciak7a022642010-03-17 04:01:04 -0300421 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300422
Mauro Carvalho Chehab851c0c92007-09-27 18:25:44 -0300423 if (q->bufs[i]->map != map)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300424 continue;
Mauro Carvalho Chehab851c0c92007-09-27 18:25:44 -0300425 q->bufs[i]->map = NULL;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300426 q->bufs[i]->baddr = 0;
Pawel Osciak7a022642010-03-17 04:01:04 -0300427 q->ops->buf_release(q, q->bufs[i]);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300428 }
Hans Verkuilcca36e22014-01-03 08:10:49 -0300429 videobuf_queue_unlock(q);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300430 kfree(map);
431 }
432 return;
433}
434
435/*
436 * Get a anonymous page for the mapping. Make sure we can DMA to that
437 * memory location with 32bit PCI devices (i.e. don't use highmem for
438 * now ...). Bounce buffers don't work very well for the data rates
439 * video capture has.
440 */
Pawel Osciak7a022642010-03-17 04:01:04 -0300441static int videobuf_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300442{
443 struct page *page;
444
Pawel Osciak7a022642010-03-17 04:01:04 -0300445 dprintk(3, "fault: fault @ %08lx [vma %08lx-%08lx]\n",
446 (unsigned long)vmf->virtual_address,
447 vma->vm_start, vma->vm_end);
448
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300449 page = alloc_page(GFP_USER | __GFP_DMA32);
450 if (!page)
Nick Piggin105354a2007-12-07 17:57:38 -0300451 return VM_FAULT_OOM;
Guennadi Liakhovetskic0cd5012009-01-03 18:20:04 -0300452 clear_user_highpage(page, (unsigned long)vmf->virtual_address);
Nick Piggin105354a2007-12-07 17:57:38 -0300453 vmf->page = page;
Pawel Osciak7a022642010-03-17 04:01:04 -0300454
Nick Piggin105354a2007-12-07 17:57:38 -0300455 return 0;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300456}
457
Pawel Osciak7a022642010-03-17 04:01:04 -0300458static const struct vm_operations_struct videobuf_vm_ops = {
459 .open = videobuf_vm_open,
460 .close = videobuf_vm_close,
461 .fault = videobuf_vm_fault,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300462};
463
464/* ---------------------------------------------------------------------
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300465 * SG handlers for the generic methods
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300466 */
467
468/* Allocated area consists on 3 parts:
469 struct video_buffer
470 struct <driver>_buffer (cx88_buffer, saa7134_buf, ...)
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300471 struct videobuf_dma_sg_memory
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300472 */
473
Pawel Osciak33c38282010-05-11 10:36:28 -0300474static struct videobuf_buffer *__videobuf_alloc_vb(size_t size)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300475{
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300476 struct videobuf_dma_sg_memory *mem;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300477 struct videobuf_buffer *vb;
478
Pawel Osciak7a022642010-03-17 04:01:04 -0300479 vb = kzalloc(size + sizeof(*mem), GFP_KERNEL);
Pawel Osciakbee527f2010-02-22 13:10:06 -0300480 if (!vb)
481 return vb;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300482
Pawel Osciak7a022642010-03-17 04:01:04 -0300483 mem = vb->priv = ((char *)vb) + size;
484 mem->magic = MAGIC_SG_MEM;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300485
486 videobuf_dma_init(&mem->dma);
487
Pawel Osciak7a022642010-03-17 04:01:04 -0300488 dprintk(1, "%s: allocated at %p(%ld+%ld) & %p(%ld)\n",
489 __func__, vb, (long)sizeof(*vb), (long)size - sizeof(*vb),
490 mem, (long)sizeof(*mem));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300491
492 return vb;
493}
494
Hans Verkuil037c75e2010-03-28 08:18:37 -0300495static void *__videobuf_to_vaddr(struct videobuf_buffer *buf)
Mauro Carvalho Chehab59d34482008-04-13 15:10:00 -0300496{
497 struct videobuf_dma_sg_memory *mem = buf->priv;
498 BUG_ON(!mem);
499
500 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
501
Laurent Pinchartbb6dbe72010-05-11 10:36:34 -0300502 return mem->dma.vaddr;
Mauro Carvalho Chehab59d34482008-04-13 15:10:00 -0300503}
504
Pawel Osciak7a022642010-03-17 04:01:04 -0300505static int __videobuf_iolock(struct videobuf_queue *q,
506 struct videobuf_buffer *vb,
507 struct v4l2_framebuffer *fbuf)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300508{
Pawel Osciak7a022642010-03-17 04:01:04 -0300509 int err, pages;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300510 dma_addr_t bus;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300511 struct videobuf_dma_sg_memory *mem = vb->priv;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300512 BUG_ON(!mem);
513
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300514 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300515
James Harper7b4eeed2014-06-12 06:53:38 -0300516 if (!mem->dma.dev)
517 mem->dma.dev = q->dev;
518 else
519 WARN_ON(mem->dma.dev != q->dev);
520
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300521 switch (vb->memory) {
522 case V4L2_MEMORY_MMAP:
523 case V4L2_MEMORY_USERPTR:
524 if (0 == vb->baddr) {
525 /* no userspace addr -- kernel bounce buffer */
526 pages = PAGE_ALIGN(vb->size) >> PAGE_SHIFT;
Pawel Osciak7a022642010-03-17 04:01:04 -0300527 err = videobuf_dma_init_kernel(&mem->dma,
528 DMA_FROM_DEVICE,
529 pages);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300530 if (0 != err)
531 return err;
Maxim Levitsky99001322007-09-27 20:34:09 -0300532 } else if (vb->memory == V4L2_MEMORY_USERPTR) {
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300533 /* dma directly to userspace */
Pawel Osciak7a022642010-03-17 04:01:04 -0300534 err = videobuf_dma_init_user(&mem->dma,
535 DMA_FROM_DEVICE,
536 vb->baddr, vb->bsize);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300537 if (0 != err)
538 return err;
Maxim Levitsky99001322007-09-27 20:34:09 -0300539 } else {
540 /* NOTE: HACK: videobuf_iolock on V4L2_MEMORY_MMAP
541 buffers can only be called from videobuf_qbuf
542 we take current->mm->mmap_sem there, to prevent
543 locking inversion, so don't take it here */
544
545 err = videobuf_dma_init_user_locked(&mem->dma,
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300546 DMA_FROM_DEVICE,
Maxim Levitsky99001322007-09-27 20:34:09 -0300547 vb->baddr, vb->bsize);
548 if (0 != err)
549 return err;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300550 }
551 break;
552 case V4L2_MEMORY_OVERLAY:
553 if (NULL == fbuf)
554 return -EINVAL;
555 /* FIXME: need sanity checks for vb->boff */
556 /*
557 * Using a double cast to avoid compiler warnings when
558 * building for PAE. Compiler doesn't like direct casting
559 * of a 32 bit ptr to 64 bit integer.
560 */
561 bus = (dma_addr_t)(unsigned long)fbuf->base + vb->boff;
562 pages = PAGE_ALIGN(vb->size) >> PAGE_SHIFT;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300563 err = videobuf_dma_init_overlay(&mem->dma, DMA_FROM_DEVICE,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300564 bus, pages);
565 if (0 != err)
566 return err;
567 break;
568 default:
569 BUG();
570 }
Laurent Pinchart95268402010-05-11 10:36:30 -0300571 err = videobuf_dma_map(q->dev, &mem->dma);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300572 if (0 != err)
573 return err;
574
575 return 0;
576}
577
578static int __videobuf_sync(struct videobuf_queue *q,
579 struct videobuf_buffer *buf)
580{
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300581 struct videobuf_dma_sg_memory *mem = buf->priv;
Mauro Carvalho Chehab97f81052010-05-05 16:23:09 -0300582 BUG_ON(!mem || !mem->dma.sglen);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300583
Mauro Carvalho Chehab97f81052010-05-05 16:23:09 -0300584 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
585 MAGIC_CHECK(mem->dma.magic, MAGIC_DMABUF);
586
587 dma_sync_sg_for_cpu(q->dev, mem->dma.sglist,
Arnout Vandecappellefc7f8fd2010-03-17 19:53:04 -0300588 mem->dma.sglen, mem->dma.direction);
Mauro Carvalho Chehab97f81052010-05-05 16:23:09 -0300589
590 return 0;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300591}
592
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300593static int __videobuf_mmap_mapper(struct videobuf_queue *q,
Hans Verkuil0b62b732010-03-28 09:09:05 -0300594 struct videobuf_buffer *buf,
595 struct vm_area_struct *vma)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300596{
Hans Verkuil0b62b732010-03-28 09:09:05 -0300597 struct videobuf_dma_sg_memory *mem = buf->priv;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300598 struct videobuf_mapping *map;
Mauro Carvalho Chehab474675a2010-04-25 11:23:52 -0300599 unsigned int first, last, size = 0, i;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300600 int retval;
601
602 retval = -EINVAL;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300603
Hans Verkuil0b62b732010-03-28 09:09:05 -0300604 BUG_ON(!mem);
605 MAGIC_CHECK(mem->magic, MAGIC_SG_MEM);
606
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300607 /* look for first buffer to map */
608 for (first = 0; first < VIDEO_MAX_FRAME; first++) {
Hans Verkuil0b62b732010-03-28 09:09:05 -0300609 if (buf == q->bufs[first]) {
610 size = PAGE_ALIGN(q->bufs[first]->bsize);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300611 break;
Hans Verkuil0b62b732010-03-28 09:09:05 -0300612 }
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300613 }
Hans Verkuil0b62b732010-03-28 09:09:05 -0300614
615 /* paranoia, should never happen since buf is always valid. */
Mauro Carvalho Chehab474675a2010-04-25 11:23:52 -0300616 if (!size) {
Pawel Osciak7a022642010-03-17 04:01:04 -0300617 dprintk(1, "mmap app bug: offset invalid [offset=0x%lx]\n",
Hans Verkuil0b62b732010-03-28 09:09:05 -0300618 (vma->vm_pgoff << PAGE_SHIFT));
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300619 goto done;
620 }
621
Hans Verkuil0b62b732010-03-28 09:09:05 -0300622 last = first;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300623
624 /* create mapping + update buffer list */
625 retval = -ENOMEM;
Pawel Osciak7a022642010-03-17 04:01:04 -0300626 map = kmalloc(sizeof(struct videobuf_mapping), GFP_KERNEL);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300627 if (NULL == map)
628 goto done;
Brandon Philipsce540932008-04-02 18:10:59 -0300629
630 size = 0;
631 for (i = first; i <= last; i++) {
632 if (NULL == q->bufs[i])
633 continue;
Mauro Carvalho Chehab851c0c92007-09-27 18:25:44 -0300634 q->bufs[i]->map = map;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300635 q->bufs[i]->baddr = vma->vm_start + size;
Tuukka Toivonen7cbefad2009-07-23 10:56:25 -0300636 size += PAGE_ALIGN(q->bufs[i]->bsize);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300637 }
Brandon Philipsce540932008-04-02 18:10:59 -0300638
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300639 map->count = 1;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300640 map->q = q;
641 vma->vm_ops = &videobuf_vm_ops;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -0700642 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300643 vma->vm_flags &= ~VM_IO; /* using shared anonymous pages */
644 vma->vm_private_data = map;
Pawel Osciak7a022642010-03-17 04:01:04 -0300645 dprintk(1, "mmap %p: q=%p %08lx-%08lx pgoff %08lx bufs %d-%d\n",
646 map, q, vma->vm_start, vma->vm_end, vma->vm_pgoff, first, last);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300647 retval = 0;
648
Pawel Osciak7a022642010-03-17 04:01:04 -0300649done:
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300650 return retval;
651}
652
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300653static struct videobuf_qtype_ops sg_ops = {
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300654 .magic = MAGIC_QTYPE_OPS,
655
Pawel Osciak33c38282010-05-11 10:36:28 -0300656 .alloc_vb = __videobuf_alloc_vb,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300657 .iolock = __videobuf_iolock,
658 .sync = __videobuf_sync,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300659 .mmap_mapper = __videobuf_mmap_mapper,
Hans Verkuil037c75e2010-03-28 08:18:37 -0300660 .vaddr = __videobuf_to_vaddr,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300661};
662
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300663void *videobuf_sg_alloc(size_t size)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300664{
665 struct videobuf_queue q;
666
667 /* Required to make generic handler to call __videobuf_alloc */
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300668 q.int_ops = &sg_ops;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300669
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300670 q.msize = size;
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300671
Pawel Osciak33c38282010-05-11 10:36:28 -0300672 return videobuf_alloc_vb(&q);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300673}
Pawel Osciak7a022642010-03-17 04:01:04 -0300674EXPORT_SYMBOL_GPL(videobuf_sg_alloc);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300675
Pawel Osciak7a022642010-03-17 04:01:04 -0300676void videobuf_queue_sg_init(struct videobuf_queue *q,
Jonathan Corbet38a54f32009-11-17 19:43:41 -0300677 const struct videobuf_queue_ops *ops,
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300678 struct device *dev,
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300679 spinlock_t *irqlock,
680 enum v4l2_buf_type type,
681 enum v4l2_field field,
682 unsigned int msize,
Hans Verkuil08bff032010-09-20 17:39:46 -0300683 void *priv,
684 struct mutex *ext_lock)
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300685{
Mauro Carvalho Chehabd4cae5a2007-10-08 12:20:02 -0300686 videobuf_queue_core_init(q, ops, dev, irqlock, type, field, msize,
Hans Verkuil08bff032010-09-20 17:39:46 -0300687 priv, &sg_ops, ext_lock);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300688}
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300689EXPORT_SYMBOL_GPL(videobuf_queue_sg_init);
Mauro Carvalho Chehab7a7d9a82007-08-23 16:26:14 -0300690