blob: a92546144eaa30dc33695104374841b73b5b2bda [file] [log] [blame]
Joe Perches44d0b802011-08-21 19:56:44 -03001#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
2
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#include <media/saa7146_vv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
Linus Torvalds1da177e2005-04-16 15:20:36 -07005/****************************************************************************/
6/* resource management functions, shamelessly stolen from saa7134 driver */
7
8int saa7146_res_get(struct saa7146_fh *fh, unsigned int bit)
9{
10 struct saa7146_dev *dev = fh->dev;
11 struct saa7146_vv *vv = dev->vv_data;
12
13 if (fh->resources & bit) {
Joe Perches44d0b802011-08-21 19:56:44 -030014 DEB_D("already allocated! want: 0x%02x, cur:0x%02x\n",
15 bit, vv->resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 /* have it already allocated */
17 return 1;
18 }
19
20 /* is it free? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 if (vv->resources & bit) {
Joe Perches44d0b802011-08-21 19:56:44 -030022 DEB_D("locked! vv->resources:0x%02x, we want:0x%02x\n",
23 vv->resources, bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 /* no, someone else uses it */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 return 0;
26 }
27 /* it's free, grab it */
Joe Perches44d0b802011-08-21 19:56:44 -030028 fh->resources |= bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 vv->resources |= bit;
Joe Perches44d0b802011-08-21 19:56:44 -030030 DEB_D("res: get 0x%02x, cur:0x%02x\n", bit, vv->resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 return 1;
32}
33
34void saa7146_res_free(struct saa7146_fh *fh, unsigned int bits)
35{
36 struct saa7146_dev *dev = fh->dev;
37 struct saa7146_vv *vv = dev->vv_data;
38
Eric Sesterhennae246012006-03-13 13:17:11 -030039 BUG_ON((fh->resources & bits) != bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Joe Perches44d0b802011-08-21 19:56:44 -030041 fh->resources &= ~bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 vv->resources &= ~bits;
Joe Perches44d0b802011-08-21 19:56:44 -030043 DEB_D("res: put 0x%02x, cur:0x%02x\n", bits, vv->resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044}
45
46
47/********************************************************************************/
48/* common dma functions */
49
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -030050void saa7146_dma_free(struct saa7146_dev *dev,struct videobuf_queue *q,
51 struct saa7146_buf *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -030053 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
Joe Perches44d0b802011-08-21 19:56:44 -030054 DEB_EE("dev:%p, buf:%p\n", dev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Eric Sesterhennae246012006-03-13 13:17:11 -030056 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Hans Verkuil0e0809a2010-09-26 09:01:26 -030058 videobuf_waiton(q, &buf->vb, 0, 0);
Laurent Pinchart95268402010-05-11 10:36:30 -030059 videobuf_dma_unmap(q->dev, dma);
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -030060 videobuf_dma_free(dma);
Brandon Philips0fc06862007-11-06 20:02:36 -030061 buf->vb.state = VIDEOBUF_NEEDS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
64
65/********************************************************************************/
66/* common buffer functions */
67
68int saa7146_buffer_queue(struct saa7146_dev *dev,
69 struct saa7146_dmaqueue *q,
70 struct saa7146_buf *buf)
71{
72 assert_spin_locked(&dev->slock);
Joe Perches44d0b802011-08-21 19:56:44 -030073 DEB_EE("dev:%p, dmaq:%p, buf:%p\n", dev, q, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75 BUG_ON(!q);
76
77 if (NULL == q->curr) {
78 q->curr = buf;
Joe Perches44d0b802011-08-21 19:56:44 -030079 DEB_D("immediately activating buffer %p\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 buf->activate(dev,buf,NULL);
81 } else {
82 list_add_tail(&buf->vb.queue,&q->queue);
Brandon Philips0fc06862007-11-06 20:02:36 -030083 buf->vb.state = VIDEOBUF_QUEUED;
Joe Perches44d0b802011-08-21 19:56:44 -030084 DEB_D("adding buffer %p to queue. (active buffer present)\n",
85 buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 }
87 return 0;
88}
89
90void saa7146_buffer_finish(struct saa7146_dev *dev,
91 struct saa7146_dmaqueue *q,
92 int state)
93{
94 assert_spin_locked(&dev->slock);
Joe Perches44d0b802011-08-21 19:56:44 -030095 DEB_EE("dev:%p, dmaq:%p, state:%d\n", dev, q, state);
96 DEB_EE("q->curr:%p\n", q->curr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 BUG_ON(!q->curr);
99
100 /* finish current buffer */
101 if (NULL == q->curr) {
Joe Perches44d0b802011-08-21 19:56:44 -0300102 DEB_D("aiii. no current buffer\n");
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800103 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 q->curr->vb.state = state;
107 do_gettimeofday(&q->curr->vb.ts);
108 wake_up(&q->curr->vb.done);
109
110 q->curr = NULL;
111}
112
113void saa7146_buffer_next(struct saa7146_dev *dev,
114 struct saa7146_dmaqueue *q, int vbi)
115{
116 struct saa7146_buf *buf,*next = NULL;
117
118 BUG_ON(!q);
119
Joe Perches44d0b802011-08-21 19:56:44 -0300120 DEB_INT("dev:%p, dmaq:%p, vbi:%d\n", dev, q, vbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 assert_spin_locked(&dev->slock);
123 if (!list_empty(&q->queue)) {
124 /* activate next one from queue */
125 buf = list_entry(q->queue.next,struct saa7146_buf,vb.queue);
126 list_del(&buf->vb.queue);
127 if (!list_empty(&q->queue))
128 next = list_entry(q->queue.next,struct saa7146_buf, vb.queue);
129 q->curr = buf;
Joe Perches44d0b802011-08-21 19:56:44 -0300130 DEB_INT("next buffer: buf:%p, prev:%p, next:%p\n",
131 buf, q->queue.prev, q->queue.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 buf->activate(dev,buf,next);
133 } else {
Joe Perches44d0b802011-08-21 19:56:44 -0300134 DEB_INT("no next buffer. stopping.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if( 0 != vbi ) {
136 /* turn off video-dma3 */
137 saa7146_write(dev,MC1, MASK_20);
138 } else {
139 /* nothing to do -- just prevent next video-dma1 transfer
140 by lowering the protection address */
141
142 // fixme: fix this for vflip != 0
143
144 saa7146_write(dev, PROT_ADDR1, 0);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800145 saa7146_write(dev, MC2, (MASK_02|MASK_18));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 /* write the address of the rps-program */
148 saa7146_write(dev, RPS_ADDR0, dev->d_rps0.dma_handle);
149 /* turn on rps */
150 saa7146_write(dev, MC1, (MASK_12 | MASK_28));
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
153 printk("vdma%d.base_even: 0x%08x\n", 1,saa7146_read(dev,BASE_EVEN1));
154 printk("vdma%d.base_odd: 0x%08x\n", 1,saa7146_read(dev,BASE_ODD1));
155 printk("vdma%d.prot_addr: 0x%08x\n", 1,saa7146_read(dev,PROT_ADDR1));
156 printk("vdma%d.base_page: 0x%08x\n", 1,saa7146_read(dev,BASE_PAGE1));
157 printk("vdma%d.pitch: 0x%08x\n", 1,saa7146_read(dev,PITCH1));
158 printk("vdma%d.num_line_byte: 0x%08x\n", 1,saa7146_read(dev,NUM_LINE_BYTE1));
159*/
160 }
161 del_timer(&q->timeout);
162 }
163}
164
165void saa7146_buffer_timeout(unsigned long data)
166{
167 struct saa7146_dmaqueue *q = (struct saa7146_dmaqueue*)data;
168 struct saa7146_dev *dev = q->dev;
169 unsigned long flags;
170
Joe Perches44d0b802011-08-21 19:56:44 -0300171 DEB_EE("dev:%p, dmaq:%p\n", dev, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 spin_lock_irqsave(&dev->slock,flags);
174 if (q->curr) {
Joe Perches44d0b802011-08-21 19:56:44 -0300175 DEB_D("timeout on %p\n", q->curr);
Brandon Philips0fc06862007-11-06 20:02:36 -0300176 saa7146_buffer_finish(dev,q,VIDEOBUF_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
179 /* we don't restart the transfer here like other drivers do. when
180 a streaming capture is disabled, the timeout function will be
181 called for the current buffer. if we activate the next buffer now,
182 we mess up our capture logic. if a timeout occurs on another buffer,
183 then something is seriously broken before, so no need to buffer the
184 next capture IMHO... */
185/*
186 saa7146_buffer_next(dev,q);
187*/
188 spin_unlock_irqrestore(&dev->slock,flags);
189}
190
191/********************************************************************************/
192/* file operations */
193
Hans Verkuilbec43662008-12-30 06:58:20 -0300194static int fops_open(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200196 struct video_device *vdev = video_devdata(file);
197 struct saa7146_dev *dev = video_drvdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 struct saa7146_fh *fh = NULL;
199 int result = 0;
200
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200201 enum v4l2_buf_type type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Joe Perches44d0b802011-08-21 19:56:44 -0300203 DEB_EE("file:%p, dev:%s\n", file, video_device_node_name(vdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Ingo Molnar3593cab2006-02-07 06:49:14 -0200205 if (mutex_lock_interruptible(&saa7146_devices_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return -ERESTARTSYS;
207
Joe Perches44d0b802011-08-21 19:56:44 -0300208 DEB_D("using: %p\n", dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Laurent Pinchart63b0d5a2009-12-10 11:44:04 -0200210 type = vdev->vfl_type == VFL_TYPE_GRABBER
211 ? V4L2_BUF_TYPE_VIDEO_CAPTURE
212 : V4L2_BUF_TYPE_VBI_CAPTURE;
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /* check if an extension is registered */
215 if( NULL == dev->ext ) {
Joe Perches44d0b802011-08-21 19:56:44 -0300216 DEB_S("no extension registered for this device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 result = -ENODEV;
218 goto out;
219 }
220
221 /* allocate per open data */
Panagiotis Issaris74081872006-01-11 19:40:56 -0200222 fh = kzalloc(sizeof(*fh),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (NULL == fh) {
Joe Perches44d0b802011-08-21 19:56:44 -0300224 DEB_S("cannot allocate memory for per open data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 result = -ENOMEM;
226 goto out;
227 }
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 file->private_data = fh;
230 fh->dev = dev;
231 fh->type = type;
232
233 if( fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
Joe Perches44d0b802011-08-21 19:56:44 -0300234 DEB_S("initializing vbi...\n");
Oliver Endriss5b0fa4f2006-01-09 18:21:37 -0200235 if (dev->ext_vv_data->capabilities & V4L2_CAP_VBI_CAPTURE)
236 result = saa7146_vbi_uops.open(dev,file);
237 if (dev->ext_vv_data->vbi_fops.open)
Hans Verkuilbec43662008-12-30 06:58:20 -0300238 dev->ext_vv_data->vbi_fops.open(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 } else {
Joe Perches44d0b802011-08-21 19:56:44 -0300240 DEB_S("initializing video...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 result = saa7146_video_uops.open(dev,file);
242 }
243
244 if (0 != result) {
245 goto out;
246 }
247
248 if( 0 == try_module_get(dev->ext->module)) {
249 result = -EINVAL;
250 goto out;
251 }
252
253 result = 0;
254out:
Al Viro5fa12472008-03-29 03:07:38 +0000255 if (fh && result != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 kfree(fh);
257 file->private_data = NULL;
258 }
Ingo Molnar3593cab2006-02-07 06:49:14 -0200259 mutex_unlock(&saa7146_devices_lock);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800260 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
Hans Verkuilbec43662008-12-30 06:58:20 -0300263static int fops_release(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 struct saa7146_fh *fh = file->private_data;
266 struct saa7146_dev *dev = fh->dev;
267
Joe Perches44d0b802011-08-21 19:56:44 -0300268 DEB_EE("file:%p\n", file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Ingo Molnar3593cab2006-02-07 06:49:14 -0200270 if (mutex_lock_interruptible(&saa7146_devices_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return -ERESTARTSYS;
272
273 if( fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
Oliver Endriss5b0fa4f2006-01-09 18:21:37 -0200274 if (dev->ext_vv_data->capabilities & V4L2_CAP_VBI_CAPTURE)
275 saa7146_vbi_uops.release(dev,file);
276 if (dev->ext_vv_data->vbi_fops.release)
Hans Verkuilbec43662008-12-30 06:58:20 -0300277 dev->ext_vv_data->vbi_fops.release(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 } else {
279 saa7146_video_uops.release(dev,file);
280 }
281
282 module_put(dev->ext->module);
283 file->private_data = NULL;
284 kfree(fh);
285
Ingo Molnar3593cab2006-02-07 06:49:14 -0200286 mutex_unlock(&saa7146_devices_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 return 0;
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291static int fops_mmap(struct file *file, struct vm_area_struct * vma)
292{
293 struct saa7146_fh *fh = file->private_data;
294 struct videobuf_queue *q;
295
296 switch (fh->type) {
297 case V4L2_BUF_TYPE_VIDEO_CAPTURE: {
Joe Perches44d0b802011-08-21 19:56:44 -0300298 DEB_EE("V4L2_BUF_TYPE_VIDEO_CAPTURE: file:%p, vma:%p\n",
299 file, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 q = &fh->video_q;
301 break;
302 }
303 case V4L2_BUF_TYPE_VBI_CAPTURE: {
Joe Perches44d0b802011-08-21 19:56:44 -0300304 DEB_EE("V4L2_BUF_TYPE_VBI_CAPTURE: file:%p, vma:%p\n",
305 file, vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 q = &fh->vbi_q;
307 break;
308 }
309 default:
310 BUG();
311 return 0;
312 }
Michael Krufky50c25ff2006-01-09 15:25:34 -0200313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return videobuf_mmap_mapper(q,vma);
315}
316
317static unsigned int fops_poll(struct file *file, struct poll_table_struct *wait)
318{
319 struct saa7146_fh *fh = file->private_data;
320 struct videobuf_buffer *buf = NULL;
321 struct videobuf_queue *q;
322
Joe Perches44d0b802011-08-21 19:56:44 -0300323 DEB_EE("file:%p, poll:%p\n", file, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type) {
326 if( 0 == fh->vbi_q.streaming )
327 return videobuf_poll_stream(file, &fh->vbi_q, wait);
328 q = &fh->vbi_q;
329 } else {
Joe Perches44d0b802011-08-21 19:56:44 -0300330 DEB_D("using video queue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 q = &fh->video_q;
332 }
333
334 if (!list_empty(&q->stream))
335 buf = list_entry(q->stream.next, struct videobuf_buffer, stream);
336
337 if (!buf) {
Joe Perches44d0b802011-08-21 19:56:44 -0300338 DEB_D("buf == NULL!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return POLLERR;
340 }
341
342 poll_wait(file, &buf->done, wait);
Brandon Philips0fc06862007-11-06 20:02:36 -0300343 if (buf->state == VIDEOBUF_DONE || buf->state == VIDEOBUF_ERROR) {
Joe Perches44d0b802011-08-21 19:56:44 -0300344 DEB_D("poll succeeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return POLLIN|POLLRDNORM;
346 }
347
Joe Perches44d0b802011-08-21 19:56:44 -0300348 DEB_D("nothing to poll for, buf->state:%d\n", buf->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return 0;
350}
351
352static ssize_t fops_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
353{
354 struct saa7146_fh *fh = file->private_data;
355
356 switch (fh->type) {
Joe Perches44d0b802011-08-21 19:56:44 -0300357 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
358/*
359 DEB_EE("V4L2_BUF_TYPE_VIDEO_CAPTURE: file:%p, data:%p, count:%lun",
360 file, data, (unsigned long)count);
361*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return saa7146_video_uops.read(file,data,count,ppos);
Joe Perches44d0b802011-08-21 19:56:44 -0300363 case V4L2_BUF_TYPE_VBI_CAPTURE:
364/*
365 DEB_EE("V4L2_BUF_TYPE_VBI_CAPTURE: file:%p, data:%p, count:%lu\n",
366 file, data, (unsigned long)count);
367*/
Oliver Endriss5b0fa4f2006-01-09 18:21:37 -0200368 if (fh->dev->ext_vv_data->capabilities & V4L2_CAP_VBI_CAPTURE)
369 return saa7146_vbi_uops.read(file,data,count,ppos);
Joe Perches44d0b802011-08-21 19:56:44 -0300370 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 default:
372 BUG();
373 return 0;
374 }
375}
376
Oliver Endriss5b0fa4f2006-01-09 18:21:37 -0200377static ssize_t fops_write(struct file *file, const char __user *data, size_t count, loff_t *ppos)
378{
379 struct saa7146_fh *fh = file->private_data;
380
381 switch (fh->type) {
382 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
383 return -EINVAL;
384 case V4L2_BUF_TYPE_VBI_CAPTURE:
385 if (fh->dev->ext_vv_data->vbi_fops.write)
386 return fh->dev->ext_vv_data->vbi_fops.write(file, data, count, ppos);
387 else
388 return -EINVAL;
389 default:
390 BUG();
391 return -EINVAL;
392 }
393}
394
Hans Verkuilbec43662008-12-30 06:58:20 -0300395static const struct v4l2_file_operations video_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 .owner = THIS_MODULE,
398 .open = fops_open,
399 .release = fops_release,
400 .read = fops_read,
Oliver Endriss5b0fa4f2006-01-09 18:21:37 -0200401 .write = fops_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 .poll = fops_poll,
403 .mmap = fops_mmap,
Hans Verkuil9af39712010-12-18 09:20:59 -0300404 .unlocked_ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405};
406
Adrian Bunk52c1da32005-06-23 22:05:33 -0700407static void vv_callback(struct saa7146_dev *dev, unsigned long status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 u32 isr = status;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800410
Joe Perches44d0b802011-08-21 19:56:44 -0300411 DEB_INT("dev:%p, isr:0x%08x\n", dev, (u32)status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 if (0 != (isr & (MASK_27))) {
Joe Perches44d0b802011-08-21 19:56:44 -0300414 DEB_INT("irq: RPS0 (0x%08x)\n", isr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 saa7146_video_uops.irq_done(dev,isr);
416 }
417
418 if (0 != (isr & (MASK_28))) {
419 u32 mc2 = saa7146_read(dev, MC2);
420 if( 0 != (mc2 & MASK_15)) {
Joe Perches44d0b802011-08-21 19:56:44 -0300421 DEB_INT("irq: RPS1 vbi workaround (0x%08x)\n", isr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 wake_up(&dev->vv_data->vbi_wq);
423 saa7146_write(dev,MC2, MASK_31);
424 return;
425 }
Joe Perches44d0b802011-08-21 19:56:44 -0300426 DEB_INT("irq: RPS1 (0x%08x)\n", isr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 saa7146_vbi_uops.irq_done(dev,isr);
428 }
429}
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431int saa7146_vv_init(struct saa7146_dev* dev, struct saa7146_ext_vv *ext_vv)
432{
Hans Verkuil230b65f2009-02-07 20:42:33 -0300433 struct saa7146_vv *vv;
Hans Verkuil03b19302010-03-24 19:09:55 -0300434 int err;
435
436 err = v4l2_device_register(&dev->pci->dev, &dev->v4l2_dev);
437 if (err)
438 return err;
Hans Verkuil230b65f2009-02-07 20:42:33 -0300439
440 vv = kzalloc(sizeof(struct saa7146_vv), GFP_KERNEL);
Hans Verkuilb9600742009-01-18 19:59:11 -0300441 if (vv == NULL) {
Joe Perches44d0b802011-08-21 19:56:44 -0300442 ERR("out of memory. aborting.\n");
Hans Verkuil230b65f2009-02-07 20:42:33 -0300443 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
Hans Verkuilb9600742009-01-18 19:59:11 -0300445 ext_vv->ops = saa7146_video_ioctl_ops;
446 ext_vv->core_ops = &saa7146_video_ioctl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Joe Perches44d0b802011-08-21 19:56:44 -0300448 DEB_EE("dev:%p\n", dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 /* set default values for video parts of the saa7146 */
451 saa7146_write(dev, BCS_CTRL, 0x80400040);
452
453 /* enable video-port pins */
454 saa7146_write(dev, MC1, (MASK_10 | MASK_26));
455
456 /* save per-device extension data (one extension can
457 handle different devices that might need different
458 configuration data) */
459 dev->ext_vv_data = ext_vv;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800460
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800461 vv->d_clipping.cpu_addr = pci_alloc_consistent(dev->pci, SAA7146_CLIPPING_MEM, &vv->d_clipping.dma_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if( NULL == vv->d_clipping.cpu_addr ) {
Joe Perches44d0b802011-08-21 19:56:44 -0300463 ERR("out of memory. aborting.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 kfree(vv);
465 return -1;
466 }
467 memset(vv->d_clipping.cpu_addr, 0x0, SAA7146_CLIPPING_MEM);
468
469 saa7146_video_uops.init(dev,vv);
Oliver Endriss5b0fa4f2006-01-09 18:21:37 -0200470 if (dev->ext_vv_data->capabilities & V4L2_CAP_VBI_CAPTURE)
471 saa7146_vbi_uops.init(dev,vv);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 dev->vv_data = vv;
474 dev->vv_callback = &vv_callback;
475
476 return 0;
477}
Adrian Bunk5d7dc8c2006-04-11 10:26:57 -0300478EXPORT_SYMBOL_GPL(saa7146_vv_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480int saa7146_vv_release(struct saa7146_dev* dev)
481{
482 struct saa7146_vv *vv = dev->vv_data;
483
Joe Perches44d0b802011-08-21 19:56:44 -0300484 DEB_EE("dev:%p\n", dev);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800485
Hans Verkuil230b65f2009-02-07 20:42:33 -0300486 v4l2_device_unregister(&dev->v4l2_dev);
Marco Schluessler58af0042007-01-31 14:27:55 -0300487 pci_free_consistent(dev->pci, SAA7146_CLIPPING_MEM, vv->d_clipping.cpu_addr, vv->d_clipping.dma_handle);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800488 kfree(vv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 dev->vv_data = NULL;
490 dev->vv_callback = NULL;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return 0;
493}
Adrian Bunk5d7dc8c2006-04-11 10:26:57 -0300494EXPORT_SYMBOL_GPL(saa7146_vv_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496int saa7146_register_device(struct video_device **vid, struct saa7146_dev* dev,
497 char *name, int type)
498{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 struct video_device *vfd;
Hans Verkuilb9600742009-01-18 19:59:11 -0300500 int err;
Hans Verkuild0852ed2009-01-26 19:13:05 -0300501 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Joe Perches44d0b802011-08-21 19:56:44 -0300503 DEB_EE("dev:%p, name:'%s', type:%d\n", dev, name, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 // released by vfd->release
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800506 vfd = video_device_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (vfd == NULL)
508 return -ENOMEM;
509
Hans Verkuilb9600742009-01-18 19:59:11 -0300510 vfd->fops = &video_fops;
Hans Verkuild0852ed2009-01-26 19:13:05 -0300511 vfd->ioctl_ops = &dev->ext_vv_data->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 vfd->release = video_device_release;
Hans Verkuil9af39712010-12-18 09:20:59 -0300513 vfd->lock = &dev->v4l2_lock;
Hans Verkuild0852ed2009-01-26 19:13:05 -0300514 vfd->tvnorms = 0;
515 for (i = 0; i < dev->ext_vv_data->num_stds; i++)
516 vfd->tvnorms |= dev->ext_vv_data->stds[i].id;
Hans Verkuilb9600742009-01-18 19:59:11 -0300517 strlcpy(vfd->name, name, sizeof(vfd->name));
Hans Verkuil601e9442008-08-23 07:24:07 -0300518 video_set_drvdata(vfd, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Hans Verkuilb9600742009-01-18 19:59:11 -0300520 err = video_register_device(vfd, type, -1);
521 if (err < 0) {
Joe Perches44d0b802011-08-21 19:56:44 -0300522 ERR("cannot register v4l2 device. skipping.\n");
Julia Lawalla2a9b1e2008-01-11 22:03:42 -0300523 video_device_release(vfd);
Hans Verkuilb9600742009-01-18 19:59:11 -0300524 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
Joe Perches44d0b802011-08-21 19:56:44 -0300527 pr_info("%s: registered device %s [v4l2]\n",
528 dev->name, video_device_node_name(vfd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 *vid = vfd;
531 return 0;
532}
Adrian Bunk5d7dc8c2006-04-11 10:26:57 -0300533EXPORT_SYMBOL_GPL(saa7146_register_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535int saa7146_unregister_device(struct video_device **vid, struct saa7146_dev* dev)
536{
Joe Perches44d0b802011-08-21 19:56:44 -0300537 DEB_EE("dev:%p\n", dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 video_unregister_device(*vid);
540 *vid = NULL;
541
542 return 0;
543}
Adrian Bunk5d7dc8c2006-04-11 10:26:57 -0300544EXPORT_SYMBOL_GPL(saa7146_unregister_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546static int __init saa7146_vv_init_module(void)
547{
548 return 0;
549}
550
551
552static void __exit saa7146_vv_cleanup_module(void)
553{
554}
555
556module_init(saa7146_vv_init_module);
557module_exit(saa7146_vv_cleanup_module);
558
559MODULE_AUTHOR("Michael Hunold <michael@mihu.de>");
560MODULE_DESCRIPTION("video4linux driver for saa7146-based hardware");
561MODULE_LICENSE("GPL");