blob: 836c6b53b16c116474f4b5910305a69025b4e8ba [file] [log] [blame]
Devin Heitmueller28abf0832009-09-01 01:54:54 -03001/*
2 em28xx-vbi.c - VBI driver for em28xx
3
4 Copyright (C) 2009 Devin Heitmueller <dheitmueller@kernellabs.com>
5
6 This work was sponsored by EyeMagnet Limited.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 02110-1301, USA.
22 */
23
24#include <linux/kernel.h>
25#include <linux/module.h>
Randy Dunlapc59a9bf2010-12-07 15:50:09 -030026#include <linux/hardirq.h>
Devin Heitmueller28abf0832009-09-01 01:54:54 -030027#include <linux/init.h>
Devin Heitmueller28abf0832009-09-01 01:54:54 -030028
29#include "em28xx.h"
Mauro Carvalho Chehab01c28192013-12-22 13:27:02 -030030#include "em28xx-v4l.h"
Devin Heitmueller28abf0832009-09-01 01:54:54 -030031
Devin Heitmueller28abf0832009-09-01 01:54:54 -030032/* ------------------------------------------------------------------ */
33
Hans Verkuildf9ecb02015-10-28 00:50:37 -020034static int vbi_queue_setup(struct vb2_queue *vq,
Devin Heitmuellerd3829fa2013-01-04 16:16:24 -030035 unsigned int *nbuffers, unsigned int *nplanes,
Hans Verkuil36c0f8b2016-04-15 09:15:05 -030036 unsigned int sizes[], struct device *alloc_devs[])
Devin Heitmueller28abf0832009-09-01 01:54:54 -030037{
Devin Heitmuellerd3829fa2013-01-04 16:16:24 -030038 struct em28xx *dev = vb2_get_drv_priv(vq);
Frank Schaefer753aee72014-03-24 16:33:14 -030039 struct em28xx_v4l2 *v4l2 = dev->v4l2;
Hans Verkuildf9ecb02015-10-28 00:50:37 -020040 unsigned long size = v4l2->vbi_width * v4l2->vbi_height * 2;
Devin Heitmueller28abf0832009-09-01 01:54:54 -030041
Devin Heitmuellerd3829fa2013-01-04 16:16:24 -030042 if (*nbuffers < 2)
43 *nbuffers = 2;
Hans Verkuildf9ecb02015-10-28 00:50:37 -020044
45 if (*nplanes) {
46 if (sizes[0] < size)
47 return -EINVAL;
48 size = sizes[0];
49 }
Devin Heitmueller28abf0832009-09-01 01:54:54 -030050
Devin Heitmuellerd3829fa2013-01-04 16:16:24 -030051 *nplanes = 1;
52 sizes[0] = size;
Devin Heitmueller28abf0832009-09-01 01:54:54 -030053
Devin Heitmueller28abf0832009-09-01 01:54:54 -030054 return 0;
55}
56
Devin Heitmuellerd3829fa2013-01-04 16:16:24 -030057static int vbi_buffer_prepare(struct vb2_buffer *vb)
Devin Heitmueller28abf0832009-09-01 01:54:54 -030058{
Frank Schaefer753aee72014-03-24 16:33:14 -030059 struct em28xx *dev = vb2_get_drv_priv(vb->vb2_queue);
60 struct em28xx_v4l2 *v4l2 = dev->v4l2;
Devin Heitmuellerd3829fa2013-01-04 16:16:24 -030061 unsigned long size;
Devin Heitmueller28abf0832009-09-01 01:54:54 -030062
Frank Schaefer753aee72014-03-24 16:33:14 -030063 size = v4l2->vbi_width * v4l2->vbi_height * 2;
Devin Heitmueller28abf0832009-09-01 01:54:54 -030064
Devin Heitmuellerd3829fa2013-01-04 16:16:24 -030065 if (vb2_plane_size(vb, 0) < size) {
66 printk(KERN_INFO "%s data will not fit into plane (%lu < %lu)\n",
67 __func__, vb2_plane_size(vb, 0), size);
Devin Heitmueller28abf0832009-09-01 01:54:54 -030068 return -EINVAL;
Devin Heitmueller28abf0832009-09-01 01:54:54 -030069 }
Junghak Sung2d700712015-09-22 10:30:30 -030070 vb2_set_plane_payload(vb, 0, size);
Devin Heitmueller28abf0832009-09-01 01:54:54 -030071
Devin Heitmueller28abf0832009-09-01 01:54:54 -030072 return 0;
Devin Heitmueller28abf0832009-09-01 01:54:54 -030073}
74
75static void
Devin Heitmuellerd3829fa2013-01-04 16:16:24 -030076vbi_buffer_queue(struct vb2_buffer *vb)
Devin Heitmueller28abf0832009-09-01 01:54:54 -030077{
Junghak Sung2d700712015-09-22 10:30:30 -030078 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
Devin Heitmuellerd3829fa2013-01-04 16:16:24 -030079 struct em28xx *dev = vb2_get_drv_priv(vb->vb2_queue);
Junghak Sung2d700712015-09-22 10:30:30 -030080 struct em28xx_buffer *buf =
81 container_of(vbuf, struct em28xx_buffer, vb);
Devin Heitmuellerd3829fa2013-01-04 16:16:24 -030082 struct em28xx_dmaqueue *vbiq = &dev->vbiq;
83 unsigned long flags = 0;
84
85 buf->mem = vb2_plane_vaddr(vb, 0);
86 buf->length = vb2_plane_size(vb, 0);
87
88 spin_lock_irqsave(&dev->slock, flags);
89 list_add_tail(&buf->list, &vbiq->active);
90 spin_unlock_irqrestore(&dev->slock, flags);
Devin Heitmueller28abf0832009-09-01 01:54:54 -030091}
92
Devin Heitmuellerd3829fa2013-01-04 16:16:24 -030093struct vb2_ops em28xx_vbi_qops = {
94 .queue_setup = vbi_queue_setup,
95 .buf_prepare = vbi_buffer_prepare,
96 .buf_queue = vbi_buffer_queue,
97 .start_streaming = em28xx_start_analog_streaming,
98 .stop_streaming = em28xx_stop_vbi_streaming,
99 .wait_prepare = vb2_ops_wait_prepare,
100 .wait_finish = vb2_ops_wait_finish,
Devin Heitmueller28abf0832009-09-01 01:54:54 -0300101};